1 /* $Id: tunnel_map.h 23167 2011-11-08 19:44:41Z rubidium $ */
4 * This file is part of OpenTTD.
5 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
6 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
7 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
10 /** @file tunnel_map.h Map accessors for tunnels. */
17 typedef uint32 TunnelID
; ///< Type for the unique identifier of tunnels.
19 static const TunnelID TUNNEL_ID_MAP_LOOKUP
= 0xFFFF; ///< Sentinel ID value to store in m2 to indiciate that the ID should be looked up instead
23 * Is this a tunnel (entrance)?
24 * @param t the tile that might be a tunnel
25 * @pre IsTileType(t, MP_TUNNELBRIDGE)
26 * @return true if and only if this tile is a tunnel (entrance)
28 static inline bool IsTunnel(TileIndex t
)
30 assert(IsTileType(t
, MP_TUNNELBRIDGE
));
31 return !HasBit(_m
[t
].m5
, 7);
35 * Is this a tunnel (entrance)?
36 * @param t the tile that might be a tunnel
37 * @return true if and only if this tile is a tunnel (entrance)
39 static inline bool IsTunnelTile(TileIndex t
)
41 return IsTileType(t
, MP_TUNNELBRIDGE
) && IsTunnel(t
);
45 * Get the index of tunnel tile.
47 * @pre IsTunnelTile(t)
50 static inline TunnelID
GetTunnelIndex(TileIndex t
)
52 extern TunnelID
GetTunnelIndexByLookup(TileIndex t
);
54 assert(IsTunnelTile(t
));
55 TunnelID map_id
= _m
[t
].m2
;
56 return map_id
== TUNNEL_ID_MAP_LOOKUP
? GetTunnelIndexByLookup(t
) : map_id
;
59 TileIndex
GetOtherTunnelEnd(TileIndex
);
61 /** Flags for miscellaneous industry tile specialities */
62 enum IsTunnelInWayFlags
{
64 ITIWF_IGNORE_CHUNNEL
= 1 << 0, ///< Chunnel mid-parts are ignored, used when terraforming.
65 ITIWF_CHUNNEL_ONLY
= 1 << 1, ///< Only check for chunnels
67 DECLARE_ENUM_AS_BIT_SET(IsTunnelInWayFlags
)
69 bool IsTunnelInWay(TileIndex
, int z
, IsTunnelInWayFlags flags
= ITIWF_NONE
);
72 * Set the index of tunnel tile.
74 * @param id the tunnel ID
75 * @pre IsTunnelTile(t)
77 static inline void SetTunnelIndex(TileIndex t
, TunnelID id
)
79 assert(IsTunnelTile(t
));
80 _m
[t
].m2
= (id
>= TUNNEL_ID_MAP_LOOKUP
) ? TUNNEL_ID_MAP_LOOKUP
: id
;
84 * Makes a road tunnel entrance
85 * @param t the entrance of the tunnel
86 * @param o the owner of the entrance
87 * @param id the tunnel ID
88 * @param d the direction facing out of the tunnel
89 * @param r the road type used in the tunnel
91 static inline void MakeRoadTunnel(TileIndex t
, Owner o
, TunnelID id
, DiagDirection d
, RoadTypes r
)
93 SetTileType(t
, MP_TUNNELBRIDGE
);
97 _m
[t
].m5
= TRANSPORT_ROAD
<< 2 | d
;
98 SB(_me
[t
].m6
, 2, 4, 0);
100 SetTunnelIndex(t
, id
);
101 SetRoadOwner(t
, ROADTYPE_ROAD
, o
);
102 if (o
!= OWNER_TOWN
) SetRoadOwner(t
, ROADTYPE_TRAM
, o
);
107 * Makes a rail tunnel entrance
108 * @param t the entrance of the tunnel
109 * @param o the owner of the entrance
110 * @param id the tunnel ID
111 * @param d the direction facing out of the tunnel
112 * @param r the rail type used in the tunnel
114 static inline void MakeRailTunnel(TileIndex t
, Owner o
, TunnelID id
, DiagDirection d
, RailType r
)
116 SetTileType(t
, MP_TUNNELBRIDGE
);
118 SB(_m
[t
].m1
, 7, 1, GB(r
, 4, 1));
119 SB(_m
[t
].m3
, 0, 4, GB(r
, 0, 4));
121 _m
[t
].m5
= TRANSPORT_RAIL
<< 2 | d
;
122 SB(_me
[t
].m6
, 2, 4, 0);
124 SetTunnelIndex(t
, id
);
127 #endif /* TUNNEL_MAP_H */