1 | /*! |
---|
2 | \file world.h |
---|
3 | \brief Holds and manages all game data |
---|
4 | */ |
---|
5 | |
---|
6 | #ifndef _WORLD_H |
---|
7 | #define _WORLD_H |
---|
8 | |
---|
9 | #include "stdincl.h" |
---|
10 | #include "comincl.h" |
---|
11 | #include "story_entity.h" |
---|
12 | #include "p_node.h" |
---|
13 | |
---|
14 | |
---|
15 | class World; |
---|
16 | class WorldEntity; |
---|
17 | class TrackManager; |
---|
18 | class Camera; |
---|
19 | class PNode; |
---|
20 | class GLMenuImageScreen; |
---|
21 | class Skysphere; |
---|
22 | class LightManager; |
---|
23 | class FontSet; |
---|
24 | class Terrain; |
---|
25 | class GarbageCollector; |
---|
26 | class SimpleAnimation; |
---|
27 | |
---|
28 | //! The game world Interface |
---|
29 | /** |
---|
30 | this is a singleton interface, that enables world_entities to access the |
---|
31 | world. for those objects, there is no easier way than over this interface! |
---|
32 | */ |
---|
33 | class WorldInterface : BaseObject { |
---|
34 | |
---|
35 | public: |
---|
36 | ~WorldInterface(); |
---|
37 | static WorldInterface* getInstance(); |
---|
38 | void init(World* world); |
---|
39 | tList<WorldEntity>* getEntityList(); |
---|
40 | |
---|
41 | private: |
---|
42 | WorldInterface(); |
---|
43 | static WorldInterface* singletonRef; //!< singleton reference to this object |
---|
44 | bool worldIsInitialized; //!< true if the world has been initialized |
---|
45 | World* worldReference; //!< this is a reference to the running world |
---|
46 | |
---|
47 | }; |
---|
48 | |
---|
49 | //! The game world |
---|
50 | /** |
---|
51 | this class initializes everything that should be displayed inside of the current level. |
---|
52 | it is the main driving factor during gameplay. |
---|
53 | */ |
---|
54 | class World : public StoryEntity { |
---|
55 | |
---|
56 | public: |
---|
57 | World (char* name); |
---|
58 | World (int worldID); |
---|
59 | virtual ~World (); |
---|
60 | |
---|
61 | double getGameTime(); |
---|
62 | |
---|
63 | /* classes from story-entity */ |
---|
64 | virtual ErrorMessage preLoad(); |
---|
65 | virtual ErrorMessage load (); |
---|
66 | virtual ErrorMessage init (); |
---|
67 | virtual ErrorMessage start (); |
---|
68 | virtual ErrorMessage stop (); |
---|
69 | virtual ErrorMessage pause (); |
---|
70 | virtual ErrorMessage resume (); |
---|
71 | virtual ErrorMessage destroy (); |
---|
72 | |
---|
73 | virtual void displayLoadScreen(); |
---|
74 | virtual void releaseLoadScreen(); |
---|
75 | |
---|
76 | /* command node functions */ |
---|
77 | bool command (Command* cmd); |
---|
78 | |
---|
79 | tList<WorldEntity>* getEntities(); |
---|
80 | |
---|
81 | /* interface to world */ |
---|
82 | void spawn (WorldEntity* entity); |
---|
83 | void spawn (WorldEntity* entity, Vector* absCoor, Quaternion* absDir); |
---|
84 | void spawn(WorldEntity* entity, PNode* parentNode, Vector* relCoor, Quaternion* relDir, |
---|
85 | int parentingMode); |
---|
86 | |
---|
87 | |
---|
88 | private: |
---|
89 | void init(char* name, int worldID); |
---|
90 | |
---|
91 | Uint32 lastFrame; //!< last time of frame |
---|
92 | Uint32 dt; //!< time needed to calculate this frame |
---|
93 | double gameTime; //!< this is where the game time is saved |
---|
94 | bool bQuitOrxonox; //!< quit this application |
---|
95 | bool bQuitCurrentGame; //!< quit only the current game and return to menu |
---|
96 | bool bPause; //!< pause mode |
---|
97 | |
---|
98 | FontSet* testFont; //!< A test Font. \todo fix this, so it is for real. |
---|
99 | GLMenuImageScreen* glmis; //!< The Level-Loader Display |
---|
100 | |
---|
101 | char* worldName; //!< The name of this World |
---|
102 | int debugWorldNr; //!< The Debug Nr. needed, if something goes wrong |
---|
103 | |
---|
104 | PNode* nullParent; //!< The zero-point, that everything has as its parent. |
---|
105 | TrackManager* trackManager; //!< The reference of the TrackManager that handles the course through the Level. |
---|
106 | Camera* localCamera; //!< The current Camera |
---|
107 | Skysphere* skySphere; //!< The Environmental Heaven of orxonox \todo insert this to environment insted |
---|
108 | LightManager* lightMan; //!< The Lights of the Level |
---|
109 | Terrain* terrain; //!< The Terrain of the World. |
---|
110 | |
---|
111 | GLuint objectList; //!< temporary: \todo this will be ereased soon |
---|
112 | tList<WorldEntity>* entities; //!< A template List of all entities. Every moving thing should be included here, and world automatically updates them. |
---|
113 | WorldEntity* localPlayer; //!< The Player, you fly through the level. |
---|
114 | |
---|
115 | GarbageCollector* garbageCollector; //!< reference to the garbage collector |
---|
116 | |
---|
117 | SimpleAnimation* simpleAnimation; //!< reference to the SimpleAnimation object |
---|
118 | |
---|
119 | /* function for main-loop */ |
---|
120 | void mainLoop (); |
---|
121 | void synchronize (); |
---|
122 | void handleInput (); |
---|
123 | void tick (); |
---|
124 | void update (); |
---|
125 | void collide (); |
---|
126 | void draw (); |
---|
127 | void display (); |
---|
128 | void debug (); |
---|
129 | |
---|
130 | }; |
---|
131 | |
---|
132 | #endif /* _WORLD_H */ |
---|