Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: merged the spaceshipcontrol branche back to the trunk

merged with command
svn merge https://svn.orxonox.net/orxonox/branches/spaceshipcontrol . -r6224:HEAD
small conflict in space_ship.cc fixed in favor of the control

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