Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/orxonox.h @ 3660

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

orxonox/trunk: now ResourceManager has the ability to unload resources by priority

File size: 1.7 KB
RevLine 
[2190]1/*!
2    \file orxonox.h
3    \brief Orxonox core functions
4*/ 
[1856]5
[3224]6#ifndef _ORXONOX_H
7#define _ORXONOX_H
[1803]8
[3608]9#include "comincl.h"
10#include "glincl.h"
[2190]11
12class CommandNode;
13class WorldEntity;
14class DataTank;
[2036]15class World;
[2190]16class Camera;
[2636]17class GameLoader;
[3655]18class ResourceManager;
[1850]19
[2190]20//! Orxonox core singleton class
21/**
22*/
[1803]23class Orxonox {
24
[1850]25 private:
[3226]26  static Orxonox* singletonRef;
[1850]27  Orxonox ();
[3543]28
[3449]29  char configfilename[256];   //!< Filename of the configuration-file.
30  World* world;               //!< Reference to the current running world.
31  DataTank* resources;        //!< DataContainer
32  CommandNode* localinput;    //!< Command Handler
33  SDL_Surface* screen;        //!< The current Screen
34  GameLoader* gameLoader;     //!< The gameLoader
[3655]35  ResourceManager* resourceManager; //!< The ResourceManager
[2190]36 
[3449]37  bool bQuitOrxonox;          //!< If Orxonox should Quit
38  bool pause;                 //!< Pause mode
39  Uint32 lastframe;           //!< Time of the last Frame
[2636]40 
[3226]41  void getConfigFile (int argc, char** argv);
[2636]42 
43  // main loop functions
[3214]44  //  void synchronize ();
45  //void handle_input ();
46  //void time_slice ();
47  //void collision ();
48  //void display ();
[2190]49 
50        // subsystem initialization
[3226]51  int initVideo ();
52  int initSound ();
53  int initInput ();
54  int initNetworking ();
55  int initResources ();
56  int initWorld ();
[2190]57 
58 public:
59  static Orxonox* getInstance ();
[3660]60  virtual ~Orxonox ();
61
[2636]62  void start();
[2190]63  void quitGame();
[1879]64
[3226]65  void eventHandler (SDL_Event* event);
66  bool systemCommand (Command* cmd);
[1897]67
[2190]68  int init (int argc, char** argv);
[2636]69 
[3226]70  CommandNode* getLocalInput();
71  World* getWorld();
[3365]72  SDL_Surface* getScreen ();
[2636]73 
[3214]74  //void mainLoop();
[1803]75};
76
[3648]77int startHelp(void);
78int startOrxonox(int argc, char** argv);
79int startBenchmarks(void);
80
[3224]81#endif /* _ORXONOX_H */
[1850]82
Note: See TracBrowser for help on using the repository browser.