Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 10, 2006, 1:08:50 PM (18 years ago)
Author:
nicolasc
Message:

equalized energy usage of all blasters
solved the fire echo problem, by implementing the releaseFire()
other spaceships need update

Location:
branches/playability/src/world_entities/weapons
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/playability/src/world_entities/weapons/medium_blaster.cc

    r9998 r10036  
    5151 
    5252
    53   this->setStateDuration(WS_SHOOTING, 0.1);   // 10 Schuss pro Sekunde
     53  this->setStateDuration(WS_SHOOTING, 0.2);   // 5 Schuss pro Sekunde
    5454
    5555  this->setStateDuration(WS_RELOADING, 0);
  • branches/playability/src/world_entities/weapons/weapon.cc

    r10030 r10036  
    352352  if (likely(this->isActive()))
    353353  {
    354     if (this->requestedAction != WA_NONE)
    355       return;
     354    //if (this->requestedAction != WA_NONE)
     355    //  return;
    356356    PRINTF(5)("next action will be %s in %f seconds\n", actionToChar(action), this->stateDuration);
    357357    this->requestedAction = action;
  • branches/playability/src/world_entities/weapons/weapon_manager.cc

    r10023 r10036  
    116116
    117117  this->hideCrosshair();
     118
     119  this->bFire = false;
    118120}
    119121
     
    441443}
    442444
     445/**
     446 * triggers fire of all weapons in the current weaponconfig
     447 */
     448void WeaponManager::releaseFire()
     449{
     450  Weapon* firingWeapon;
     451  for(int i = 0; i < this->slotCount; i++)
     452  {
     453    firingWeapon = this->currentSlotConfig[i].currentWeapon;
     454    if( firingWeapon != NULL) firingWeapon->requestAction(WA_NONE);
     455  }
     456
     457  /*
     458  this->crosshair->setRotationSpeed(500);
     459  this->crossHairSizeAnim->replay();
     460  */
     461}
    443462
    444463/**
     
    449468{
    450469  Weapon* tickWeapon;
     470
    451471
    452472  for(int i = 0; i < this->slotCount; i++)
  • branches/playability/src/world_entities/weapons/weapon_manager.h

    r10004 r10036  
    103103    //! @TODO: implement this function (maybe also in Weapon itself)
    104104    void releaseFire();
     105    //inline void setFire() { this->bFire = true; };
    105106
    106107    void tick(float dt);
     
    131132
    132133    std::vector<CountPointer<AmmoContainer> > ammo;                   //!< Containers
     134
     135    bool                    bFire;
    133136};
    134137
Note: See TracChangeset for help on using the changeset viewer.