Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/sagerjFS16/src/orxonox/controllers/HumanController.cc @ 11164

Last change on this file since 11164 was 11164, checked in by sagerj, 8 years ago

added orxout() for every release lvl for debug purpose

  • Property svn:eol-style set to native
File size: 15.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#include "HumanController.h"
30
31#include "core/CoreIncludes.h"
32#include "core/command/ConsoleCommandIncludes.h"
33#include "worldentities/ControllableEntity.h"
34#include "worldentities/pawns/Pawn.h"
35#include "gametypes/Gametype.h"
36#include "infos/PlayerInfo.h"
37#include "Radar.h"
38#include "Scene.h"
39
40namespace orxonox
41{
42    extern const std::string __CC_fire_name = "fire";
43    extern const std::string __CC_suicide_name = "suicide";
44    extern const std::string __CC_release_name = "release";
45
46    SetConsoleCommand("HumanController", "moveFrontBack",          &HumanController::moveFrontBack ).addShortcut().setAsInputCommand();
47    SetConsoleCommand("HumanController", "moveRightLeft",          &HumanController::moveRightLeft ).addShortcut().setAsInputCommand();
48    SetConsoleCommand("HumanController", "moveUpDown",             &HumanController::moveUpDown    ).addShortcut().setAsInputCommand();
49    SetConsoleCommand("HumanController", "rotateYaw",              &HumanController::rotateYaw     ).addShortcut().setAsInputCommand();
50    SetConsoleCommand("HumanController", "rotatePitch",            &HumanController::rotatePitch   ).addShortcut().setAsInputCommand();
51    SetConsoleCommand("HumanController", "rotateRoll",             &HumanController::rotateRoll    ).addShortcut().setAsInputCommand();
52    SetConsoleCommand("HumanController", "toggleFormationFlight",  &HumanController::toggleFormationFlight).addShortcut().keybindMode(KeybindMode::OnPress);
53    SetConsoleCommand("HumanController", "FFChangeMode",           &HumanController::FFChangeMode).addShortcut().keybindMode(KeybindMode::OnPress);
54    SetConsoleCommand("HumanController", __CC_fire_name,           &HumanController::fire          ).addShortcut().keybindMode(KeybindMode::OnHold);
55    SetConsoleCommand("HumanController", __CC_release_name,        &HumanController::release       ).addShortcut().keybindMode(KeybindMode::OnRelease);
56    SetConsoleCommand("HumanController", "reload",                 &HumanController::reload        ).addShortcut();
57    SetConsoleCommand("HumanController", "boost",                  &HumanController::boost         ).addShortcut().setAsInputCommand().keybindMode(KeybindMode::OnPressAndRelease);
58    SetConsoleCommand("HumanController", "greet",                  &HumanController::greet         ).addShortcut();
59    SetConsoleCommand("HumanController", "switchCamera",           &HumanController::switchCamera  ).addShortcut();
60    SetConsoleCommand("HumanController", "mouseLook",              &HumanController::mouseLook     ).addShortcut();
61    SetConsoleCommand("HumanController", __CC_suicide_name,        &HumanController::suicide       ).addShortcut();
62    SetConsoleCommand("HumanController", "toggleGodMode",          &HumanController::toggleGodMode ).addShortcut();
63    SetConsoleCommand("HumanController", "cycleNavigationFocus",   &HumanController::cycleNavigationFocus).addShortcut();
64    SetConsoleCommand("HumanController", "releaseNavigationFocus", &HumanController::releaseNavigationFocus).addShortcut();
65    SetConsoleCommand("HumanController", "myposition",             &HumanController::myposition    ).addShortcut();
66
67    RegisterUnloadableClass(HumanController);
68
69    HumanController* HumanController::localController_s = nullptr;
70
71    HumanController::HumanController(Context* context) : FormationController(context)
72    {
73        RegisterObject(HumanController);
74
75        this->controlPaused_ = false;
76        HumanController::localController_s = this;
77    }
78
79    HumanController::~HumanController()
80    {
81        if (HumanController::localController_s)
82        {
83            HumanController::localController_s->removeFromFormation();
84        }
85        HumanController::localController_s = nullptr;
86    }
87
88    void HumanController::tick(float dt)
89    {
90        if (GameMode::playsSound() && HumanController::localController_s && HumanController::localController_s->controllableEntity_)
91        {
92            Camera* camera = HumanController::localController_s->controllableEntity_->getCamera();
93            if (!camera)
94                orxout(internal_warning) << "HumanController, Warning: Using a ControllableEntity without Camera" << endl;
95        }
96
97        // commandslaves when Master of a formation
98        if (HumanController::localController_s && HumanController::localController_s->state_==MASTER && FormationController::slaves_.size() > 0)
99        {
100            if (HumanController::localController_s->formationMode_ != ATTACK)
101                HumanController::localController_s->commandSlaves();
102        }
103    }
104
105    void HumanController::moveFrontBack(const Vector2& value)
106    {
107        if (HumanController::localController_s)
108            HumanController::localController_s->frontback(value);
109    }
110
111    void HumanController::frontback(const Vector2& value)
112    {
113        if (HumanController::localController_s && HumanController::localController_s->controllableEntity_)
114            HumanController::localController_s->controllableEntity_->moveFrontBack(value);
115    }
116
117    void HumanController::moveRightLeft(const Vector2& value)
118    {
119        if (HumanController::localController_s && HumanController::localController_s->controllableEntity_)
120            HumanController::localController_s->controllableEntity_->moveRightLeft(value);
121    }
122
123    void HumanController::moveUpDown(const Vector2& value)
124    {
125        if (HumanController::localController_s && HumanController::localController_s->controllableEntity_)
126            HumanController::localController_s->controllableEntity_->moveUpDown(value);
127    }
128
129    void HumanController::yaw(const Vector2& value)
130    {
131        if (HumanController::localController_s && HumanController::localController_s->controllableEntity_)
132            HumanController::localController_s->controllableEntity_->rotateYaw(value);
133    }
134
135    void HumanController::pitch(const Vector2& value)
136    {
137        if (HumanController::localController_s && HumanController::localController_s->controllableEntity_)
138            HumanController::localController_s->controllableEntity_->rotatePitch(value);
139    }
140
141    void HumanController::rotateYaw(const Vector2& value)
142    {
143        if (HumanController::localController_s)
144            HumanController::localController_s->yaw(value);
145    }
146
147    void HumanController::rotatePitch(const Vector2& value)
148    {
149        if (HumanController::localController_s)
150            HumanController::localController_s->pitch(value);
151    }
152
153    void HumanController::rotateRoll(const Vector2& value)
154    {
155        if (HumanController::localController_s && HumanController::localController_s->controllableEntity_)
156            HumanController::localController_s->controllableEntity_->rotateRoll(value);
157    }
158
159    void HumanController::fire(unsigned int firemode)
160    {
161        if (HumanController::localController_s)
162            HumanController::localController_s->doFire(firemode);
163    }
164
165    void HumanController::doFire(unsigned int firemode)
166    {
167        if (HumanController::localController_s && HumanController::localController_s->controllableEntity_)
168        {
169            HumanController::localController_s->controllableEntity_->fire(firemode);
170            //if human fires, set slaves free. See FormationController::forceFreeSlaves()
171            if (HumanController::localController_s->state_==MASTER && HumanController::localController_s->formationMode_ == NORMAL)
172            {
173                HumanController::localController_s->forceFreeSlaves();
174            }
175        }
176    }
177
178    void HumanController::release(unsigned int firemode)
179    {
180        orxout() << "HumanController " << firemode << endl;
181        if (HumanController::localController_s)
182            HumanController::localController_s->doRelease(firemode);
183    }
184
185    void HumanController::doRelease(unsigned int firemode)
186    {
187        if (HumanController::localController_s && HumanController::localController_s->controllableEntity_)
188        {
189            HumanController::localController_s->controllableEntity_->release(firemode);
190            //if human releases, set slaves free. See FormationController::forceFreeSlaves()
191            if (HumanController::localController_s->state_==MASTER && HumanController::localController_s->formationMode_ == NORMAL)
192            {
193                HumanController::localController_s->forceFreeSlaves();
194            }
195        }
196    }
197
198    void HumanController::reload()
199    {
200        if (HumanController::localController_s && HumanController::localController_s->controllableEntity_)
201            HumanController::localController_s->controllableEntity_->reload();
202    }
203
204    /**
205    @brief
206        Static method, controls boosting.
207    */
208    /*static*/ void HumanController::boost(const Vector2& value)
209    {
210        if (HumanController::localController_s && HumanController::localController_s->controllableEntity_)
211        {
212            float abs = value.x;
213            if (abs > 0)
214                HumanController::localController_s->startBoosting();
215            else
216                HumanController::localController_s->stopBoosting();
217        }
218    }
219
220    /**
221    @brief
222        Starts the boosting mode.
223        Resets the boosting timeout and tells the ControllableEntity to boost (or not boost anymore).
224    */
225    void HumanController::startBoosting(void)
226    {
227        if(this->controllableEntity_)
228            this->controllableEntity_->boost(true);
229    }
230
231    /**
232    @brief
233        Stops the boosting mode.
234    */
235    void HumanController::stopBoosting(void)
236    {
237        if(this->controllableEntity_)
238            this->controllableEntity_->boost(false);
239    }
240
241    void HumanController::greet()
242    {
243        if (HumanController::localController_s && HumanController::localController_s->controllableEntity_)
244            HumanController::localController_s->controllableEntity_->greet();
245    }
246
247    void HumanController::switchCamera()
248    {
249        if (HumanController::localController_s && HumanController::localController_s->controllableEntity_)
250            HumanController::localController_s->controllableEntity_->switchCamera();
251    }
252
253    void HumanController::mouseLook()
254    {
255        if (HumanController::localController_s && HumanController::localController_s->controllableEntity_)
256            HumanController::localController_s->controllableEntity_->mouseLook();
257    }
258
259    void HumanController::suicide()
260    {
261        if (HumanController::localController_s && HumanController::localController_s->controllableEntity_)
262        {
263            Pawn* pawn = orxonox_cast<Pawn*>(HumanController::localController_s->controllableEntity_);
264            if (pawn)
265                pawn->kill();
266            else if (HumanController::localController_s->player_)
267                HumanController::localController_s->player_->stopControl();
268        }
269    }
270
271    void HumanController::toggleGodMode()
272    {
273        if (HumanController::localController_s)
274            HumanController::localController_s->setGodMode(!HumanController::localController_s->getGodMode());
275    }
276
277    void HumanController::myposition()
278    {
279        if (HumanController::localController_s && HumanController::localController_s->controllableEntity_)
280        {
281            const Vector3& position = HumanController::localController_s->controllableEntity_->getPosition();
282            const Quaternion& orientation = HumanController::localController_s->controllableEntity_->getOrientation();
283
284            orxout(message) << "position=\"" << position.x << ", " << position.y << ", " << position.z << "\" "
285                            << "orientation=\"" << orientation.w << ", " << orientation.x << ", " << orientation.y << ", " << orientation.z << "\"" << endl;
286        }
287    }
288
289    /**
290    @brief
291       toggle the formation. Not usable, if formationflight is disabled generally (formationFlight_)
292    */
293    void HumanController::toggleFormationFlight()
294    {
295        if (HumanController::localController_s)
296        {
297            if (!HumanController::localController_s->formationFlight_)
298            {
299                return; //dont use when formationFlight is disabled
300            }
301            if (HumanController::localController_s->state_==MASTER)
302            {
303                HumanController::localController_s->loseMasterState();
304                orxout(message) <<"FormationFlight disabled "<< endl;
305            } else //SLAVE or FREE
306            {
307                HumanController::localController_s->takeLeadOfFormation();
308                orxout(message) <<"FormationFlight enabled "<< endl;
309            }
310
311        }
312
313    }
314
315    /**
316    @brief
317       Switch through the different Modes of formationflight. You must be a master of a formation to use.
318    */
319    void HumanController::FFChangeMode()
320    {
321        if (HumanController::localController_s && HumanController::localController_s->state_==MASTER)
322        {
323            switch (HumanController::localController_s->getFormationMode()) {
324                case NORMAL:
325                    HumanController::localController_s->setFormationMode(DEFEND);
326                    orxout(message) <<"Mode: DEFEND "<< endl;
327                    break;
328                case DEFEND:
329                    HumanController::localController_s->setFormationMode(ATTACK);
330                    orxout(message) <<"Mode: ATTACK "<< endl;
331                    break;
332                case ATTACK:
333                    HumanController::localController_s->setFormationMode(NORMAL);
334                    orxout(message) <<"Mode: NORMAL "<< endl;
335                    break;
336            }
337        }
338    }
339
340    Pawn* HumanController::getLocalControllerEntityAsPawn()
341    {
342        if (HumanController::localController_s)
343            return orxonox_cast<Pawn*>(HumanController::localController_s->getControllableEntity());
344        else
345            return nullptr;
346    }
347
348    void HumanController::cycleNavigationFocus()
349    {
350        if (HumanController::localController_s && HumanController::localController_s->controllableEntity_)
351            HumanController::localController_s->controllableEntity_->getScene()->getRadar()->cycleFocus();
352    }
353
354    void HumanController::releaseNavigationFocus()
355    {
356        if (HumanController::localController_s && HumanController::localController_s->controllableEntity_)
357            HumanController::localController_s->controllableEntity_->getScene()->getRadar()->releaseFocus();
358    }
359
360    void HumanController::pauseControl()
361    {
362        if (HumanController::localController_s)
363            HumanController::localController_s->doPauseControl();
364    }
365
366    void HumanController::resumeControl()
367    {
368        if (HumanController::localController_s)
369            HumanController::localController_s->doResumeControl();
370    }
371}
Note: See TracBrowser for help on using the repository browser.