diff options
author | belugas <belugas@openttd.org> | 2006-05-12 00:27:12 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2006-05-12 00:27:12 +0000 |
commit | 2ea90251d01a89548f1e52a8c8b19425a0e58147 (patch) | |
tree | 36fe79f884e68254fe04d4ca3074abb5c9ad1819 | |
parent | da19d0653eb2ad5dc03993960efa68314f9536bc (diff) | |
download | openttd-2ea90251d01a89548f1e52a8c8b19425a0e58147.tar.xz |
(svn r4838) Newgrf : Add empty base for newcargos
-rw-r--r-- | newgrf.c | 27 | ||||
-rw-r--r-- | openttd.h | 1 |
2 files changed, 19 insertions, 9 deletions
@@ -1050,6 +1050,11 @@ static bool BridgeChangeInfo(uint brid, int numinfo, int prop, byte **bufp, int return ret; } +static bool CargosChangeInfo(uint gvid, int numinfo, int prop, byte **bufp, int len) +{ + return false; +} + static bool GlobalVarChangeInfo(uint gvid, int numinfo, int prop, byte **bufp, int len) { byte *buf = *bufp; @@ -1098,15 +1103,19 @@ static void VehicleChangeInfo(byte *buf, int len) /* TODO: Bridges, town houses. */ static const VCI_Handler handler[] = { - /* GSF_TRAIN */ RailVehicleChangeInfo, - /* GSF_ROAD */ RoadVehicleChangeInfo, - /* GSF_SHIP */ ShipVehicleChangeInfo, - /* GSF_AIRCRAFT */ AircraftVehicleChangeInfo, - /* GSF_STATION */ StationChangeInfo, - /* GSF_CANAL */ NULL, - /* GSF_BRIDGE */ BridgeChangeInfo, - /* GSF_TOWNHOUSE */NULL, - /* GSF_GLOBALVAR */GlobalVarChangeInfo, + /* GSF_TRAIN */ RailVehicleChangeInfo, + /* GSF_ROAD */ RoadVehicleChangeInfo, + /* GSF_SHIP */ ShipVehicleChangeInfo, + /* GSF_AIRCRAFT */ AircraftVehicleChangeInfo, + /* GSF_STATION */ StationChangeInfo, + /* GSF_CANAL */ NULL, + /* GSF_BRIDGE */ BridgeChangeInfo, + /* GSF_TOWNHOUSE */ NULL, + /* GSF_GLOBALVAR */ GlobalVarChangeInfo, + /* GSF_INDUSTRYTILES */NULL, + /* GSF_INDUSTRIES */ NULL, + /* GSF_CARGOS */ CargosChangeInfo, + /* GSF_SOUNDFX */ NULL, }; uint8 feature; @@ -67,6 +67,7 @@ typedef uint16 TownID; typedef byte PlayerID; typedef byte OrderID; typedef byte CargoID; +typedef byte LandscapeID; typedef uint16 StringID; typedef uint32 SpriteID; ///< The number of a sprite, without mapping bits and colortables typedef uint32 PalSpriteID; ///< The number of a sprite plus all the mapping bits and colortables |