Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/story_entities/game_world.h @ 6358

Last change on this file since 6358 was 6358, checked in by patrick, 18 years ago

network: major changes in the world files

File size: 3.6 KB
Line 
1/*!
2 * @file game_world.h
3 *  container for all game worlds (singleplayers, multiplayers..)
4 */
5
6#ifndef _GAME_WORLD_H
7#define _GAME_WORLD_H
8
9#include "sdlincl.h"
10#include "story_entity.h"
11#include "object_manager.h"
12
13class WorldEntity;
14class Camera;
15class Player;
16class GLMenuImageScreen;
17class Terrain;
18class TiXmlElement;
19
20class Shell;
21class OggPlayer;
22
23//! The game world
24/**
25 *  this class initializes everything that should be displayed inside of the current level.
26 *  it is the main driving factor during gameplay.
27 */
28class GameWorld : public StoryEntity
29{
30
31  public:
32    GameWorld (const TiXmlElement* root = NULL);
33    virtual ~GameWorld ();
34
35    void loadParams(const TiXmlElement* root);
36
37    double getGameTime();
38
39    /* classes from story-entity */
40    ErrorMessage preLoad();
41    ErrorMessage load ();
42    ErrorMessage postLoad();
43
44    virtual ErrorMessage preStart();
45    virtual ErrorMessage start ();
46    virtual ErrorMessage stop ();
47    virtual ErrorMessage pause ();
48    virtual ErrorMessage resume ();
49    virtual ErrorMessage destroy ();
50
51    virtual void displayLoadScreen();
52    virtual void releaseLoadScreen();
53
54    /* interface to the game world */
55    virtual void spawn (WorldEntity* entity);
56
57    /** @param speed sets the speed of the Game */
58    inline void setSpeed(float speed) { this->speed = speed; };
59    const char* getPath();
60    void setPath( const char* name);
61
62    void togglePNodeVisibility() { this->showPNodes = !this->showPNodes; };
63    void toggleBVVisibility() { this->showBV = !this->showBV; };
64
65
66  protected:
67    virtual void constuctorInit(const char* name, int worldID);
68
69    /* world - running functions */
70    virtual void mainLoop ();
71
72    virtual void synchronize ();
73    virtual void handleInput ();
74    virtual void tick (std::list<WorldEntity*> worldEntity, float dt);
75    virtual void tick ();
76    virtual void update ();
77    virtual void collide ();
78    virtual void draw ();
79    virtual void display ();
80
81    virtual void debug ();
82
83
84  protected:
85    char* path;                         //!< The file from which this world is loaded
86
87    /* state flags */
88    bool bQuitGameWorld;                    //!< quit only the current game and return to menu
89    bool bPause;                        //!< pause mode
90
91    bool showPNodes;                    //!< if the PNodes should be visible.
92    bool showBV;                        //!< if the Bounding Volumes should be visible.
93
94    GLMenuImageScreen* glmis;           //!< The Level-Loader Display
95
96    /* world timing */
97    Uint32 lastFrame;                   //!< last time of frame
98    Uint32 cycle;                       //!< The cycle we are in (starts with 0 and rises with every frame)
99    Uint32 dt;                          //!< time needed to calculate this frame (in milliSeconds)
100    float dtS;                          //!< The time needed for caluculations in seconds
101    float speed;                        //!< how fast the game flows
102    double gameTime;                    //!< this is where the game time is saved
103
104    /* external modules interfaces */
105    ObjectManager objectManager;        //!< The ObjectManager of this GameWorld.
106
107    /* external modules interfaces */
108    Shell*     shell;
109    OggPlayer* music;
110
111    /* important entities */
112    Camera* localCamera;                //!< The current Camera
113    Player* localPlayer;                //!< The Player, you fly through the level.
114    WorldEntity* sky;                   //!< The Environmental Heaven of orxonox @todo insert this to environment insted
115    Terrain* terrain;                   //!< The Terrain of the GameWorld.
116
117};
118
119#endif /* _GAME_WORLD_H */
Note: See TracBrowser for help on using the repository browser.