Files @ r3998:071ee4637db1
Branch filter:

Location: cpp/openttd-patchpack/source/aircraft.h

miham
(svn r5202) WebTranslator2 update to 2006-06-09 19:46:28
american - 4 fixed by WhiteRabbit (4)
dutch - 4 fixed by webfreakz (4)
turkish - 4 fixed, 4 changed by jnmbk (8)
ukrainian - 4 fixed by znikoz (4)
/* $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 */