Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/gameimmersion/src/orxonox/worldentities/pawns/Pawn.h @ 8187

Last change on this file since 8187 was 8187, checked in by simonmie, 13 years ago

Added initialShieldHealth and minor changes

  • Property svn:eol-style set to native
File size: 8.1 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///////////////////////////////// me
57            virtual void setReloadRate(float reloadrate);
58            inline float getReloadRate() const
59                { return this->reloadRate_; }
60
61            inline void addShieldHealth(float amount)
62            { this->setShieldHealth(this->shieldHealth_ + amount); }
63
64            inline bool hasShield()
65            { return (this->getShieldHealth() > 0); }
66
67            virtual void setReloadWaitTime(float reloadwaittime);
68            inline float getReloadWaitTime() const
69                { return this->reloadWaitTime_; }
70
71            inline void resetReloadCountdown()
72            { this->reloadWaitCountdown_ = 0; }
73
74            inline void startReloadCountdown()
75            { this->reloadWaitCountdown_ = this->getReloadWaitTime(); } //in projectile.cc einbauen!!!!!!1111!!111!
76
77            virtual void decreaseReloadCountdownTime(float dt);
78
79            virtual void setMaxShieldHealth(float maxshieldhealth);
80            inline float getMaxShieldHealth() const
81                { return this->maxShieldHealth_; }
82
83            inline void setInitialShieldHealth(float initialshieldhealth)
84                { this->initialShieldHealth_ = initialshieldhealth; this->setShieldHealth(initialshieldhealth); }
85            inline float getInitialShieldHealth() const
86                { return this->initialShieldHealth_; }
87
88            inline void restoreInitialShieldHealth()
89                { this->setShieldHealth(this->initialShieldHealth_); }
90            inline void restoreMaxShieldHealth()
91                { this->setShieldHealth(this->maxShieldHealth_); }
92
93
94///////////////////////////////// end me
95
96            virtual void setHealth(float health);
97            inline void addHealth(float health)
98                { this->setHealth(this->health_ + health); }
99            inline void removeHealth(float health)
100                { this->setHealth(this->health_ - health); }
101            inline float getHealth() const
102                { return this->health_; }
103
104            inline void setMaxHealth(float maxhealth)
105                { this->maxHealth_ = maxhealth; this->setHealth(this->health_); }
106            inline float getMaxHealth() const
107                { return this->maxHealth_; }
108
109            inline void setInitialHealth(float initialhealth)
110                { this->initialHealth_ = initialhealth; this->setHealth(initialhealth); }
111            inline float getInitialHealth() const
112                { return this->initialHealth_; }
113
114            virtual void setShieldHealth(float shieldHealth);
115
116            inline float getShieldHealth()
117            { return this->shieldHealth_; }
118
119            inline void setShieldAbsorption(float shieldAbsorption)
120            { this->shieldAbsorption_ = shieldAbsorption; }
121            inline float getShieldAbsorption()
122            { return this->shieldAbsorption_; }
123
124            inline ControllableEntity* getLastHitOriginator() const
125                { return this->lastHitOriginator_; }
126
127            virtual void hit(Pawn* originator, const Vector3& force, float damage);
128            virtual void hit(Pawn* originator, btManifoldPoint& contactpoint, float damage);
129            virtual void kill();
130
131            virtual void fired(unsigned int firemode);
132            virtual void reload();
133            virtual void postSpawn();
134
135            void addWeaponSlot(WeaponSlot * wSlot);
136            WeaponSlot * getWeaponSlot(unsigned int index) const;
137            void addWeaponSet(WeaponSet * wSet);
138            WeaponSet * getWeaponSet(unsigned int index) const;
139            void addWeaponPack(WeaponPack * wPack);
140            void addWeaponPackXML(WeaponPack * wPack);
141            WeaponPack * getWeaponPack(unsigned int index) const;
142
143            virtual void addedWeaponPack(WeaponPack* wPack) {}
144
145            inline const WorldEntity* getWorldEntity() const
146                { return const_cast<Pawn*>(this); }
147
148            inline void setSpawnParticleSource(const std::string& source)
149                { this->spawnparticlesource_ = source; }
150            inline const std::string& getSpawnParticleSource() const
151                { return this->spawnparticlesource_; }
152
153            inline void setSpawnParticleDuration(float duration)
154                { this->spawnparticleduration_ = duration; }
155            inline float getSpawnParticleDuration() const
156                { return this->spawnparticleduration_; }
157
158            inline void setExplosionChunks(unsigned int chunks)
159                { this->numexplosionchunks_ = chunks; }
160            inline unsigned int getExplosionChunks() const
161                { return this->numexplosionchunks_; }
162
163            virtual void startLocalHumanControl();
164
165            void setAimPosition( Vector3 position )
166                { this->aimPosition_ = position; }
167            Vector3 getAimPosition()
168                { return this->aimPosition_; }
169
170            virtual const Vector3& getCarrierPosition(void) const
171                { return this->getWorldPosition(); };
172
173        protected:
174            virtual void preDestroy();
175
176            virtual void setPlayer(PlayerInfo* player);
177            virtual void removePlayer();
178
179            virtual void death();
180            virtual void goWithStyle();
181            virtual void deatheffect();
182            virtual void spawneffect();
183
184            virtual void damage(float damage, Pawn* originator = 0);
185
186            bool bAlive_;
187
188            virtual std::vector<PickupCarrier*>* getCarrierChildren(void) const
189                { return new std::vector<PickupCarrier*>(); }
190            virtual PickupCarrier* getCarrierParent(void) const
191                { return NULL; }
192
193/////////////////////////// me
194            float reloadRate_;
195            float reloadWaitTime_;
196            float reloadWaitCountdown_;
197
198            float maxShieldHealth_;
199            float initialShieldHealth_;
200
201////////////////////////// end me
202
203            float health_;
204            float maxHealth_;
205            float initialHealth_;
206            float shieldHealth_;
207            float shieldAbsorption_; // Has to be between 0 and 1
208
209            WeakPtr<Pawn> lastHitOriginator_;
210
211            WeaponSystem* weaponSystem_;
212            bool bReload_;
213
214            std::string spawnparticlesource_;
215            float spawnparticleduration_;
216            unsigned int numexplosionchunks_;
217
218        private:
219            void registerVariables();
220            inline void setWeaponSystem(WeaponSystem* weaponsystem)
221                { this->weaponSystem_ = weaponsystem; }
222
223            Vector3 aimPosition_;
224    }; // tolua_export
225} // tolua_export
226
227#endif /* _Pawn_H__ */
Note: See TracBrowser for help on using the repository browser.