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
|
/*
Copyright 2008 Nicolas Wu
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "AIAI.h"
#include "Event/AIEvents.h"
#include "ExternalAI/IGlobalAI.h"
#include "ExternalAI/Interface/AISEvents.h"
CAIAI::CAIAI(int teamId, IGlobalAI* gAI):
team(teamId),
ai(gAI),
globalAICallback(NULL) {
}
CAIAI::~CAIAI() {
delete ai;
ai = NULL;
delete globalAICallback;
globalAICallback = NULL;
}
int CAIAI::handleEvent(int topic, const void* data) {
int ret = -1; // if this values remains, something went wrong
if (ai != NULL) {
CAIEvent* e = NULL;
// create the legacy C++ event
switch (topic) {
case EVENT_NULL: {
e = new CAINullEvent();
break;
}
case EVENT_INIT: {
CAIInitEvent* initE =
new CAIInitEvent(*((const SInitEvent*) data));
// The following two lines should not ever be needed,
// but they do not hurt either.
delete globalAICallback;
globalAICallback = NULL;
globalAICallback = initE->GetWrappedGlobalAICallback();
e = initE;
break;
}
case EVENT_RELEASE: {
e = new CAIReleaseEvent(*((const SReleaseEvent*) data));
break;
}
case EVENT_UPDATE: {
e = new CAIUpdateEvent(*((const SUpdateEvent*) data));
break;
}
case EVENT_MESSAGE: {
e = new CAIMessageEvent(*((const SMessageEvent*) data));
break;
}
case EVENT_UNIT_CREATED: {
e = new CAIUnitCreatedEvent(*((const SUnitCreatedEvent*) data));
break;
}
case EVENT_UNIT_FINISHED: {
e = new CAIUnitFinishedEvent(
*((const SUnitFinishedEvent*) data));
break;
}
case EVENT_UNIT_IDLE: {
e = new CAIUnitIdleEvent(*((const SUnitIdleEvent*) data));
break;
}
case EVENT_UNIT_MOVE_FAILED: {
e = new CAIUnitMoveFailedEvent(
*((const SUnitMoveFailedEvent*) data));
break;
}
case EVENT_UNIT_DAMAGED: {
e = new CAIUnitDamagedEvent(*((const SUnitDamagedEvent*) data));
break;
}
case EVENT_UNIT_DESTROYED: {
e = new CAIUnitDestroyedEvent(
*((const SUnitDestroyedEvent*) data));
break;
}
case EVENT_UNIT_GIVEN: {
e = new CAIUnitGivenEvent(*((const SUnitGivenEvent*) data));
break;
}
case EVENT_UNIT_CAPTURED: {
e = new CAIUnitCapturedEvent(
*((const SUnitCapturedEvent*) data));
break;
}
case EVENT_ENEMY_ENTER_LOS: {
e = new CAIEnemyEnterLOSEvent(
*((const SEnemyEnterLOSEvent*) data));
break;
}
case EVENT_ENEMY_LEAVE_LOS: {
e = new CAIEnemyLeaveLOSEvent(
*((const SEnemyLeaveLOSEvent*) data));
break;
}
case EVENT_ENEMY_ENTER_RADAR: {
e = new CAIEnemyEnterRadarEvent(
*((const SEnemyEnterRadarEvent*) data));
break;
}
case EVENT_ENEMY_LEAVE_RADAR: {
e = new CAIEnemyLeaveRadarEvent(
*((const SEnemyLeaveRadarEvent*) data));
break;
}
case EVENT_ENEMY_DAMAGED: {
e = new CAIEnemyDamagedEvent(
*((const SEnemyDamagedEvent*) data));
break;
}
case EVENT_ENEMY_DESTROYED: {
e = new CAIEnemyDestroyedEvent(
*((const SEnemyDestroyedEvent*) data));
break;
}
case EVENT_WEAPON_FIRED:{
e = new CAIWeaponFiredEvent(*((const SWeaponFiredEvent*) data));
break;
}
case EVENT_PLAYER_COMMAND: {
e = new CAIPlayerCommandEvent(
*((const SPlayerCommandEvent*) data));
break;
}
case EVENT_SEISMIC_PING:{
e = new CAISeismicPingEvent(*((const SSeismicPingEvent*) data));
break;
}
default: {
e = new CAINullEvent();
break;
}
}
try {
// handle the event
e->Run(*ai, globalAICallback);
ret = 0;
delete e;
e = NULL;
} catch (int err) {
if (err == 0) {
// fail even if the error is set to 0,
// because we got an exception
ret = -3;
} else {
ret = err;
}
} catch (...) {
ret = -2;
}
}
return ret;
}
|