Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3226 in orxonox.OLD for orxonox/trunk/src/world.cc


Ignore:
Timestamp:
Dec 20, 2004, 12:27:51 AM (21 years ago)
Author:
bensch
Message:

orxonox/trunk: world fixed (still unstable)

File:
1 edited

Legend:

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

    r3225 r3226  
    5252{
    5353  printf("World::~World() - deleting current world\n");
    54   CommandNode* cn = Orxonox::getInstance()->get_localinput();
     54  CommandNode* cn = Orxonox::getInstance()->getLocalInput();
    5555  cn->unbind(this->localPlayer);
    5656  cn->reset();
     
    7575{
    7676  this->bPause = false;
    77   CommandNode* cn = Orxonox::getInstance()->get_localinput();
     77  CommandNode* cn = Orxonox::getInstance()->getLocalInput();
    7878  cn->addToWorld(this);
    7979  cn->enable(true);
     
    148148            // bind input
    149149            Orxonox *orx = Orxonox::getInstance();
    150             orx->get_localinput()->bind (myPlayer);
     150            orx->getLocalInput()->bind (myPlayer);
    151151           
    152152            // bind camera
     
    188188            // bind input
    189189            Orxonox *orx = Orxonox::getInstance();
    190             orx->get_localinput()->bind (myPlayer);
     190            orx->getLocalInput()->bind (myPlayer);
    191191           
    192192            // bind camera
     
    601601      synchronize();
    602602      // Process input
    603       handle_input();
     603      handleInput();
    604604      if( this->bQuitCurrentGame || this->bQuitOrxonox)
    605605        {
Note: See TracChangeset for help on using the changeset viewer.