Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/buerli/src/orxonox.h @ 3155

Last change on this file since 3155 was 2707, checked in by bensch, 20 years ago

orxonox/branches/buerli: merged back from trunk, with new configure makefile and so forth.

File size: 1.2 KB
Line 
1/*!
2    \file orxonox.h
3    \brief Orxonox core functions
4*/ 
5
6#ifndef ORXONOX_H
7#define ORXONOX_H
8
9#include <SDL/SDL.h>
10
11#include "stdincl.h"
12
13class CommandNode;
14class WorldEntity;
15class DataTank;
16class World;
17class Camera;
18class GameLoader;
19
20//! Orxonox core singleton class
21/**
22*/
23class Orxonox {
24
25 private:
26  static Orxonox* singleton_ref;
27  Orxonox ();
28  ~Orxonox ();
29 
30  char configfilename[256];
31  World* world;
32  DataTank* resources;
33  CommandNode* localinput;
34  Camera* localcamera;
35  SDL_Surface* screen;
36  GameLoader* gameLoader;
37 
38  bool bQuitOrxonox;
39  bool pause;
40  Uint32 lastframe;
41 
42  void get_config_file (int argc, char** argv);
43 
44  // main loop functions
45  void synchronize ();
46  void handle_input ();
47  void time_slice ();
48  void collision ();
49  void display ();
50 
51        // subsystem initialization
52  int init_video ();
53  int init_sound ();
54  int init_input ();
55  int init_networking ();
56  int init_resources ();
57  int init_world ();
58 
59 public:
60  static Orxonox* getInstance ();
61  void start();
62  void quitGame();
63
64  void event_handler (SDL_Event* event);
65  bool system_command (Command* cmd);
66
67  int init (int argc, char** argv);
68 
69  CommandNode* get_localinput();
70  Camera* get_camera();
71  World* get_world();
72 
73  void mainLoop();
74};
75
76#endif
77
Note: See TracBrowser for help on using the repository browser.