From 43d691df17d98aa5493e63d9e7e082d975290af8 Mon Sep 17 00:00:00 2001 From: dominik Date: Sun, 15 Aug 2004 13:21:18 +0000 Subject: (svn r56) Improved order checker + patch setting for it (celestar) --- station_cmd.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'station_cmd.c') diff --git a/station_cmd.c b/station_cmd.c index d10e9ef3b..3422e5a9a 100644 --- a/station_cmd.c +++ b/station_cmd.c @@ -61,6 +61,20 @@ static Station *GetStationAround(uint tile, int w, int h, int closest_station) return (closest_station == -1) ? NULL : DEREF_STATION(closest_station); } +TileIndex GetStationTileForVehicle(Vehicle *v, Station *st) +{ + TileIndex required_tile=0; + + switch (v->type) { + case VEH_Train: return st->train_tile; + case VEH_Aircraft: return st->airport_tile; + case VEH_Ship: return st->dock_tile; + case VEH_Road: return (v->cargo_type == CT_PASSENGERS) ? st->bus_tile : st->lorry_tile; + default: + assert(false); + return 0; + } +} static bool CheckStationSpreadOut(Station *st, uint tile, int w, int h) { -- cgit v1.2.3-54-g00ecf