Files
@ r6418:8a4b147a8f33
Branch filter:
Location: cpp/openttd-patchpack/source/src/aircraft.h - annotation
r6418:8a4b147a8f33
3.5 KiB
text/x-c
(svn r9554) -Documentation: add documentation to some map accessors.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r6121:a8ff6abe7fb2 r6117:d11b4c5c0aea r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r6415:0ff8d179f802 r6248:b940b09d7ab8 r6409:8c320ab64062 r6410:c9e7142728ba r6409:8c320ab64062 r6409:8c320ab64062 r6248:b940b09d7ab8 r5854:d116ce6001d7 r5854:d116ce6001d7 r5854:d116ce6001d7 r5854:d116ce6001d7 r5854:d116ce6001d7 r5854:d116ce6001d7 r5854:d116ce6001d7 r5854:d116ce6001d7 r5854:d116ce6001d7 r6259:e2dba394134b r5854:d116ce6001d7 r5854:d116ce6001d7 r5854:d116ce6001d7 r5854:d116ce6001d7 r5854:d116ce6001d7 r5854:d116ce6001d7 r6409:8c320ab64062 r6409:8c320ab64062 r6409:8c320ab64062 r6409:8c320ab64062 r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r6259:e2dba394134b r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r6409:8c320ab64062 r6409:8c320ab64062 r6409:8c320ab64062 r6409:8c320ab64062 r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r6237:48ff143a04eb r6237:48ff143a04eb r6237:48ff143a04eb r6237:48ff143a04eb r6237:48ff143a04eb r6237:48ff143a04eb r6237:48ff143a04eb r6237:48ff143a04eb r6237:48ff143a04eb r6237:48ff143a04eb r6237:48ff143a04eb r6245:8321bb387e52 r6237:48ff143a04eb r6237:48ff143a04eb r6409:8c320ab64062 r6409:8c320ab64062 r6409:8c320ab64062 r6409:8c320ab64062 r6409:8c320ab64062 r6409:8c320ab64062 r6409:8c320ab64062 r6410:c9e7142728ba r5475:3f5cd13d1b63 r6415:0ff8d179f802 r6415:0ff8d179f802 r6415:0ff8d179f802 r6415:0ff8d179f802 r6415:0ff8d179f802 r6415:0ff8d179f802 r6415:0ff8d179f802 r5780:df0b8d779b37 r6415:0ff8d179f802 r6415:0ff8d179f802 r6415:0ff8d179f802 r6415:0ff8d179f802 r6415:0ff8d179f802 r6415:0ff8d179f802 r6415:0ff8d179f802 r6415:0ff8d179f802 r5475:3f5cd13d1b63 r6409:8c320ab64062 r6409:8c320ab64062 r6409:8c320ab64062 r6409:8c320ab64062 r5475:3f5cd13d1b63 r6409:8c320ab64062 r6409:8c320ab64062 r6409:8c320ab64062 r6409:8c320ab64062 r6409:8c320ab64062 r6409:8c320ab64062 r5972:0afe141fca29 r5475:3f5cd13d1b63 r6415:0ff8d179f802 r6415:0ff8d179f802 r6415:0ff8d179f802 r6415:0ff8d179f802 r6087:a13ab75a089f r6087:a13ab75a089f r5475:3f5cd13d1b63 | /* $Id$ */
/** @file aircraft.h */
#ifndef AIRCRAFT_H
#define AIRCRAFT_H
#include "station_map.h"
#include "vehicle.h"
/** An aircraft can be one ot those types */
enum AircraftSubType {
AIR_HELICOPTER = 0, ///< an helicopter
AIR_AIRCRAFT = 2, ///< an airplane
AIR_SHADOW = 4, ///< shadow of the aircraft
AIR_ROTOR = 6 ///< rotor of an helicopter
};
/** Check if the aircraft type is a normal flying device; eg
* not a rotor or a shadow
* @param v vehicle to check
* @return Returns true if the aircraft is a helicopter/airplane and
* false if it is a shadow or a rotor) */
static inline bool IsNormalAircraft(const Vehicle *v)
{
assert(v->type == VEH_AIRCRAFT);
/* To be fully correct the commented out functionality is the proper one,
* but since value can only be 0 or 2, it is sufficient to only check <= 2
* return (v->subtype == AIR_HELICOPTER) || (v->subtype == AIR_AIRCRAFT); */
return v->subtype <= AIR_AIRCRAFT;
}
/** Check if this aircraft is in a hangar
* @param v vehicle to check
* @return true if in hangar
*/
static inline bool IsAircraftInHangar(const Vehicle* v)
{
assert(v->type == VEH_AIRCRAFT);
return v->vehstatus & VS_HIDDEN && IsHangarTile(v->tile);
}
/** Check if this aircraft is in a hangar and stopped
* @param v vehicle to check
* @return true if in hangar and stopped
*/
static inline bool IsAircraftInHangarStopped(const Vehicle* v)
{
return IsAircraftInHangar(v) && v->vehstatus & VS_STOPPED;
}
/** Checks if an aircraft is buildable at the tile in question
* @param engine The engine to test
* @param tile The tile where the hangar is
* @return true if the aircraft can be build
*/
static inline bool IsAircraftBuildableAtStation(EngineID engine, TileIndex tile)
{
const Station *st = GetStationByTile(tile);
const AirportFTAClass *apc = st->Airport();
const AircraftVehicleInfo *avi = AircraftVehInfo(engine);
return (apc->flags & (avi->subtype & AIR_CTOL ? AirportFTAClass::AIRPLANES : AirportFTAClass::HELICOPTERS)) != 0;
}
/**
* Calculates cargo capacity based on an aircraft's passenger
* and mail capacities.
* @param cid Which cargo type to calculate a capacity for.
* @param avi Which engine to find a cargo capacity for.
* @return New cargo capacity value.
*/
uint16 AircraftDefaultCargoCapacity(CargoID cid, const AircraftVehicleInfo *avi);
/**
* This is the Callback method after the construction attempt of an aircraft
* @param success indicates completion (or not) of the operation
* @param tile of depot where aircraft is built
* @param p1 unused
* @param p2 unused
*/
void CcBuildAircraft(bool success, TileIndex tile, uint32 p1, uint32 p2);
/**
* This is the Callback method after the cloning attempt of an aircraft
* @param success indicates completion (or not) of the operation
* @param tile unused
* @param p1 unused
* @param p2 unused
*/
void CcCloneAircraft(bool success, TileIndex tile, uint32 p1, uint32 p2);
/** Handle Aircraft specific tasks when a an Aircraft enters a hangar
* @param *v Vehicle that enters the hangar
*/
void HandleAircraftEnterHangar(Vehicle *v);
/** Get the size of the sprite of an aircraft sprite heading west (used for lists)
* @param engine The engine to get the sprite from
* @param width The width of the sprite
* @param height The height of the sprite
*/
void GetAircraftSpriteSize(EngineID engine, uint &width, uint &height);
/**
* Updates the status of the Aircraft heading or in the station
* @param st Station been updated
*/
void UpdateAirplanesOnNewStation(const Station *st);
#endif /* AIRCRAFT_H */
|