Files
@ r5312:ffd375effb01
Branch filter:
Location: cpp/openttd-patchpack/source/aircraft.h - annotation
r5312:ffd375effb01
597 B
text/x-c
(svn r7468) -Codechange: [win32] Add some comments to MB/WIDE_TO_WIDE/MB_[BUFFER] macros and
use them some more in win32 code. Also for the clipboard use the convert_from_fs
function instead of calling Win32 API directly. Make the static buffers in OTTD2FS
and FS2OTTD the same size (character-length wise)
use them some more in win32 code. Also for the clipboard use the convert_from_fs
function instead of calling Win32 API directly. Make the static buffers in OTTD2FS
and FS2OTTD the same size (character-length wise)
r3963:fb193040fb7a r3963:fb193040fb7a r3987:274c1601e34c r3987:274c1601e34c r3987:274c1601e34c r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3963:fb193040fb7a r3987:274c1601e34c r3987:274c1601e34c r3987:274c1601e34c r4653:3d461c3cd615 r4732:228e8eddf45b r4653:3d461c3cd615 r3987:274c1601e34c | /* $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);
void CcCloneAircraft(bool success, TileIndex tile, uint32 p1, uint32 p2);
void HandleAircraftEnterHangar(Vehicle *v);
#endif /* AIRCRAFT_H */
|