Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 14, 2016, 1:11:00 PM (8 years ago)
Author:
sagerj
Message:

added orxout() for every release lvl for debug purpose

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/sagerjFS16/src/orxonox/controllers/NewHumanController.cc

    r11153 r11164  
    5454    SetConsoleCommand("NewHumanController", "accelerate", &NewHumanController::accelerate).keybindMode(KeybindMode::OnPress);
    5555    SetConsoleCommand("NewHumanController", "decelerate", &NewHumanController::decelerate).keybindMode(KeybindMode::OnPress);
    56     SetConsoleCommand("NewHumanController", "release",    &NewHumanController::release    ).keybindMode(KeybindMode::OnRelease).addShortcut();
     56    //SetConsoleCommand("NewHumanController", "release",    &NewHumanController::release   ).keybindMode(KeybindMode::OnRelease).addShortcut();
    5757
    5858    RegisterUnloadableClass(NewHumanController);
     
    294294    }
    295295
     296    /*void NewHumanController::release(unsigned int firemode)
     297    {
     298        if (NewHumanController::localController_s)
     299            NewHumanController::localController_s->doRelease(firemode);
     300        orxout() << "Trigger " << firemode << endl;
     301    }
     302
     303    /void NewHumanController::doRelease(unsigned int firemode)
     304    {
     305        // this->firemode_ = -1; (outdated code from unfire)
     306        // hideArrows();
     307        if (!this->controllableEntity_)
     308            return;
     309
     310        this->firemode_ = firemode;
     311
     312        HumanController::doRelease(firemode); //call for formationflight
     313    }*/
     314
    296315    void NewHumanController::hit(Pawn* originator, btManifoldPoint& contactpoint, float damage)
    297316    {
     
    342361            }
    343362        }
    344     }
    345 
    346     void NewHumanController::release(unsigned int firemode)
    347     {
    348         if (NewHumanController::localController_s)
    349             NewHumanController::localController_s->doRelease();
    350         orxout() << "Trigger" << endl;
    351     }
    352 
    353     void NewHumanController::doRelease(unsigned int firemode)
    354     {
    355         // this->firemode_ = -1; (outdated code from unfire)
    356         // hideArrows();
    357         if (!this->controllableEntity_)
    358             return;
    359 
    360         this->firemode_ = firemode;
    361 
    362         HumanController::doRelease(firemode); //call for formationflight
    363363    }
    364364
Note: See TracChangeset for help on using the changeset viewer.