Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/orxonox.cc @ 5237

Last change on this file since 5237 was 5227, checked in by bensch, 19 years ago

orxonox/trunk: LoadParam had some major memory-leak… fixed them :)

File size: 10.0 KB
RevLine 
[4982]1/*
[1850]2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   This program is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with this program; if not, write to the Free Software Foundation,
[4556]18   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
[1850]19
[1855]20
21   ### File Specific:
22   main-programmer: Patrick Boenzli
[5158]23co-programmer: Christian Meyer
[4054]24   co-programmer: Benjamin Grauer: injected ResourceManager/GraphicsEngine/GUI
[1850]25*/
26
[2190]27#include "orxonox.h"
[3610]28
[4054]29#include "gui.h"
30
[2036]31#include "world.h"
[4091]32#include "ini_parser.h"
[5165]33#include "game_loader.h"
[4786]34
35//ENGINES
[3610]36#include "graphics_engine.h"
[4504]37#include "sound_engine.h"
[3655]38#include "resource_manager.h"
[4786]39#include "cd_engine.h"
[3790]40#include "text_engine.h"
[4786]41#include "event_handler.h"
[4815]42#include "garbage_collector.h"
[4786]43
[4010]44#include "factory.h"
[4980]45#include "fast_factory.h"
46
[4131]47#include "benchmark.h"
[3610]48
[4786]49#include "class_list.h"
[4766]50#include "substring.h"
[5072]51#include "shell.h"
[5165]52#include "shell_command.h"
[5175]53#include "shell_buffer.h"
[4748]54
[5226]55#include "load_param.h"
56
[2190]57#include <string.h>
[4032]58
[4885]59int verbose = 4;
[2036]60
[1803]61using namespace std;
62
[5207]63SHELL_COMMAND(restart, Orxonox, restart);
64
[2190]65/**
[4836]66 *  create a new Orxonox
[4135]67
68   In this funcitons only global values are set. The game will not be started here.
[2190]69*/
70Orxonox::Orxonox ()
[1872]71{
[4445]72  this->setClassID(CL_ORXONOX, "Orxonox");
[4766]73  this->setName("orxonox-main");
[4059]74
[4766]75  this->iniParser = NULL;
[4135]76
77  this->argc = 0;
78  this->argv = NULL;
[4782]79
[4830]80  this->configFileName = NULL;
[1872]81}
[1803]82
[2190]83/**
[4836]84 *  remove Orxonox from memory
[2190]85*/
[4556]86Orxonox::~Orxonox ()
[2190]87{
[3611]88  delete GraphicsEngine::getInstance(); // deleting the Graphics
[4504]89  delete TextEngine::getInstance();
90  delete SoundEngine::getInstance();
[3660]91  delete ResourceManager::getInstance(); // deletes the Resource Manager
[3790]92  delete TextEngine::getInstance();
[4749]93  delete Factory::getFirst();
[4815]94  delete GameLoader::getInstance();
[4766]95  delete SoundEngine::getInstance();
[4815]96  delete CDEngine::getInstance();
97  delete GarbageCollector::getInstance();
[4980]98  FastFactory::deleteAll();
[5170]99  ShellCommandBase::debug();
[5171]100  ShellCommandClass::unregisterAllCommands();
101  ShellCommandBase::debug();
[5177]102  delete ShellBuffer::getInstance();
[4748]103
[5226]104  LoadClassDescription::deleteAllDescriptions();
105
[4817]106  delete EventHandler::getInstance();
[5078]107  delete this->iniParser;
[5210]108  delete[] this->configFileName;
[4817]109
[5225]110  SDL_QuitSubSystem(SDL_INIT_TIMER);
[4942]111  ClassList::debug();
[1850]112
[4833]113  PRINT(3)
[4981]114      (
115      "===================================================\n" \
[4766]116      "Thanks for playing orxonox.\n" \
[5037]117      "visit: http://www.orxonox.net for new versions.\n" \
[4946]118      "===================================================\n" \
[4981]119      ORXONOX_LICENSE_SHORT
120      );
[1872]121
[4766]122  Orxonox::singletonRef = NULL;
[1850]123}
124
[2190]125/**
[4836]126 *  this is a singleton class to prevent duplicates
[4766]127 */
128Orxonox* Orxonox::singletonRef = NULL;
[4556]129
[5207]130// DANGEROUS
131void Orxonox::restart()
132{
133//   int argc = this->argc;
134//   char** argv = this->argv;
135//
136//   Orxonox *orx = Orxonox::getInstance();
137//
138//   delete orx;
139//
140//   orx = Orxonox::getInstance();
141//
142//   if((*orx).init(argc, argv) == -1)
143//   {
144//     PRINTF(1)("! Orxonox initialization failed\n");
145//     return;
146//   }
147//
148//   printf("finished inizialisation\n");
149//   orx->start();
150}
151
[4766]152/**
[4836]153 *  this finds the config file
[4766]154 * @returns the new config-fileName
155 * Since the config file varies from user to user and since one may want to specify different config files
156 * for certain occasions or platforms this function finds the right config file for every occasion and stores
157 * it's path and name into configfilename
[2190]158*/
[4830]159const char* Orxonox::getConfigFile ()
[1850]160{
[5015]161  this->configFileName = ResourceManager::homeDirCheck(DEFAULT_CONFIG_FILE);
[4766]162  this->iniParser = new IniParser(this->configFileName);
[1803]163}
164
[2190]165/**
[4833]166 * initialize Orxonox with command line
167 */
[2190]168int Orxonox::init (int argc, char** argv)
[1803]169{
[4135]170  this->argc = argc;
171  this->argv = argv;
[2636]172  // parse command line
173  // config file
[4556]174
[4766]175  // initialize the Config-file
[4830]176  this->getConfigFile();
[4766]177
[4782]178  // initialize everything
[5227]179  SDL_Init(SDL_INIT_TIMER);
[4113]180  if( initResources () == -1) return -1;
[3226]181  if( initVideo() == -1) return -1;
182  if( initSound() == -1) return -1;
183  if( initInput() == -1) return -1;
184  if( initNetworking () == -1) return -1;
[5074]185  if( initMisc () == -1) return -1;
[4556]186
[2636]187  return 0;
[1850]188}
[1849]189
[2190]190/**
[4833]191 * initializes SDL and OpenGL
[2190]192*/
[4556]193int Orxonox::initVideo()
[2190]194{
[3611]195  PRINTF(3)("> Initializing video\n");
[4556]196
[3610]197  GraphicsEngine::getInstance();
[4556]198
[4784]199  GraphicsEngine::getInstance()->initFromIniFile(this->iniParser);
[4766]200
[5219]201  char* iconName = ResourceManager::getFullName("pictures/fighter-top-32x32.bmp");
[5225]202  if (iconName != NULL)
203  {
204    GraphicsEngine::getInstance()->setWindowName(PACKAGE_NAME " " PACKAGE_VERSION, iconName);
205    delete[] iconName;
206  }
[2190]207  return 0;
208}
[1850]209
[2190]210/**
[4833]211 * initializes the sound engine
212 */
[4556]213int Orxonox::initSound()
[2190]214{
[4504]215  PRINT(3)("> Initializing sound\n");
[5225]216  // SDL_InitSubSystem(SDL_INIT_AUDIO);
[4504]217  SoundEngine::getInstance()->initAudio();
[4985]218
219  SoundEngine::getInstance()->loadSettings(this->iniParser);
[2636]220  return 0;
[2190]221}
[1900]222
[3214]223
[2190]224/**
[4833]225 * initializes input functions
226 */
[4556]227int Orxonox::initInput()
[2190]228{
[4766]229  PRINT(3)("> Initializing input\n");
230
[4866]231  EventHandler::getInstance()->init(this->iniParser);
[4833]232  EventHandler::getInstance()->subscribe(GraphicsEngine::getInstance(), ES_ALL, EV_VIDEO_RESIZE);
[4556]233
[4833]234
[2636]235  return 0;
[1803]236}
237
[3214]238
[2190]239/**
[4833]240 * initializes network system
241 */
[4556]242int Orxonox::initNetworking()
[1897]243{
[4766]244  PRINT(3)("> Initializing networking\n");
245
246  printf("  ---Not yet implemented-FIXME--\n");
[2636]247  return 0;
[1897]248}
249
[3214]250
[2190]251/**
[4833]252 * initializes and loads resource files
[4766]253 */
[4833]254int Orxonox::initResources()
[1858]255{
[4766]256  PRINTF(3)("> Initializing resources\n");
[4091]257
[4766]258  PRINT(3)("initializing ResourceManager\n");
259
[5014]260  const char* dataPath;
261  if ((dataPath = this->iniParser->getVar(CONFIG_NAME_DATADIR, CONFIG_SECTION_DATA))!= NULL)
[4766]262  {
[5014]263    if (!ResourceManager::getInstance()->setDataDir(dataPath))
[4766]264    {
[5014]265      PRINTF(1)("Data Could not be located\n");
266      exit(-1);
[4766]267    }
268  }
[4556]269
[4822]270  if (!ResourceManager::getInstance()->checkDataDir(DEFAULT_DATA_DIR_CHECKFILE))
[4766]271  {
272    PRINTF(1)("The DataDirectory %s could not be verified\n" \
273              "  Please Change in File %s Section %s Entry %s to a suitable value\n",
[4822]274              ResourceManager::getInstance()->getDataDir(),
[4766]275              DEFAULT_CONFIG_FILE,
276              CONFIG_SECTION_DATA,
277              CONFIG_NAME_DATADIR);
278    exit(-1);
279  }
[4836]280   //! @todo this is a hack and should be loadable
[5216]281  char* imageDir = ResourceManager::getInstance()->getFullName("maps/");
282  ResourceManager::getInstance()->addImageDir(imageDir);
283  delete[] imageDir;
[4009]284
[4766]285  PRINT(3)("initializing TextEngine\n");
286  TextEngine::getInstance();
[4091]287
[4766]288  CDEngine::getInstance();
[5074]289  return 0;
290}
291
292/**
293 * initializes miscelaneous features
294 * @return -1 on failure
295 */
296int Orxonox::initMisc()
297{
[5183]298  ShellBuffer::getInstance();
[4766]299  return 0;
[1858]300}
[1849]301
[2190]302/**
[4836]303 *  starts the orxonox game or menu
[4833]304 * here is the central orxonox state manager. There are currently two states
305 * - menu
306 * - game-play
307 * both states manage their states themselfs again.
[2190]308*/
[2636]309void Orxonox::start()
310{
[4556]311
[2636]312  this->gameLoader = GameLoader::getInstance();
[4094]313  this->gameLoader->loadCampaign("worlds/DefaultCampaign.oxc");
[4010]314  //  this->gameLoader->loadDebugCampaign(DEBUG_CAMPAIGN_0);
[2636]315  this->gameLoader->init();
316  this->gameLoader->start();
317}
318
[3214]319
[2636]320/**
[4833]321 * handles sprecial events from localinput
322 * @param event: an event not handled by the CommandNode
323 */
[4817]324// void Orxonox::graphicsHandler(SDL_Event* event)
325// {
326//   // Handle special events such as reshape, quit, focus changes
327//   switch (event->type)
328//     {
329//     case SDL_VIDEORESIZE:
330//       GraphicsEngine* tmpGEngine = GraphicsEngine::getInstance();
331//       tmpGEngine->resolutionChanged(event->resize);
332//       break;
333//     }
334// }
[1875]335
[4556]336
[4408]337
[1803]338
[3214]339
[4782]340
[4059]341bool showGui = false;
[3648]342
[4766]343
344
345/**********************************
346*** ORXONOX MAIN STARTING POINT ***
347**********************************/
[3449]348/**
[4833]349 *
[4836]350 *  main function
[4833]351 *
352 * here the journey begins
[3449]353*/
[4556]354int main(int argc, char** argv)
355{
[4135]356  // here the pre-arguments are loaded, these are needed to go either to orxonx itself, Help, or Benchmark.
[3648]357  int i;
[4032]358  for(i = 1; i < argc; ++i)
[3648]359    {
[4135]360      if(! strcmp( "--help", argv[i]) || !strcmp("-h", argv[i])) return startHelp(argc, argv);
361      else if(!strcmp( "--benchmark", argv[i]) || !strcmp("-b", argv[i])) return startBenchmarks();
362      else if(!strcmp( "--gui", argv[i]) || !strcmp("-g", argv[i])) showGui = true;
363      //      else PRINTF(2)("Orxonox does not understand the arguments %s\n", argv[i]);
[3648]364    }
365
366  return startOrxonox(argc, argv);
367}
368
369
370
[4132]371int startHelp(int argc, char** argv)
[3648]372{
[4032]373  PRINT(0)("orxonox: starts the orxonox game - rules\n");
[4134]374  PRINT(0)("usage: orxonox [arg [arg...]]\n\n");
[4032]375  PRINT(0)("valid options:\n");
[4132]376  {
377    Gui* gui = new Gui(argc, argv);
378    gui->printHelp();
379    delete gui;
380  }
[4135]381  PRINT(0)(" -b|--benchmark:\t\tstarts the orxonox benchmark\n");
382  PRINT(0)(" -h|--help:\t\t\tshows this help\n");
[3648]383}
384
[3649]385
[4766]386
387/**
388 * starts orxonox
389 * @param argc parameters count given to orxonox
390 * @param argv parameters given to orxonox
391 */
[3648]392int startOrxonox(int argc, char** argv)
393{
[4830]394  // checking for existence of the configuration-files, or if the lock file is still used
[4059]395  if (showGui ||
[4981]396      !ResourceManager::isFile(DEFAULT_CONFIG_FILE)
397#if DEBUG < 3
398       || ResourceManager::isFile(DEFAULT_LOCK_FILE)
399#endif
400     )
[4032]401    {
[4766]402      if (ResourceManager::isFile(DEFAULT_LOCK_FILE))
403        ResourceManager::deleteFile(DEFAULT_LOCK_FILE);
[4556]404
[4132]405      // starting the GUI
[4056]406      Gui* gui = new Gui(argc, argv);
[4132]407      gui->startGui();
408
[4054]409      if (! gui->startOrxonox)
[4556]410        return 0;
411
[4054]412      delete gui;
[4032]413    }
[4556]414
[4032]415  PRINT(0)(">>> Starting Orxonox <<<\n");
[4033]416
[4766]417  ResourceManager::touchFile(DEFAULT_LOCK_FILE);
[4033]418
[1850]419  Orxonox *orx = Orxonox::getInstance();
[4556]420
[3226]421  if((*orx).init(argc, argv) == -1)
[2636]422    {
[4032]423      PRINTF(1)("! Orxonox initialization failed\n");
[2636]424      return -1;
425    }
[4556]426
[5018]427    printf("finished inizialisation\n");
[2636]428  orx->start();
[4556]429
[3676]430  delete orx;
[4033]431  ResourceManager::deleteFile("~/.orxonox/orxonox.lock");
[4556]432
[1803]433}
Note: See TracBrowser for help on using the repository browser.