Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6255 in orxonox.OLD for branches/spaceshipcontrol/src/world_entities


Ignore:
Timestamp:
Dec 21, 2005, 5:31:17 PM (19 years ago)
Author:
snellen
Message:

guiding_misslie.cc updated, targeting_turret added

Location:
branches/spaceshipcontrol/src/world_entities
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • branches/spaceshipcontrol/src/world_entities/creatures/md2_creature.cc

    r6222 r6255  
    303303  //orient the MD2Creature in direction of the mouse
    304304  this->setAbsDir(mouseDirX);
    305   this->cameraConnNode.setAbsDirSoft(mouseDirX*mouseDirY, 10);
     305  this->cameraConnNode.setRelDir(mouseDirY);
    306306
    307307  this->getWeaponManager()->tick(time);
  • branches/spaceshipcontrol/src/world_entities/space_ships/space_ship.cc

    r6234 r6255  
    286286
    287287  //orient the spaceship in direction of the mouse
    288    rotQuat = Quaternion::quatSlerp( this->getAbsDir(), mouseDir, fabsf(time)*3.0);
     288   rotQuat = Quaternion::quatSlerp( this->getAbsDir(), mouseDir, 1);
    289289   if (this->getAbsDir().distance(rotQuat) > 0.00000000000001)
    290290    this->setAbsDir( rotQuat);
     
    466466    //if (this->getWeaponManager()->hasFreeSlot(3))
    467467    {
    468       turret = new AimingTurret();
     468      turret = dynamic_cast<Weapon*>(Factory::fabricate(CL_TARGETING_TURRET));
     469      if (turret != NULL)
    469470      this->getWeaponManager()->addWeapon(turret, 3);
    470471
  • branches/spaceshipcontrol/src/world_entities/weapons/aiming_turret.cc

    r6074 r6255  
    9090
    9191  this->setCapability(WTYPE_ALLDIRS | WTYPE_TURRET);
    92   this->setProjectileType(CL_GUIDED_MISSILE);
     92  this->setProjectileType(CL_ROCKET);
    9393
    9494
     
    142142            /*target->getAbsCoor() - this->getAbsCoor()*/)*.5);//this->getVelocity());
    143143
    144   pj->setTarget(this->target->getParent());
    145144  pj->setParent(PNode::getNullParent());
    146145  pj->setAbsCoor(this->getEmissionPoint());
  • branches/spaceshipcontrol/src/world_entities/weapons/guided_missile.cc

    r6234 r6255  
    4444  this->energyMax = 10;
    4545  this->lifeSpan = 10.0;
    46   this->agility = 4;
     46  this->agility = 500;
    4747  this->maxVelocity = 75;
    4848
     
    156156     correctionVector = (( ( diffVector *  (speed * speed/( velocity.dot(diffVector ) ) )) - velocity).getNormalized()) * agility;
    157157
    158       if(velocity.dot(diffVector) > 0)
     158      if( (diffVector *  (speed * speed/( velocity.dot(diffVector ) ) ) -velocity).len() < agility )
     159       velocity = ((diffVector *  (speed * speed/( velocity.dot(diffVector ) ) )).getNormalized())*agility;
     160      else if(velocity.dot(diffVector) > 0)
    159161        velocity += correctionVector;
    160162      else if (velocity.dot(diffVector) < 0)
Note: See TracChangeset for help on using the changeset viewer.