mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-01-24 08:01:33 +00:00
17 lines
341 B
C
17 lines
341 B
C
|
/* $Id$ */
|
||
|
|
||
|
#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;
|
||
|
}
|