Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4977 in orxonox.OLD for orxonox/trunk/src/story_entities/world.cc


Ignore:
Timestamp:
Aug 10, 2005, 11:26:59 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: removed the WorldInterface, as its job is already been taken by state.h
also removed some totally obsolete but very cool functions of NPC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/story_entities/world.cc

    r4976 r4977  
    2020#include "world.h"
    2121
    22 #include "orxonox.h"
    2322
    2423#include "state.h"
     
    7574using namespace std;
    7675
    77 WorldInterface* WorldInterface::singletonRef = 0;
    78 
    79 
    80 /**
    81  *  private constructor because of singleton
    82 */
    83 WorldInterface::WorldInterface()
    84 {
    85   this->worldIsInitialized = false;
    86   this->worldReference = NULL;
    87 }
    88 
    89 /**
    90  *  public deconstructor
    91 */
    92 WorldInterface::~WorldInterface()
    93 {
    94   this->singletonRef = NULL;
    95   this->worldIsInitialized = false;
    96   this->worldReference = NULL;
    97 }
    98 
    99 /**
    100  *  gets the singleton instance
    101  * @returns singleton instance
    102 */
    103 WorldInterface* WorldInterface::getInstance()
    104 {
    105   if( singletonRef == NULL)
    106     singletonRef = new WorldInterface();
    107   return singletonRef;
    108 }
    109 
    110 
    111 /**
    112  *  initializes the interface
    113  * @param reference to the world
    114 
    115    if the worldinterface is not initilizes, there wont be any
    116    useable interface
    117 */
    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 world
    131  * @return entity list
    132 */
    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 }
    14076
    14177CREATE_FACTORY(World);
     
    183119  ParticleEngine::getInstance()->debug();
    184120
    185   delete WorldInterface::getInstance();
    186121  delete this->entities;
    187122  State::setWorldEntityList(NULL);
     
    266201
    267202  /* init the world interface */
    268   WorldInterface* wi = WorldInterface::getInstance();
    269   wi->init(this);
    270203
    271204  LightManager::getInstance();
     
    677610        EventHandler::getInstance()->subscribe(this->pilotNode, ES_GAME, EV_MOUSE_MOTION);
    678611
    679         // bind input
    680         Orxonox *orx = Orxonox::getInstance ();
    681         //orx->getLocalInput()->bind (this->pilotNode);
    682 
    683612        /*
    684613        PNode* tn = TrackManager::getInstance()->getTrackNode();
Note: See TracChangeset for help on using the changeset viewer.