OpenTTD Source  1.11.0-beta2
tunnel_map.h
Go to the documentation of this file.
1 /*
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/>.
6  */
7 
10 #ifndef TUNNEL_MAP_H
11 #define TUNNEL_MAP_H
12 
13 #include "rail_map.h"
14 #include "road_map.h"
15 
16 
23 static inline bool IsTunnel(TileIndex t)
24 {
25  assert(IsTileType(t, MP_TUNNELBRIDGE));
26  return !HasBit(_m[t].m5, 7);
27 }
28 
34 static inline bool IsTunnelTile(TileIndex t)
35 {
36  return IsTileType(t, MP_TUNNELBRIDGE) && IsTunnel(t);
37 }
38 
40 bool IsTunnelInWay(TileIndex, int z);
41 bool IsTunnelInWayDir(TileIndex tile, int z, DiagDirection dir);
42 
50 static inline void MakeRoadTunnel(TileIndex t, Owner o, DiagDirection d, RoadType road_rt, RoadType tram_rt)
51 {
53  SetTileOwner(t, o);
54  _m[t].m2 = 0;
55  _m[t].m3 = 0;
56  _m[t].m4 = 0;
57  _m[t].m5 = TRANSPORT_ROAD << 2 | d;
58  SB(_me[t].m6, 2, 4, 0);
59  _me[t].m7 = 0;
60  _me[t].m8 = 0;
61  SetRoadOwner(t, RTT_ROAD, o);
62  if (o != OWNER_TOWN) SetRoadOwner(t, RTT_TRAM, o);
63  SetRoadTypes(t, road_rt, tram_rt);
64 }
65 
73 static inline void MakeRailTunnel(TileIndex t, Owner o, DiagDirection d, RailType r)
74 {
76  SetTileOwner(t, o);
77  _m[t].m2 = 0;
78  _m[t].m3 = 0;
79  _m[t].m4 = 0;
80  _m[t].m5 = TRANSPORT_RAIL << 2 | d;
81  SB(_me[t].m6, 2, 4, 0);
82  _me[t].m7 = 0;
83  _me[t].m8 = 0;
84  SetRailType(t, r);
86 }
87 
88 #endif /* TUNNEL_MAP_H */
IsTunnelTile
static bool IsTunnelTile(TileIndex t)
Is this a tunnel (entrance)?
Definition: tunnel_map.h:34
TileIndex
uint32 TileIndex
The index/ID of a Tile.
Definition: tile_type.h:78
SetTileType
static void SetTileType(TileIndex tile, TileType type)
Set the type of a tile.
Definition: tile_map.h:131
TRANSPORT_RAIL
@ TRANSPORT_RAIL
Transport by train.
Definition: transport_type.h:27
INVALID_ROADTYPE
@ INVALID_ROADTYPE
flag for invalid roadtype
Definition: road_type.h:27
MakeRailTunnel
static void MakeRailTunnel(TileIndex t, Owner o, DiagDirection d, RailType r)
Makes a rail tunnel entrance.
Definition: tunnel_map.h:73
HasBit
static bool HasBit(const T x, const uint8 y)
Checks if a bit in a value is set.
Definition: bitmath_func.hpp:103
_me
TileExtended * _me
Extended Tiles of the map.
Definition: map.cpp:31
Tile::m2
uint16 m2
Primarily used for indices to towns, industries and stations.
Definition: map_type.h:20
SetRoadOwner
static void SetRoadOwner(TileIndex t, RoadTramType rtt, Owner o)
Set the owner of a specific road type.
Definition: road_map.h:250
MakeRoadTunnel
static void MakeRoadTunnel(TileIndex t, Owner o, DiagDirection d, RoadType road_rt, RoadType tram_rt)
Makes a road tunnel entrance.
Definition: tunnel_map.h:50
IsTunnelInWay
bool IsTunnelInWay(TileIndex, int z)
Is there a tunnel in the way in any direction?
Definition: tunnel_map.cpp:68
SetRoadTypes
static void SetRoadTypes(TileIndex t, RoadType road_rt, RoadType tram_rt)
Set the present road types of a tile.
Definition: road_map.h:619
Owner
Owner
Enum for all companies/owners.
Definition: company_type.h:18
IsTunnelInWayDir
bool IsTunnelInWayDir(TileIndex tile, int z, DiagDirection dir)
Is there a tunnel in the way in the given direction?
Definition: tunnel_map.cpp:48
TRANSPORT_ROAD
@ TRANSPORT_ROAD
Transport by road vehicle.
Definition: transport_type.h:28
RailType
RailType
Enumeration for all possible railtypes.
Definition: rail_type.h:27
SB
static T SB(T &x, const uint8 s, const uint8 n, const U d)
Set n bits in x starting at bit s to d.
Definition: bitmath_func.hpp:58
rail_map.h
MP_TUNNELBRIDGE
@ MP_TUNNELBRIDGE
Tunnel entry/exit and bridge heads.
Definition: tile_type.h:50
DiagDirection
DiagDirection
Enumeration for diagonal directions.
Definition: direction_type.h:77
RoadType
RoadType
The different roadtypes we support.
Definition: road_type.h:22
IsTileType
static bool IsTileType(TileIndex tile, TileType type)
Checks if a tile is a given tiletype.
Definition: tile_map.h:150
road_map.h
Tile::m5
byte m5
General purpose.
Definition: map_type.h:24
IsTunnel
static bool IsTunnel(TileIndex t)
Is this a tunnel (entrance)?
Definition: tunnel_map.h:23
TileExtended::m7
byte m7
Primarily used for newgrf support.
Definition: map_type.h:35
SetTileOwner
static void SetTileOwner(TileIndex tile, Owner owner)
Sets the owner of a tile.
Definition: tile_map.h:198
Tile::m3
byte m3
General purpose.
Definition: map_type.h:22
TileExtended::m8
uint16 m8
General purpose.
Definition: map_type.h:36
SetRailType
static void SetRailType(TileIndex t, RailType r)
Sets the rail type of the given tile.
Definition: rail_map.h:125
Tile::m4
byte m4
General purpose.
Definition: map_type.h:23
_m
Tile * _m
Tiles of the map.
Definition: map.cpp:30
OWNER_TOWN
@ OWNER_TOWN
A town owns the tile, or a town is expanding.
Definition: company_type.h:24
GetOtherTunnelEnd
TileIndex GetOtherTunnelEnd(TileIndex)
Gets the other end of the tunnel.
Definition: tunnel_map.cpp:22