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
|
/*
* from the ai headerfile
*/
#if !defined BUILDING_SKIRMISH_AI
# error BUILDING_SKIRMISH_AI should be defined when building Skirmish AIs
#endif
#if !defined BUILDING_AI
# error BUILDING_AI should be defined when building Skirmish AIs
#endif
#if defined BUILDING_AI_INTERFACE
# error BUILDING_AI_INTERFACE should not be defined when building Skirmish AIs
#endif
#if defined SYNCIFY
# error SYNCIFY should not be defined when building Skirmish AIs
#endif
// for a list of the functions that have to be exported,
// see struct SSkirmishAILibrary in "ExternalAI/Interface/SSkirmishAILibrary.h"
// static AI library methods (optional to implement)
//EXPORT(enum LevelOfSupport) getLevelOfSupportFor(int teamId,
// const char* engineVersionString, int engineVersionNumber,
// const char* aiInterfaceShortName, const char* aiInterfaceVersion);
EXPORT(int) init(int teamId,
unsigned int infoSize,
const char** infoKeys, const char** infoValues,
unsigned int optionsSize,
const char** optionsKeys, const char** optionsValues);
EXPORT(int) release(int teamId);
EXPORT(int) handleEvent(int teamId, int topic, const void* data);
/*
* end ai headerfile
*/
#include <Python.h>
#include "ExternalAI/Interface/aidefines.h"
#include "ExternalAI/Interface/ELevelOfSupport.h"
#include "ExternalAI/Interface/AISCommands.h"
#include "ExternalAI/Interface/AISEvents.h"
|