Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/orxonox.cc @ 5563

Last change on this file since 5563 was 5563, checked in by hdavid, 19 years ago

orxonox/branches/network: removed temporary timex.h in benchmark.cc. Know it runs on UBUNTU.

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