| [2072] | 1 | /* |
|---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
|---|
| 3 | * > www.orxonox.net < |
|---|
| 4 | * |
|---|
| 5 | * |
|---|
| 6 | * License notice: |
|---|
| 7 | * |
|---|
| 8 | * This program is free software; you can redistribute it and/or |
|---|
| 9 | * modify it under the terms of the GNU General Public License |
|---|
| 10 | * as published by the Free Software Foundation; either version 2 |
|---|
| 11 | * of the License, or (at your option) any later version. |
|---|
| 12 | * |
|---|
| 13 | * This program is distributed in the hope that it will be useful, |
|---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 16 | * GNU General Public License for more details. |
|---|
| 17 | * |
|---|
| 18 | * You should have received a copy of the GNU General Public License |
|---|
| 19 | * along with this program; if not, write to the Free Software |
|---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|---|
| 21 | * |
|---|
| 22 | * Author: |
|---|
| 23 | * Fabian 'x3n' Landau |
|---|
| 24 | * Co-authors: |
|---|
| 25 | * ... |
|---|
| 26 | * |
|---|
| 27 | */ |
|---|
| 28 | |
|---|
| 29 | #ifndef _Pawn_H__ |
|---|
| 30 | #define _Pawn_H__ |
|---|
| 31 | |
|---|
| 32 | #include "OrxonoxPrereqs.h" |
|---|
| [3196] | 33 | |
|---|
| 34 | #include <string> |
|---|
| 35 | #include "interfaces/RadarViewable.h" |
|---|
| [5735] | 36 | #include "worldentities/ControllableEntity.h" |
|---|
| 37 | #include "pickup/PickupCollection.h" |
|---|
| [2072] | 38 | |
|---|
| 39 | namespace orxonox |
|---|
| 40 | { |
|---|
| [2662] | 41 | class _OrxonoxExport Pawn : public ControllableEntity, public RadarViewable |
|---|
| [2072] | 42 | { |
|---|
| [3053] | 43 | friend class WeaponSystem; |
|---|
| 44 | |
|---|
| [2072] | 45 | public: |
|---|
| 46 | Pawn(BaseObject* creator); |
|---|
| 47 | virtual ~Pawn(); |
|---|
| 48 | |
|---|
| 49 | virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); |
|---|
| 50 | virtual void tick(float dt); |
|---|
| 51 | void registerVariables(); |
|---|
| 52 | |
|---|
| 53 | inline bool isAlive() const |
|---|
| 54 | { return this->bAlive_; } |
|---|
| 55 | |
|---|
| 56 | virtual void setHealth(float health); |
|---|
| 57 | inline void addHealth(float health) |
|---|
| 58 | { this->setHealth(this->health_ + health); } |
|---|
| 59 | inline void removeHealth(float health) |
|---|
| 60 | { this->setHealth(this->health_ - health); } |
|---|
| [2662] | 61 | inline float getHealth() const |
|---|
| [2072] | 62 | { return this->health_; } |
|---|
| 63 | |
|---|
| 64 | inline void setMaxHealth(float maxhealth) |
|---|
| 65 | { this->maxHealth_ = maxhealth; this->setHealth(this->health_); } |
|---|
| 66 | inline float getMaxHealth() const |
|---|
| 67 | { return this->maxHealth_; } |
|---|
| 68 | |
|---|
| 69 | inline void setInitialHealth(float initialhealth) |
|---|
| 70 | { this->initialHealth_ = initialhealth; this->setHealth(initialhealth); } |
|---|
| 71 | inline float getInitialHealth() const |
|---|
| 72 | { return this->initialHealth_; } |
|---|
| 73 | |
|---|
| 74 | inline ControllableEntity* getLastHitOriginator() const |
|---|
| 75 | { return this->lastHitOriginator_; } |
|---|
| 76 | |
|---|
| 77 | virtual void damage(float damage, Pawn* originator = 0); |
|---|
| 78 | virtual void hit(Pawn* originator, const Vector3& force, float damage); |
|---|
| 79 | virtual void kill(); |
|---|
| 80 | |
|---|
| [3053] | 81 | virtual void fire(unsigned int firemode); |
|---|
| 82 | virtual void reload(); |
|---|
| [3084] | 83 | virtual void doFire(uint8_t firemode); |
|---|
| [2072] | 84 | virtual void postSpawn(); |
|---|
| 85 | |
|---|
| [3053] | 86 | void addWeaponSlot(WeaponSlot * wSlot); |
|---|
| [2662] | 87 | WeaponSlot * getWeaponSlot(unsigned int index) const; |
|---|
| [3053] | 88 | void addWeaponSet(WeaponSet * wSet); |
|---|
| [2662] | 89 | WeaponSet * getWeaponSet(unsigned int index) const; |
|---|
| [3053] | 90 | void addWeaponPack(WeaponPack * wPack); |
|---|
| 91 | WeaponPack * getWeaponPack(unsigned int index) const; |
|---|
| [2662] | 92 | |
|---|
| 93 | inline const WorldEntity* getWorldEntity() const |
|---|
| 94 | { return const_cast<Pawn*>(this); } |
|---|
| 95 | |
|---|
| 96 | inline void setSpawnParticleSource(const std::string& source) |
|---|
| 97 | { this->spawnparticlesource_ = source; } |
|---|
| 98 | inline const std::string& getSpawnParticleSource() const |
|---|
| 99 | { return this->spawnparticlesource_; } |
|---|
| 100 | |
|---|
| 101 | inline void setSpawnParticleDuration(float duration) |
|---|
| 102 | { this->spawnparticleduration_ = duration; } |
|---|
| 103 | inline float getSpawnParticleDuration() const |
|---|
| 104 | { return this->spawnparticleduration_; } |
|---|
| 105 | |
|---|
| 106 | inline void setExplosionChunks(unsigned int chunks) |
|---|
| 107 | { this->numexplosionchunks_ = chunks; } |
|---|
| 108 | inline unsigned int getExplosionChunks() const |
|---|
| 109 | { return this->numexplosionchunks_; } |
|---|
| 110 | |
|---|
| 111 | virtual void dropItems(); |
|---|
| [3073] | 112 | inline PickupCollection& getPickups() |
|---|
| 113 | { return this->pickups_; } |
|---|
| 114 | virtual void useItem() |
|---|
| 115 | { this->pickups_.useItem(); } |
|---|
| [5735] | 116 | |
|---|
| [3089] | 117 | virtual void startLocalHumanControl(); |
|---|
| [2662] | 118 | |
|---|
| [2072] | 119 | protected: |
|---|
| [3038] | 120 | virtual void setPlayer(PlayerInfo* player); |
|---|
| 121 | virtual void removePlayer(); |
|---|
| 122 | |
|---|
| [2072] | 123 | virtual void death(); |
|---|
| [3087] | 124 | virtual void goWithStyle(); |
|---|
| [2662] | 125 | virtual void deatheffect(); |
|---|
| 126 | virtual void spawneffect(); |
|---|
| [2072] | 127 | |
|---|
| 128 | bool bAlive_; |
|---|
| 129 | |
|---|
| [3073] | 130 | PickupCollection pickups_; |
|---|
| [2662] | 131 | |
|---|
| [2072] | 132 | float health_; |
|---|
| 133 | float maxHealth_; |
|---|
| 134 | float initialHealth_; |
|---|
| 135 | |
|---|
| 136 | Pawn* lastHitOriginator_; |
|---|
| [2098] | 137 | |
|---|
| 138 | WeaponSystem* weaponSystem_; |
|---|
| [3053] | 139 | bool bReload_; |
|---|
| [2662] | 140 | |
|---|
| 141 | std::string spawnparticlesource_; |
|---|
| 142 | float spawnparticleduration_; |
|---|
| 143 | unsigned int numexplosionchunks_; |
|---|
| [3053] | 144 | |
|---|
| 145 | private: |
|---|
| 146 | inline void setWeaponSystem(WeaponSystem* weaponsystem) |
|---|
| 147 | { this->weaponSystem_ = weaponsystem; } |
|---|
| [2072] | 148 | }; |
|---|
| 149 | } |
|---|
| 150 | |
|---|
| 151 | #endif /* _Pawn_H__ */ |
|---|