Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 5170 was 5170, checked in by bensch, 20 years ago

orxonox/trunk: registration of ShellCommands now via the ShellCommandClass… still a lot of work has to be done.

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