aircraft.h
author bjarni
Sat, 02 Sep 2006 09:35:03 +0000
changeset 4519 1437b1e7416c
parent 3987 96b119a9fb94
child 4653 091f530bae28
permissions -rw-r--r--
(svn r6304) -Codechange r6295: Use !! instead of (bool) in commands to send vehicles to depots
/* $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 */