Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/openAL/src/orxonox.cc @ 4196

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

orxonox/branches/openAL: implemented some basic Functions

File size: 9.2 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
[4194]24   co-programmer: Benjamin Grauer: injected ResourceManager/GraphicsEngine/GUI
[1850]25*/
26
[2190]27#include "orxonox.h"
[3610]28
[4194]29#include "gui.h"
30
[2036]31#include "world.h"
32#include "data_tank.h"
[2190]33#include "command_node.h"
[4194]34#include "ini_parser.h"
[2636]35#include "game_loader.h"
[3610]36#include "graphics_engine.h"
[4196]37#include "sound_engine.h"
[3655]38#include "resource_manager.h"
[3790]39#include "text_engine.h"
[4194]40#include "factory.h"
41#include "benchmark.h"
[3610]42
[2190]43#include <string.h>
[2036]44
[4194]45int verbose = 4;
46
[1803]47using namespace std;
48
[2190]49/**
[2636]50   \brief create a new Orxonox
[4194]51
52   In this funcitons only global values are set. The game will not be started here.
[2190]53*/
54Orxonox::Orxonox ()
[1872]55{
[4194]56  this->pause = false;
57
58  this->world = NULL;
59  this->resources = NULL;
60  this->localinput = NULL;
61
62  this->argc = 0;
63  this->argv = NULL;
[1872]64}
[1803]65
[2190]66/**
[2636]67   \brief remove Orxonox from memory
[2190]68*/
[1875]69Orxonox::~Orxonox () 
[2190]70{
[4194]71  int i =0;
[3226]72  Orxonox::singletonRef = NULL;
[2636]73  if( world != NULL) delete world;
[4194]74  if( localinput != NULL) delete localinput;
[2636]75  if( resources != NULL) delete resources;
[3611]76  delete GraphicsEngine::getInstance(); // deleting the Graphics
[3660]77  delete ResourceManager::getInstance(); // deletes the Resource Manager
[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{
[4194]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{
[4194]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
[4194]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();
[4194]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);
[4196]154  SoundEngine::getInstance();
[2636]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{
[2636]164  // create localinput
[4194]165  localinput = new CommandNode(configfilename);
[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();
[4194]188
189  // create parser
190  IniParser parser (DEFAULT_CONFIG_FILE);
191  if( parser.getSection (CONFIG_SECTION_DATA) == -1)
192    {
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);
224      exit(-1);
225    }
226
227
[3790]228  PRINT(3)("initializing TextEngine\n");
229  TextEngine::getInstance();
[4194]230
231  return 0;
[1858]232}
[1849]233
[3214]234
[2190]235/**
[2636]236   \brief initializes the world
[2190]237*/
[3226]238int Orxonox::initWorld() 
[1896]239{
[2636]240  //world = new World();
241 
242  // TO DO: replace this with a menu/intro
243  //world->load_debug_level();
244 
245  return 0;
[1896]246}
247
[2636]248
[2190]249/**
[2636]250   \brief starts the orxonox game or menu
251
252   here is the central orxonox state manager. There are currently two states
253   - menu
254   - game-play
255   both states manage their states themselfs again.
[2190]256*/
[2636]257void Orxonox::start()
258{
259 
260  this->gameLoader = GameLoader::getInstance();
[4194]261  this->gameLoader->loadCampaign("worlds/DefaultCampaign.oxc");
262  //  this->gameLoader->loadDebugCampaign(DEBUG_CAMPAIGN_0);
[2636]263  this->gameLoader->init();
264  this->gameLoader->start();
265}
266
[3214]267
[2636]268/**
269   \brief exits Orxonox
270*/
[1875]271void Orxonox::quitGame() 
272{
[2636]273  bQuitOrxonox = true;
[1875]274}
275
276
[3214]277
[2190]278/**
[2636]279   \brief handles sprecial events from localinput
280   \param event: an event not handled by the CommandNode
[2190]281*/
[3226]282void Orxonox::eventHandler(SDL_Event* event)
[2190]283{
[2636]284  // Handle special events such as reshape, quit, focus changes
[3619]285  switch (event->type)
286    {
287    case SDL_VIDEORESIZE:
288      GraphicsEngine* tmpGEngine = GraphicsEngine::getInstance();
289      tmpGEngine->resolutionChanged(&event->resize);
290      break;
291    }
[2190]292}
[3214]293 
[1875]294
[2190]295/**
[2636]296   \brief handle keyboard commands that are not meant for WorldEntities
297   \param cmd: the command to handle
298   \return true if the command was handled by the system or false if it may be passed to the WorldEntities
[2190]299*/
[3226]300bool Orxonox::systemCommand(Command* cmd)
[2190]301{
[3220]302  /*
[2636]303  if( !strcmp( cmd->cmd, "quit"))
304    {
305      if( !cmd->bUp) this->gameLoader->stop();
306      return true;
307    }
308  return false;
[3220]309  */
310  return false;
[2190]311}
[1803]312
[2190]313/**
[2636]314   \brief retrieve a pointer to the local CommandNode
315   \return a pointer to localinput
[2190]316*/
[3226]317CommandNode* Orxonox::getLocalInput()
[1850]318{
[2636]319  return localinput;
[1803]320}
321
[3214]322
[2190]323/**
[2636]324   \brief retrieve a pointer to the local World
325   \return a pointer to world
[2190]326*/
[3226]327World* Orxonox::getWorld()
[1872]328{
[2636]329  return world;
[1872]330}
[1850]331
[3449]332/**
333   \return The reference of the SDL-screen of orxonox
334*/
[3365]335SDL_Surface* Orxonox::getScreen ()
336{
337  return this->screen;
338}
[3214]339
[3648]340
[4194]341bool showGui = false;
[3648]342
[3449]343/**
344   \brief main function
[3214]345
[3449]346   here the journey begins
347*/
[3226]348int main(int argc, char** argv) 
[4194]349{ 
[3648]350
[4194]351  // here the pre-arguments are loaded, these are needed to go either to orxonx itself, Help, or Benchmark.
[3648]352  int i;
[4194]353  for(i = 1; i < argc; ++i)
[3648]354    {
[4194]355      if(! strcmp( "--help", argv[i]) || !strcmp("-h", argv[i])) return startHelp(argc, argv);
356      else if(!strcmp( "--benchmark", argv[i]) || !strcmp("-b", argv[i])) return startBenchmarks();
357      else if(!strcmp( "--gui", argv[i]) || !strcmp("-g", argv[i])) showGui = true;
358      //      else PRINTF(2)("Orxonox does not understand the arguments %s\n", argv[i]);
[3648]359    }
360
361  return startOrxonox(argc, argv);
362}
363
364
365
[4194]366int startHelp(int argc, char** argv)
[3648]367{
[4194]368  PRINT(0)("orxonox: starts the orxonox game - rules\n");
369  PRINT(0)("usage: orxonox [arg [arg...]]\n\n");
370  PRINT(0)("valid options:\n");
371  {
372    Gui* gui = new Gui(argc, argv);
373    gui->printHelp();
374    delete gui;
375  }
376  PRINT(0)(" -b|--benchmark:\t\tstarts the orxonox benchmark\n");
377  PRINT(0)(" -h|--help:\t\t\tshows this help\n");
[3648]378}
379
[3649]380
[3648]381int startOrxonox(int argc, char** argv)
382{
[4194]383  // checking for existence of the configuration-files
384  if (showGui ||
385      !ResourceManager::isFile("~/.orxonox/orxonox.conf") ||
386      ResourceManager::isFile("~/.orxonox/orxonox.lock"))
387    {
388      if (ResourceManager::isFile("~/.orxonox/orxonox.lock"))
389        ResourceManager::deleteFile("~/.orxonox/orxonox.lock");
390     
391      // starting the GUI
392      Gui* gui = new Gui(argc, argv);
393      gui->startGui();
394
395      if (! gui->startOrxonox)
396        return 0;
397     
398      delete gui;
399    }
400 
401  PRINT(0)(">>> Starting Orxonox <<<\n");
402
403  ResourceManager::touchFile("~/.orxonox/orxonox.lock");
404
[1850]405  Orxonox *orx = Orxonox::getInstance();
[2190]406 
[3226]407  if((*orx).init(argc, argv) == -1)
[2636]408    {
[4194]409      PRINTF(1)("! Orxonox initialization failed\n");
[2636]410      return -1;
411    }
412 
413  orx->start();
414 
[3676]415  delete orx;
[4194]416  ResourceManager::deleteFile("~/.orxonox/orxonox.lock");
[2190]417 
[1803]418}
Note: See TracBrowser for help on using the repository browser.