Files
@ r4288:b6dbdc0a7329
Branch filter:
Location: cpp/openttd-patchpack/source/aircraft.h - annotation
r4288:b6dbdc0a7329
478 B
text/x-c
(svn r5918) -Cleanup: rename ConvertDayToYMD/ConvertYMDToDay as they really convert a Date to/from a YearMonthDay.
-Cleanup: swap ConvertDateToYMD's parameters to make the order consistent with the name of the function.
-Cleanup: swap ConvertDateToYMD's parameters to make the order consistent with the name of the function.
r3963:fb193040fb7a r3963:fb193040fb7a r3987:274c1601e34c r3987:274c1601e34c r3987:274c1601e34c r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3987:274c1601e34c r3987:274c1601e34c r3987:274c1601e34c r3987:274c1601e34c | /* $Id$ */
#ifndef AIRCRAFT_H
#define AIRCRAFT_H
#include "station_map.h"
#include "vehicle.h"
static inline bool IsAircraftInHangar(const Vehicle* v)
{
assert(v->type == VEH_Aircraft);
return v->vehstatus & VS_HIDDEN && IsHangarTile(v->tile);
}
static inline bool IsAircraftInHangarStopped(const Vehicle* v)
{
return IsAircraftInHangar(v) && v->vehstatus & VS_STOPPED;
}
uint16 AircraftDefaultCargoCapacity(CargoID cid, EngineID engine_type);
#endif /* AIRCRAFT_H */
|