Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: nicer quit-modi
TextEngine is now deleted by GraphicsEngine
trying to fix errors in the Element2D deletion

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