summaryrefslogtreecommitdiff
path: root/src/road_map.h
diff options
context:
space:
mode:
authorMichael Lutz <michi@icosahedron.de>2021-11-15 00:03:01 +0100
committerMichael Lutz <michi@icosahedron.de>2021-12-16 22:28:32 +0100
commit46bd2f1cedde365218a3f1a52116fe169587af89 (patch)
tree633af4662d44346fc74abe4646b22c01df42e78a /src/road_map.h
parent55170ae703dd2f55ae5c2151aa97dd12da1e917e (diff)
downloadopenttd-46bd2f1cedde365218a3f1a52116fe169587af89.tar.xz
Codechange: Un-bitstuff remaining transport infrastructure commands.
Diffstat (limited to 'src/road_map.h')
-rw-r--r--src/road_map.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/road_map.h b/src/road_map.h
index 22d0fa54d..4cb9125ea 100644
--- a/src/road_map.h
+++ b/src/road_map.h
@@ -15,6 +15,7 @@
#include "rail_type.h"
#include "road_func.h"
#include "tile_map.h"
+#include "road_type.h"
/** The different types of road tiles. */
@@ -281,18 +282,6 @@ static inline bool HasTownOwnedRoad(TileIndex t)
return HasTileRoadType(t, RTT_ROAD) && IsRoadOwner(t, RTT_ROAD, OWNER_TOWN);
}
-/** Which directions are disallowed ? */
-enum DisallowedRoadDirections {
- DRD_NONE, ///< None of the directions are disallowed
- DRD_SOUTHBOUND, ///< All southbound traffic is disallowed
- DRD_NORTHBOUND, ///< All northbound traffic is disallowed
- DRD_BOTH, ///< All directions are disallowed
- DRD_END, ///< Sentinel
-};
-DECLARE_ENUM_AS_BIT_SET(DisallowedRoadDirections)
-/** Helper information for extract tool. */
-template <> struct EnumPropsT<DisallowedRoadDirections> : MakeEnumPropsT<DisallowedRoadDirections, byte, DRD_NONE, DRD_END, DRD_END, 2> {};
-
/**
* Gets the disallowed directions
* @param t the tile to get the directions from