From 8583274f183dd88c7488d35e36efe340033bed76 Mon Sep 17 00:00:00 2001 From: yexo Date: Sat, 14 Feb 2009 21:15:23 +0000 Subject: (svn r15488) -Change [API CHANGE]: Add support for distant-join stations. --- src/ai/api/ai_airport.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/ai/api/ai_airport.hpp') diff --git a/src/ai/api/ai_airport.hpp b/src/ai/api/ai_airport.hpp index 7693774e6..559d9c6ae 100644 --- a/src/ai/api/ai_airport.hpp +++ b/src/ai/api/ai_airport.hpp @@ -120,9 +120,10 @@ public: * Builds a airport with tile at the topleft corner. * @param tile The topleft corner of the airport. * @param type The type of airport to build. - * @param join_adjacent When building next to an other station, don't create a new station when this flag is true. + * @param station_id The station to join, AIStation::STATION_NEW or AIStation::STATION_JOIN_ADJACENT. * @pre AIMap::IsValidTile(tile). * @pre AirportAvailable(type). + * @pre station_id == AIStation::STATION_NEW || station_id == AIStation::STATION_JOIN_ADJACENT || AIStation::IsValidStation(station_id). * @exception AIError::ERR_AREA_NOT_CLEAR * @exception AIError::ERR_FLAT_LAND_REQUIRED * @exception AIError::ERR_LOCAL_AUTHORITY_REFUSES @@ -130,7 +131,7 @@ public: * @exception AIStation::ERR_STATION_TOO_CLOSE_TO_OTHER_STATION * @return Whether the airport has been/can be build or not. */ - static bool BuildAirport(TileIndex tile, AirportType type, bool join_adjacent); + static bool BuildAirport(TileIndex tile, AirportType type, StationID station_id); /** * Removes a airport. -- cgit v1.2.3-54-g00ecf