-
Notifications
You must be signed in to change notification settings - Fork 8
/
CMilitary.cpp
480 lines (402 loc) · 13.3 KB
/
CMilitary.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
#include "CMilitary.h"
#include <limits>
#include "headers/HEngine.h"
#include "CRNG.h"
#include "CAI.h"
#include "CUnit.h"
#include "CUnitTable.h"
#include "CGroup.h"
#include "CTaskHandler.h"
#include "CThreatMap.h"
#include "CIntel.h"
#include "CWishList.h"
#include "CConfigParser.h"
#include "CDefenseMatrix.h"
#include "ReusableObjectFactory.hpp"
#include "GameMap.hpp"
#include "Util.hpp"
#include "CCataloguer.h"
CMilitary::CMilitary(AIClasses *ai): ARegistrar(200) {
this->ai = ai;
groups[SCOUT] = &activeScoutGroups;
groups[ENGAGE] = &activeAttackGroups;
groups[BOMBER] = &activeBomberGroups;
groups[AIRFIGHTER] = &activeAirFighterGroups;
drawTasks = false;
unitCategory forbiddenCats;
if (ai->gamemap->IsWaterMap())
forbiddenCats |= LAND;
else if (!ai->gamemap->IsHooverMap())
forbiddenCats |= (SEA|SUB);
allowedEnvCats = CATS_ENV & ~forbiddenCats;
}
void CMilitary::remove(ARegistrar &object) {
CGroup *group = dynamic_cast<CGroup*>(&object);
LOG_II("CMilitary::remove " << (*group))
activeScoutGroups.erase(group->key);
activeAttackGroups.erase(group->key);
activeBomberGroups.erase(group->key);
activeAirFighterGroups.erase(group->key);
mergeGroups.erase(group->key);
for (std::map<int,CGroup*>::iterator i = assemblingGroups.begin(); i != assemblingGroups.end(); ++i) {
if (i->second->key == group->key) {
assemblingGroups.erase(i->first);
break;
}
}
group->unreg(*this);
ReusableObjectFactory<CGroup>::Release(group);
}
bool CMilitary::addUnit(CUnit& unit) {
LOG_II("CMilitary::addUnit " << unit)
assert(unit.group == NULL);
unitCategory c = unit.type->cats;
if ((c&ATTACKER).any() && (c&MOBILE).any() && (c&DEFENSE).none()) {
unitCategory wishedCats = ai->unittable->unitsUnderConstruction[unit.key];
CGroup* group;
if ((c&SCOUTER).any() && wishedCats.any() && (wishedCats&SCOUTER).none())
c &= ~SCOUTER; // scout was not requested
if ((c&SCOUTER).any()) {
group = requestGroup(SCOUT);
}
else if((c&AIR).any() && (c&ARTILLERY).any()) {
group = requestGroup(BOMBER);
}
else if((c&AIR).any() && (c&ASSAULT).none()) {
group = requestGroup(AIRFIGHTER);
}
else {
/* If there is a new factory, or the current group is busy, request
a new group */
std::map<int,CGroup*>::iterator i = assemblingGroups.find(unit.builtBy);
if (i == assemblingGroups.end() || i->second->busy || !i->second->canAdd(&unit)) {
group = requestGroup(ENGAGE);
assemblingGroups[unit.builtBy] = group;
} else {
group = i->second;
}
}
group->addUnit(unit);
return true;
}
return false;
}
CGroup* CMilitary::requestGroup(MilitaryGroupBehaviour type) {
CGroup *group = ReusableObjectFactory<CGroup>::Instance();
group->ai = ai;
group->reset();
group->reg(*this);
LOG_II("CMilitary::requestGroup " << (*group))
switch(type) {
case SCOUT:
activeScoutGroups[group->key] = group;
break;
case BOMBER:
activeBomberGroups[group->key] = group;
break;
case ENGAGE:
activeAttackGroups[group->key] = group;
break;
case AIRFIGHTER:
activeAirFighterGroups[group->key] = group;
break;
default:
LOG_EE("CMilitary::requestGroup invalid group behaviour: " << type)
}
return group;
}
void CMilitary::update(int frame) {
int busyScoutGroups = 0;
std::vector<int> keys;
std::vector<int> occupied;
std::map<int, bool> isOccupied;
std::map<int, ATask*>::iterator itTask;
std::map<MilitaryGroupBehaviour, std::map<int, CGroup*>* >::iterator itGroup;
TargetsFilter tf;
// NOTE: we store occupied targets in two formats because vector is used
// for list of targets (which can be used if no suitable primary
// targets are found), second one is used for TargetFilter to filter out
// occupied targets when searching for primary targets
for (itTask = ai->tasks->activeTasks[TASK_ATTACK].begin(); itTask != ai->tasks->activeTasks[TASK_ATTACK].end(); ++itTask) {
AttackTask *task = (AttackTask*)itTask->second;
occupied.push_back(task->target);
isOccupied[task->target] = true;
}
for(itGroup = groups.begin(); itGroup != groups.end(); itGroup++) {
int target = -2;
MilitaryGroupBehaviour behaviour = itGroup->first;
// setup common target filter params per behaviour...
tf.reset();
switch(behaviour) {
case SCOUT:
tf.threatRadius = 300.0f;
tf.threatFactor = 1000.0f;
break;
case ENGAGE:
tf.threatFactor = 0.001f;
break;
case BOMBER:
tf.threatFactor = 100.0f;
// TODO: replace constant with maneuvering radius of plane?
tf.threatRadius = 1000.0f;
break;
case AIRFIGHTER:
tf.threatFactor = 100.0f;
break;
case HARASS: //FIXME
break;
}
// NOTE: start with random group ID because some groups can't reach the
// target (e.g. Fleas); this helps to overcome the problem when there
// is a target, but first group can't reach it, and AI constantly
// trying to add same task again and again which leads to attack stall
keys.clear();
util::GetShuffledKeys<int, CGroup*>(keys, *(itGroup->second));
const std::vector<CategoryMatcher>& targetBlocks = ai->intel->targets[behaviour];
for (int i = 0; i < keys.size(); ++i) {
CGroup *group = (*(itGroup->second))[keys[i]];
// if group is busy, don't bother...
if (group->busy || !group->canPerformTasks()) {
if (group->busy) {
if (behaviour == SCOUT)
busyScoutGroups++;
if (drawTasks)
visualizeTasks(group);
}
continue;
}
// NOTE: each group can have different score on the same target
// because of their disposition, strength etc.
tf.scoreCeiling = std::numeric_limits<float>::max();
tf.excludeId = &isOccupied;
// setup custom target filter params per current group...
switch(behaviour) {
case SCOUT:
if ((group->cats&AIR).any())
tf.threatCeiling = 1.1f;
else
tf.threatCeiling = (std::max<float>((float)MAX_SCOUTS_IN_GROUP / group->units.size(), 1.0f)) * group->strength - EPS;
break;
case BOMBER:
tf.threatCeiling = group->strength + group->firstUnit()->type->dps;
break;
case HARASS: case ENGAGE: case AIRFIGHTER: //FIXME
break;
}
// basic target selection...
if (target != -1) {
for(int b = 0; b < targetBlocks.size(); b++) {
target = group->selectTarget(ai->intel->enemies.getUnits(targetBlocks[b]), tf);
}
}
bool isAssembling = isAssemblingGroup(group);
if ((!isAssembling && behaviour == SCOUT) || target < 0) {
// scan for better target among existing targets...
tf.excludeId = NULL;
int assistTarget = group->selectTarget(occupied, tf);
if (assistTarget >= 0 && assistTarget != target) {
ATask *task = ai->tasks->getTaskByTarget(assistTarget);
if (task) {
bool canAssist = false;
int assisters = task->assisters.size();
float cumulativeStrength = task->firstGroup()->strength;
std::list<ATask*>::iterator itATask;
for (itATask = task->assisters.begin(); itATask != task->assisters.end(); itATask++) {
cumulativeStrength += (*itATask)->firstGroup()->strength;
}
switch(behaviour) {
case SCOUT:
canAssist = assisters == 0;
break;
case ENGAGE:
canAssist = cumulativeStrength < 2.0f * tf.threatValue;
break;
case BOMBER:
canAssist = assisters < 9;
break;
case AIRFIGHTER:
canAssist = assisters < 3;
break;
case HARASS: //FIXME
break;
}
if (canAssist) {
mergeGroups.erase(group->key);
if (!ai->tasks->addTask(new AssistTask(ai, *task, *group)))
group->addBadTarget(assistTarget);
break;
}
}
}
}
bool isStrongEnough = true;
if (target >= 0) {
isStrongEnough = group->strength >= (tf.threatValue - EPS);
bool isSizeEnough = (behaviour == ENGAGE) ? group->units.size() >= ai->cfgparser->getMinGroupSize(group->techlvl) : true;
if (behaviour != ENGAGE)
isAssembling = false;
if ((isAssembling && isSizeEnough) || (!isAssembling && isStrongEnough)) {
ATask::NPriority taskPriority = (behaviour == BOMBER || behaviour == AIRFIGHTER) ? ATask::HIGH : ATask::NORMAL;
mergeGroups.erase(group->key);
if (ai->tasks->addTask(new AttackTask(ai, target, *group), taskPriority)) {
occupied.push_back(target);
isOccupied[target] = true;
}
else {
group->addBadTarget(target);
}
break;
}
}
bool bMerge = !(isStrongEnough || isAssembling);
switch(behaviour) {
case SCOUT:
bMerge = bMerge && activeScoutGroups.size() > 1 && group->units.size() < MAX_SCOUTS_IN_GROUP;
break;
default:
bMerge = bMerge && groups[behaviour]->size() > 1;
}
if (bMerge)
mergeGroups[group->key] = group;
}
}
/* Merge the groups that were not strong enough */
if (mergeGroups.size() >= 2) {
std::list<CGroup*> merge;
for (std::map<int, CGroup*>::iterator base = mergeGroups.begin(); base != mergeGroups.end(); ++base) {
if (!base->second->busy) {
for (std::map<int,CGroup*>::iterator compare = mergeGroups.begin(); compare != mergeGroups.end(); ++compare) {
if (!compare->second->busy && base->first != compare->first) {
if (base->second->canMerge(compare->second)) {
bool canMerge = false;
if ((base->second->cats&SCOUTER).any())
// TODO: replace MERGE_DISTANCE with ETA?
canMerge = (base->second->pos().distance2D(compare->second->pos()) < MERGE_DISTANCE);
else
canMerge = true;
if (canMerge) {
if (merge.empty())
merge.push_back(base->second);
merge.push_back(compare->second);
break;
}
}
}
}
if (!merge.empty()) {
ai->tasks->addTask(new MergeTask(ai, merge));
merge.clear();
break;
}
}
}
// remove busy (merging) groups...
std::map<int, CGroup*>::iterator it = mergeGroups.begin();
while(it != mergeGroups.end()) {
int key = it->first; ++it;
if (mergeGroups[key]->busy)
mergeGroups.erase(key);
}
}
//bool gotAirFactory = ai->unittable->gotFactory(AIRCRAFT);
//bool gotSeaFactory = (ai->unittable->gotFactory(NAVAL) || ai->unittable->gotFactory(HOVER));
if (ai->difficulty == DIFFICULTY_HARD) {
// when all scouts are busy create some more...
// FIXME: when scouts are stucked AI will not build them anymore,
// while there are scout targets available
if (busyScoutGroups == activeScoutGroups.size()) {
//unitCategory baseType = ai->gamemap->IsWaterMap() && gotSeaFactory ? SEA|SUB : LAND;
Wish::NPriority p = activeScoutGroups.size() < ai->cfgparser->getMinScouts() ? Wish::HIGH: Wish::NORMAL;
//if(gotAirFactory && rng.RandFloat() > 0.66f)
// baseType = AIR;
ai->wishlist->push(MOBILE | SCOUTER | allowedEnvCats, 0, p);
}
}
// TODO: build units on real need only, not always
ai->wishlist->push(requestUnit(allowedEnvCats), 0, Wish::NORMAL);
/*
if (gotAirFactory && rng.RandFloat() > 0.66f) {
ai->wishlist->push(requestUnit(AIR), forbiddenCats);
}
else {
if (ai->gamemap->IsWaterMap() && gotSeaFactory)
ai->wishlist->push(requestUnit(SEA|SUB), forbiddenCats, Wish::NORMAL);
else
ai->wishlist->push(requestUnit(LAND), forbiddenCats, Wish::NORMAL);
}
*/
}
unitCategory CMilitary::requestUnit(unitCategory basecat) {
float r = rng.RandFloat();
float sum = 0.0f;
std::multimap<float, unitCategory>::iterator i;
for (i = ai->intel->roulette.begin(); i != ai->intel->roulette.end(); i++) {
sum += i->first;
if (r <= sum) {
return basecat | MOBILE | i->second;
}
}
return basecat | MOBILE | ASSAULT; // unreachable code :)
}
int CMilitary::idleScoutGroupsNum() {
int result = 0;
std::map<int, CGroup*>::iterator i;
for(i = activeScoutGroups.begin(); i != activeScoutGroups.end(); ++i)
if(!i->second->busy)
result++;
return result;
}
bool CMilitary::isAssemblingGroup(CGroup *group) {
std::map<int, CGroup*>::iterator i;
for (i = assemblingGroups.begin(); i != assemblingGroups.end(); ++i) {
if (i->second->key == group->key) {
return true;
}
}
return false;
}
void CMilitary::onEnemyDestroyed(int enemy, int attacker) {
std::map<int, CGroup*> *activeGroups;
std::map<int, CGroup*>::iterator itGroup;
std::map<MilitaryGroupBehaviour, std::map<int, CGroup*>* >::iterator itGroups;
for (itGroups = groups.begin(); itGroups != groups.end(); ++itGroups) {
activeGroups = itGroups->second;
for (itGroup = activeGroups->begin(); itGroup != activeGroups->end(); ++itGroup) {
if (!itGroup->second->badTargets.empty()) {
LOG_II("CMilitary::onEnemyDestroyed bad target Unit(" << enemy << ") destroyed for " << (*(itGroup->second)))
itGroup->second->badTargets.erase(enemy);
}
}
}
}
bool CMilitary::switchDebugMode() {
drawTasks = !drawTasks;
return drawTasks;
}
void CMilitary::visualizeTasks(CGroup *g) {
const ATask* task = ai->tasks->getTask(*g);
if (task == NULL)
return;
float R, G, B;
switch(task->t) {
case TASK_ATTACK:
R = 1.0f; G = 0.0f; B = 0.0f;
break;
case TASK_MERGE:
R = 1.0f; G = 1.0f; B = 0.0f;
break;
case TASK_ASSIST:
R = 1.0f; G = 0.0f; B = 1.0f;
break;
default:
R = G = B = 0.0f;
}
float3 fp = g->pos();
fp.y = ai->cb->GetElevation(fp.x, fp.z) + 50.0f;
float3 fn = task->pos;
fn.y = ai->cb->GetElevation(fn.x, fn.z) + 50.0f;
// draw arrow for MERGE task only because otherwise it looks ugly (arrow
// is stretched, not fixed in size)
ai->cb->CreateLineFigure(fp, fn, 6.0f, task->t == TASK_MERGE ? 1 : 0, MULTIPLEXER, task->t);
ai->cb->SetFigureColor(task->t, R, G, B, 0.5f);
}