Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/ai/src/orxonox/controllers/AIController.cc @ 7840

Last change on this file since 7840 was 7840, checked in by jo, 13 years ago

Creating a console command.

  • Property svn:eol-style set to native
File size: 7.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//TODO: intended behaviour: when a bot has a target_ it shouldn't move away.
29#include "AIController.h"
30
31#include "util/Math.h"
32#include "core/CoreIncludes.h"
33#include "core/command/Executor.h"
34#include "worldentities/ControllableEntity.h"
35#include "worldentities/pawns/Pawn.h"
36
37namespace orxonox
38{
39    static const float ACTION_INTERVAL = 1.0f;
40
41    CreateFactory(AIController);
42
43    AIController::AIController(BaseObject* creator) : ArtificialController(creator)
44    {
45        RegisterObject(AIController);
46
47        this->actionTimer_.setTimer(ACTION_INTERVAL, true, createExecutor(createFunctor(&AIController::action, this)));
48    }
49
50    AIController::~AIController()
51    {
52    }
53
54    void AIController::action()
55    {
56        float random;
57        float maxrand = 100.0f / ACTION_INTERVAL;
58
59        if (this->state_ == FREE)
60        {
61
62            if (this->formationFlight_)
63            {
64                // return to Master after being forced free
65                if (this->freedomCount_ == 1)
66                {
67                this->state_ = SLAVE;
68                this->freedomCount_ = 0;
69                }
70
71                random = rnd(maxrand);
72                if (random < 90 && (((!this->target_) || (random < 50 && this->target_)) && !this->forcedFree()))
73                    this->searchNewMaster();
74            }
75
76            // search enemy
77            random = rnd(maxrand);
78            if (random < (15 + botlevel_* 2) && (!this->target_))
79                this->searchNewTarget();
80
81            // forget enemy
82            random = rnd(maxrand);
83            if (random < (5/botlevel_) && (this->target_))
84                this->forgetTarget();
85
86            // next enemy
87            random = rnd(maxrand);
88            if (random < (10 + botlevel_) && (this->target_))
89                this->searchNewTarget();
90
91            // fly somewhere
92            random = rnd(maxrand);
93            if (random < 50 && (!this->bHasTargetPosition_ && !this->target_))
94                this->searchRandomTargetPosition();
95
96            // stop flying
97            random = rnd(maxrand);
98            if (random < 10 && (this->bHasTargetPosition_ && !this->target_))
99                this->bHasTargetPosition_ = false;
100
101            // fly somewhere else
102            random = rnd(maxrand);
103            if (random < 30 && (this->bHasTargetPosition_ && !this->target_))
104                this->searchRandomTargetPosition();
105
106            // shoot
107            random = rnd(maxrand);
108            if (!(this->passive_) && random < (75 + botlevel_*3) && (this->target_ && !this->bShooting_))
109                this->bShooting_ = true;
110
111            // stop shooting
112            random = rnd(maxrand);
113            if (random < (25 - botlevel_*2 ) && (this->bShooting_))
114                this->bShooting_ = false;
115
116        }
117
118        if (this->state_ == SLAVE)
119        {
120
121        }
122
123        if (this->state_ == MASTER)
124        {
125
126
127            this->commandSlaves();
128
129            if  (this->specificMasterAction_ != NONE)
130                    this->specificMasterActionHold();
131
132            else {
133
134                 // make 180 degree turn - a specific Master Action
135                random = rnd(1000.0f);
136                if (random < 5)
137                   this->turn180Init();
138
139                // spin around - a specific Master Action
140                random = rnd(1000.0f);
141                if (random < 5)
142                   this->spinInit();
143
144                // follow a randomly chosen human - a specific Master Action
145                random = rnd(1000.0f);
146                if (random < 1)
147                   this->followRandomHumanInit();
148
149                 // lose master status (only if less than 4 slaves in formation)
150                random = rnd(maxrand);
151                if(random < 15/(this->slaves_.size()+1) && this->slaves_.size() < 4 )
152                   this->loseMasterState();
153
154                // look out for outher masters if formation is small
155                random = rnd(maxrand);
156                if(this->slaves_.size() < 3 && random < 20)
157                    this->searchNewMaster();
158
159                // search enemy
160                random = rnd(maxrand);
161                if (random < 15 && (!this->target_))
162                    this->searchNewTarget();
163
164                // forget enemy
165                random = rnd(maxrand);
166                if (random < 5 && (this->target_))
167                    this->forgetTarget();
168
169                // next enemy
170                random = rnd(maxrand);
171                if (random < 10 && (this->target_))
172                    this->searchNewTarget();
173
174                // fly somewhere
175                random = rnd(maxrand);
176                if (random < 50 && (!this->bHasTargetPosition_ && !this->target_))
177                    this->searchRandomTargetPosition();
178
179                // fly somewhere else
180                random = rnd(maxrand);
181                if (random < 30 && (this->bHasTargetPosition_ && !this->target_))
182                    this->searchRandomTargetPosition();
183
184                // shoot
185                random = rnd(maxrand);
186                if (!(this->passive_) && random < 9 && (this->target_ && !this->bShooting_))
187                {
188                this->bShooting_ = true;
189                this->forceFreeSlaves();
190                }
191
192                // stop shooting
193                random = rnd(maxrand);
194                if (random < (25 - botlevel_*2 ) && (this->bShooting_))
195                    this->bShooting_ = false;
196
197            }
198        }
199
200    }
201
202    void AIController::tick(float dt)
203    {
204        if (!this->isActive())
205            return;
206
207        if (this->state_ == MASTER)
208        {
209            if (this->specificMasterAction_ ==  NONE)
210            {
211                if (this->target_)
212                {
213                    if (!this->target_->getRadarVisibility()) /* So AI won't shoot invisible Spaceships */
214                        this->forgetTarget();
215                    else this->aimAtTarget();
216                }
217
218                if (this->bHasTargetPosition_)
219                    this->moveToTargetPosition();
220
221                this->doFire();
222            }
223
224            if (this->specificMasterAction_  == TURN180)
225                    this->turn180();
226
227            if (this->specificMasterAction_ == SPIN)
228                    this->spin();
229            if (this->specificMasterAction_ == FOLLOW)
230                    this->follow();
231        }
232
233        if (this->state_ == SLAVE)
234        {
235
236            if (this->bHasTargetPosition_)
237                this->moveToTargetPosition();
238
239        }
240
241        if (this->state_ == FREE)
242        {
243            if (this->target_)
244            {
245                if (!this->target_->getRadarVisibility()) /* So AI won't shoot invisible Spaceships */
246                    this->forgetTarget();
247                else this->aimAtTarget();
248            }
249
250            if (this->bHasTargetPosition_)
251                this->moveToTargetPosition();
252
253            this->doFire();
254        }
255
256        SUPER(AIController, tick, dt);
257    }
258
259}
Note: See TracBrowser for help on using the repository browser.