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
|
/*
Copyright (c) 2008 Robin Vobruba <hoijui.quaero@gmail.com>
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/>.
*/
/*
* This file has to be C99 compatible, as it is not only used by the engine,
* but also by AIs.
*/
#ifndef _AIDEFINES_H
#define _AIDEFINES_H
#include "System/maindefines.h"
#include "System/exportdefines.h"
#define ENGINE_VERSION_STRING VERSION_STRING
#define ENGINE_VERSION_NUMBER 1000
// Changing these structs breaks the AI Interface ABI.
// Though we can only keep track of the number of function pointers
// in the callback structs, and not their arguments.
// Therefore, this number will stay the same, if you only change parameters
// of function pointers, which is why it is only partly representing
// the real ABI.
// Files that have ot be included when using this define:
// * ExternalAI/Interface/ELevelOfSupport.h
// * ExternalAI/Interface/SAIFloat3.h
// * ExternalAI/Interface/SSkirmishAILibrary.h
// * ExternalAI/Interface/SSkirmishAICallback.h
// * ExternalAI/Interface/SAIInterfaceLibrary.h
// * ExternalAI/Interface/SAIInterfaceCallback.h
// * ExternalAI/Interface/AISEvents.h
// * ExternalAI/Interface/AISCommands.h
/**
* Returns the Application Binary Interface version, fail part.
* If the engine and the AI INterface differ in this,
* the AI Interface will not be used.
* Changes here usually indicate that struct memebers were
* added or removed.
*/
#define AIINTERFACE_ABI_VERSION_FAIL ( \
sizeof(enum LevelOfSupport) \
+ sizeof(struct SAIFloat3) \
+ sizeof(struct SSkirmishAILibrary) \
+ sizeof(struct SSkirmishAICallback) \
+ sizeof(struct SAIInterfaceLibrary) \
+ sizeof(struct SAIInterfaceCallback) \
+ AIINTERFACE_EVENTS_ABI_VERSION \
+ AIINTERFACE_COMMANDS_ABI_VERSION \
)
/**
* Returns the Application Binary Interface version, warning part.
* Interface and engine will try to run/work together,
* if they differ only in the warning part of the ABI version.
* Changes here could indicate that function arguments got changed,
* which could cause a crash, but it could be unimportant changes
* like added comments or code reformatting aswell.
*/
#define AIINTERFACE_ABI_VERSION_WARNING ( \
sizeof(int) \
+ sizeof(char) \
+ sizeof(void*) \
+ sizeof(size_t) \
+ sizeof(float) \
+ sizeof(short) \
+ sizeof(bool) \
)
/**
* @brief max skirmish AIs
*
* Defines the maximum number of skirmish AIs.
* As there can not be more then spring allows teams, this is the upper limit.
* (currently (July 2008) 16 real teams)
*/
//const unsigned int MAX_SKIRMISH_AIS = MAX_TEAMS - 1;
#define MAX_SKIRMISH_AIS 16
//const char* const AI_INTERFACES_DATA_DIR = "AI/Interfaces";
#define AI_INTERFACES_DATA_DIR "AI/Interfaces"
#define SKIRMISH_AI_DATA_DIR "AI/Skirmish"
#endif // _AIDEFINES_H
|