Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Dec 17, 2005, 6:08:28 PM (18 years ago)
Author:
bensch
Message:

trunk: more world cleanup

File:
1 edited

Legend:

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

    r6150 r6151  
    2828#include "camera.h"
    2929#include "environment.h"
     30#include "terrain.h"
    3031
    3132#include "test_entity.h"
     
    405406ErrorMessage World::start()
    406407{
    407   this->bQuitOrxonox = false;
    408   this->bQuitCurrentGame = false;
     408  this->bQuitWorld = false;
    409409  this->mainLoop();
    410410}
     
    418418{
    419419  PRINTF(3)("World::stop() - got stop signal\n");
    420   this->bQuitCurrentGame = true;
     420  this->bQuitWorld= true;
    421421}
    422422
     
    669669  PRINTF(3)("World::mainLoop() - Entering main loop\n");
    670670
    671   while( !this->bQuitOrxonox && !this->bQuitCurrentGame) /* @todo implement pause */
     671  while(!this->bQuitWorld) /* @todo implement pause */
    672672  {
    673673    ++this->cycle;
     
    676676      // Process input
    677677    this->handleInput ();
    678     if( this->bQuitCurrentGame || this->bQuitOrxonox)
     678    if( this->bQuitWorld)
    679679      break;
    680680      // Process time
Note: See TracChangeset for help on using the changeset viewer.