1
0
Fork 0
OpenTTD/tunnel_map.h

27 lines
376 B
C

/* $Id$ */
#ifndef TUNNEL_MAP_H
#define TUNNEL_MAP_H
#include "macros.h"
#include "map.h"
static inline bool IsTunnel(TileIndex t)
{
assert(IsTileType(t, MP_TUNNELBRIDGE));
return !HASBIT(_m[t].m5, 7);
}
static inline uint GetTunnelDirection(TileIndex t)
{
assert(IsTunnelTile(t));
return (uint)GB(_m[t].m5, 0, 2);
}
bool IsTunnelInWay(TileIndex, uint z);
#endif