Class that handles all airport related functions. More...
Public Types | |
enum | AirportType { AT_SMALL = 0, AT_LARGE = 1, AT_METROPOLITAN = 3, AT_INTERNATIONAL = 4, AT_COMMUTER = 5, AT_INTERCON = 7, AT_HELIPORT = 2, AT_HELISTATION = 8, AT_HELIDEPOT = 6, AT_INVALID = 255 } |
The types of airports available in the game. More... | |
enum | PlaneType { PT_HELICOPTER = 0, PT_SMALL_PLANE = 1, PT_BIG_PLANE = 3, PT_INVALID = -1 } |
All plane types available. More... | |
Static Public Member Functions | |
static bool | IsValidAirportType (AirportType type) |
Checks whether the given AirportType is valid and available. | |
static bool | IsAirportInformationAvailable (AirportType type) |
Can you get information on this airport type? As opposed to IsValidAirportType this will return also return true when an airport type is no longer buildable. | |
static Money | GetPrice (AirportType type) |
Get the cost to build this AirportType. | |
static bool | IsHangarTile (TileIndex tile) |
Checks whether the given tile is actually a tile with a hangar. | |
static bool | IsAirportTile (TileIndex tile) |
Checks whether the given tile is actually a tile with an airport. | |
static int32 | GetAirportWidth (AirportType type) |
Get the width of this type of airport. | |
static int32 | GetAirportHeight (AirportType type) |
Get the height of this type of airport. | |
static int32 | GetAirportCoverageRadius (AirportType type) |
Get the coverage radius of this type of airport. | |
static int32 | GetNumHangars (TileIndex tile) |
Get the number of hangars of the airport. | |
static TileIndex | GetHangarOfAirport (TileIndex tile) |
Get the first hanger tile of the airport. | |
static bool | BuildAirport (TileIndex tile, AirportType type, StationID station_id) |
Builds a airport with tile at the topleft corner. | |
static bool | RemoveAirport (TileIndex tile) |
Removes an airport. | |
static AirportType | GetAirportType (TileIndex tile) |
Get the AirportType of an existing airport. | |
static int | GetNoiseLevelIncrease (TileIndex tile, AirportType type) |
Get the noise that will be added to the nearest town if an airport was built at this tile. | |
static TownID | GetNearestTown (TileIndex tile, AirportType type) |
Get the TownID of the town whose local authority will influence an airport at some tile. |
Class that handles all airport related functions.
The types of airports available in the game.
enum AIAirport::PlaneType |
static bool AIAirport::BuildAirport | ( | TileIndex | tile, | |
AirportType | type, | |||
StationID | station_id | |||
) | [static] |
Builds a airport with tile at the topleft corner.
tile | The topleft corner of the airport. | |
type | The type of airport to build. | |
station_id | The station to join, AIStation::STATION_NEW or AIStation::STATION_JOIN_ADJACENT. |
AIError::ERR_AREA_NOT_CLEAR | ||
AIError::ERR_FLAT_LAND_REQUIRED | ||
AIError::ERR_LOCAL_AUTHORITY_REFUSES | ||
AIStation::ERR_STATION_TOO_LARGE | ||
AIStation::ERR_STATION_TOO_CLOSE_TO_ANOTHER_STATION |
static int32 AIAirport::GetAirportCoverageRadius | ( | AirportType | type | ) | [static] |
Get the coverage radius of this type of airport.
type | The type of airport. |
static int32 AIAirport::GetAirportHeight | ( | AirportType | type | ) | [static] |
Get the height of this type of airport.
type | The type of airport. |
static AirportType AIAirport::GetAirportType | ( | TileIndex | tile | ) | [static] |
Get the AirportType of an existing airport.
tile | Any tile of the airport. |
static int32 AIAirport::GetAirportWidth | ( | AirportType | type | ) | [static] |
Get the width of this type of airport.
type | The type of airport. |
Get the first hanger tile of the airport.
tile | Any tile of the airport. |
static TownID AIAirport::GetNearestTown | ( | TileIndex | tile, | |
AirportType | type | |||
) | [static] |
Get the TownID of the town whose local authority will influence an airport at some tile.
tile | The tile to check. | |
type | The AirportType to check. |
static int AIAirport::GetNoiseLevelIncrease | ( | TileIndex | tile, | |
AirportType | type | |||
) | [static] |
Get the noise that will be added to the nearest town if an airport was built at this tile.
tile | The tile to check. | |
type | The AirportType to check. |
static int32 AIAirport::GetNumHangars | ( | TileIndex | tile | ) | [static] |
Get the number of hangars of the airport.
tile | Any tile of the airport. |
static Money AIAirport::GetPrice | ( | AirportType | type | ) | [static] |
Get the cost to build this AirportType.
type | The AirportType to check. |
static bool AIAirport::IsAirportInformationAvailable | ( | AirportType | type | ) | [static] |
Can you get information on this airport type? As opposed to IsValidAirportType this will return also return true when an airport type is no longer buildable.
type | The AirportType to check. |
static bool AIAirport::IsAirportTile | ( | TileIndex | tile | ) | [static] |
Checks whether the given tile is actually a tile with an airport.
tile | The tile to check. |
static bool AIAirport::IsHangarTile | ( | TileIndex | tile | ) | [static] |
Checks whether the given tile is actually a tile with a hangar.
tile | The tile to check. |
static bool AIAirport::IsValidAirportType | ( | AirportType | type | ) | [static] |
Checks whether the given AirportType is valid and available.
type | The AirportType to check. |
static bool AIAirport::RemoveAirport | ( | TileIndex | tile | ) | [static] |
Removes an airport.
tile | Any tile of the airport. |
AIError::ERR_OWNED_BY_ANOTHER_COMPANY |