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
|
/*
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/>.
@author Nicolas Wu
@author Robin Vobruba <hoijui.quaero@gmail.com>
*/
#include "AIExport.h"
// AI interface stuff
#include "ExternalAI/Interface/SSkirmishAILibrary.h"
#include "ExternalAI/Interface/SSkirmishAICallback.h"
#include "LegacyCpp/AIGlobalAI.h"
#include "Game/GameVersion.h"
#include "CUtils/Util.h"
// AAI stuff
#include "AAI.h"
#include <map>
// teamId -> AI map
static std::map<int, CAIGlobalAI*> myAIs;
// callbacks for all the teams controlled by this Skirmish AI
static std::map<int, const struct SSkirmishAICallback*> teamId_callback;
EXPORT(enum LevelOfSupport) getLevelOfSupportFor(int teamId,
const char* engineVersionString, int engineVersionNumber,
const char* aiInterfaceShortName, const char* aiInterfaceVersion) {
if (strcmp(engineVersionString, SpringVersion::GetFull().c_str()) == 0 &&
engineVersionNumber <= ENGINE_VERSION_NUMBER) {
return LOS_Working;
}
return LOS_None;
}
EXPORT(int) init(int teamId, const struct SSkirmishAICallback* callback) {
if (myAIs.count(teamId) > 0) {
// the map already has an AI for this team.
// raise an error, since it's probably a mistake if we're trying
// to reinitialise a team that already had init() called on it.
return -1;
}
teamId_callback[teamId] = callback;
// CAIGlobalAI is the Legacy C++ wrapper
myAIs[teamId] = new CAIGlobalAI(teamId, new AAI());
// signal: everything went ok
return 0;
}
EXPORT(int) release(int teamId) {
if (myAIs.count(teamId) == 0) {
// no AI for this team, raise an error
return -1;
}
delete myAIs[teamId];
myAIs[teamId] = NULL;
myAIs.erase(teamId);
// signal: everything went ok
return 0;
}
EXPORT(int) handleEvent(int teamId, int topic, const void* data) {
if (teamId < 0) {
// events sent to team -1 will always be to the AI object itself,
// not to a particular team.
} else if (myAIs.count(teamId) > 0) {
// allow the AI instance to handle the event.
return myAIs[teamId]->handleEvent(topic, data);
}
// no AI for that team, so return error.
return -1;
}
// methods from here on are for AI internal use only
const char* aiexport_getVersion(int teamId) {
return teamId_callback[teamId]->Clb_SkirmishAI_Info_getValueByKey(teamId, SKIRMISH_AI_PROPERTY_VERSION);
}
|