Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/formationupdate/src/orxonox/controllers/FormationController.h @ 9600

Last change on this file since 9600 was 9583, checked in by smerkli, 13 years ago

Added a check when dying to find another pawn in the
same formation

  • Property svn:eol-style set to native
File size: 5.2 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 *      ...
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#ifndef _FormationController_h__
30#define _FormationController_h__
31
32#include "OrxonoxPrereqs.h"
33
34#include <vector>
35#include "core/Super.h"
36
37#include "util/Math.h"
38#include "core/OrxonoxClass.h"
39#include "controllers/Controller.h"
40#include "worldentities/ControllableEntity.h"
41
42
43namespace orxonox {
44
45  class _OrxonoxExport FormationController : public Controller
46  {
47
48      public:
49      FormationController(BaseObject* creator);
50
51      virtual ~FormationController();
52
53      virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
54
55
56      static void formationflight(const bool form);
57      static void masteraction(const int action);
58      static void followme();
59      static void passivebehaviour(const bool passive);
60      static void formationsize(const int size);
61
62      inline void setFormationFlight(bool formation)
63           { this->formationFlight_ = formation; }
64      inline bool getFormationFlight() const
65           { return this->formationFlight_; }
66
67      inline void setFormationSize(int size)
68           { this->maxFormationSize_ = size; }
69      inline int getFormationSize() const
70           { return this->maxFormationSize_; }
71
72
73      inline void setPassive(bool passive)
74           { this->passive_ = passive; }
75      inline bool getPassive() const
76           { return this->passive_; }
77
78      inline void setTeam(int team)
79           { this->team_ = team; }
80      inline int getTeam() const
81           { return this->team_; }
82
83      /**
84        @brief Mode of the formation, behaviour of slaves
85               Normal-normal behaviour
86               Defend-just defend the master
87               Attack-leave formation, attack every target
88      */
89      enum FormationMode {NORMAL,DEFEND,ATTACK};
90
91      /**
92        @brief Sets the new mode. If master, set it for all slaves.
93      */
94      void setFormationMode(FormationMode val);
95      inline FormationMode getFormationMode() const
96           { return this->formationMode_; }
97
98      virtual void hit(Pawn* originator, btManifoldPoint& contactpoint, float damage);
99
100      /* Just for testing purposes: report the master. */
101      FormationController* getMaster( void ) { return myMaster_; }
102
103  protected:
104      bool formationFlight_;
105      bool passive_;
106      int team_;
107      unsigned int maxFormationSize_;
108      int freedomCount_;
109      enum State {SLAVE, MASTER, FREE};
110
111      State state_;
112      std::vector<FormationController*> slaves_;
113      FormationController* myMaster_;
114
115      FormationMode formationMode_;
116
117      enum SpecificMasterAction {NONE, HOLD, SPIN, TURN180, FOLLOW};
118      SpecificMasterAction specificMasterAction_;
119      int specificMasterActionHoldCount_;
120      float speedCounter_; //for speed adjustment when following
121
122      void moveToPosition(const Vector3& target);
123      void moveToTargetPosition();
124      void absoluteMoveToPosition(const Vector3& target);
125      void copyOrientation(const Quaternion& orient);
126      void copyTargetOrientation();
127
128      void removeFromFormation();
129      void unregisterSlave();
130      void searchNewMaster();
131      void commandSlaves();
132      void setNewMasterWithinFormation();
133
134      void freeSlaves();
135      void forceFreeSlaves();
136      void loseMasterState();
137      void forceFreedom();
138      bool forcedFree();
139
140      void takeLeadOfFormation();
141      void masterAttacked(Pawn* originator);
142
143      void specificMasterActionHold();
144      void turn180Init();
145      void spinInit();
146      void spin();
147      void turn180();
148      void followInit(Pawn* pawn, const bool always = false, const int secondsToFollow = 100);
149      void followRandomHumanInit();
150      void follow();
151
152      void setTargetPosition(const Vector3& target);
153      void searchRandomTargetPosition();
154
155      void setTargetOrientation(const Quaternion& orient);
156      void setTargetOrientation(Pawn* target);
157
158      virtual void positionReached() {}
159
160      static bool sameTeam(ControllableEntity* entity1, ControllableEntity* entity2, Gametype* gametype); // hack
161
162
163      void setTarget(Pawn* target);
164
165      void searchNewTarget();
166      void forgetTarget();
167
168      void targetDied();
169
170      bool bHasTargetPosition_;
171      Vector3 targetPosition_;
172      bool bHasTargetOrientation_;
173      Quaternion targetOrientation_;
174
175      WeakPtr<Pawn> target_;
176      bool bShooting_;
177  };
178
179
180}
181#endif /* _FormationController_h__ */
182
183
Note: See TracBrowser for help on using the repository browser.