Changeset 4977 in orxonox.OLD for orxonox/trunk/src/story_entities/world.cc
- Timestamp:
- Aug 10, 2005, 11:26:59 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/story_entities/world.cc
r4976 r4977 20 20 #include "world.h" 21 21 22 #include "orxonox.h"23 22 24 23 #include "state.h" … … 75 74 using namespace std; 76 75 77 WorldInterface* WorldInterface::singletonRef = 0;78 79 80 /**81 * private constructor because of singleton82 */83 WorldInterface::WorldInterface()84 {85 this->worldIsInitialized = false;86 this->worldReference = NULL;87 }88 89 /**90 * public deconstructor91 */92 WorldInterface::~WorldInterface()93 {94 this->singletonRef = NULL;95 this->worldIsInitialized = false;96 this->worldReference = NULL;97 }98 99 /**100 * gets the singleton instance101 * @returns singleton instance102 */103 WorldInterface* WorldInterface::getInstance()104 {105 if( singletonRef == NULL)106 singletonRef = new WorldInterface();107 return singletonRef;108 }109 110 111 /**112 * initializes the interface113 * @param reference to the world114 115 if the worldinterface is not initilizes, there wont be any116 useable interface117 */118 void WorldInterface::init(World* world)119 {120 this->worldReference = world;121 if( world != NULL)122 {123 this->worldIsInitialized = true;124 PRINTF(3)("WorldInterface up and running\n");125 }126 }127 128 129 /**130 * gets the entity list from the world131 * @return entity list132 */133 tList<WorldEntity>* WorldInterface::getEntityList()134 {135 if( this->worldIsInitialized)136 return this->worldReference->getEntities();137 PRINT(1)("tried to use the WorldInterface before it has been initizlized! this can result in SEGFAULTs!\n");138 return NULL;139 }140 76 141 77 CREATE_FACTORY(World); … … 183 119 ParticleEngine::getInstance()->debug(); 184 120 185 delete WorldInterface::getInstance();186 121 delete this->entities; 187 122 State::setWorldEntityList(NULL); … … 266 201 267 202 /* init the world interface */ 268 WorldInterface* wi = WorldInterface::getInstance();269 wi->init(this);270 203 271 204 LightManager::getInstance(); … … 677 610 EventHandler::getInstance()->subscribe(this->pilotNode, ES_GAME, EV_MOUSE_MOTION); 678 611 679 // bind input680 Orxonox *orx = Orxonox::getInstance ();681 //orx->getLocalInput()->bind (this->pilotNode);682 683 612 /* 684 613 PNode* tn = TrackManager::getInstance()->getTrackNode();
Note: See TracChangeset
for help on using the changeset viewer.