diff options
author | celestar <celestar@openttd.org> | 2006-03-29 19:37:18 +0000 |
---|---|---|
committer | celestar <celestar@openttd.org> | 2006-03-29 19:37:18 +0000 |
commit | 3ae99e17bbf4ceb9b10019473f48c9b73221af55 (patch) | |
tree | 7a0d4bdad6d3567a2b54f69e19309a9d581123cf | |
parent | 8310a463513375d2a31eab0795d923a0eed1c2b1 (diff) | |
download | openttd-3ae99e17bbf4ceb9b10019473f48c9b73221af55.tar.xz |
(svn r4155) -Changed GetRoadStopByTile to use GetStationType and moved it. TODO: unify RS_TRUCK and STATION_TRUCK (same for bus)
-rw-r--r-- | station.h | 5 | ||||
-rw-r--r-- | station_map.h | 6 |
2 files changed, 6 insertions, 5 deletions
@@ -194,11 +194,6 @@ uint GetStationPlatforms(const Station *st, TileIndex tile); void StationPickerDrawSprite(int x, int y, RailType railtype, int image); RoadStop * GetRoadStopByTile(TileIndex tile, RoadStopType type); -static inline RoadStopType GetRoadStopType(TileIndex tile) -{ - return (_m[tile].m5 < 0x47) ? RS_TRUCK : RS_BUS; -} - RoadStop * GetPrimaryRoadStop(const Station *st, RoadStopType type); uint GetNumRoadStops(const Station* st, RoadStopType type); RoadStop * AllocateRoadStop( void ); diff --git a/station_map.h b/station_map.h index 41d9f6ce4..77d1f435f 100644 --- a/station_map.h +++ b/station_map.h @@ -60,6 +60,12 @@ typedef enum StationType { StationType GetStationType(TileIndex); +static inline RoadStopType GetRoadStopType(TileIndex t) +{ + assert(GetStationType(t) == STATION_TRUCK || GetStationType(t) == STATION_BUS); + return GetStationType(t) == STATION_TRUCK ? RS_TRUCK : RS_BUS; +} + static inline bool IsRailwayStation(TileIndex t) { return _m[t].m5 < RAILWAY_BASE + RAILWAY_SIZE; |