Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 6845 was 6845, checked in by bensch, 18 years ago

trunk: Element2D's should be loadable over the <Elements> </Elements> tab

File size: 3.2 KB
RevLine 
[6352]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
[6402]9
[6352]10#include "story_entity.h"
[6498]11#include "game_world_data.h"
[6352]12
13class TiXmlElement;
14class Shell;
[6402]15class WorldEntity;
[6387]16class GameWorldData;
[6352]17
[6402]18
[6352]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
[6512]31    virtual void loadParams(const TiXmlElement* root);
[6352]32
[6370]33    /* functions from story-entity */
34    virtual ErrorMessage init();
[6372]35    virtual ErrorMessage loadData();
[6387]36    virtual ErrorMessage unloadData();
[6352]37
[6387]38    virtual bool start();
39    virtual bool stop();
40    virtual bool pause();
41    virtual bool resume();
42    virtual void run();
[6352]43
[6366]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 */
[6352]47    inline void setSpeed(float speed) { this->speed = speed; };
[6366]48    /**  returns the track path of this world @returns the track path */
[6386]49    const char* getPath() { return this->path; }
[6352]50    void setPath( const char* name);
51
[6366]52    /** toggles the PNode visibility in the world (drawn as boxes) */
[6352]53    void togglePNodeVisibility() { this->showPNodes = !this->showPNodes; };
[6366]54    /** toggles the bounding volume (BV) visibility */
[6352]55    void toggleBVVisibility() { this->showBV = !this->showBV; };
56
57
[6835]58
[6839]59
[6498]60    inline void setSky(WorldEntity* sky) { this->dataTank->sky = sky; }
61
62
[6352]63  protected:
64    /* world - running functions */
[6386]65    virtual void synchronize();
66    virtual void handleInput();
67    virtual void tick(std::list<WorldEntity*> worldEntity, float dt);
68    virtual void tick();
69    virtual void update();
70    virtual void collide();
71    virtual void draw();
72    virtual void display();
[6352]73
74
[6386]75  private:
76    void displayLoadScreen();
77    void releaseLoadScreen();
78
79
[6352]80  protected:
[6407]81    GameWorldData*      dataTank;                     //!< reference to the GameWorld Data Tank
[6845]82    TiXmlElement*       dataXML;                      //!< The XML-Element this World has been loaded with.
[6387]83    char*               path;                         //!< The file from which this world is loaded
[6352]84
[6387]85    bool                showPNodes;                   //!< if the PNodes should be visible.
86    bool                showBV;                       //!< if the Bounding Volumes should be visible.
[6352]87
88    /* world timing */
[6402]89    Uint32              lastFrame;                    //!< last time of frame
90    Uint32              cycle;                        //!< The cycle we are in (starts with 0 and rises with every frame)
91    Uint32              dt;                           //!< time needed to calculate this frame (in milliSeconds)
92    float               dtS;                          //!< The time needed for caluculations in seconds
93    float               speed;                        //!< how fast the game flows
94    double              gameTime;                     //!< this is where the game time is saved
[6352]95
96    /* external modules interfaces */
[6387]97    Shell*              shell;
98};
[6352]99
100#endif /* _GAME_WORLD_H */
Note: See TracBrowser for help on using the repository browser.