File: EngineOutHandler.cpp

package info (click to toggle)
spring 106.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 55,316 kB
  • sloc: cpp: 543,954; ansic: 44,800; python: 12,575; java: 12,201; awk: 5,889; sh: 1,796; asm: 1,546; xml: 655; perl: 405; php: 211; objc: 194; makefile: 76; sed: 2
file content (580 lines) | stat: -rw-r--r-- 17,650 bytes parent folder | download | duplicates (3)
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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */

#include "EngineOutHandler.h"

#include "ExternalAI/SkirmishAIWrapper.h"
#include "ExternalAI/SkirmishAIData.h"
#include "ExternalAI/SkirmishAIHandler.h"
#include "ExternalAI/AILibraryManager.h"
#include "ExternalAI/Interface/AISCommands.h"
#include "Game/GlobalUnsynced.h"
#include "Game/Players/Player.h"
#include "Game/Players/PlayerHandler.h"
#include "Sim/Misc/GlobalSynced.h"
#include "Sim/Misc/LosHandler.h"
#include "Sim/Misc/Team.h"
#include "Sim/Misc/TeamHandler.h"
#include "Sim/Units/Unit.h"
#include "Sim/Units/UnitHandler.h"
#include "Sim/Units/CommandAI/Command.h"
#include "Sim/Weapons/WeaponDef.h"
#include "Net/Protocol/NetProtocol.h"
#include "System/Log/ILog.h"
#include "System/TimeProfiler.h"
#include "System/SafeUtil.h"


CR_BIND(CEngineOutHandler, )
CR_REG_METADATA(CEngineOutHandler, (
	CR_IGNORED(hostSkirmishAIs),
	CR_IGNORED(teamSkirmishAIs),
	CR_IGNORED(activeSkirmishAIs),

	CR_POSTLOAD(PostLoad)
))


static inline bool IsUnitInLosOrRadarOfAllyTeam(const CUnit& unit, const int allyTeamId) {
	// NOTE:
	//   we check for globalLOS because the LOS-state of a
	//   new unit has not yet been set when it is created
	//   (thus UnitCreated will not produce EnemyCreated,
	//   etc. without this, even when globalLOS is enabled
	//   (for non-cheating AI's))
	return (losHandler->globalLOS[allyTeamId] || (unit.losStatus[allyTeamId] & (LOS_INLOS | LOS_INRADAR)));
}

static CEngineOutHandler singleton;
static unsigned int numInstances = 0;

CEngineOutHandler* CEngineOutHandler::GetInstance() {
	// if more than one instance, some code called eoh->func()
	// and created another after Destroy was already executed
	// from ~CGame --> usually dtors
	assert(numInstances == 1);
	return &singleton;
}

void CEngineOutHandler::Create() {
	if (numInstances != 0)
		return;

	AILibraryManager::Create();
	singleton.Init();

	numInstances += 1;
}

void CEngineOutHandler::Destroy() {
	if (numInstances != 1)
		return;

	singleton.Kill();
	AILibraryManager::Destroy();

	numInstances -= 1;
}


// This macro should be inserted at the start of each method sending AI events
#define AI_SCOPED_TIMER()           \
	if (activeSkirmishAIs.empty())  \
		return;                     \
	SCOPED_TIMER("AI");

#define DO_FOR_SKIRMISH_AIS(FUNC)            \
	for (uint8_t aiID: activeSkirmishAIs) {  \
		hostSkirmishAIs[aiID].FUNC;          \
	}


void CEngineOutHandler::PostLoad()
{
	AI_SCOPED_TIMER();
	DO_FOR_SKIRMISH_AIS(PostLoad())
}

void CEngineOutHandler::PreDestroy() {
	AI_SCOPED_TIMER();
	DO_FOR_SKIRMISH_AIS(PreDestroy())
}


void CEngineOutHandler::Load(std::istream* s, const uint8_t skirmishAIId) {
	AI_SCOPED_TIMER();
	LOG_L(L_INFO, "[EOH::%s(id=%u)] active=%d", __func__, skirmishAIId, hostSkirmishAIs[skirmishAIId].Active());

	auto& ai = hostSkirmishAIs[skirmishAIId];

	if (!ai.Active())
		return;

	ai.Load(s);
}

void CEngineOutHandler::Save(std::ostream* s, const uint8_t skirmishAIId) {
	AI_SCOPED_TIMER();
	LOG_L(L_INFO, "[EOH::%s(id=%u)] active=%d", __func__, skirmishAIId, hostSkirmishAIs[skirmishAIId].Active());

	auto& ai = hostSkirmishAIs[skirmishAIId];

	if (!ai.Active())
		return;

	ai.Save(s);
}


void CEngineOutHandler::Update() {
	AI_SCOPED_TIMER();
	DO_FOR_SKIRMISH_AIS(Update(gs->frameNum))
}



// Do only if the unit is not allied, in which case we know
// everything about it anyway, and do not need to be informed
#define DO_FOR_ALLIED_SKIRMISH_AIS(FUNC, ALLY_TEAM_ID, UNIT_ALLY_TEAM_ID)    \
	if (teamHandler.Ally(ALLY_TEAM_ID, UNIT_ALLY_TEAM_ID))                   \
		return;                                                              \
                                                                             \
	for (uint8_t aiID: activeSkirmishAIs) {                                  \
		auto& ai = hostSkirmishAIs[aiID];                                    \
		const int aiAllyTeam = teamHandler.AllyTeam(ai.GetTeamId());         \
                                                                             \
		if (teamHandler.Ally(aiAllyTeam, ALLY_TEAM_ID)) {                    \
			ai.FUNC;                                                         \
		}                                                                    \
	}


void CEngineOutHandler::UnitEnteredLos(const CUnit& unit, int allyTeamId) {
	AI_SCOPED_TIMER();

	const int unitId         = unit.id;
	const int unitAllyTeamId = unit.allyteam;

	DO_FOR_ALLIED_SKIRMISH_AIS(EnemyEnterLOS(unitId), allyTeamId, unitAllyTeamId)
}

void CEngineOutHandler::UnitLeftLos(const CUnit& unit, int allyTeamId) {
	AI_SCOPED_TIMER();

	const int unitId         = unit.id;
	const int unitAllyTeamId = unit.allyteam;

	DO_FOR_ALLIED_SKIRMISH_AIS(EnemyLeaveLOS(unitId), allyTeamId, unitAllyTeamId)
}

void CEngineOutHandler::UnitEnteredRadar(const CUnit& unit, int allyTeamId) {
	AI_SCOPED_TIMER();

	const int unitId         = unit.id;
	const int unitAllyTeamId = unit.allyteam;

	DO_FOR_ALLIED_SKIRMISH_AIS(EnemyEnterRadar(unitId), allyTeamId, unitAllyTeamId)
}

void CEngineOutHandler::UnitLeftRadar(const CUnit& unit, int allyTeamId) {
	AI_SCOPED_TIMER();

	const int unitId         = unit.id;
	const int unitAllyTeamId = unit.allyteam;

	DO_FOR_ALLIED_SKIRMISH_AIS(EnemyLeaveRadar(unitId), allyTeamId, unitAllyTeamId)
}



#define DO_FOR_TEAM_SKIRMISH_AIS(FUNC, TEAM_ID)       \
	if (teamSkirmishAIs[TEAM_ID].empty())             \
		return;                                       \
                                                      \
	for (uint8_t aiID: teamSkirmishAIs[TEAM_ID]) {    \
		hostSkirmishAIs[aiID].FUNC;                   \
	}                                                 \



// Send to all teams which the unit is not allied to,
// and which have cheat-events enabled, or the unit in sensor range.
#define DO_FOR_ENEMY_SKIRMISH_AIS(FUNC, ALLY_TEAM_ID, UNIT)                     \
	for (uint8_t aiID: activeSkirmishAIs) {                                     \
		CSkirmishAIWrapper& aiWrapper = hostSkirmishAIs[aiID];                  \
                                                                                \
		const int aiAllyTeam = teamHandler.AllyTeam(aiWrapper.GetTeamId());     \
                                                                                \
		const bool alliedAI = teamHandler.Ally(aiAllyTeam, ALLY_TEAM_ID);       \
		const bool cheatingAI = aiWrapper.CheatEventsEnabled();                 \
                                                                                \
		if (alliedAI)                                                           \
			continue;                                                           \
		if (!cheatingAI && !IsUnitInLosOrRadarOfAllyTeam(UNIT, aiAllyTeam))     \
			continue;                                                           \
                                                                                \
		aiWrapper.FUNC;                                                         \
	}



void CEngineOutHandler::UnitIdle(const CUnit& unit) {
	AI_SCOPED_TIMER();

	const int teamId = unit.team;
	const int unitId = unit.id;

	DO_FOR_TEAM_SKIRMISH_AIS(UnitIdle(unitId), teamId);
}

void CEngineOutHandler::UnitCreated(const CUnit& unit, const CUnit* builder) {
	AI_SCOPED_TIMER();

	const int teamId     = unit.team;
	const int allyTeamId = unit.allyteam;
	const int unitId     = unit.id;
	const int builderId  = (builder != nullptr)? builder->id: -1;

	// enemies first, do_for_team can return early
	DO_FOR_ENEMY_SKIRMISH_AIS(EnemyCreated(unitId), allyTeamId, unit);
	DO_FOR_TEAM_SKIRMISH_AIS(UnitCreated(unitId, builderId), teamId);
}

void CEngineOutHandler::UnitFinished(const CUnit& unit) {
	AI_SCOPED_TIMER();

	const int teamId     = unit.team;
	const int allyTeamId = unit.allyteam;
	const int unitId     = unit.id;

	DO_FOR_ENEMY_SKIRMISH_AIS(EnemyFinished(unitId), allyTeamId, unit);
	DO_FOR_TEAM_SKIRMISH_AIS(UnitFinished(unitId), teamId);
}


void CEngineOutHandler::UnitMoveFailed(const CUnit& unit) {
	AI_SCOPED_TIMER();

	const int teamId = unit.team;
	const int unitId = unit.id;

	DO_FOR_TEAM_SKIRMISH_AIS(UnitMoveFailed(unitId), teamId);
}

void CEngineOutHandler::UnitGiven(const CUnit& unit, int oldTeam, int newTeam) {
	AI_SCOPED_TIMER();

	const int unitId        = unit.id;
	const int newAllyTeamId = unit.allyteam;
	const int oldAllyTeamId = teamHandler.AllyTeam(oldTeam);

	for (uint8_t aiID: activeSkirmishAIs) {
		CSkirmishAIWrapper& aiWrapper = hostSkirmishAIs[aiID];

		const int aiTeam     = aiWrapper.GetTeamId();
		const int aiAllyTeam = teamHandler.AllyTeam(aiTeam);
		const bool alliedOld = teamHandler.Ally(aiAllyTeam, oldAllyTeamId);
		const bool alliedNew = teamHandler.Ally(aiAllyTeam, newAllyTeamId);

		// inform the new team and its allies
		// (except those also allied with the old team,
		// which were already informed by UnitCaptured)
		bool informAI = ((aiTeam == newTeam) || (alliedNew && !alliedOld));

		if (informAI) {
			informAI  = false;
			informAI |= alliedOld;
			informAI |= alliedNew;
			informAI |= aiWrapper.CheatEventsEnabled();
			informAI |= IsUnitInLosOrRadarOfAllyTeam(unit, aiAllyTeam);
		}

		if (!informAI)
			continue;

		aiWrapper.UnitGiven(unitId, oldTeam, newTeam);
	}
}

void CEngineOutHandler::UnitCaptured(const CUnit& unit, int oldTeam, int newTeam) {
	AI_SCOPED_TIMER();

	const int unitId        = unit.id;
	const int newAllyTeamId = unit.allyteam;
	const int oldAllyTeamId = teamHandler.AllyTeam(oldTeam);

	for (uint8_t aiID: activeSkirmishAIs) {
		CSkirmishAIWrapper& aiWrapper = hostSkirmishAIs[aiID];

		const int aiTeam     = aiWrapper.GetTeamId();
		const int aiAllyTeam = teamHandler.AllyTeam(aiTeam);

		const bool alliedOld = teamHandler.Ally(aiAllyTeam, oldAllyTeamId);
		const bool alliedNew = teamHandler.Ally(aiAllyTeam, newAllyTeamId);

		// inform the old team and its allies
		// (except those also allied with the new team,
		// which will be informed by UnitGiven instead)
		bool informAI = ((aiTeam == oldTeam) || (alliedOld && !alliedNew));

		if (informAI) {
			informAI  = false;
			informAI |= alliedOld;
			informAI |= alliedNew;
			informAI |= aiWrapper.CheatEventsEnabled();
			informAI |= IsUnitInLosOrRadarOfAllyTeam(unit, aiAllyTeam);
		}

		if (!informAI)
			continue;

		aiWrapper.UnitCaptured(unitId, oldTeam, newTeam);
	}
}

void CEngineOutHandler::UnitDestroyed(const CUnit& destroyed, const CUnit* attacker) {
	AI_SCOPED_TIMER();

	const int destroyedId = destroyed.id;
	const int attackerId  = (attacker != nullptr)? attacker->id : -1;
	const int dt          = destroyed.team;

	// inform destroyed units team (not allies)
	if (!teamSkirmishAIs[dt].empty()) {
		const bool attackerInLosOrRadar = attacker && IsUnitInLosOrRadarOfAllyTeam(*attacker, destroyed.allyteam);

		for (uint8_t aiID: teamSkirmishAIs[dt]) {
			int visibleAttackerId = -1;

			if (attackerInLosOrRadar || hostSkirmishAIs[aiID].CheatEventsEnabled())
				visibleAttackerId = attackerId;

			hostSkirmishAIs[aiID].UnitDestroyed(destroyedId, visibleAttackerId);
		}
	}

	// inform all enemy teams
	for (uint8_t aiID: activeSkirmishAIs) {
		CSkirmishAIWrapper& aiWrapper = hostSkirmishAIs[aiID];

		const int aiTeam = aiWrapper.GetTeamId();
		const int aiAllyTeam = teamHandler.AllyTeam(aiTeam);

		if (teamHandler.Ally(aiAllyTeam, destroyed.allyteam))
			continue;

		if (!aiWrapper.CheatEventsEnabled() && !IsUnitInLosOrRadarOfAllyTeam(destroyed, aiAllyTeam))
			continue;

		int myAttackerId = -1;

		if ((attacker != nullptr) && teamHandler.Ally(aiAllyTeam, attacker->allyteam))
			myAttackerId = attackerId;

		aiWrapper.EnemyDestroyed(destroyedId, myAttackerId);
	}
}


void CEngineOutHandler::UnitDamaged(
	const CUnit& damaged,
	const CUnit* attacker,
	float damage,
	int weaponDefID,
	int projectileID,
	bool paralyzer
) {
	AI_SCOPED_TIMER();

	const int damagedUnitId  = damaged.id;
	const int dt             = damaged.team;
	const int attackerUnitId = attacker ? attacker->id : -1;

	// inform damaged units team (not allies)
	if (!teamSkirmishAIs[dt].empty()) {
		float3 attackeeDir;

		if (attacker != nullptr)
			attackeeDir = (attacker->GetErrorPos(damaged.allyteam) - damaged.pos).ANormalize();

		const bool attackerInLosOrRadar = attacker && IsUnitInLosOrRadarOfAllyTeam(*attacker, damaged.allyteam);

		for (uint8_t aiID: teamSkirmishAIs[dt]) {
			int visibleAttackerUnitId = -1;

			if (attackerInLosOrRadar || hostSkirmishAIs[aiID].CheatEventsEnabled())
				visibleAttackerUnitId = attackerUnitId;

			hostSkirmishAIs[aiID].UnitDamaged(damagedUnitId, visibleAttackerUnitId, damage, attackeeDir, weaponDefID, paralyzer);
		}
	}

	// inform attacker units team (not allies)
	if (attacker == nullptr)
		return;

	const int at = attacker->team;

	if (teamHandler.Ally(attacker->allyteam, damaged.allyteam))
		return;
	if (teamSkirmishAIs[at].empty())
		return;

	// direction from the attacker's view
	const float3 attackerDir = (attacker->pos - damaged.GetErrorPos(attacker->allyteam)).ANormalize();
	const bool damagedInLosOrRadar = IsUnitInLosOrRadarOfAllyTeam(damaged, attacker->allyteam);

	for (uint8_t aiID: teamSkirmishAIs[at]) {
		if (!damagedInLosOrRadar && !hostSkirmishAIs[aiID].CheatEventsEnabled())
			continue;

		hostSkirmishAIs[aiID].EnemyDamaged(damagedUnitId, attackerUnitId, damage, attackerDir, weaponDefID, paralyzer);
	}
}


void CEngineOutHandler::SeismicPing(
	int allyTeamId,
	const CUnit& unit,
	const float3& pos,
	float strength
) {
	AI_SCOPED_TIMER();

	const int unitId         = unit.id;
	const int unitAllyTeamId = unit.allyteam;

	DO_FOR_ALLIED_SKIRMISH_AIS(SeismicPing(allyTeamId, unitId, pos, strength), allyTeamId, unitAllyTeamId)
}

void CEngineOutHandler::WeaponFired(const CUnit& unit, const WeaponDef& def) {
	AI_SCOPED_TIMER();

	const int teamId = unit.team;
	const int unitId = unit.id;
	const int defId  = def.id;

	DO_FOR_TEAM_SKIRMISH_AIS(WeaponFired(unitId, defId), teamId);
}

void CEngineOutHandler::PlayerCommandGiven(
		const std::vector<int>& selectedUnitIds, const Command& c, int playerId)
{
	AI_SCOPED_TIMER();

	const int teamId = playerHandler.Player(playerId)->team;

	DO_FOR_TEAM_SKIRMISH_AIS(PlayerCommandGiven(selectedUnitIds, c, playerId), teamId);
}

void CEngineOutHandler::CommandFinished(const CUnit& unit, const Command& command) {
	AI_SCOPED_TIMER();

	const int teamId           = unit.team;
	const int unitId           = unit.id;
	const int aiCommandTopicId = extractAICommandTopic(&command, unitHandler.MaxUnits());

	DO_FOR_TEAM_SKIRMISH_AIS(CommandFinished(unitId, command.GetID(true), aiCommandTopicId), teamId);
}

void CEngineOutHandler::SendChatMessage(const char* msg, int fromPlayerId) {
	AI_SCOPED_TIMER();
	DO_FOR_SKIRMISH_AIS(SendChatMessage(msg, fromPlayerId))
}

bool CEngineOutHandler::SendLuaMessages(int aiTeam, const char* inData, std::vector<const char*>& outData) {
	SCOPED_TIMER("AI");

	if (activeSkirmishAIs.empty())
		return false;

	unsigned int n = 0;

	if (aiTeam != -1) {
		// get the AI's for team <aiTeam>
		const std::vector<uint8_t>& aiIDs = teamSkirmishAIs[aiTeam];

		if (aiIDs.empty())
			return false;

		outData.resize(aiIDs.size(), "");

		// send only to AI's in team <aiTeam>
		for (uint8_t aiID: aiIDs) {
			hostSkirmishAIs[aiID].SendLuaMessage(inData, &outData[n++]);
		}
	} else {
		outData.resize(activeSkirmishAIs.size(), "");

		// broadcast to all AI's across all teams
		//
		// since neither AI ID's nor AI teams are
		// necessarily consecutive, store responses
		// in calling order
		for (uint8_t aiID: activeSkirmishAIs) {
			hostSkirmishAIs[aiID].SendLuaMessage(inData, &outData[n++]);
		}
	}

	return true;
}



void CEngineOutHandler::CreateSkirmishAI(const uint8_t skirmishAIId) {
	SCOPED_TIMER("AI");
	LOG_L(L_INFO, "[EOH::%s(id=%u)]", __func__, skirmishAIId);

	const SkirmishAIData* aiData = skirmishAIHandler.GetSkirmishAI(skirmishAIId);
	      CSkirmishAIWrapper& aiInst = hostSkirmishAIs[skirmishAIId];

	if (aiData->status != SKIRMAISTATE_RELOADING)
		clientNet->Send(CBaseNetProtocol::Get().SendAIStateChanged(gu->myPlayerNum, skirmishAIId, SKIRMAISTATE_INITIALIZING));

	if (aiData->isLuaAI) {
		// currently, we need to do nothing for Lua AIs
		clientNet->Send(CBaseNetProtocol::Get().SendAIStateChanged(gu->myPlayerNum, skirmishAIId, SKIRMAISTATE_ALIVE));
		return;
	}

	aiInst.PreInit(skirmishAIId);

	teamSkirmishAIs[ aiInst.GetTeamId() ].push_back(skirmishAIId);
	activeSkirmishAIs.push_back(skirmishAIId);

	aiInst.Init();

	if (skirmishAIHandler.HasLocalKillFlag(skirmishAIId))
		return;

	if (!gs->PreSimFrame())
		aiInst.Update(gs->frameNum);

	// send events for each unit belonging to the AI's team
	// will only do something if the AI is created mid-game
	aiInst.PostLoad();

	clientNet->Send(CBaseNetProtocol::Get().SendAIStateChanged(gu->myPlayerNum, skirmishAIId, SKIRMAISTATE_ALIVE));
}

void CEngineOutHandler::DestroySkirmishAI(const uint8_t skirmishAIId) {
	SCOPED_TIMER("AI");
	LOG_L(L_INFO, "[EOH::%s(id=%u)]", __func__, skirmishAIId);

	const int teamID = hostSkirmishAIs[skirmishAIId].GetTeamId();

	const auto it = std::find(teamSkirmishAIs[teamID].begin(), teamSkirmishAIs[teamID].end(), skirmishAIId);
	const auto jt = std::find(activeSkirmishAIs.begin(), activeSkirmishAIs.end(), skirmishAIId);

	if (it != teamSkirmishAIs[teamID].end() && jt != activeSkirmishAIs.end()) {
		teamSkirmishAIs[teamID].erase(it);
		activeSkirmishAIs.erase(jt);

		hostSkirmishAIs[skirmishAIId].Kill();
	} else {
		assert(false);
	}

	// will trigger SkirmishAIHandler::RemoveSkirmishAI
	clientNet->Send(CBaseNetProtocol::Get().SendAIStateChanged(gu->myPlayerNum, skirmishAIId, SKIRMAISTATE_DEAD));
}