Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/campaignHS15/src/orxonox/controllers/DivisionController.cc @ 10855

Last change on this file since 10855 was 10855, checked in by gania, 8 years ago

introduced loops

File size: 4.6 KB
RevLine 
[10678]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 *      Dominik Solenicki
26 *
27 */
28
29#include "DivisionController.h"
[10849]30#include "infos/PlayerInfo.h"
[10678]31
32namespace orxonox
33{
34
35    RegisterClass(DivisionController);
36
[10826]37    //Leaders share the fact that they have Wingmans
[10709]38    DivisionController::DivisionController(Context* context) : LeaderController(context)
[10678]39    {
40        RegisterObject(DivisionController);
[10759]41       
42        this->setFormationMode(FormationMode::DIAMOND);
[10763]43        this->target_ = 0;
[10725]44        this->myFollower_ = 0;
45        this->myWingman_ = 0;
46        this->actionTimer_.setTimer(ACTION_INTERVAL, true, createExecutor(createFunctor(&DivisionController::action, this)));
[10759]47        this->rank_ = Rank::DIVISIONLEADER;
[10678]48    }
49
50    DivisionController::~DivisionController()
51    {
[10854]52        if (this->myFollower_)
53        {
54            this->myFollower_->takeActionpoints(this->parsedActionpoints_);
55        }
56        for (size_t i = 0; i < this->actionpoints_.size(); ++i)
57        {
58            if(this->actionpoints_[i])
59                this->actionpoints_[i]->destroy();
60        }
61        this->parsedActionpoints_.clear();
62        this->actionpoints_.clear();
[10725]63    } 
[10731]64
[10826]65    void DivisionController::XMLPort(Element& xmlelement, XMLPort::Mode mode)
66    {
67        SUPER(DivisionController, XMLPort, xmlelement, mode);
68
69        //XMLPortParam(DivisionController, "target_", setTarget, getTarget, xmlelement, mode).defaultValues(100.0f);
70    }
[10725]71    void DivisionController::tick(float dt)
[10803]72    {   
73        if (!this->isActive())
74            return;
[10722]75        SUPER(DivisionController, tick, dt);
[10678]76    }
[10725]77    void DivisionController::action()
[10854]78    {   
79        CommonController::action();
[10709]80    }
[10854]81    void DivisionController::stayNearProtect()
82    {
83        CommonController::stayNearProtect();
84    }
[10729]85    void DivisionController::setTargetPositionOfWingman()
[10725]86    {
87        if (!this->myWingman_)
88            return;
[10729]89        Vector3* targetRelativePositionOfWingman;
[10725]90        switch (this->formationMode_){
[10759]91            case FormationMode::WALL:
[10725]92            {
[10729]93                targetRelativePositionOfWingman = new Vector3 (400, 0, 0); 
[10725]94                break;
95            }
[10759]96            case FormationMode::FINGER4: 
[10725]97            {
[10832]98                targetRelativePositionOfWingman = new Vector3 (400, 0, 200); 
[10725]99                break;
100            }
[10826]101         
[10759]102            case FormationMode::DIAMOND: 
[10725]103            {
[10832]104                targetRelativePositionOfWingman = new Vector3 (400, 0, 200);                 
[10725]105                break;
106            }
107        }
[10729]108        Quaternion orient = this->getControllableEntity()->getWorldOrientation();
109       
110        Vector3 targetAbsolutePositionOfWingman = ((this->getControllableEntity()->getWorldPosition()) + 
111        (this->getControllableEntity()->getWorldOrientation()* (*targetRelativePositionOfWingman)));
112       
[10805]113        myWingman_->setAction( Action::FLY, targetAbsolutePositionOfWingman, orient);
[10725]114       
115    }
[10854]116   
[10731]117    bool DivisionController::setWingman(CommonController* cwingman)
118    {
119
120        WeakPtr<WingmanController> wingman = orxonox_cast<WingmanController*>(cwingman);
121        if (!this->myWingman_)
122        {
123            this->myWingman_ = wingman;
124            return true;
125        }
126        else
127        {
128            return false;
129        }
130    }
131    bool DivisionController::setFollower(LeaderController* myFollower)
132    {
133         if (!this->myFollower_)
134        {
135            this->myFollower_ = myFollower;
136            return true;
137        }
138        else
139        {
140            return false;
141        }
142    }
143    bool DivisionController::hasWingman()
144    {
145        if (this->myWingman_)
146            return true;
147        else
148            return false;
149    }
150    bool DivisionController::hasFollower()
151    {
152        if (this->myFollower_)
153            return true;
154        else
155            return false;
156    }
[10678]157}
Note: See TracBrowser for help on using the repository browser.