Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7368 in orxonox.OLD for trunk/src/story_entities/game_world_data.h


Ignore:
Timestamp:
Apr 25, 2006, 11:37:59 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: some renamings, and GameWorldData now has lists for what EntityLists should be drawed/ticked/collided(not yet implemented).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/story_entities/game_world_data.h

    r7287 r7368  
    1010#include "data_tank.h"
    1111#include "error.h"
    12 
     12#include "object_manager.h"
    1313
    1414class Camera;
     
    1616class Terrain;
    1717class WorldEntity;
    18 class ObjectManager;
    1918
    2019class GLMenuImageScreen;
     
    3231class GameWorldData : public DataTank
    3332{
    34 
    3533  public:
    3634    GameWorldData();
     
    5553
    5654  public:
    57     GLMenuImageScreen*  glmis;                       //!< The Level-Loader Display
     55    GLMenuImageScreen*            glmis;          //!< The Level-Loader Display
    5856
    59     Camera*             localCamera;                 //!< The current camera
    60     Player*             localPlayer;                 //!< The player, you fly through the level.
    61     WorldEntity*        sky;                         //!< The environmental sky of orxonox
    62     Terrain*            terrain;                     //!< The terrain - ground
     57    Camera*                       localCamera;    //!< The current camera
     58    Player*                       localPlayer;    //!< The player, you fly through the level.
     59    WorldEntity*                  sky;            //!< The environmental sky of orxonox
     60    Terrain*                      terrain;        //!< The terrain - ground
    6361
    64     OggPlayer*          music;                       //!< Reference to the SoundEngine's music player (OggPlayer)
    65     ObjectManager*      objectManager;               //!< Reference to the objects manager
     62    OggPlayer*                    music;          //!< Reference to the SoundEngine's music player (OggPlayer)
     63    ObjectManager*                objectManager;  //!< Reference to the objects manager
    6664
    67     GameRules*          gameRule;                   //!< Reference to the game rules of this game
     65    GameRules*                    gameRule;       //!< Reference to the game rules of this game
     66
     67    std::list<OM_LIST>            tickLists;      //!< The Lists in the GameWorld that should be ticked.
     68    std::list<OM_LIST>            drawLists;      //!< The Lists in the GameWorld, that should be drawn.
    6869};
    6970
Note: See TracChangeset for help on using the changeset viewer.