Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: command node removed from source files

File size: 8.7 KB
Line 
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
20
21   ### File Specific:
22   main-programmer: Patrick Boenzli
23   co-programmer: Christian Meyer
24   co-programmer: Benjamin Grauer: injected ResourceManager/GraphicsEngine/GUI
25*/
26
27#include "orxonox.h"
28
29#include "gui.h"
30
31#include "world.h"
32#include "ini_parser.h"
33#include "game_loader.h"
34#include "graphics_engine.h"
35#include "resource_manager.h"
36#include "object_manager.h"
37#include "text_engine.h"
38#include "factory.h"
39#include "benchmark.h"
40#include "event_handler.h"
41#include "event.h"
42
43#include <string.h>
44
45int verbose = 4;
46
47using namespace std;
48
49/**
50   \brief create a new Orxonox
51
52   In this funcitons only global values are set. The game will not be started here.
53*/
54Orxonox::Orxonox ()
55{
56  this->pause = false;
57
58  this->world = NULL;
59  this->resourceManager = NULL;
60  this->objectManager = NULL;
61  this->eventHandler = NULL;
62
63  this->argc = 0;
64  this->argv = NULL;
65}
66
67/**
68   \brief remove Orxonox from memory
69*/
70Orxonox::~Orxonox () 
71{
72  int i =0;
73  Orxonox::singletonRef = NULL;
74  if( world != NULL) delete world;
75  delete GraphicsEngine::getInstance(); // deleting the Graphics
76  delete ResourceManager::getInstance(); // deletes the Resource Manager
77  delete ObjectManager::getInstance();
78  delete TextEngine::getInstance();
79}
80
81/** \brief this is a singleton class to prevent duplicates */
82Orxonox* Orxonox::singletonRef = 0;
83
84/**
85   \returns reference or new Object of Orxonox if not existent.
86*/
87Orxonox* Orxonox::getInstance (void)
88{
89  if (singletonRef == NULL)
90    singletonRef = new Orxonox();
91  return singletonRef;
92}
93
94/**
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
100*/
101void Orxonox::getConfigFile (int argc, char** argv)
102{
103  strcpy (configfilename, "~/.orxonox/orxonox.conf");
104}
105
106/**
107   \brief initialize Orxonox with command line
108*/
109int Orxonox::init (int argc, char** argv)
110{
111  this->argc = argc;
112  this->argv = argv;
113  // parse command line
114  // config file
115 
116  getConfigFile (argc, argv);
117  SDL_Init (SDL_INIT_TIMER);
118  // initialize everything
119  printf("> Initializing resources\n");
120  if( initResources () == -1) return -1;
121
122  if( initVideo() == -1) return -1;
123  if( initSound() == -1) return -1;
124  printf("> Initializing input\n");
125  if( initInput() == -1) return -1;
126  printf("> Initializing networking\n");
127  if( initNetworking () == -1) return -1;
128  //printf("> Initializing world\n");
129  //if( init_world () == -1) return -1; PB: world will be initialized when started
130 
131  return 0;
132}
133
134/**
135   \brief initializes SDL and OpenGL
136*/
137int Orxonox::initVideo() 
138{
139  PRINTF(3)("> Initializing video\n");
140 
141  GraphicsEngine::getInstance();
142   
143  return 0;
144}
145
146
147/**
148   \brief initializes the sound engine
149*/
150int Orxonox::initSound() 
151{
152  printf("> Initializing sound\n");
153  // SDL_Init(SDL_INIT_AUDIO);
154  printf("Not yet implemented\n");
155  return 0;
156}
157
158
159/**
160   \brief initializes input functions
161*/
162int Orxonox::initInput() 
163{
164  this->eventHandler = EventHandler::getInstance();
165  this->eventHandler->init();
166 
167  return 0;
168}
169
170
171/**
172   \brief initializes network system
173*/
174int Orxonox::initNetworking() 
175{
176  printf("Not yet implemented\n");
177  return 0;
178}
179
180
181/**
182   \brief initializes and loads resource files
183*/
184int Orxonox::initResources() 
185{
186  PRINT(3)("initializing ResourceManager\n");
187  resourceManager = ResourceManager::getInstance();
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
228  PRINT(3)("initializing TextEngine\n");
229  TextEngine::getInstance();
230
231  PRINT(3)("initializing ObjectManager\n");
232  this->objectManager = ObjectManager::getInstance();
233
234  return 0;
235}
236
237
238/**
239   \brief initializes the world
240*/
241int Orxonox::initWorld() 
242{
243  //world = new World();
244 
245  // TO DO: replace this with a menu/intro
246  //world->load_debug_level();
247 
248  return 0;
249}
250
251
252/**
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.
259*/
260void Orxonox::start()
261{
262 
263  this->gameLoader = GameLoader::getInstance();
264  this->gameLoader->loadCampaign("worlds/DefaultCampaign.oxc");
265  //  this->gameLoader->loadDebugCampaign(DEBUG_CAMPAIGN_0);
266  this->gameLoader->init();
267  this->gameLoader->start();
268}
269
270
271/**
272   \brief exits Orxonox
273*/
274void Orxonox::quitGame() 
275{
276  bQuitOrxonox = true;
277}
278
279
280
281/**
282   \brief handles sprecial events from localinput
283   \param event: an event not handled by the CommandNode
284*/
285void Orxonox::graphicsHandler(SDL_Event* event)
286{
287  // Handle special events such as reshape, quit, focus changes
288  switch (event->type)
289    {
290    case SDL_VIDEORESIZE:
291      GraphicsEngine* tmpGEngine = GraphicsEngine::getInstance();
292      tmpGEngine->resolutionChanged(&event->resize);
293      break;
294    }
295}
296 
297
298
299void Orxonox::process(const Event &event)
300{}
301
302
303
304/**
305   \brief retrieve a pointer to the local World
306   \return a pointer to world
307*/
308World* Orxonox::getWorld()
309{
310  return world;
311}
312
313/**
314   \return The reference of the SDL-screen of orxonox
315*/
316SDL_Surface* Orxonox::getScreen ()
317{
318  return this->screen;
319}
320
321
322bool showGui = false;
323
324/**
325   \brief main function
326
327   here the journey begins
328*/
329int main(int argc, char** argv) 
330{ 
331
332  // here the pre-arguments are loaded, these are needed to go either to orxonx itself, Help, or Benchmark.
333  int i;
334  for(i = 1; i < argc; ++i)
335    {
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]);
340    }
341
342  return startOrxonox(argc, argv);
343}
344
345
346
347int startHelp(int argc, char** argv)
348{
349  PRINT(0)("orxonox: starts the orxonox game - rules\n");
350  PRINT(0)("usage: orxonox [arg [arg...]]\n\n");
351  PRINT(0)("valid options:\n");
352  {
353    Gui* gui = new Gui(argc, argv);
354    gui->printHelp();
355    delete gui;
356  }
357  PRINT(0)(" -b|--benchmark:\t\tstarts the orxonox benchmark\n");
358  PRINT(0)(" -h|--help:\t\t\tshows this help\n");
359}
360
361
362int startOrxonox(int argc, char** argv)
363{
364  // checking for existence of the configuration-files
365  if (showGui ||
366      !ResourceManager::isFile("~/.orxonox/orxonox.conf") ||
367      ResourceManager::isFile("~/.orxonox/orxonox.lock"))
368    {
369      if (ResourceManager::isFile("~/.orxonox/orxonox.lock"))
370        ResourceManager::deleteFile("~/.orxonox/orxonox.lock");
371     
372      // starting the GUI
373      Gui* gui = new Gui(argc, argv);
374      gui->startGui();
375
376      if (! gui->startOrxonox)
377        return 0;
378     
379      delete gui;
380    }
381 
382  PRINT(0)(">>> Starting Orxonox <<<\n");
383
384  ResourceManager::touchFile("~/.orxonox/orxonox.lock");
385
386  Orxonox *orx = Orxonox::getInstance();
387 
388  if((*orx).init(argc, argv) == -1)
389    {
390      PRINTF(1)("! Orxonox initialization failed\n");
391      return -1;
392    }
393 
394  orx->start();
395 
396  delete orx;
397  ResourceManager::deleteFile("~/.orxonox/orxonox.lock");
398 
399}
Note: See TracBrowser for help on using the repository browser.