(svn r23005) -Fix (r23004): Of course there's still the 16-sprite version for shore...
[openttd/fttd.git] / src / tunnel_map.h
blob2a167055a2d2aa4f9fc87e2e3a78573442866ac4
1 /* $Id$ */
3 /*
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/>.
8 */
10 /** @file tunnel_map.h Map accessors for tunnels. */
12 #ifndef TUNNEL_MAP_H
13 #define TUNNEL_MAP_H
15 #include "road_map.h"
18 /**
19 * Is this a tunnel (entrance)?
20 * @param t the tile that might be a tunnel
21 * @pre IsTileType(t, MP_TUNNELBRIDGE)
22 * @return true if and only if this tile is a tunnel (entrance)
24 static inline bool IsTunnel(TileIndex t)
26 assert(IsTileType(t, MP_TUNNELBRIDGE));
27 return !HasBit(_m[t].m5, 7);
30 /**
31 * Is this a tunnel (entrance)?
32 * @param t the tile that might be a tunnel
33 * @return true if and only if this tile is a tunnel (entrance)
35 static inline bool IsTunnelTile(TileIndex t)
37 return IsTileType(t, MP_TUNNELBRIDGE) && IsTunnel(t);
40 TileIndex GetOtherTunnelEnd(TileIndex);
41 bool IsTunnelInWay(TileIndex, uint z);
42 bool IsTunnelInWayDir(TileIndex tile, uint z, DiagDirection dir);
44 /**
45 * Makes a road tunnel entrance
46 * @param t the entrance of the tunnel
47 * @param o the owner of the entrance
48 * @param d the direction facing out of the tunnel
49 * @param r the road type used in the tunnel
51 static inline void MakeRoadTunnel(TileIndex t, Owner o, DiagDirection d, RoadTypes r)
53 SetTileType(t, MP_TUNNELBRIDGE);
54 SetTileOwner(t, o);
55 _m[t].m2 = 0;
56 _m[t].m3 = 0;
57 _m[t].m4 = 0;
58 _m[t].m5 = TRANSPORT_ROAD << 2 | d;
59 SB(_m[t].m6, 2, 4, 0);
60 _me[t].m7 = 0;
61 SetRoadOwner(t, ROADTYPE_ROAD, o);
62 if (o != OWNER_TOWN) SetRoadOwner(t, ROADTYPE_TRAM, o);
63 SetRoadTypes(t, r);
66 /**
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 static inline void MakeRailTunnel(TileIndex t, Owner o, DiagDirection d, RailType r)
75 SetTileType(t, MP_TUNNELBRIDGE);
76 SetTileOwner(t, o);
77 _m[t].m2 = 0;
78 _m[t].m3 = r;
79 _m[t].m4 = 0;
80 _m[t].m5 = TRANSPORT_RAIL << 2 | d;
81 SB(_m[t].m6, 2, 4, 0);
82 _me[t].m7 = 0;
85 #endif /* TUNNEL_MAP_H */