Changeset 4122 in orxonox.OLD for orxonox/branches/heightMap/src/story_entities/world.h
- Timestamp:
- May 9, 2005, 11:29:19 AM (20 years ago)
- Location:
- orxonox/branches/heightMap
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/heightMap
- Property svn:externals
-
old new 1 data http://svn.orxonox.ethz.ch/data 1
-
- Property svn:externals
-
orxonox/branches/heightMap/src/story_entities/world.h
r3851 r4122 11 11 #include "story_entity.h" 12 12 #include "p_node.h" 13 13 #include "xmlparser/tinyxml.h" 14 14 15 15 class World; … … 19 19 class PNode; 20 20 class GLMenuImageScreen; 21 class Skysphere;22 class SkyBox;23 21 class LightManager; 24 22 class Terrain; … … 57 55 World (char* name); 58 56 World (int worldID); 57 World (TiXmlElement* root); 59 58 virtual ~World (); 60 59 … … 70 69 virtual ErrorMessage resume (); 71 70 virtual ErrorMessage destroy (); 71 72 void loadDebugWorld(int worldID); 72 73 73 74 virtual void displayLoadScreen(); … … 85 86 int parentingMode); 86 87 88 const char* getPath(); 89 void setPath( const char* name); 87 90 88 91 private: 89 void init(char* name, int worldID);92 void constuctorInit(char* name, int worldID); 90 93 91 94 Uint32 lastFrame; //!< last time of frame … … 100 103 char* worldName; //!< The name of this World 101 104 int debugWorldNr; //!< The Debug Nr. needed, if something goes wrong 105 char* path; //!< The file from which this world is loaded 102 106 103 107 PNode* nullParent; //!< The zero-point, that everything has as its parent. 104 108 TrackManager* trackManager; //!< The reference of the TrackManager that handles the course through the Level. 105 109 Camera* localCamera; //!< The current Camera 106 Skysphere* skySphere; //!< The Environmental Heaven of orxonox \todo insert this to environment insted 107 SkyBox* skyBox; 110 WorldEntity* sky; //!< The Environmental Heaven of orxonox \todo insert this to environment insted 108 111 LightManager* lightMan; //!< The Lights of the Level 109 112 Terrain* terrain; //!< The Terrain of the World.
Note: See TracChangeset
for help on using the changeset viewer.