From 3d6c09b38d54da55ba7688fab8acb5879a34c861 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 10 Jan 2009 09:51:14 +0000 Subject: (svn r14952) -Codechange: unify the "can vehicle go to station" tests --- src/aircraft.h | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'src/aircraft.h') diff --git a/src/aircraft.h b/src/aircraft.h index b5a231e25..faf888f88 100644 --- a/src/aircraft.h +++ b/src/aircraft.h @@ -34,29 +34,6 @@ static inline bool IsNormalAircraft(const Vehicle *v) return v->subtype <= AIR_AIRCRAFT; } -/** Checks if an aircraft can use the station in question - * @param engine The engine to test - * @param st The station - * @return true if the aircraft can use the station - */ -static inline bool CanAircraftUseStation(EngineID engine, const Station *st) -{ - const AirportFTAClass *apc = st->Airport(); - const AircraftVehicleInfo *avi = AircraftVehInfo(engine); - - return (apc->flags & (avi->subtype & AIR_CTOL ? AirportFTAClass::AIRPLANES : AirportFTAClass::HELICOPTERS)) != 0; -} - -/** Checks if an aircraft can use the station at the tile in question - * @param engine The engine to test - * @param tile The tile where the station is - * @return true if the aircraft can use the station - */ -static inline bool CanAircraftUseStation(EngineID engine, TileIndex tile) -{ - return CanAircraftUseStation(engine, GetStationByTile(tile)); -} - /** * Calculates cargo capacity based on an aircraft's passenger * and mail capacities. -- cgit v1.2.3-54-g00ecf