Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: The Shell now is able to be initialized by orxonox.cc, not World anymore.
The error, i was looking for laid in Element2D, where some values did not point to NULL at the beginning… this was quite stupid indeed

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