Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: better check for the Data-Directory

File size: 9.9 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
[4131]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{
[5015]164  this->configFileName = ResourceManager::homeDirCheck(DEFAULT_CONFIG_FILE);
[4766]165  this->iniParser = new IniParser(this->configFileName);
[1803]166}
167
[2190]168/**
[4833]169 * initialize Orxonox with command line
170 */
[2190]171int Orxonox::init (int argc, char** argv)
[1803]172{
[4135]173  this->argc = argc;
174  this->argv = argv;
[2636]175  // parse command line
176  // config file
[4556]177
[4766]178  // initialize the Config-file
[4830]179  this->getConfigFile();
[4766]180
[4782]181  // initialize everything
[5227]182  SDL_Init(SDL_INIT_TIMER);
[4113]183  if( initResources () == -1) return -1;
[3226]184  if( initVideo() == -1) return -1;
185  if( initSound() == -1) return -1;
186  if( initInput() == -1) return -1;
187  if( initNetworking () == -1) return -1;
[5074]188  if( initMisc () == -1) return -1;
[4556]189
[2636]190  return 0;
[1850]191}
[1849]192
[2190]193/**
[4833]194 * initializes SDL and OpenGL
[2190]195*/
[4556]196int Orxonox::initVideo()
[2190]197{
[3611]198  PRINTF(3)("> Initializing video\n");
[4556]199
[3610]200  GraphicsEngine::getInstance();
[4556]201
[4784]202  GraphicsEngine::getInstance()->initFromIniFile(this->iniParser);
[4766]203
[5219]204  char* iconName = ResourceManager::getFullName("pictures/fighter-top-32x32.bmp");
[5225]205  if (iconName != NULL)
206  {
207    GraphicsEngine::getInstance()->setWindowName(PACKAGE_NAME " " PACKAGE_VERSION, iconName);
208    delete[] iconName;
209  }
[2190]210  return 0;
211}
[1850]212
[2190]213/**
[4833]214 * initializes the sound engine
215 */
[4556]216int Orxonox::initSound()
[2190]217{
[4504]218  PRINT(3)("> Initializing sound\n");
[5225]219  // SDL_InitSubSystem(SDL_INIT_AUDIO);
[4504]220  SoundEngine::getInstance()->initAudio();
[4985]221
222  SoundEngine::getInstance()->loadSettings(this->iniParser);
[2636]223  return 0;
[2190]224}
[1900]225
[3214]226
[2190]227/**
[4833]228 * initializes input functions
229 */
[4556]230int Orxonox::initInput()
[2190]231{
[4766]232  PRINT(3)("> Initializing input\n");
233
[4866]234  EventHandler::getInstance()->init(this->iniParser);
[4833]235  EventHandler::getInstance()->subscribe(GraphicsEngine::getInstance(), ES_ALL, EV_VIDEO_RESIZE);
[4556]236
[4833]237
[2636]238  return 0;
[1803]239}
240
[3214]241
[2190]242/**
[4833]243 * initializes network system
244 */
[4556]245int Orxonox::initNetworking()
[1897]246{
[4766]247  PRINT(3)("> Initializing networking\n");
248
249  printf("  ---Not yet implemented-FIXME--\n");
[2636]250  return 0;
[1897]251}
252
[3214]253
[2190]254/**
[4833]255 * initializes and loads resource files
[4766]256 */
[4833]257int Orxonox::initResources()
[1858]258{
[4766]259  PRINTF(3)("> Initializing resources\n");
[4091]260
[4766]261  PRINT(3)("initializing ResourceManager\n");
262
[5014]263  const char* dataPath;
264  if ((dataPath = this->iniParser->getVar(CONFIG_NAME_DATADIR, CONFIG_SECTION_DATA))!= NULL)
[4766]265  {
[5014]266    if (!ResourceManager::getInstance()->setDataDir(dataPath))
[4766]267    {
[5423]268      PRINTF(1)("Data Could not be located in %s\n", dataPath);
[4766]269    }
270  }
[4556]271
[4822]272  if (!ResourceManager::getInstance()->checkDataDir(DEFAULT_DATA_DIR_CHECKFILE))
[4766]273  {
274    PRINTF(1)("The DataDirectory %s could not be verified\n" \
275              "  Please Change in File %s Section %s Entry %s to a suitable value\n",
[4822]276              ResourceManager::getInstance()->getDataDir(),
[4766]277              DEFAULT_CONFIG_FILE,
278              CONFIG_SECTION_DATA,
279              CONFIG_NAME_DATADIR);
280    exit(-1);
281  }
[4836]282   //! @todo this is a hack and should be loadable
[5335]283  char* imageDir = ResourceManager::getInstance()->getFullName("maps");
[5216]284  ResourceManager::getInstance()->addImageDir(imageDir);
285  delete[] imageDir;
[4009]286
[4766]287  CDEngine::getInstance();
[5074]288  return 0;
289}
290
291/**
292 * initializes miscelaneous features
293 * @return -1 on failure
294 */
295int Orxonox::initMisc()
296{
[5183]297  ShellBuffer::getInstance();
[4766]298  return 0;
[1858]299}
[1849]300
[2190]301/**
[4836]302 *  starts the orxonox game or menu
[4833]303 * here is the central orxonox state manager. There are currently two states
304 * - menu
305 * - game-play
306 * both states manage their states themselfs again.
[2190]307*/
[2636]308void Orxonox::start()
309{
[4556]310
[2636]311  this->gameLoader = GameLoader::getInstance();
[4094]312  this->gameLoader->loadCampaign("worlds/DefaultCampaign.oxc");
[4010]313  //  this->gameLoader->loadDebugCampaign(DEBUG_CAMPAIGN_0);
[2636]314  this->gameLoader->init();
315  this->gameLoader->start();
316}
317
[3214]318
[2636]319/**
[4833]320 * handles sprecial events from localinput
321 * @param event: an event not handled by the CommandNode
322 */
[4817]323// void Orxonox::graphicsHandler(SDL_Event* event)
324// {
325//   // Handle special events such as reshape, quit, focus changes
326//   switch (event->type)
327//     {
328//     case SDL_VIDEORESIZE:
329//       GraphicsEngine* tmpGEngine = GraphicsEngine::getInstance();
330//       tmpGEngine->resolutionChanged(event->resize);
331//       break;
332//     }
333// }
[1875]334
[4556]335
[4408]336
[1803]337
[3214]338
[4782]339
[4059]340bool showGui = false;
[3648]341
[4766]342
343
344/**********************************
345*** ORXONOX MAIN STARTING POINT ***
346**********************************/
[3449]347/**
[4833]348 *
[4836]349 *  main function
[4833]350 *
351 * here the journey begins
[3449]352*/
[4556]353int main(int argc, char** argv)
354{
[4135]355  // here the pre-arguments are loaded, these are needed to go either to orxonx itself, Help, or Benchmark.
[3648]356  int i;
[4032]357  for(i = 1; i < argc; ++i)
[3648]358    {
[4135]359      if(! strcmp( "--help", argv[i]) || !strcmp("-h", argv[i])) return startHelp(argc, argv);
360      else if(!strcmp( "--benchmark", argv[i]) || !strcmp("-b", argv[i])) return startBenchmarks();
361      else if(!strcmp( "--gui", argv[i]) || !strcmp("-g", argv[i])) showGui = true;
362      //      else PRINTF(2)("Orxonox does not understand the arguments %s\n", argv[i]);
[3648]363    }
364
365  return startOrxonox(argc, argv);
366}
367
368
369
[4132]370int startHelp(int argc, char** argv)
[3648]371{
[4032]372  PRINT(0)("orxonox: starts the orxonox game - rules\n");
[4134]373  PRINT(0)("usage: orxonox [arg [arg...]]\n\n");
[4032]374  PRINT(0)("valid options:\n");
[4132]375  {
376    Gui* gui = new Gui(argc, argv);
377    gui->printHelp();
378    delete gui;
379  }
[4135]380  PRINT(0)(" -b|--benchmark:\t\tstarts the orxonox benchmark\n");
381  PRINT(0)(" -h|--help:\t\t\tshows this help\n");
[3648]382}
383
[3649]384
[4766]385
386/**
387 * starts orxonox
388 * @param argc parameters count given to orxonox
389 * @param argv parameters given to orxonox
390 */
[3648]391int startOrxonox(int argc, char** argv)
392{
[4830]393  // checking for existence of the configuration-files, or if the lock file is still used
[4059]394  if (showGui ||
[4981]395      !ResourceManager::isFile(DEFAULT_CONFIG_FILE)
396#if DEBUG < 3
397       || ResourceManager::isFile(DEFAULT_LOCK_FILE)
398#endif
399     )
[4032]400    {
[4766]401      if (ResourceManager::isFile(DEFAULT_LOCK_FILE))
402        ResourceManager::deleteFile(DEFAULT_LOCK_FILE);
[4556]403
[4132]404      // starting the GUI
[4056]405      Gui* gui = new Gui(argc, argv);
[4132]406      gui->startGui();
407
[4054]408      if (! gui->startOrxonox)
[4556]409        return 0;
410
[4054]411      delete gui;
[4032]412    }
[4556]413
[4032]414  PRINT(0)(">>> Starting Orxonox <<<\n");
[4033]415
[4766]416  ResourceManager::touchFile(DEFAULT_LOCK_FILE);
[4033]417
[1850]418  Orxonox *orx = Orxonox::getInstance();
[4556]419
[3226]420  if((*orx).init(argc, argv) == -1)
[2636]421    {
[4032]422      PRINTF(1)("! Orxonox initialization failed\n");
[2636]423      return -1;
424    }
[4556]425
[5018]426    printf("finished inizialisation\n");
[2636]427  orx->start();
[4556]428
[3676]429  delete orx;
[4033]430  ResourceManager::deleteFile("~/.orxonox/orxonox.lock");
[1803]431}
Note: See TracBrowser for help on using the repository browser.