Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/AI_HS15/src/orxonox/controllers/WingmanController.cc @ 10762

Last change on this file since 10762 was 10762, checked in by gania, 9 years ago

added a canFire() function

File size: 5.8 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 *      Dominik Solenicki
26 *
27 */
28
29#include "WingmanController.h"
30
31
32namespace orxonox
33{
34
35    RegisterClass(WingmanController);
36   
37
38    WingmanController::WingmanController(Context* context) : CommonController(context)
39    {
40        RegisterObject(WingmanController);
41        this->actionTimer_.setTimer(ACTION_INTERVAL, true, createExecutor(createFunctor(&WingmanController::action, this)));
42        this->myLeader_ = 0;
43        this->rank_ = Rank::WINGMAN;
44
45    }
46
47    WingmanController::~WingmanController()
48    {
49
50    }
51    // void WingmanController::chooseManeuver()
52    // {
53    //     if (this->maneuverType_ == ManeuverType::NONE)
54    //     switch (this->maneuverType_ )
55    //     {
56    //         case ManeuverType::NONE:
57    //         {
58
59    //             break;
60    //         }
61    //         case ManeuverType::NEUTRAL:
62    //         {
63
64    //             break;
65    //         }
66    //         case ManeuverType::OFFENSIVE:
67    //         {
68
69    //             break;
70    //         }
71    //         case ManeuverType::DEFENSIVE:
72    //         {
73
74    //             break;
75    //         }
76    //     }
77    //     if (!this->myWingman_)
78    //         return;
79    //     Vector3* targetRelativePositionOfWingman;
80    //     switch (this->formationMode_){
81    //         case FormationMode::WALL:
82    //         {
83    //             targetRelativePositionOfWingman = new Vector3 (-400, 0, 0); 
84    //             break;
85    //         }
86    //         case FormationMode::FINGER4:
87    //         {
88    //             targetRelativePositionOfWingman = new Vector3 (-400, 0, -200); 
89    //             break;
90    //         }
91    //         case FormationMode::VEE:
92    //         {
93    //             break;
94    //         }
95    //         case FormationMode::DIAMOND:
96    //         {
97    //             targetRelativePositionOfWingman = new Vector3 (400, -200, 0);                 
98    //             break;
99    //         }
100    //     }
101    //     Quaternion orient = this->getControllableEntity()->getWorldOrientation();
102       
103    //     Vector3 targetAbsolutePositionOfWingman = ((this->getControllableEntity()->getWorldPosition()) +
104    //     (this->getControllableEntity()->getWorldOrientation()* (*targetRelativePositionOfWingman)));
105       
106    //     myWingman_->setTargetOrientation(orient);
107    //     myWingman_->setTargetPosition(targetAbsolutePositionOfWingman);
108       
109    // }
110
111    void WingmanController::tick(float dt)
112    {   
113       
114       
115        if (!this->isActive())
116            return;
117        if (!this->target_)
118        {
119            //stay in formation
120        }
121        else
122        {
123
124        }
125        if (this->bHasTargetPosition_)
126        {
127            this->moveToTargetPosition();
128        } 
129       
130       
131       
132        SUPER(WingmanController, tick, dt);
133    }
134   
135    void WingmanController::action()
136    {
137        if (!this->myLeader_)
138        {
139            CommonController* newLeader = findNewLeader();
140            this->myLeader_ = newLeader;
141            if (newLeader)
142                orxout(internal_error) << "new Leader set" << endl;
143            else
144            {
145                //orxout(internal_error) << "0 leader" << endl;
146               
147            }
148
149        }
150        else
151        {
152
153        }
154
155        if (canFire())
156            doFire();
157    }
158     
159   
160   
161
162    CommonController* WingmanController::findNewLeader()
163    {
164
165        if (!this->getControllableEntity())
166            return 0;
167
168        CommonController* closestLeader = 0;
169        float minDistance =  std::numeric_limits<float>::infinity();
170
171        for (ObjectList<CommonController>::iterator it = ObjectList<CommonController>::begin(); it; ++it)
172        {
173            //0ptr?
174            if (!it || 
175                (it->getRank() != Rank::SECTIONLEADER && it->getRank() != Rank::DIVISIONLEADER) || 
176                !(it->getControllableEntity()))
177                continue;
178            //same team?
179            if (this->getControllableEntity()->getTeam() != (it)->getControllableEntity()->getTeam())
180                continue;
181            //is equal to this?
182            if (it->getControllableEntity() == this->getControllableEntity())
183                continue;
184
185            float distance = (it->getControllableEntity()->getPosition() - this->getControllableEntity()->getPosition()).length();
186            if (distance < minDistance && !(it->hasWingman()))
187            {
188                closestLeader = *it;
189                minDistance = distance;
190            }
191           
192        }
193        if (closestLeader)
194        {
195            if (closestLeader->setWingman(this))
196                return closestLeader;
197        }
198        return 0;
199    }
200
201    void WingmanController::XMLPort(Element& xmlelement, XMLPort::Mode mode)
202    {
203        SUPER(WingmanController, XMLPort, xmlelement, mode);
204
205        //XMLPortParam(SectionController, "target_", setTarget, getTarget, xmlelement, mode).defaultValues(100.0f);
206    }
207
208
209
210}
Note: See TracBrowser for help on using the repository browser.