Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/shared_lib/src/orxonox.cc @ 7187

Last change on this file since 7187 was 7187, checked in by bensch, 18 years ago

ltdl

File size: 13.9 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#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_ORXONOX
28#include "orxonox.h"
29
30#include "globals.h"
31
32#include "gui.h"
33
34#include "parser/ini_parser/ini_parser.h"
35#include "game_loader.h"
36
37//ENGINES
38#include "graphics_engine.h"
39#include "sound_engine.h"
40#include "resource_manager.h"
41#include "cd_engine.h"
42#include "text_engine.h"
43#include "event_handler.h"
44
45#include "factory.h"
46#include "fast_factory.h"
47
48#include "benchmark.h"
49
50#include "class_list.h"
51#include "shell_command_class.h"
52#include "shell_command.h"
53#include "shell_buffer.h"
54
55#include "load_param_description.h"
56#include "dynamic_loader.h"
57
58#include "network_manager.h"
59
60#include "state.h"
61
62#include <string.h>
63
64int verbose = 4;
65
66using namespace std;
67
68SHELL_COMMAND(restart, Orxonox, restart);
69
70/**
71 *  create a new Orxonox
72
73   In this funcitons only global values are set. The game will not be started here.
74*/
75Orxonox::Orxonox ()
76{
77  this->setClassID(CL_ORXONOX, "Orxonox");
78  this->setName("orxonox-main");
79
80  this->iniParser = NULL;
81
82  this->argc = 0;
83  this->argv = NULL;
84
85  /* this way, there is no network enabled: */
86  this->serverName = NULL;
87  this->port = -1;
88
89  this->configFileName = NULL;
90}
91
92/**
93 *  remove Orxonox from memory
94*/
95Orxonox::~Orxonox ()
96{
97  // game-specific
98  delete GameLoader::getInstance();
99
100  // class-less services/factories
101  Factory::deleteFactories();
102  FastFactory::deleteAll();
103  ShellCommandClass::unregisterAllCommands();
104
105  LoadClassDescription::deleteAllDescriptions();
106
107  // engines
108  delete CDEngine::getInstance();
109  delete SoundEngine::getInstance();
110  delete GraphicsEngine::getInstance(); // deleting the Graphics
111  delete EventHandler::getInstance();
112
113  // handlers
114  delete ResourceManager::getInstance(); // deletes the Resource Manager
115  // output-buffer
116  delete ShellBuffer::getInstance();
117
118  // orxonox class-stuff
119  delete this->iniParser;
120  delete[] this->configFileName;
121
122  SDL_QuitSubSystem(SDL_INIT_TIMER);
123  ClassList::debug();
124
125  PRINT(3)
126  (
127    "===================================================\n" \
128    "Thanks for playing orxonox.\n" \
129    "visit: http://www.orxonox.net for new versions.\n" \
130    "===================================================\n" \
131    ORXONOX_LICENSE_SHORT
132  );
133
134  Orxonox::singletonRef = NULL;
135}
136
137/**
138 *  this is a singleton class to prevent duplicates
139 */
140Orxonox* Orxonox::singletonRef = NULL;
141
142// DANGEROUS
143void Orxonox::restart()
144{
145  //   int argc = this->argc;
146  //   char** argv = this->argv;
147  //
148  //   Orxonox *orx = Orxonox::getInstance();
149  //
150  //   delete orx;
151  //
152  //   orx = Orxonox::getInstance();
153  //
154  //   if((*orx).init(argc, argv) == -1)
155  //   {
156  //     PRINTF(1)("! Orxonox initialization failed\n");
157  //     return;
158  //   }
159  //
160  //   printf("finished inizialisation\n");
161  //   orx->start();
162}
163
164/**
165 *  this finds the config file
166 * @returns the new config-fileName
167 * Since the config file varies from user to user and since one may want to specify different config files
168 * for certain occasions or platforms this function finds the right config file for every occasion and stores
169 * it's path and name into configfilename
170*/
171const char* Orxonox::getConfigFile ()
172{
173  if (ResourceManager::isFile("orxonox.conf"))
174  {
175    this->configFileName = new char[strlen("orxonox.conf")+1];
176    strcpy(this->configFileName, "orxonox.conf");
177  }
178  else
179    this->configFileName = ResourceManager::homeDirCheck(DEFAULT_CONFIG_FILE);
180  this->iniParser = new IniParser(this->configFileName);
181  PRINTF(3)("Parsed Config File: '%s'\n", this->configFileName);
182}
183
184/**
185 * initialize Orxonox with command line
186 */
187int Orxonox::init (int argc, char** argv, const char* name, int port)
188{
189  this->argc = argc;
190  this->argv = argv;
191
192  this->serverName = name;
193  this->port = port;
194
195  // initialize the Config-file
196  this->getConfigFile();
197
198  // windows must not write into stdout.txt and stderr.txt
199  /*#ifdef __WIN32__
200  freopen( "CON", "w", stdout );
201  freopen( "CON", "w", stderr );
202  #endif*/
203
204  // initialize everything
205  SDL_Init(0);
206  if( initResources () == -1)
207    return -1;
208  if( initVideo() == -1)
209    return -1;
210  if( initSound() == -1)
211    return -1;
212  if( initInput() == -1)
213    return -1;
214  if( initNetworking () == -1)
215    return -1;
216  if( initMisc () == -1)
217    return -1;
218
219  return 0;
220}
221
222
223/**
224 * initializes SDL and OpenGL
225 */
226int Orxonox::initVideo()
227{
228  PRINTF(3)("> Initializing video\n");
229
230  GraphicsEngine::getInstance();
231
232  GraphicsEngine::getInstance()->initFromIniFile(this->iniParser);
233
234  char* iconName = ResourceManager::getFullName("pictures/fighter-top-32x32.bmp");
235  if (iconName != NULL)
236  {
237    GraphicsEngine::getInstance()->setWindowName(PACKAGE_NAME " " PACKAGE_VERSION, iconName);
238    delete[] iconName;
239  }
240  return 0;
241}
242
243
244/**
245 * initializes the sound engine
246 */
247int Orxonox::initSound()
248{
249  PRINT(3)("> Initializing sound\n");
250  // SDL_InitSubSystem(SDL_INIT_AUDIO);
251  SoundEngine::getInstance();
252
253  SoundEngine::getInstance()->loadSettings(this->iniParser);
254  SoundEngine::getInstance()->initAudio();
255  return 0;
256}
257
258
259/**
260 * initializes input functions
261 */
262int Orxonox::initInput()
263{
264  PRINT(3)("> Initializing input\n");
265
266  EventHandler::getInstance()->init(this->iniParser);
267  EventHandler::getInstance()->subscribe(GraphicsEngine::getInstance(), ES_ALL, EV_VIDEO_RESIZE);
268
269  return 0;
270}
271
272
273/**
274 * initializes network system
275 */
276int Orxonox::initNetworking()
277{
278  PRINT(3)("> Initializing networking\n");
279
280  if( this->serverName != NULL) // we are a client
281  {
282    State::setOnline(true);
283    NetworkManager::getInstance()->establishConnection(this->serverName, port);
284  }
285  else if( this->port > 0)
286  {    // we are a server
287    State::setOnline(true);
288    NetworkManager::getInstance()->createServer(port);
289  }
290  return 0;
291}
292
293/**
294 * initializes and loads resource files
295 */
296int Orxonox::initResources()
297{
298  PRINTF(3)("> Initializing resources\n");
299
300  PRINT(3)("initializing ResourceManager\n");
301
302  // init the resource manager
303  const char* dataPath;
304  if ((dataPath = this->iniParser->getVar(CONFIG_NAME_DATADIR, CONFIG_SECTION_DATA))!= NULL)
305  {
306    if (!ResourceManager::getInstance()->setDataDir(dataPath) &&
307        !ResourceManager::getInstance()->verifyDataDir(DEFAULT_DATA_DIR_CHECKFILE))
308    {
309      PRINTF(1)("Data Could not be located in %s\n", dataPath);
310    }
311  }
312
313  if (!ResourceManager::getInstance()->verifyDataDir(DEFAULT_DATA_DIR_CHECKFILE))
314  {
315    PRINTF(1)("The DataDirectory %s could not be verified\n\nh" \
316              "!!!  Please Change in File %s Section %s Entry %s to a suitable value !!!\n",
317              ResourceManager::getInstance()->getDataDir(),
318              this->configFileName,
319              CONFIG_SECTION_DATA,
320              CONFIG_NAME_DATADIR );
321    Gui* gui = new Gui(argc, argv);
322    gui->startGui();
323    delete gui;
324    exit(-1);
325  }
326  //! @todo this is a hack and should be loadable
327  char* imageDir = ResourceManager::getInstance()->getFullName("maps");
328  ResourceManager::getInstance()->addImageDir(imageDir);
329  delete[] imageDir;
330  imageDir = ResourceManager::getInstance()->getFullName("pictures");
331  ResourceManager::getInstance()->addImageDir(imageDir);
332  delete[] imageDir;
333
334  if (!DynamicLoader::addSearchDirRelative("./world_entities"))
335    if (!DynamicLoader::addSearchDirRelative("./src/world_entities"))
336      DynamicLoader::addSearchDir(PKG_LIBDIR);
337
338  /// FIXME make this more modular (search for himself for all the libraries
339  printf("%s\n", DynamicLoader::getSearchDir());
340  DynamicLoader::loadDyLib("libORXplayables");
341  DynamicLoader::loadDyLib("libORXweapons");
342  DynamicLoader::loadDyLib("libORXprojectiles");
343  DynamicLoader::loadDyLib("libORXpower_ups");
344
345  DynamicLoader::loadDyLib("libORXenvironmentals");
346
347  DynamicLoader::loadDyLib("libORXnpcs");
348
349  DynamicLoader::loadDyLib("libORXmisc_entities");
350  printf("%s\n", DynamicLoader::getSearchDir());
351
352  // start the collision detection engine
353  CDEngine::getInstance();
354  return 0;
355}
356
357/**
358 * initializes miscelaneous features
359 * @return -1 on failure
360 */
361int Orxonox::initMisc()
362{
363  ShellBuffer::getInstance();
364  return 0;
365}
366
367/**
368 *  starts the orxonox game or menu
369 * here is the central orxonox state manager. There are currently two states
370 * - menu
371 * - game-play
372 * both states manage their states themselfs again.
373*/
374void Orxonox::start()
375{
376
377  this->gameLoader = GameLoader::getInstance();
378
379  if( this->port != -1)
380    this->gameLoader->loadNetworkCampaign("worlds/DefaultNetworkCampaign.oxc");
381  else
382    this->gameLoader->loadCampaign("worlds/DefaultCampaign.oxc");                       /* start orxonox in single player mode */
383
384  //  this->gameLoader->loadDebugCampaign(DEBUG_CAMPAIGN_0);
385  this->gameLoader->init();
386  this->gameLoader->start();
387}
388
389
390/**
391 * handles sprecial events from localinput
392 * @param event: an event not handled by the CommandNode
393 */
394// void Orxonox::graphicsHandler(SDL_Event* event)
395// {
396//   // Handle special events such as reshape, quit, focus changes
397//   switch (event->type)
398//     {
399//     case SDL_VIDEORESIZE:
400//       GraphicsEngine* tmpGEngine = GraphicsEngine::getInstance();
401//       tmpGEngine->resolutionChanged(event->resize);
402//       break;
403//     }
404// }
405
406
407
408
409
410
411bool showGui = false;
412
413
414
415/**********************************
416*** ORXONOX MAIN STARTING POINT ***
417**********************************/
418/**
419 *
420 *  main function
421 *
422 * here the journey begins
423*/
424int main(int argc, char** argv)
425{
426  int i;
427  for(i = 1; i < argc; ++i)
428  {
429    if(     !strcmp( "--help", argv[i])     || !strcmp("-h", argv[i]))
430      return showHelp(argc, argv);
431    else if(!strcmp( "--gui", argv[i])      || !strcmp("-g", argv[i]))
432      showGui = true;
433    else if(!strcmp( "--client", argv[i])   || !strcmp("-c", argv[i]))
434      return startNetworkOrxonox(argc, argv);
435    else if(!strcmp( "--server", argv[i])   || !strcmp("-s", argv[i]))
436      return startNetworkOrxonox(argc, argv);
437    else if(!strcmp( "--license", argv[i])  || !strcmp("-l", argv[i]))
438      return PRINT(0)(ORXONOX_LICENSE_SHORT);
439  }
440
441  return startOrxonox(argc, argv, NULL, -1);
442}
443
444
445
446int showHelp(int argc, char** argv)
447{
448  PRINT(0)("Orxonox Version %s\n", PACKAGE_VERSION);
449  PRINT(0)(" Starts Orxonox - The most furious 3D Action Game :)\n");
450  PRINT(0)("\n");
451  PRINT(0)("Common options:\n");
452  PRINT(0)(" -g, --gui                        starts the orxonox with the configuration GUI \n");
453  PRINT(0)(" -h, --help                       shows this help\n");
454  PRINT(0)("\n");
455  PRINT(0)("Network options:\n");
456  PRINT(0)(" -s, --server [port]              starts Orxonox and listens on the [port] for players\n");
457  PRINT(0)(" -c, --client [hostname] [port]   starts Orxonox as a Client\n");
458  PRINT(0)(" -c, --client [ip address] [port] starts Orxonox as a Client\n");
459  PRINT(0)("\n");
460  PRINT(0)("Other options:\n");
461  PRINT(0)("     --license     prints the licence and exit\n\n");
462  PRINT(0)("\n");
463
464  //   {
465  //     Gui* gui = new Gui(argc, argv);
466  //     gui->printHelp();
467  //     delete gui;
468  //   }
469}
470
471
472
473
474/**
475 * starts orxonox in network mode
476 * @param argc parameters count given to orxonox
477 * @param argv parameters given to orxonox
478 */
479int startNetworkOrxonox(int argc, char** argv)
480{
481
482  int i;
483  for(i = 0; i < argc; ++i )
484  {
485    if( !strcmp( "--client", argv[i]) || !strcmp("-c", argv[i]))
486    {
487      if( argc <= (i+2))
488      {
489        printf(" Wrong arguments try following notations:\n");
490        printf("   --client [server ip address] [port number]\n");
491        printf("   --client [dns name] [port number]\n");
492        return 0;
493      }
494
495      const char* name = argv[i+1];
496      int port = atoi(argv[i+2]);
497      printf("Starting Orxonox as client: connecting to %s, on port %i\n", name, port);
498
499      startOrxonox(argc, argv, name, port);
500    }
501    else if( !strcmp( "--server", argv[i]) || !strcmp("-s", argv[i]))
502    {
503      if( argc <= (i+1))
504      {
505        printf(" Wrong arguments try following notations:\n");
506        printf("   --server [port number]\n");
507        return 0;
508      }
509
510      int port = atoi(argv[i+1]);
511      printf("Starting Orxonox as server, listening on port %i\n", port);
512
513      startOrxonox(argc, argv, NULL, port);
514    }
515  }
516}
517
518
519
520/**
521 * starts orxonox
522 * @param argc parameters count given to orxonox
523 * @param argv parameters given to orxonox
524 */
525int startOrxonox(int argc, char** argv, const char* name, int port)
526{
527  // checking for existence of the configuration-files, or if the lock file is still used
528  if (showGui || (!ResourceManager::isFile("./orxonox.conf") &&
529                  !ResourceManager::isFile(DEFAULT_CONFIG_FILE))
530#if DEBUG < 3 // developers do not need to see the GUI, when orxonox fails
531      || ResourceManager::isFile(DEFAULT_LOCK_FILE)
532#endif
533     )
534  {
535    if (ResourceManager::isFile(DEFAULT_LOCK_FILE))
536      ResourceManager::deleteFile(DEFAULT_LOCK_FILE);
537
538    // starting the GUI
539    Gui* gui = new Gui(argc, argv);
540    gui->startGui();
541
542    if (! gui->startOrxonox)
543      return 0;
544
545    delete gui;
546  }
547
548  PRINT(0)(">>> Starting Orxonox <<<\n");
549
550  ResourceManager::touchFile(DEFAULT_LOCK_FILE);
551
552  Orxonox *orx = Orxonox::getInstance();
553
554  if( orx->init(argc, argv, name, port) == -1)
555  {
556    PRINTF(1)("! Orxonox initialization failed\n");
557    return -1;
558  }
559
560  printf("finished inizialisation\n");
561  orx->start();
562
563  delete orx;
564  ResourceManager::deleteFile("~/.orxonox/orxonox.lock");
565}
Note: See TracBrowser for help on using the repository browser.