Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/story_entities/game_world.h @ 6498

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

trunk: merged the network branche into the trunk

File size: 3.1 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
10#include "story_entity.h"
11#include "game_world_data.h"
12
13class TiXmlElement;
14class Shell;
15class WorldEntity;
16class GameWorldData;
17
18
19//! The game world
20/**
21 *  this class initializes everything that should be displayed inside of the current level.
22 *  it is the main driving factor during gameplay.
23 */
24class GameWorld : public StoryEntity
25{
26
27  public:
28    GameWorld (const TiXmlElement* root = NULL);
29    virtual ~GameWorld ();
30
31    void loadParams(const TiXmlElement* root);
32
33    /* functions from story-entity */
34    virtual ErrorMessage init();
35    virtual ErrorMessage loadData();
36    virtual ErrorMessage unloadData();
37
38    virtual bool start();
39    virtual bool stop();
40    virtual bool pause();
41    virtual bool resume();
42    virtual void run();
43
44    /**  this returns the current game time @returns elapsed game time     */
45    inline double getGameTime() { return this->gameTime; }
46    /** sets the game speed @param speed speed of the Game */
47    inline void setSpeed(float speed) { this->speed = speed; };
48    /**  returns the track path of this world @returns the track path */
49    const char* getPath() { return this->path; }
50    void setPath( const char* name);
51
52    /** toggles the PNode visibility in the world (drawn as boxes) */
53    void togglePNodeVisibility() { this->showPNodes = !this->showPNodes; };
54    /** toggles the bounding volume (BV) visibility */
55    void toggleBVVisibility() { this->showBV = !this->showBV; };
56
57
58    inline void setSky(WorldEntity* sky) { this->dataTank->sky = sky; }
59
60
61  protected:
62    /* world - running functions */
63    virtual void synchronize();
64    virtual void handleInput();
65    virtual void tick(std::list<WorldEntity*> worldEntity, float dt);
66    virtual void tick();
67    virtual void update();
68    virtual void collide();
69    virtual void draw();
70    virtual void display();
71
72
73  private:
74    void displayLoadScreen();
75    void releaseLoadScreen();
76
77
78  protected:
79    GameWorldData*      dataTank;                     //!< reference to the GameWorld Data Tank
80    char*               path;                         //!< The file from which this world is loaded
81
82    bool                showPNodes;                   //!< if the PNodes should be visible.
83    bool                showBV;                       //!< if the Bounding Volumes should be visible.
84
85    /* world timing */
86    Uint32              lastFrame;                    //!< last time of frame
87    Uint32              cycle;                        //!< The cycle we are in (starts with 0 and rises with every frame)
88    Uint32              dt;                           //!< time needed to calculate this frame (in milliSeconds)
89    float               dtS;                          //!< The time needed for caluculations in seconds
90    float               speed;                        //!< how fast the game flows
91    double              gameTime;                     //!< this is where the game time is saved
92
93    /* external modules interfaces */
94    Shell*              shell;
95};
96
97#endif /* _GAME_WORLD_H */
Note: See TracBrowser for help on using the repository browser.