Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 24, 2005, 5:24:39 PM (19 years ago)
Author:
bensch
Message:

orxonox/branches/guidedmissile: more balanced

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/guidedmissile/src/world_entities/weapons/aiming_turret.cc

    r5764 r5765  
    8484  animation2->setInfinity(ANIM_INF_CONSTANT);
    8585
    86   this->setStateDuration(WS_SHOOTING, .1);
    87   this->setStateDuration(WS_RELOADING, .1);
     86  this->setStateDuration(WS_SHOOTING, 1.0);
     87  this->setStateDuration(WS_RELOADING, 2.0);
    8888  this->setStateDuration(WS_ACTIVATING, .4);
    8989  this->setStateDuration(WS_DEACTIVATING, .4);
     
    127127  direction.normalize();
    128128
    129   if (likely (this->getParent() != NULL))
    130     quat = Quaternion(direction, this->getParent()->getAbsDir().apply(Vector(0,1,0))) * Quaternion ( -M_PI_2, Vector(0,1,0)) ;
    131   else
    132     quat = Quaternion(direction, Vector(0,1,0)) * Quaternion ( -M_PI_2, Vector(0,1,0)) ;
     129//   if (likely (this->getParent() != NULL))
     130//     quat = Quaternion(direction, this->getParent()->getAbsDir().apply(Vector(0,1,0))) * Quaternion ( -M_PI_2, Vector(0,1,0)) ;
     131//   else
     132//     quat = Quaternion(direction, Vector(0,1,0)) * Quaternion ( -M_PI_2, Vector(0,1,0)) ;
    133133
    134   this->setAbsDirSoft(quat, 5);
     134   quat = Quaternion(.5, Vector(0,0,1));
     135
     136  this->setRelDir(quat);
    135137
    136138  this->target->tick(dt);
     
    143145    return;
    144146
    145     pj->setVelocity(/*this->getVelocity()+*/(this->getAbsDir().apply(Vector(1,0,0))*250.0 + VECTOR_RAND(13)
     147    pj->setVelocity(this->getVelocity()+(this->getAbsDir().apply(Vector(1,0,0))*50.0 + VECTOR_RAND(13)
    146148            /*target->getAbsCoor() - this->getAbsCoor()*/)*.5);//this->getVelocity());
    147149    pj->setTarget(this->target->getParent());
Note: See TracChangeset for help on using the changeset viewer.