Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: implemented the objectmanager cache function

File size: 9.3 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 "command_node.h"
33#include "ini_parser.h"
34#include "game_loader.h"
35#include "graphics_engine.h"
36#include "resource_manager.h"
37#include "object_manager.h"
38#include "text_engine.h"
39#include "factory.h"
40#include "benchmark.h"
41
42#include <string.h>
43
44int verbose = 4;
45
46using namespace std;
47
48/**
49   \brief create a new Orxonox
50
51   In this funcitons only global values are set. The game will not be started here.
52*/
53Orxonox::Orxonox ()
54{
55  this->pause = false;
56
57  this->world = NULL;
58  this->localinput = NULL;
59  this->resourceManager = NULL;
60  this->objectManager = NULL;
61
62  this->argc = 0;
63  this->argv = NULL;
64}
65
66/**
67   \brief remove Orxonox from memory
68*/
69Orxonox::~Orxonox () 
70{
71  int i =0;
72  Orxonox::singletonRef = NULL;
73  if( world != NULL) delete world;
74  if( localinput != NULL) delete localinput;
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  // create localinput
165  localinput = new CommandNode(configfilename);
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::eventHandler(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/**
299   \brief handle keyboard commands that are not meant for WorldEntities
300   \param cmd: the command to handle
301   \return true if the command was handled by the system or false if it may be passed to the WorldEntities
302*/
303bool Orxonox::systemCommand(Command* cmd)
304{
305  /*
306  if( !strcmp( cmd->cmd, "quit"))
307    {
308      if( !cmd->bUp) this->gameLoader->stop();
309      return true;
310    }
311  return false;
312  */
313  return false;
314}
315
316/**
317   \brief retrieve a pointer to the local CommandNode
318   \return a pointer to localinput
319*/
320CommandNode* Orxonox::getLocalInput()
321{
322  return localinput;
323}
324
325
326/**
327   \brief retrieve a pointer to the local World
328   \return a pointer to world
329*/
330World* Orxonox::getWorld()
331{
332  return world;
333}
334
335/**
336   \return The reference of the SDL-screen of orxonox
337*/
338SDL_Surface* Orxonox::getScreen ()
339{
340  return this->screen;
341}
342
343
344bool showGui = false;
345
346/**
347   \brief main function
348
349   here the journey begins
350*/
351int main(int argc, char** argv) 
352{ 
353
354  // here the pre-arguments are loaded, these are needed to go either to orxonx itself, Help, or Benchmark.
355  int i;
356  for(i = 1; i < argc; ++i)
357    {
358      if(! strcmp( "--help", argv[i]) || !strcmp("-h", argv[i])) return startHelp(argc, argv);
359      else if(!strcmp( "--benchmark", argv[i]) || !strcmp("-b", argv[i])) return startBenchmarks();
360      else if(!strcmp( "--gui", argv[i]) || !strcmp("-g", argv[i])) showGui = true;
361      //      else PRINTF(2)("Orxonox does not understand the arguments %s\n", argv[i]);
362    }
363
364  return startOrxonox(argc, argv);
365}
366
367
368
369int startHelp(int argc, char** argv)
370{
371  PRINT(0)("orxonox: starts the orxonox game - rules\n");
372  PRINT(0)("usage: orxonox [arg [arg...]]\n\n");
373  PRINT(0)("valid options:\n");
374  {
375    Gui* gui = new Gui(argc, argv);
376    gui->printHelp();
377    delete gui;
378  }
379  PRINT(0)(" -b|--benchmark:\t\tstarts the orxonox benchmark\n");
380  PRINT(0)(" -h|--help:\t\t\tshows this help\n");
381}
382
383
384int startOrxonox(int argc, char** argv)
385{
386  // checking for existence of the configuration-files
387  if (showGui ||
388      !ResourceManager::isFile("~/.orxonox/orxonox.conf") ||
389      ResourceManager::isFile("~/.orxonox/orxonox.lock"))
390    {
391      if (ResourceManager::isFile("~/.orxonox/orxonox.lock"))
392        ResourceManager::deleteFile("~/.orxonox/orxonox.lock");
393     
394      // starting the GUI
395      Gui* gui = new Gui(argc, argv);
396      gui->startGui();
397
398      if (! gui->startOrxonox)
399        return 0;
400     
401      delete gui;
402    }
403 
404  PRINT(0)(">>> Starting Orxonox <<<\n");
405
406  ResourceManager::touchFile("~/.orxonox/orxonox.lock");
407
408  Orxonox *orx = Orxonox::getInstance();
409 
410  if((*orx).init(argc, argv) == -1)
411    {
412      PRINTF(1)("! Orxonox initialization failed\n");
413      return -1;
414    }
415 
416  orx->start();
417 
418  delete orx;
419  ResourceManager::deleteFile("~/.orxonox/orxonox.lock");
420 
421}
Note: See TracBrowser for help on using the repository browser.