Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 26, 2006, 12:31:01 AM (17 years ago)
Author:
marcscha
Message:

Inline of damage get on projectile, part implementation of primary - secondary weapon and handling variables for the weapon manager

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/playability/src/world_entities/space_ships/space_ship.cc

    r9957 r9958  
    177177  //registerEvent(SDLK_e);
    178178  registerEvent(KeyMapper::PEV_FIRE1);
     179  registerEvent(KeyMapper::PEV_FIRE2);                  // Added for secondary weapon support
    179180  registerEvent(KeyMapper::PEV_NEXT_WEAPON);
    180181  registerEvent(KeyMapper::PEV_PREVIOUS_WEAPON);
     
    345346  }
    346347
     348  // Shield Regeneration and other regular calculations on the ship
     349  this->regen(time);
     350
    347351
    348352  //   if( this != State::getPlayer()->getControllable())
     
    503507  else if( event.type == KeyMapper::PEV_BACKWARD)
    504508    this->bDown = event.bPressed; //this->shiftCoor(0,-.1,0);
     509  else if( event.type == KeyMapper::PEV_FIRE1)
     510    firedWeapon = curWeaponPrimary;
     511  else if( event.type == KeyMapper::PEV_FIRE2)
     512    firedWeapon = curWeaponSecondary;
    505513  else if( event.type == EV_MOUSE_MOTION)
    506514  {
Note: See TracChangeset for help on using the changeset viewer.