OpenTTD
|
All airport-related information. More...
#include <station_base.h>
Public Member Functions | |
const AirportSpec * | GetSpec () const |
Get the AirportSpec that from the airport type of this airport. | |
const AirportFTAClass * | GetFTA () const |
Get the finite-state machine for this airport or the finite-state machine for the dummy airport in case this isn't an airport. | |
bool | HasHangar () const |
Check if this airport has at least one hangar. | |
TileIndex | GetRotatedTileFromOffset (TileIndexDiffC tidc) const |
Add the tileoffset to the base tile of this airport but rotate it first. | |
TileIndex | GetHangarTile (uint hangar_num) const |
Get the first tile of the given hangar. | |
Direction | GetHangarExitDirection (TileIndex tile) const |
Get the exit direction of the hangar at a specific tile. | |
uint | GetHangarNum (TileIndex tile) const |
Get the hangar number of the hangar at a specific tile. | |
uint | GetNumHangars () const |
Get the number of hangars on this airport. | |
![]() | |
OrthogonalTileArea (TileIndex tile=INVALID_TILE, uint8 w=0, uint8 h=0) | |
Construct this tile area with some set values. | |
OrthogonalTileArea (TileIndex start, TileIndex end) | |
Construct this tile area based on two points. | |
void | Add (TileIndex to_add) |
Add a single tile to a tile area; enlarge if needed. | |
void | Clear () |
Clears the 'tile area', i.e. | |
bool | Intersects (const OrthogonalTileArea &ta) const |
Does this tile area intersect with another? | |
bool | Contains (TileIndex tile) const |
Does this tile area contain a tile? | |
void | ClampToMap () |
Clamp the tile area to map borders. | |
TileIndex | GetCenterTile () const |
Get the center tile. |
Data Fields | |
uint64 | flags |
stores which blocks on the airport are taken. was 16 bit earlier on, then 32 | |
byte | type |
Type of this airport,. | |
byte | layout |
Airport layout number. | |
DirectionByte | rotation |
How this airport is rotated. | |
PersistentStorage * | psa |
Persistent storage for NewGRF airports. | |
![]() | |
TileIndex | tile |
The base tile of the area. | |
uint16 | w |
The width of the area. | |
uint16 | h |
The height of the area. |
Private Member Functions | |
const HangarTileTable * | GetHangarDataByTile (TileIndex tile) const |
Retrieve hangar information of a hangar at a given tile. |
All airport-related information.
Only valid if tile != INVALID_TILE.
Definition at line 305 of file station_base.h.
|
inline |
Get the finite-state machine for this airport or the finite-state machine for the dummy airport in case this isn't an airport.
Definition at line 332 of file station_base.h.
References AirportSpec::fsm, and GetSpec().
Referenced by AircraftController(), AircraftNextAirportPos_and_Order(), CanVehicleUseStation(), CheckOrders(), FindNearestHangar(), FloodVehicleProc(), GetVehiclePosOnBuild(), MapAircraftMovementState(), MaybeCrashAirplane(), Vehicle::PreDestructor(), and UpdateAirplanesOnNewStation().
|
inlineprivate |
Retrieve hangar information of a hangar at a given tile.
tile | Tile containing the hangar. |
Definition at line 431 of file station_base.h.
References AirportSpec::depot_table, GetRotatedTileFromOffset(), GetSpec(), AirportSpec::nof_depots, and HangarTileTable::ti.
Referenced by GetHangarExitDirection(), and GetHangarNum().
Get the exit direction of the hangar at a specific tile.
tile | The tile to query. |
Definition at line 390 of file station_base.h.
References ChangeDir(), HangarTileTable::dir, DirDifference(), GetHangarDataByTile(), GetSpec(), AirportSpec::rotation, and rotation.
Referenced by AircraftEventHandler_InHangar().
|
inline |
Get the hangar number of the hangar at a specific tile.
tile | The tile to query. |
Definition at line 403 of file station_base.h.
References GetHangarDataByTile(), and HangarTileTable::hangar_num.
Referenced by CmdBuildAircraft().
|
inline |
Get the first tile of the given hangar.
hangar_num | The hangar to get the location of. |
Definition at line 373 of file station_base.h.
References AirportSpec::depot_table, GetRotatedTileFromOffset(), GetSpec(), HangarTileTable::hangar_num, AirportSpec::nof_depots, and HangarTileTable::ti.
Referenced by CmdBuildAircraft(), GetVehiclePosOnBuild(), IsHangar(), and RemoveAirport().
|
inline |
Get the number of hangars on this airport.
Definition at line 410 of file station_base.h.
References AirportSpec::depot_table, GetSpec(), HangarTileTable::hangar_num, HasBit(), AirportSpec::nof_depots, and SetBit().
Referenced by RemoveAirport().
|
inline |
Add the tileoffset to the base tile of this airport but rotate it first.
The base tile is the northernmost tile of this airport. This function helps to make sure that getting the tile of a hangar works even for rotated airport layouts without requiring a rotated array of hangar tiles.
tidc | The tilediff to add to the airport tile. |
Definition at line 351 of file station_base.h.
References DIR_E, DIR_N, DIR_S, DIR_W, GetSpec(), rotation, AirportSpec::size_x, AirportSpec::size_y, OrthogonalTileArea::tile, TileDiffXY(), ToTileIndexDiff(), TileIndexDiffC::x, and TileIndexDiffC::y.
Referenced by GetHangarDataByTile(), and GetHangarTile().
|
inline |
Get the AirportSpec that from the airport type of this airport.
If there is no airport (tile
== INVALID_TILE) then return the dummy AirportSpec.
Definition at line 320 of file station_base.h.
References AirportSpec::dummy, AirportSpec::Get(), INVALID_TILE, OrthogonalTileArea::tile, and type.
Referenced by AfterLoadGame(), AirportMaintenanceCost(), GetFTA(), GetHangarDataByTile(), GetHangarExitDirection(), GetHangarTile(), GetNumHangars(), GetRotatedTileFromOffset(), HasHangar(), IsHangar(), RemoveAirport(), and UpdateAirportsNoise().
|
inline |
Check if this airport has at least one hangar.
Definition at line 338 of file station_base.h.
References GetSpec(), and AirportSpec::nof_depots.
Referenced by AircraftEventHandler_AtTerminal(), CmdInsertOrder(), Aircraft::FindClosestDepot(), and FindNearestHangar().
byte Airport::type |
Type of this airport,.
Definition at line 309 of file station_base.h.
Referenced by AfterLoadGame(), AircraftController(), AirportTileScopeResolver::AirportTileScopeResolver(), CmdBuildAirport(), CmdDeleteTown(), Disaster_Zeppeliner_Init(), GetSpec(), UpdateAirportsNoise(), and Station::UpdateVirtCoord().