Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/weapons/weapon_manager.h @ 6561

Last change on this file since 6561 was 6561, checked in by bensch, 18 years ago

trunk: WeaponManager update

File size: 4.9 KB
Line 
1/*!
2 * @file weapon_manager.h
3 * every big WorldEntity has the ability to carry many different Weapons.
4 * for this to be easy there is the WeaponManager, that handels these weapons,
5 * and changes between them.
6 *
7 *
8 *
9 * @TODO 1. WeaponManager should also handle a List of availiableWeapons.
10 */
11
12#ifndef _WEAPON_MANAGER_H
13#define _WEAPON_MANAGER_H
14
15#include "base_object.h"
16
17#include "crosshair.h"
18#include "weapon.h"
19
20// FORWARD DECLARATION
21template <class T> class tAnimation;
22
23#define    WM_MAX_SLOTS            10             //!< How many slots the WeaponManager has at its max
24#define    WM_MAX_CONFIGS          4              //!< The maximum number of predefined Configurations
25#define    WM_MAX_LOADED_WEAPONS   20             //!< The
26
27//! This is a special class, that can handle many different Weapons of a ship/man/whatever.
28/**
29 * this class is designed to interactively changeing multiple weapons (or just one),
30 * and to allow the Weapon itself to enable/disable itself.
31 *
32 * How to configure
33 * 1. set the default values.
34 * 2. define weapons. connect them to the WeaponManager's configurations (have a look at "player.cc", to see how it works)
35 * 3. go on and run :)....
36 */
37class WeaponManager : public BaseObject {
38
39  //! an enumerator defining a Slot, where a Weapon can be stored inside.
40  typedef struct
41  {
42    PNode         position;               //!< the relative Position to the position of the carrying entity. (const PNode* parent; of WeaponManager)
43    long          capability;             //!< the capabilities of the Slot @see WM_SlotCapability.
44
45    Weapon*       currentWeapon;          //!< The current weapon this slot is carrying.
46    Weapon*       nextWeapon;             //!< either NULL or the next weapon that will be set (require currentWeapon to deactivate)
47  } WM_Slot;
48
49  public:
50    WeaponManager(WorldEntity* parent);
51    WeaponManager(const TiXmlElement* root);
52    ~WeaponManager();
53
54    void init();
55    virtual void loadParams(const TiXmlElement* root);
56    void loadWeapons(const TiXmlElement* root);
57
58    void setSlotCount(unsigned int slotCount);
59    unsigned int getSlotCount() const { return this->slotCount; };
60    // setting up the WeaponManager with the following functions
61    void setSlotPosition(int slot, const Vector& position);
62    void setSlotDirection(int slot, const Quaternion& rotation);
63    /** @param slot the slot to get the relative position from @returns the relative position of the Carrier to the Slot */
64    const Vector& getSlotPosition(int slot) const { return this->currentSlotConfig[slot].position.getRelCoor(); };
65    void setSlotCapability(int slot, long slotCapability);
66    /** @param slot the slot to get the capabilities from @returns the capabilies */
67    long getSlotCapability(int slot) const { return this->currentSlotConfig[slot].capability; };
68
69    void setParent(WorldEntity* parent);
70    /** @returns the Parent (carrier) of this WeaponManager */
71    PNode* getParent() const { return this->parent; };
72
73    bool addWeapon(Weapon* weapon);
74    bool addWeapon(Weapon* weapon, int configID = -1, int slotID = -1);
75    void removeWeapon(Weapon* weapon, int configID = -1);
76    Weapon* getWeapon(int slotID) const { return (slotID >= 0 && slotID < this->slotCount)? this->currentSlotConfig[slotID].nextWeapon: NULL; };
77
78    // FIXME ::
79//    bool hasFreeSlot(int configID, long capability = WTYPE_ALL) { return ( getNextFreeSlot(configID, capability ) != -1)? true : false; };
80
81    void nextWeaponConfig();
82    void previousWeaponConfig();
83    void changeWeaponConfig(int weaponConfig);
84
85    /** @returns a fixed target namely the Crosshair's 3D position */
86    inline PNode* getFixedTarget() const { return this->crosshair; };
87
88    void fire();
89    //! @TODO: implement this function (maybe also in Weapon itself)
90    void releaseFire();
91
92    void tick(float dt);
93    void draw() const;
94
95    void debug() const;
96
97 // private:
98    int getNextFreeSlot(int configID, long capability = WTYPE_ALL);
99
100  private:
101    WorldEntity*            parent;                                   //!< The parent, this WeaponManager is connected to.
102
103    int                     slotCount;                                //!< number of weapon slots the ship has.
104    int                     currentConfigID;                          //!< the currently selected config.
105    Weapon*                 configs[WM_MAX_CONFIGS][WM_MAX_SLOTS];    //!< An array of predefined configurations and assigned weapon.
106    WM_Slot                 currentSlotConfig[WM_MAX_SLOTS];          //!< The currentConfigureation.
107
108    Weapon*                 availiableWeapons[WM_MAX_LOADED_WEAPONS]; //!< The availiable Weapons of this WeaponManager
109
110    bool                    weaponChange;
111
112    Crosshair*              crosshair;                                //!< an aim.
113    tAnimation<Crosshair>*  crossHairSizeAnim;                        //!< An animation for the crosshair (scaling)
114};
115
116
117#endif /* _WEAPON_MANAGER_H */
Note: See TracBrowser for help on using the repository browser.