summaryrefslogtreecommitdiff
path: root/src/newgrf_generic.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-05-02 16:14:23 +0000
committerrubidium <rubidium@openttd.org>2011-05-02 16:14:23 +0000
commit4d5dbf51707c42c24eeafdb65016b079c54adcf2 (patch)
tree0197dcc17f4a8411ecea2223f356019c902fe7b9 /src/newgrf_generic.h
parente9837ff1ec1326aec622366ae29ff1aa81581daf (diff)
downloadopenttd-4d5dbf51707c42c24eeafdb65016b079c54adcf2.tar.xz
(svn r22410) -Document: some more bits ;)
Diffstat (limited to 'src/newgrf_generic.h')
-rw-r--r--src/newgrf_generic.h24
1 files changed, 14 insertions, 10 deletions
diff --git a/src/newgrf_generic.h b/src/newgrf_generic.h
index f079efac8..ffcaf8921 100644
--- a/src/newgrf_generic.h
+++ b/src/newgrf_generic.h
@@ -14,17 +14,21 @@
#include "cargo_type.h"
#include "industry_type.h"
+#include "newgrf.h"
+struct SpriteGroup;
+
+/** AI events for asking the NewGRF for information. */
enum AIConstructionEvent {
AICE_TRAIN_CHECK_RAIL_ENGINE = 0x00, ///< Check if we should build an engine
- AICE_TRAIN_CHECK_ELRAIL_ENGINE = 0x01,
- AICE_TRAIN_CHECK_MONORAIL_ENGINE = 0x02,
- AICE_TRAIN_CHECK_MAGLEV_ENGINE = 0x03,
- AICE_TRAIN_GET_RAIL_WAGON = 0x08,
- AICE_TRAIN_GET_ELRAIL_WAGON = 0x09,
- AICE_TRAIN_GET_MONORAIL_WAGON = 0x0A,
- AICE_TRAIN_GET_MAGLEV_WAGON = 0x0B,
- AICE_TRAIN_GET_RAILTYPE = 0x0F,
+ AICE_TRAIN_CHECK_ELRAIL_ENGINE = 0x01, ///< Check if we should build an engine
+ AICE_TRAIN_CHECK_MONORAIL_ENGINE = 0x02, ///< Check if we should build an engine
+ AICE_TRAIN_CHECK_MAGLEV_ENGINE = 0x03, ///< Check if we should build an engine
+ AICE_TRAIN_GET_RAIL_WAGON = 0x08, ///< Check if we should build an engine
+ AICE_TRAIN_GET_ELRAIL_WAGON = 0x09, ///< Check if we should build an engine
+ AICE_TRAIN_GET_MONORAIL_WAGON = 0x0A, ///< Check if we should build an engine
+ AICE_TRAIN_GET_MAGLEV_WAGON = 0x0B, ///< Check if we should build an engine
+ AICE_TRAIN_GET_RAILTYPE = 0x0F, ///< Check if we should build a railtype
AICE_ROAD_CHECK_ENGINE = 0x00, ///< Check if we should build an engine
AICE_ROAD_GET_FIRST_ENGINE = 0x01, ///< Unused, we check all
@@ -43,8 +47,8 @@ static const IndustryType IT_AI_UNKNOWN = 0xFE; ///< The AI has no specific indu
static const IndustryType IT_AI_TOWN = 0xFF; ///< The AI actually wants to transport to/from a town, not an industry.
void ResetGenericCallbacks();
-void AddGenericCallback(uint8 feature, const struct GRFFile *file, const struct SpriteGroup *group);
+void AddGenericCallback(uint8 feature, const GRFFile *file, const SpriteGroup *group);
-uint16 GetAiPurchaseCallbackResult(uint8 feature, CargoID cargo_type, uint8 default_selection, IndustryType src_industry, IndustryType dst_industry, uint8 distance, AIConstructionEvent event, uint8 count, uint8 station_size, const struct GRFFile **file);
+uint16 GetAiPurchaseCallbackResult(uint8 feature, CargoID cargo_type, uint8 default_selection, IndustryType src_industry, IndustryType dst_industry, uint8 distance, AIConstructionEvent event, uint8 count, uint8 station_size, const GRFFile **file);
#endif /* NEWGRF_GENERIC_H */