aircraft.h
author glx
Wed, 30 Aug 2006 20:08:58 +0000
changeset 4461 e46bbe947a06
parent 3987 96b119a9fb94
child 4653 091f530bae28
permissions -rw-r--r--
(svn r6244) -Fix: allow any order for strgen parameters
/* $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 */