Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentation2012merge/src/orxonox/worldentities/pawns/Pawn.h @ 9269

Last change on this file since 9269 was 9269, checked in by landauf, 12 years ago

merged presentation2012 to presentation2012merge

  • Property svn:eol-style set to native
File size: 8.9 KB
Line 
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"
33
34#include <string>
35#include "interfaces/PickupCarrier.h"
36#include "interfaces/RadarViewable.h"
37#include "worldentities/ControllableEntity.h"
38
39namespace orxonox // tolua_export
40{ // tolua_export
41    class _OrxonoxExport Pawn // tolua_export
42        : public ControllableEntity, public RadarViewable, public PickupCarrier
43    { // tolua_export
44        friend class WeaponSystem;
45
46        public:
47            Pawn(BaseObject* creator);
48            virtual ~Pawn();
49
50            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
51            virtual void tick(float dt);
52
53            inline bool isAlive() const
54                { return this->bAlive_; }
55
56
57            virtual void setHealth(float health);
58            inline void addHealth(float health)
59                { this->setHealth(this->health_ + health); }
60            inline void removeHealth(float health)
61                { this->setHealth(this->health_ - health); }
62            inline float getHealth() const
63                { return this->health_; }
64
65            inline void setMaxHealth(float maxhealth)
66                { this->maxHealth_ = maxhealth; this->setHealth(this->health_); }
67            inline float getMaxHealth() const
68                { return this->maxHealth_; }
69
70            inline void setInitialHealth(float initialhealth)
71                { this->initialHealth_ = initialhealth; this->setHealth(initialhealth); }
72            inline float getInitialHealth() const
73                { return this->initialHealth_; }
74
75            virtual void setShieldHealth(float shieldHealth);
76
77            inline float getShieldHealth()
78                { return this->shieldHealth_; }
79
80            inline void addShieldHealth(float amount)
81                { this->setShieldHealth(this->shieldHealth_ + amount); }
82
83            inline bool hasShield()
84                { return (this->getShieldHealth() > 0); }
85
86            virtual void setMaxShieldHealth(float maxshieldhealth);
87            inline float getMaxShieldHealth() const
88                { return this->maxShieldHealth_; }
89
90            inline void setInitialShieldHealth(float initialshieldhealth)
91                { this->initialShieldHealth_ = initialshieldhealth; this->setShieldHealth(initialshieldhealth); }
92            inline float getInitialShieldHealth() const
93                { return this->initialShieldHealth_; }
94
95            inline void restoreInitialShieldHealth()
96                { this->setShieldHealth(this->initialShieldHealth_); }
97            inline void restoreMaxShieldHealth()
98                { this->setShieldHealth(this->maxShieldHealth_); }
99
100            inline void setShieldAbsorption(float shieldAbsorption)
101                { this->shieldAbsorption_ = shieldAbsorption; }
102            inline float getShieldAbsorption()
103                { return this->shieldAbsorption_; }
104
105            // TODO: Rename to shieldRechargeRate
106            virtual void setReloadRate(float reloadrate);
107            inline float getReloadRate() const
108                { return this->reloadRate_; }
109
110            virtual void setReloadWaitTime(float reloadwaittime);
111            inline float getReloadWaitTime() const
112                { return this->reloadWaitTime_; }
113
114            inline void resetReloadCountdown()
115                { this->reloadWaitCountdown_ = 0; }
116
117            inline void startReloadCountdown()
118                { this->reloadWaitCountdown_ = this->getReloadWaitTime(); } // TODO: Implement in Projectile.cc
119
120            virtual void decreaseReloadCountdownTime(float dt);
121
122            inline ControllableEntity* getLastHitOriginator() const
123                { return this->lastHitOriginator_; }
124
125            //virtual void hit(Pawn* originator, const Vector3& force, float damage);
126            //virtual void hit(Pawn* originator, btManifoldPoint& contactpoint, float damage);
127            virtual void hit(Pawn* originator, const Vector3& force, float damage, float healthdamage = 0.0f, float shielddamage = 0.0f);
128            virtual void hit(Pawn* originator, btManifoldPoint& contactpoint, float damage, float healthdamage = 0.0f, float shielddamage = 0.0f);
129
130            virtual void kill();
131
132            virtual void fired(unsigned int firemode);
133            virtual void reload();
134            virtual void postSpawn();
135
136            void addWeaponSlot(WeaponSlot * wSlot);
137            WeaponSlot * getWeaponSlot(unsigned int index) const;
138            void addWeaponSet(WeaponSet * wSet);
139            WeaponSet * getWeaponSet(unsigned int index) const;
140            void addWeaponPack(WeaponPack * wPack);
141            void addWeaponPackXML(WeaponPack * wPack);
142            WeaponPack * getWeaponPack(unsigned int index) const;
143
144            virtual void addedWeaponPack(WeaponPack* wPack) {}
145
146            inline const WorldEntity* getWorldEntity() const
147                { return const_cast<Pawn*>(this); }
148
149            inline void setSpawnParticleSource(const std::string& source)
150                { this->spawnparticlesource_ = source; }
151            inline const std::string& getSpawnParticleSource() const
152                { return this->spawnparticlesource_; }
153
154            inline void setSpawnParticleDuration(float duration)
155                { this->spawnparticleduration_ = duration; }
156            inline float getSpawnParticleDuration() const
157                { return this->spawnparticleduration_; }
158
159            inline void setExplosionChunks(unsigned int chunks)
160                { this->numexplosionchunks_ = chunks; }
161            inline unsigned int getExplosionChunks() const
162                { return this->numexplosionchunks_; }
163
164            // These are used with the Damage Boost Pickup to use the damage multiplier.
165            inline void setDamageMultiplier(float multiplier)
166                { this->damageMultiplier_ = multiplier; }
167            inline float getDamageMultiplier()
168                { return this->damageMultiplier_; }
169
170
171            virtual void startLocalHumanControl();
172
173            void setAimPosition( Vector3 position )
174                { this->aimPosition_ = position; }
175            Vector3 getAimPosition()
176                { return this->aimPosition_; }
177
178            virtual const Vector3& getCarrierPosition(void) const
179                { return this->getWorldPosition(); };
180
181            virtual void changedVisibility();
182
183        protected:
184            virtual void preDestroy();
185
186            virtual void setPlayer(PlayerInfo* player);
187            virtual void removePlayer();
188
189            virtual void death();
190            virtual void goWithStyle();
191            virtual void deatheffect();
192            virtual void spawneffect();
193
194            //virtual void damage(float damage, Pawn* originator = 0);
195            virtual void damage(float damage, float healthdamage = 0.0f, float shielddamage = 0.0f, Pawn* originator = NULL);
196
197            bool bAlive_;
198
199            virtual std::vector<PickupCarrier*>* getCarrierChildren(void) const
200                { return new std::vector<PickupCarrier*>(); }
201            virtual PickupCarrier* getCarrierParent(void) const
202                { return NULL; }
203
204
205            float health_;
206            float maxHealth_;
207            float initialHealth_;
208
209            float shieldHealth_;
210            float maxShieldHealth_;
211            float initialShieldHealth_;
212            float shieldAbsorption_; // Has to be between 0 and 1
213            float reloadRate_;
214            float reloadWaitTime_;
215            float reloadWaitCountdown_;
216
217            // Modifier
218            float damageMultiplier_; // Used by the Damage Boost Pickup.
219
220            WeakPtr<Pawn> lastHitOriginator_;
221
222            WeaponSystem* weaponSystem_;
223            bool bReload_;
224
225            std::string spawnparticlesource_;
226            float spawnparticleduration_;
227            unsigned int numexplosionchunks_;
228
229        private:
230            void registerVariables();
231            inline void setWeaponSystem(WeaponSystem* weaponsystem)
232                { this->weaponSystem_ = weaponsystem; }
233
234            Vector3 aimPosition_;
235    }; // tolua_export
236} // tolua_export
237
238#endif /* _Pawn_H__ */
Note: See TracBrowser for help on using the repository browser.