Files @ r4118:b656cd93a69a
Branch filter:

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

miham
(svn r5462) WebTranslator2 update to 2006-07-05 19:54:20
bulgarian - 218 fixed, 79 changed by quicksilverbg (20), kokobongo (203), groupsky (74)
french - 1 changed by glx (1)
italian - 14 changed by sidew (14)
/* $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 */