Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 4443 was 4442, checked in by patrick, 19 years ago

orxonox/trunk: command node removed from source files

File size: 8.7 KB
RevLine 
[1850]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
[1855]20
21   ### File Specific:
22   main-programmer: Patrick Boenzli
[2190]23   co-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"
[2636]33#include "game_loader.h"
[3610]34#include "graphics_engine.h"
[3655]35#include "resource_manager.h"
[4286]36#include "object_manager.h"
[3790]37#include "text_engine.h"
[4010]38#include "factory.h"
[4131]39#include "benchmark.h"
[4388]40#include "event_handler.h"
[4408]41#include "event.h"
[3610]42
[2190]43#include <string.h>
[4032]44
[3966]45int verbose = 4;
[2036]46
[1803]47using namespace std;
48
[2190]49/**
[2636]50   \brief create a new Orxonox
[4135]51
52   In this funcitons only global values are set. The game will not be started here.
[2190]53*/
54Orxonox::Orxonox ()
[1872]55{
[4059]56  this->pause = false;
57
[4054]58  this->world = NULL;
[4286]59  this->resourceManager = NULL;
60  this->objectManager = NULL;
[4442]61  this->eventHandler = NULL;
[4135]62
63  this->argc = 0;
64  this->argv = NULL;
[1872]65}
[1803]66
[2190]67/**
[2636]68   \brief remove Orxonox from memory
[2190]69*/
[1875]70Orxonox::~Orxonox () 
[2190]71{
[4054]72  int i =0;
[3226]73  Orxonox::singletonRef = NULL;
[2636]74  if( world != NULL) delete world;
[3611]75  delete GraphicsEngine::getInstance(); // deleting the Graphics
[3660]76  delete ResourceManager::getInstance(); // deletes the Resource Manager
[4286]77  delete ObjectManager::getInstance();
[3790]78  delete TextEngine::getInstance();
[2190]79}
[1850]80
[3449]81/** \brief this is a singleton class to prevent duplicates */
[3226]82Orxonox* Orxonox::singletonRef = 0;
[1872]83
[3449]84/**
85   \returns reference or new Object of Orxonox if not existent.
86*/
[1850]87Orxonox* Orxonox::getInstance (void)
[1803]88{
[3226]89  if (singletonRef == NULL)
90    singletonRef = new Orxonox();
91  return singletonRef;
[1850]92}
93
[2190]94/**
[2636]95   \brief this finds the config file
96   
97   Since the config file varies from user to user and since one may want to specify different config files
98   for certain occasions or platforms this function finds the right config file for every occasion and stores
99   it's path and name into configfilename
[2190]100*/
[3226]101void Orxonox::getConfigFile (int argc, char** argv)
[1850]102{
[4084]103  strcpy (configfilename, "~/.orxonox/orxonox.conf");
[1803]104}
105
[2190]106/**
[2636]107   \brief initialize Orxonox with command line
[2190]108*/
109int Orxonox::init (int argc, char** argv)
[1803]110{
[4135]111  this->argc = argc;
112  this->argv = argv;
[2636]113  // parse command line
114  // config file
115 
[3226]116  getConfigFile (argc, argv);
[3174]117  SDL_Init (SDL_INIT_TIMER);
[2636]118  // initialize everything
[4113]119  printf("> Initializing resources\n");
120  if( initResources () == -1) return -1;
121
[3226]122  if( initVideo() == -1) return -1;
123  if( initSound() == -1) return -1;
[2190]124  printf("> Initializing input\n");
[3226]125  if( initInput() == -1) return -1;
[2190]126  printf("> Initializing networking\n");
[3226]127  if( initNetworking () == -1) return -1;
[2636]128  //printf("> Initializing world\n");
129  //if( init_world () == -1) return -1; PB: world will be initialized when started
130 
131  return 0;
[1850]132}
[1849]133
[2190]134/**
[2636]135   \brief initializes SDL and OpenGL
[2190]136*/
[3226]137int Orxonox::initVideo() 
[2190]138{
[3611]139  PRINTF(3)("> Initializing video\n");
[2190]140 
[3610]141  GraphicsEngine::getInstance();
[4136]142   
[2190]143  return 0;
144}
[1850]145
[3214]146
[2190]147/**
[2636]148   \brief initializes the sound engine
[2190]149*/
[3226]150int Orxonox::initSound() 
[2190]151{
[3174]152  printf("> Initializing sound\n");
[3226]153  // SDL_Init(SDL_INIT_AUDIO);
[2636]154  printf("Not yet implemented\n");
155  return 0;
[2190]156}
[1900]157
[3214]158
[2190]159/**
[2636]160   \brief initializes input functions
[2190]161*/
[3226]162int Orxonox::initInput() 
[2190]163{
[4408]164  this->eventHandler = EventHandler::getInstance();
165  this->eventHandler->init();
[2636]166 
167  return 0;
[1803]168}
169
[3214]170
[2190]171/**
[2636]172   \brief initializes network system
[2190]173*/
[3226]174int Orxonox::initNetworking() 
[1897]175{
[2636]176  printf("Not yet implemented\n");
177  return 0;
[1897]178}
179
[3214]180
[2190]181/**
[2636]182   \brief initializes and loads resource files
[2190]183*/
[3226]184int Orxonox::initResources() 
[1858]185{
[3655]186  PRINT(3)("initializing ResourceManager\n");
187  resourceManager = ResourceManager::getInstance();
[4091]188
189  // create parser
190  IniParser parser (DEFAULT_CONFIG_FILE);
191  if( parser.getSection (CONFIG_SECTION_DATA) == -1)
[4042]192    {
[4091]193      PRINTF(1)("Could not find Section %s in %s\n", CONFIG_SECTION_DATA, DEFAULT_CONFIG_FILE);
194      return -1;
195    }
196  char namebuf[256];
197  char valuebuf[256];
198  memset (namebuf, 0, 256);
199  memset (valuebuf, 0, 256);
200 
201  while( parser.nextVar (namebuf, valuebuf) != -1)
202    {
203      if (!strcmp(namebuf, CONFIG_NAME_DATADIR))
204        {
205          //  printf("Not yet implemented\n");
206          if (!resourceManager->setDataDir(valuebuf))
207            {
208              PRINTF(1)("Data Could not be located\n");
209              exit(-1);
210            }
211        }
212     
213      memset (namebuf, 0, 256);
214      memset (valuebuf, 0, 256);
215    }
216 
217  if (!resourceManager->checkDataDir(DEFAULT_DATA_DIR_CHECKFILE))
218    {
219      PRINTF(1)("The DataDirectory %s could not be verified\nPlease Change in File %s Section %s Entry %s to a suitable value\n",
220                resourceManager->getDataDir(),
221                DEFAULT_CONFIG_FILE,
222                CONFIG_SECTION_DATA,
223                CONFIG_NAME_DATADIR);
[4054]224      exit(-1);
[4042]225    }
[4009]226
[4091]227
[3790]228  PRINT(3)("initializing TextEngine\n");
229  TextEngine::getInstance();
[4132]230
[4286]231  PRINT(3)("initializing ObjectManager\n");
232  this->objectManager = ObjectManager::getInstance();
233
[4132]234  return 0;
[1858]235}
[1849]236
[3214]237
[2190]238/**
[2636]239   \brief initializes the world
[2190]240*/
[3226]241int Orxonox::initWorld() 
[1896]242{
[2636]243  //world = new World();
244 
245  // TO DO: replace this with a menu/intro
246  //world->load_debug_level();
247 
248  return 0;
[1896]249}
250
[2636]251
[2190]252/**
[2636]253   \brief starts the orxonox game or menu
254
255   here is the central orxonox state manager. There are currently two states
256   - menu
257   - game-play
258   both states manage their states themselfs again.
[2190]259*/
[2636]260void Orxonox::start()
261{
262 
263  this->gameLoader = GameLoader::getInstance();
[4094]264  this->gameLoader->loadCampaign("worlds/DefaultCampaign.oxc");
[4010]265  //  this->gameLoader->loadDebugCampaign(DEBUG_CAMPAIGN_0);
[2636]266  this->gameLoader->init();
267  this->gameLoader->start();
268}
269
[3214]270
[2636]271/**
272   \brief exits Orxonox
273*/
[1875]274void Orxonox::quitGame() 
275{
[2636]276  bQuitOrxonox = true;
[1875]277}
278
279
[3214]280
[2190]281/**
[2636]282   \brief handles sprecial events from localinput
283   \param event: an event not handled by the CommandNode
[2190]284*/
[4408]285void Orxonox::graphicsHandler(SDL_Event* event)
[2190]286{
[2636]287  // Handle special events such as reshape, quit, focus changes
[3619]288  switch (event->type)
289    {
290    case SDL_VIDEORESIZE:
291      GraphicsEngine* tmpGEngine = GraphicsEngine::getInstance();
292      tmpGEngine->resolutionChanged(&event->resize);
293      break;
294    }
[2190]295}
[3214]296 
[1875]297
[1803]298
[4408]299void Orxonox::process(const Event &event)
300{}
301
[1803]302
[3214]303
[2190]304/**
[2636]305   \brief retrieve a pointer to the local World
306   \return a pointer to world
[2190]307*/
[3226]308World* Orxonox::getWorld()
[1872]309{
[2636]310  return world;
[1872]311}
[1850]312
[3449]313/**
314   \return The reference of the SDL-screen of orxonox
315*/
[3365]316SDL_Surface* Orxonox::getScreen ()
317{
318  return this->screen;
319}
[3214]320
[3648]321
[4059]322bool showGui = false;
[3648]323
[3449]324/**
325   \brief main function
[3214]326
[3449]327   here the journey begins
328*/
[3226]329int main(int argc, char** argv) 
[4135]330{ 
[3648]331
[4135]332  // here the pre-arguments are loaded, these are needed to go either to orxonx itself, Help, or Benchmark.
[3648]333  int i;
[4032]334  for(i = 1; i < argc; ++i)
[3648]335    {
[4135]336      if(! strcmp( "--help", argv[i]) || !strcmp("-h", argv[i])) return startHelp(argc, argv);
337      else if(!strcmp( "--benchmark", argv[i]) || !strcmp("-b", argv[i])) return startBenchmarks();
338      else if(!strcmp( "--gui", argv[i]) || !strcmp("-g", argv[i])) showGui = true;
339      //      else PRINTF(2)("Orxonox does not understand the arguments %s\n", argv[i]);
[3648]340    }
341
342  return startOrxonox(argc, argv);
343}
344
345
346
[4132]347int startHelp(int argc, char** argv)
[3648]348{
[4032]349  PRINT(0)("orxonox: starts the orxonox game - rules\n");
[4134]350  PRINT(0)("usage: orxonox [arg [arg...]]\n\n");
[4032]351  PRINT(0)("valid options:\n");
[4132]352  {
353    Gui* gui = new Gui(argc, argv);
354    gui->printHelp();
355    delete gui;
356  }
[4135]357  PRINT(0)(" -b|--benchmark:\t\tstarts the orxonox benchmark\n");
358  PRINT(0)(" -h|--help:\t\t\tshows this help\n");
[3648]359}
360
[3649]361
[3648]362int startOrxonox(int argc, char** argv)
363{
[4032]364  // checking for existence of the configuration-files
[4059]365  if (showGui ||
366      !ResourceManager::isFile("~/.orxonox/orxonox.conf") ||
367      ResourceManager::isFile("~/.orxonox/orxonox.lock"))
[4032]368    {
369      if (ResourceManager::isFile("~/.orxonox/orxonox.lock"))
370        ResourceManager::deleteFile("~/.orxonox/orxonox.lock");
[4132]371     
372      // starting the GUI
[4056]373      Gui* gui = new Gui(argc, argv);
[4132]374      gui->startGui();
375
[4054]376      if (! gui->startOrxonox)
377        return 0;
378     
379      delete gui;
[4032]380    }
381 
382  PRINT(0)(">>> Starting Orxonox <<<\n");
[4033]383
384  ResourceManager::touchFile("~/.orxonox/orxonox.lock");
385
[1850]386  Orxonox *orx = Orxonox::getInstance();
[2190]387 
[3226]388  if((*orx).init(argc, argv) == -1)
[2636]389    {
[4032]390      PRINTF(1)("! Orxonox initialization failed\n");
[2636]391      return -1;
392    }
393 
394  orx->start();
395 
[3676]396  delete orx;
[4033]397  ResourceManager::deleteFile("~/.orxonox/orxonox.lock");
[2190]398 
[1803]399}
Note: See TracBrowser for help on using the repository browser.