Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 18, 2009, 6:14:52 PM (15 years ago)
Author:
landauf
Message:

Added many new features in the Munition class:

  • there are now 3 modes: a) every weapon has it's own magazine b) all weapons use the same magazin c) no magazines, just a big munition pool
  • the Munition class handles the reloading of the magazine

Split the Weapon class into Weapon and WeaponMode. WeaponMode creates the fire of the Weapon. A weapon can own several WeaponModes (for example primary and secondary fire). But it's also possible to have a weapon with several muzzles which all fire at the same time (there's a WeaponMode for each muzzle).

Renamed LaserGun to LaserFire and Fusion to FusionFire. They inherit now from WeaponMode.

Changed the code in the Weapon class to use the new Munition functionality.

Added ReplenishingMunition, a subclass of Munition that replenishes itself (used for LaserGunMunition).

Added a reload command to reload magazines.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/weapons/src/orxonox/objects/weaponSystem/WeaponPack.h

    r2915 r2918  
    4848
    4949            void fire(unsigned int weaponmode);
     50            void reload();
    5051
    5152            void addWeapon(Weapon * weapon);
     
    6162            unsigned int getDesiredWeaponmode(unsigned int firemode) const;
    6263
    63             inline void setWeaponSystem(WeaponSystem *weaponSystem)
    64             {
    65                 this->weaponSystem_ = weaponSystem;
    66                 this->setWeaponSystemToAllWeapons();
    67                 this->attachNeededMunitionToAllWeapons();
    68             }
     64            inline void setWeaponSystem(WeaponSystem * weaponSystem)
     65                { this->weaponSystem_ = weaponSystem; this->notifyWeapons(); }
    6966            inline WeaponSystem * getWeaponSystem() const
    7067                { return this->weaponSystem_; }
    7168
    7269        private:
    73             void setWeaponSystemToAllWeapons();
    74             void attachNeededMunitionToAllWeapons();
     70            void notifyWeapons();
    7571
    7672            std::set<Weapon *> weapons_;
Note: See TracChangeset for help on using the changeset viewer.