2 * This file is part of OpenTTD.
3 * 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.
4 * 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.
5 * 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/>.
8 /** @file tunnel_map.h Map accessors for tunnels. */
18 * Is this a tunnel (entrance)?
19 * @param t the tile that might be a tunnel
20 * @pre IsTileType(t, MP_TUNNELBRIDGE)
21 * @return true if and only if this tile is a tunnel (entrance)
23 inline bool IsTunnel(Tile t
)
25 assert(IsTileType(t
, MP_TUNNELBRIDGE
));
26 return !HasBit(t
.m5(), 7);
30 * Is this a tunnel (entrance)?
31 * @param t the tile that might be a tunnel
32 * @return true if and only if this tile is a tunnel (entrance)
34 inline bool IsTunnelTile(Tile t
)
36 return IsTileType(t
, MP_TUNNELBRIDGE
) && IsTunnel(t
);
39 TileIndex
GetOtherTunnelEnd(TileIndex
);
40 bool IsTunnelInWay(TileIndex
, int z
);
41 bool IsTunnelInWayDir(TileIndex tile
, int z
, DiagDirection dir
);
44 * Makes a road tunnel entrance
45 * @param t the entrance of the tunnel
46 * @param o the owner of the entrance
47 * @param d the direction facing out of the tunnel
48 * @param r the road type used in the tunnel
50 inline void MakeRoadTunnel(Tile t
, Owner o
, DiagDirection d
, RoadType road_rt
, RoadType tram_rt
)
52 SetTileType(t
, MP_TUNNELBRIDGE
);
57 t
.m5() = TRANSPORT_ROAD
<< 2 | d
;
61 SetRoadOwner(t
, RTT_ROAD
, o
);
62 if (o
!= OWNER_TOWN
) SetRoadOwner(t
, RTT_TRAM
, o
);
63 SetRoadTypes(t
, road_rt
, tram_rt
);
67 * Makes a rail tunnel entrance
68 * @param t the entrance of the tunnel
69 * @param o the owner of the entrance
70 * @param d the direction facing out of the tunnel
71 * @param r the rail type used in the tunnel
73 inline void MakeRailTunnel(Tile t
, Owner o
, DiagDirection d
, RailType r
)
75 SetTileType(t
, MP_TUNNELBRIDGE
);
80 t
.m5() = TRANSPORT_RAIL
<< 2 | d
;
85 SetRoadTypes(t
, INVALID_ROADTYPE
, INVALID_ROADTYPE
);
88 #endif /* TUNNEL_MAP_H */