File: interface.c

package info (click to toggle)
spring 103.0%2Bdfsg2-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 43,720 kB
  • ctags: 63,685
  • sloc: cpp: 368,283; ansic: 33,988; python: 12,417; java: 12,203; awk: 5,879; sh: 1,846; xml: 655; perl: 405; php: 211; objc: 194; makefile: 77; sed: 2
file content (46 lines) | stat: -rw-r--r-- 1,478 bytes parent folder | download | duplicates (7)
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"