Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentation/src/orxonox/objects/worldentities/pawns/Pawn.h @ 2485

Last change on this file since 2485 was 2485, checked in by landauf, 15 years ago

Merged objecthierarchy2 into presentation branch

Couln't merge 2 lines in Gamestate.cc and a whole block of code in GSDedicated.cc (it seems like oli implemented in both branches something like a network-tick-limiter but with different approaches)

Not yet tested in network mode and with bots
The SpaceShips movement is also not yet fully adopted to the new physics (see Engine class)

  • Property svn:eol-style set to native
File size: 4.3 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 "objects/worldentities/ControllableEntity.h"
35#include "objects/RadarViewable.h"
36
37namespace orxonox
38{
39    class _OrxonoxExport Pawn : public ControllableEntity, public RadarViewable
40    {
41        public:
42            Pawn(BaseObject* creator);
43            virtual ~Pawn();
44
45            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
46            virtual void tick(float dt);
47            void registerVariables();
48
49            inline bool isAlive() const
50                { return this->bAlive_; }
51
52            virtual void setHealth(float health);
53            inline void addHealth(float health)
54                { this->setHealth(this->health_ + health); }
55            inline void removeHealth(float health)
56                { this->setHealth(this->health_ - health); }
57            inline float getHealth() const
58                { return this->health_; }
59
60            inline void setMaxHealth(float maxhealth)
61                { this->maxHealth_ = maxhealth; this->setHealth(this->health_); }
62            inline float getMaxHealth() const
63                { return this->maxHealth_; }
64
65            inline void setInitialHealth(float initialhealth)
66                { this->initialHealth_ = initialhealth; this->setHealth(initialhealth); }
67            inline float getInitialHealth() const
68                { return this->initialHealth_; }
69
70            inline ControllableEntity* getLastHitOriginator() const
71                { return this->lastHitOriginator_; }
72
73            virtual void damage(float damage, Pawn* originator = 0);
74            virtual void hit(Pawn* originator, const Vector3& force, float damage);
75            virtual void kill();
76
77            virtual void fire();
78
79            virtual void postSpawn();
80
81            inline const WorldEntity* getWorldEntity() const
82                { return (WorldEntity*)this; }
83
84            inline void setSpawnParticleSource(const std::string& source)
85                { this->spawnparticlesource_ = source; }
86            inline const std::string& getSpawnParticleSource() const
87                { return this->spawnparticlesource_; }
88
89            inline void setSpawnParticleDuration(float duration)
90                { this->spawnparticleduration_ = duration; }
91            inline float getSpawnParticleDuration() const
92                { return this->spawnparticleduration_; }
93
94            inline void setExplosionChunks(unsigned int chunks)
95                { this->numexplosionchunks_ = chunks; }
96            inline unsigned int getExplosionChunks() const
97                { return this->numexplosionchunks_; }
98
99        protected:
100            virtual void death();
101            virtual void deatheffect();
102            virtual void spawneffect();
103
104            bool bAlive_;
105
106            float health_;
107            float maxHealth_;
108            float initialHealth_;
109
110            Pawn* lastHitOriginator_;
111
112            WeaponSystem* weaponSystem_;
113
114            std::string spawnparticlesource_;
115            float spawnparticleduration_;
116            unsigned int numexplosionchunks_;
117    };
118
119    class _OrxonoxExport PawnListener : public OrxonoxClass
120    {
121        friend class Pawn;
122
123        public:
124            PawnListener();
125            virtual ~PawnListener() {}
126
127        protected:
128            virtual void destroyedPawn(Pawn* pawn) = 0;
129    };
130}
131
132#endif /* _Pawn_H__ */
Note: See TracBrowser for help on using the repository browser.