From 4da99989b9b1420d95756cb981663c3e49f481fb Mon Sep 17 00:00:00 2001 From: tron Date: Sun, 5 Mar 2006 12:22:20 +0000 Subject: (svn r3766) Add a function to get the RoadBits from an arbitrary tile --- road_map.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'road_map.h') diff --git a/road_map.h b/road_map.h index ec9cd33cc..120688474 100644 --- a/road_map.h +++ b/road_map.h @@ -22,6 +22,12 @@ static inline RoadBits ComplementRoadBits(RoadBits r) return ROAD_ALL ^ r; } +static inline RoadBits DiagDirToRoadBits(DiagDirection d) +{ + return 1 << (3 ^ d); +} + + static inline RoadBits GetRoadBits(TileIndex tile) { return GB(_m[tile].m5, 0, 4); @@ -50,6 +56,17 @@ static inline RoadType GetRoadType(TileIndex tile) } +/** + * Returns the RoadBits on an arbitrary tile + * Special behavior: + * - road depots: entrance is treated as road piece + * - road tunnels: entrance is treated as road piece + * - bridge ramps: treated as straight road + * - bridge middle parts: bridge itself is ignored + */ +RoadBits GetAnyRoadBits(TileIndex); + + static inline void MakeRoadNormal(TileIndex t, Owner owner, RoadBits bits, uint town) { SetTileType(t, MP_STREET); -- cgit v1.2.3-54-g00ecf