OpenTTD Source  20240917-master-g9ab0a47812
follow_track.hpp
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 FOLLOW_TRACK_HPP
11 #define FOLLOW_TRACK_HPP
12 
13 #include "../pbs.h"
14 #include "../roadveh.h"
15 #include "../station_base.h"
16 #include "../train.h"
17 #include "../tunnelbridge.h"
18 #include "../tunnelbridge_map.h"
19 #include "../depot_map.h"
20 #include "pathfinder_func.h"
21 
27 template <TransportType Ttr_type_, typename VehicleType, bool T90deg_turns_allowed_ = true, bool Tmask_reserved_tracks = false>
29 {
30  enum ErrorCode {
31  EC_NONE,
32  EC_OWNER,
33  EC_RAIL_ROAD_TYPE,
34  EC_90DEG,
35  EC_NO_WAY,
36  EC_RESERVED,
37  };
38 
39  const VehicleType *m_veh;
46  bool m_is_tunnel;
47  bool m_is_bridge;
48  bool m_is_station;
50  ErrorCode m_err;
51  RailTypes m_railtypes;
52 
53  inline CFollowTrackT(const VehicleType *v = nullptr, RailTypes railtype_override = INVALID_RAILTYPES)
54  {
55  Init(v, railtype_override);
56  }
57 
58  inline CFollowTrackT(Owner o, RailTypes railtype_override = INVALID_RAILTYPES)
59  {
60  assert(IsRailTT());
61  m_veh = nullptr;
62  Init(o, railtype_override);
63  }
64 
65  inline void Init(const VehicleType *v, RailTypes railtype_override)
66  {
67  assert(!IsRailTT() || (v != nullptr && v->type == VEH_TRAIN));
68  m_veh = v;
69  Init(v != nullptr ? v->owner : INVALID_OWNER, IsRailTT() && railtype_override == INVALID_RAILTYPES ? Train::From(v)->compatible_railtypes : railtype_override);
70  }
71 
72  inline void Init(Owner o, RailTypes railtype_override)
73  {
74  assert(!IsRoadTT() || m_veh != nullptr);
75  assert(!IsRailTT() || railtype_override != INVALID_RAILTYPES);
76  m_veh_owner = o;
77  /* don't worry, all is inlined so compiler should remove unnecessary initializations */
84  m_tiles_skipped = 0;
85  m_err = EC_NONE;
86  m_railtypes = railtype_override;
87  }
88 
89  debug_inline static TransportType TT() { return Ttr_type_; }
90  debug_inline static bool IsWaterTT() { return TT() == TRANSPORT_WATER; }
91  debug_inline static bool IsRailTT() { return TT() == TRANSPORT_RAIL; }
92  inline bool IsTram() { return IsRoadTT() && RoadTypeIsTram(RoadVehicle::From(m_veh)->roadtype); }
93  debug_inline static bool IsRoadTT() { return TT() == TRANSPORT_ROAD; }
94  inline static bool Allow90degTurns() { return T90deg_turns_allowed_; }
95  inline static bool DoTrackMasking() { return Tmask_reserved_tracks; }
96 
99  {
100  assert(IsTram()); // this function shouldn't be called in other cases
101 
102  if (IsNormalRoadTile(tile)) {
103  RoadBits rb = GetRoadBits(tile, RTT_TRAM);
104  switch (rb) {
105  case ROAD_NW: return DIAGDIR_NW;
106  case ROAD_SW: return DIAGDIR_SW;
107  case ROAD_SE: return DIAGDIR_SE;
108  case ROAD_NE: return DIAGDIR_NE;
109  default: break;
110  }
111  }
112  return INVALID_DIAGDIR;
113  }
114 
119  inline bool Follow(TileIndex old_tile, Trackdir old_td)
120  {
121  m_old_tile = old_tile;
122  m_old_td = old_td;
123  m_err = EC_NONE;
124 
125  assert([&]() {
126  if (IsTram() && GetSingleTramBit(m_old_tile) != INVALID_DIAGDIR) return true; // Skip the check for single tram bits
127  const uint sub_mode = (IsRoadTT() && m_veh != nullptr) ? (this->IsTram() ? RTT_TRAM : RTT_ROAD) : 0;
128  const TrackdirBits old_tile_valid_dirs = TrackStatusToTrackdirBits(GetTileTrackStatus(m_old_tile, TT(), sub_mode));
129  return (old_tile_valid_dirs & TrackdirToTrackdirBits(m_old_td)) != TRACKDIR_BIT_NONE;
130  }());
131 
133  if (ForcedReverse()) return true;
134  if (!CanExitOldTile()) return false;
135  FollowTileExit();
136  if (!QueryNewTileTrackStatus()) return TryReverse();
139  /* In case we can't enter the next tile, but are
140  * a normal road vehicle, then we can actually
141  * try to reverse as this is the end of the road.
142  * Trams can only turn on the appropriate bits in
143  * which case reaching this would mean a dead end
144  * near a building and in that case there would
145  * a "false" QueryNewTileTrackStatus result and
146  * as such reversing is already tried. The fact
147  * that function failed can have to do with a
148  * missing road bit, or inability to connect the
149  * different bits due to slopes. */
150  if (IsRoadTT() && !IsTram() && TryReverse()) return true;
151 
152  /* CanEnterNewTile already set a reason.
153  * Do NOT overwrite it (important for example for EC_RAIL_ROAD_TYPE).
154  * Only set a reason if CanEnterNewTile was not called */
155  if (m_new_td_bits == TRACKDIR_BIT_NONE) m_err = EC_NO_WAY;
156 
157  return false;
158  }
159  if ((!IsRailTT() && !Allow90degTurns()) || (IsRailTT() && Rail90DegTurnDisallowed(GetTileRailType(m_old_tile), GetTileRailType(m_new_tile), !Allow90degTurns()))) {
162  m_err = EC_90DEG;
163  return false;
164  }
165  }
166  return true;
167  }
168 
169  inline bool MaskReservedTracks()
170  {
171  if (!DoTrackMasking()) return true;
172 
173  if (m_is_station) {
174  /* Check skipped station tiles as well. */
176  for (TileIndex tile = m_new_tile - diff * m_tiles_skipped; tile != m_new_tile; tile += diff) {
177  if (HasStationReservation(tile)) {
179  m_err = EC_RESERVED;
180  return false;
181  }
182  }
183  }
184 
186  /* Mask already reserved trackdirs. */
188  /* Mask out all trackdirs that conflict with the reservation. */
191  }
193  m_err = EC_RESERVED;
194  return false;
195  }
196  return true;
197  }
198 
199 protected:
201  inline void FollowTileExit()
202  {
204  m_tiles_skipped = 0;
205 
206  /* extra handling for tunnels and bridges in our direction */
209  if (enterdir == m_exitdir) {
210  /* we are entering the tunnel / bridge */
211  if (IsTunnel(m_old_tile)) {
212  m_is_tunnel = true;
214  } else { // IsBridge(m_old_tile)
215  m_is_bridge = true;
217  }
219  return;
220  }
221  assert(ReverseDiagDir(enterdir) == m_exitdir);
222  }
223 
224  /* normal or station tile, do one step */
226 
227  /* special handling for stations */
228  if (IsRailTT() && HasStationTileRail(m_new_tile)) {
229  m_is_station = true;
230  } else if (IsRoadTT() && IsStationRoadStopTile(m_new_tile)) {
231  m_is_station = true;
232  }
233  }
234 
237  {
238  if (IsRailTT() && IsPlainRailTile(m_new_tile)) {
240  } else if (IsRoadTT()) {
241  m_new_td_bits = GetTrackdirBitsForRoad(m_new_tile, this->IsTram() ? RTT_TRAM : RTT_ROAD);
242  } else {
244  }
245  return (m_new_td_bits != TRACKDIR_BIT_NONE);
246  }
247 
249  inline bool CanExitOldTile()
250  {
251  /* road stop can be left at one direction only unless it's a drive-through stop */
252  if (IsRoadTT() && IsBayRoadStopTile(m_old_tile)) {
254  if (exitdir != m_exitdir) {
255  m_err = EC_NO_WAY;
256  return false;
257  }
258  }
259 
260  /* single tram bits can only be left in one direction */
261  if (IsTram()) {
263  if (single_tram != INVALID_DIAGDIR && single_tram != m_exitdir) {
264  m_err = EC_NO_WAY;
265  return false;
266  }
267  }
268 
269  /* road depots can be also left in one direction only */
270  if (IsRoadTT() && IsDepotTypeTile(m_old_tile, TT())) {
272  if (exitdir != m_exitdir) {
273  m_err = EC_NO_WAY;
274  return false;
275  }
276  }
277  return true;
278  }
279 
281  inline bool CanEnterNewTile()
282  {
283  if (IsRoadTT() && IsBayRoadStopTile(m_new_tile)) {
284  /* road stop can be entered from one direction only unless it's a drive-through stop */
286  if (ReverseDiagDir(exitdir) != m_exitdir) {
287  m_err = EC_NO_WAY;
288  return false;
289  }
290  }
291 
292  /* single tram bits can only be entered from one direction */
293  if (IsTram()) {
295  if (single_tram != INVALID_DIAGDIR && single_tram != ReverseDiagDir(m_exitdir)) {
296  m_err = EC_NO_WAY;
297  return false;
298  }
299  }
300 
301  /* road and rail depots can also be entered from one direction only */
302  if (IsRoadTT() && IsDepotTypeTile(m_new_tile, TT())) {
304  if (ReverseDiagDir(exitdir) != m_exitdir) {
305  m_err = EC_NO_WAY;
306  return false;
307  }
308  /* don't try to enter other company's depots */
310  m_err = EC_OWNER;
311  return false;
312  }
313  }
314  if (IsRailTT() && IsDepotTypeTile(m_new_tile, TT())) {
316  if (ReverseDiagDir(exitdir) != m_exitdir) {
317  m_err = EC_NO_WAY;
318  return false;
319  }
320  }
321 
322  /* rail transport is possible only on tiles with the same owner as vehicle */
323  if (IsRailTT() && GetTileOwner(m_new_tile) != m_veh_owner) {
324  /* different owner */
325  m_err = EC_NO_WAY;
326  return false;
327  }
328 
329  /* rail transport is possible only on compatible rail types */
330  if (IsRailTT()) {
331  RailType rail_type = GetTileRailType(m_new_tile);
332  if (!HasBit(m_railtypes, rail_type)) {
333  /* incompatible rail type */
334  m_err = EC_RAIL_ROAD_TYPE;
335  return false;
336  }
337  }
338 
339  /* road transport is possible only on compatible road types */
340  if (IsRoadTT()) {
341  const RoadVehicle *v = RoadVehicle::From(m_veh);
342  RoadType roadtype = GetRoadType(m_new_tile, GetRoadTramType(v->roadtype));
343  if (!HasBit(v->compatible_roadtypes, roadtype)) {
344  /* incompatible road type */
345  m_err = EC_RAIL_ROAD_TYPE;
346  return false;
347  }
348  }
349 
350  /* tunnel holes and bridge ramps can be entered only from proper direction */
352  if (IsTunnel(m_new_tile)) {
353  if (!m_is_tunnel) {
355  if (tunnel_enterdir != m_exitdir) {
356  m_err = EC_NO_WAY;
357  return false;
358  }
359  }
360  } else { // IsBridge(m_new_tile)
361  if (!m_is_bridge) {
363  if (ramp_enderdir != m_exitdir) {
364  m_err = EC_NO_WAY;
365  return false;
366  }
367  }
368  }
369  }
370 
371  /* special handling for rail stations - get to the end of platform */
372  if (IsRailTT() && m_is_station) {
373  /* entered railway station
374  * get platform length */
376  /* how big step we must do to get to the last platform tile? */
377  m_tiles_skipped = length - 1;
378  /* move to the platform end */
380  diff *= m_tiles_skipped;
381  m_new_tile = TileAdd(m_new_tile, diff);
382  return true;
383  }
384 
385  return true;
386  }
387 
389  inline bool ForcedReverse()
390  {
391  /* rail and road depots cause reversing */
392  if (!IsWaterTT() && IsDepotTypeTile(m_old_tile, TT())) {
394  if (exitdir != m_exitdir) {
395  /* reverse */
398  m_exitdir = exitdir;
399  m_tiles_skipped = 0;
401  return true;
402  }
403  }
404 
405  /* Single tram bits and standard road stops cause reversing. */
406  if (IsRoadTT() && ((IsTram() && GetSingleTramBit(m_old_tile) == ReverseDiagDir(m_exitdir)) ||
408  /* reverse */
412  m_tiles_skipped = 0;
414  return true;
415  }
416 
417  return false;
418  }
419 
421  inline bool TryReverse()
422  {
423  if (IsRoadTT() && !IsTram()) {
424  /* if we reached the end of road, we can reverse the RV and continue moving */
426  /* new tile will be the same as old one */
428  /* set new trackdir bits to all reachable trackdirs */
432  /* we have some trackdirs reachable after reversal */
433  return true;
434  }
435  }
436  m_err = EC_NO_WAY;
437  return false;
438  }
439 
440 public:
442  int GetSpeedLimit(int *pmin_speed = nullptr) const
443  {
444  int min_speed = 0;
445  int max_speed = INT_MAX; // no limit
446 
447  /* Check for on-bridge speed limit */
448  if (!IsWaterTT() && IsBridgeTile(m_old_tile)) {
450  if (IsRoadTT()) spd *= 2;
451  max_speed = std::min(max_speed, spd);
452  }
453  /* Check for speed limit imposed by railtype */
454  if (IsRailTT()) {
455  uint16_t rail_speed = GetRailTypeInfo(GetRailType(m_old_tile))->max_speed;
456  if (rail_speed > 0) max_speed = std::min<int>(max_speed, rail_speed);
457  }
458  if (IsRoadTT()) {
459  /* max_speed is already in roadvehicle units, no need to further modify (divide by 2) */
460  uint16_t road_speed = GetRoadTypeInfo(GetRoadType(m_old_tile, GetRoadTramType(RoadVehicle::From(m_veh)->roadtype)))->max_speed;
461  if (road_speed > 0) max_speed = std::min<int>(max_speed, road_speed);
462  }
463 
464  /* if min speed was requested, return it */
465  if (pmin_speed != nullptr) *pmin_speed = min_speed;
466  return max_speed;
467  }
468 };
469 
473 
475 
478 
479 #endif /* FOLLOW_TRACK_HPP */
INVALID_RAILTYPES
@ INVALID_RAILTYPES
Invalid railtypes.
Definition: rail_type.h:50
RoadVehicle
Buses, trucks and trams belong to this class.
Definition: roadveh.h:106
Rail90DegTurnDisallowed
bool Rail90DegTurnDisallowed(RailType rt1, RailType rt2, bool def=_settings_game.pf.forbid_90_deg)
Test if 90 degree turns are disallowed between two railtypes.
Definition: rail.h:357
CFollowTrackT::m_is_station
bool m_is_station
last turn passed station
Definition: follow_track.hpp:48
DIAGDIR_NE
@ DIAGDIR_NE
Northeast, upper right on your monitor.
Definition: direction_type.h:75
TileAdd
constexpr TileIndex TileAdd(TileIndex tile, TileIndexDiff offset)
Adds a given offset to a tile.
Definition: map_func.h:466
GetOtherBridgeEnd
TileIndex GetOtherBridgeEnd(TileIndex tile)
Starting at one bridge end finds the other bridge end.
Definition: bridge_map.cpp:59
RoadBits
RoadBits
Enumeration for the road parts on a tile.
Definition: road_type.h:52
GetTunnelBridgeLength
uint GetTunnelBridgeLength(TileIndex begin, TileIndex end)
Calculates the length of a tunnel or a bridge (without end tiles)
Definition: tunnelbridge.h:25
CFollowTrackT::m_old_tile
TileIndex m_old_tile
the origin (vehicle moved from) before move
Definition: follow_track.hpp:41
TrackStatusToTrackdirBits
TrackdirBits TrackStatusToTrackdirBits(TrackStatus ts)
Returns the present-trackdir-information of a TrackStatus.
Definition: track_func.h:352
GetRailTypeInfo
const RailTypeInfo * GetRailTypeInfo(RailType railtype)
Returns a pointer to the Railtype information for a given railtype.
Definition: rail.h:307
GetReservedTrackbits
TrackBits GetReservedTrackbits(TileIndex t)
Get the reserved trackbits for any tile, regardless of type.
Definition: pbs.cpp:24
BaseStation::GetByTile
static BaseStation * GetByTile(TileIndex tile)
Get the base station belonging to a specific tile.
Definition: base_station_base.h:166
TRANSPORT_WATER
@ TRANSPORT_WATER
Transport over water.
Definition: transport_type.h:29
TrackdirToExitdir
DiagDirection TrackdirToExitdir(Trackdir trackdir)
Maps a trackdir to the (4-way) direction the tile is exited when following that trackdir.
Definition: track_func.h:439
INVALID_OWNER
@ INVALID_OWNER
An invalid owner.
Definition: company_type.h:29
TrackdirToTrackdirBits
TrackdirBits TrackdirToTrackdirBits(Trackdir trackdir)
Maps a Trackdir to the corresponding TrackdirBits value.
Definition: track_func.h:111
ROAD_SE
@ ROAD_SE
South-east part.
Definition: road_type.h:56
Owner
Owner
Enum for all companies/owners.
Definition: company_type.h:18
RailType
RailType
Enumeration for all possible railtypes.
Definition: rail_type.h:27
CFollowTrackT::CanExitOldTile
bool CanExitOldTile()
return true if we can leave m_old_tile in m_exitdir
Definition: follow_track.hpp:249
VEH_TRAIN
@ VEH_TRAIN
Train vehicle type.
Definition: vehicle_type.h:24
INVALID_TILE
constexpr TileIndex INVALID_TILE
The very nice invalid tile marker.
Definition: tile_type.h:95
DiagDirection
DiagDirection
Enumeration for diagonal directions.
Definition: direction_type.h:73
GetRoadStopDir
DiagDirection GetRoadStopDir(Tile t)
Gets the direction the road stop entrance points towards.
Definition: station_map.h:344
BridgeSpec::speed
uint16_t speed
maximum travel speed (1 unit = 1/1.6 mph = 1 km-ish/h)
Definition: bridge.h:47
CFollowTrackT::QueryNewTileTrackStatus
bool QueryNewTileTrackStatus()
stores track status (available trackdirs) for the new tile into m_new_td_bits
Definition: follow_track.hpp:236
StrongType::Typedef< uint32_t, struct TileIndexTag, StrongType::Compare, StrongType::Integer, StrongType::Compatible< int32_t >, StrongType::Compatible< int64_t > >
RoadVehicle::roadtype
RoadType roadtype
NOSAVE: Roadtype of this vehicle.
Definition: roadveh.h:116
GetRailType
RailType GetRailType(Tile t)
Gets the rail type of the given tile.
Definition: rail_map.h:115
RailTypes
RailTypes
Allow incrementing of Track variables.
Definition: rail_type.h:44
ROAD_NW
@ ROAD_NW
North-west part.
Definition: road_type.h:54
CFollowTrackT::m_is_bridge
bool m_is_bridge
last turn passed bridge ramp
Definition: follow_track.hpp:47
TrackToTrackBits
TrackBits TrackToTrackBits(Track track)
Maps a Track to the corresponding TrackBits value.
Definition: track_func.h:77
TracksOverlap
bool TracksOverlap(TrackBits bits)
Checks if the given tracks overlap, ie form a crossing.
Definition: track_func.h:645
GetTileTrackStatus
TrackStatus GetTileTrackStatus(TileIndex tile, TransportType mode, uint sub_mode, DiagDirection side)
Returns information about trackdirs and signal states.
Definition: landscape.cpp:553
TRANSPORT_ROAD
@ TRANSPORT_ROAD
Transport by road vehicle.
Definition: transport_type.h:28
GetRoadDepotDirection
DiagDirection GetRoadDepotDirection(Tile t)
Get the direction of the exit of a road depot.
Definition: road_map.h:565
GetRailDepotDirection
DiagDirection GetRailDepotDirection(Tile t)
Returns the direction the depot is facing to.
Definition: rail_map.h:171
TransportType
TransportType
Available types of transport.
Definition: transport_type.h:19
DIAGDIR_NW
@ DIAGDIR_NW
Northwest.
Definition: direction_type.h:78
TrackBitsToTrackdirBits
TrackdirBits TrackBitsToTrackdirBits(TrackBits bits)
Converts TrackBits to TrackdirBits while allowing both directions.
Definition: track_func.h:319
DIAGDIR_SE
@ DIAGDIR_SE
Southeast.
Definition: direction_type.h:76
IsBayRoadStopTile
bool IsBayRoadStopTile(Tile t)
Is tile t a bay (non-drive through) road stop station?
Definition: station_map.h:266
GetBridgeSpec
const BridgeSpec * GetBridgeSpec(BridgeType i)
Get the specification of a bridge type.
Definition: bridge.h:66
SetBitIterator
Iterable ensemble of each set bit in a value.
Definition: bitmath_func.hpp:301
TrackToTrackdirBits
TrackdirBits TrackToTrackdirBits(Track track)
Returns a TrackdirBit mask from a given Track.
Definition: track_func.h:294
TrackBits
TrackBits
Allow incrementing of Track variables.
Definition: track_type.h:35
INVALID_DIAGDIR
@ INVALID_DIAGDIR
Flag for an invalid DiagDirection.
Definition: direction_type.h:80
ROAD_SW
@ ROAD_SW
South-west part.
Definition: road_type.h:55
IsTunnel
bool IsTunnel(Tile t)
Is this a tunnel (entrance)?
Definition: tunnel_map.h:23
TRACKDIR_BIT_NONE
@ TRACKDIR_BIT_NONE
No track build.
Definition: track_type.h:99
ReverseDiagDir
DiagDirection ReverseDiagDir(DiagDirection d)
Returns the reverse direction of the given DiagDirection.
Definition: direction_func.h:118
DIAGDIR_SW
@ DIAGDIR_SW
Southwest.
Definition: direction_type.h:77
HasStationTileRail
bool HasStationTileRail(Tile t)
Has this station tile a rail? In other words, is this station tile a rail station or rail waypoint?
Definition: station_map.h:146
ReverseTrackdir
Trackdir ReverseTrackdir(Trackdir trackdir)
Maps a trackdir to the reverse trackdir.
Definition: track_func.h:247
DiagdirReachesTrackdirs
TrackdirBits DiagdirReachesTrackdirs(DiagDirection diagdir)
Returns all trackdirs that can be reached when entering a tile from a given (diagonal) direction.
Definition: track_func.h:555
IsBridgeTile
bool IsBridgeTile(Tile t)
checks if there is a bridge on this tile
Definition: bridge_map.h:35
RoadType
RoadType
The different roadtypes we support.
Definition: road_type.h:25
TrackdirBitsToTrackBits
TrackBits TrackdirBitsToTrackBits(TrackdirBits bits)
Discards all directional information from a TrackdirBits value.
Definition: track_func.h:308
IsNormalRoadTile
static debug_inline bool IsNormalRoadTile(Tile t)
Return whether a tile is a normal road tile.
Definition: road_map.h:74
GetTileOwner
Owner GetTileOwner(Tile tile)
Returns the owner of a tile.
Definition: tile_map.h:178
IsDepotTypeTile
bool IsDepotTypeTile(Tile tile, TransportType type)
Check if a tile is a depot and it is a depot of the given type.
Definition: depot_map.h:18
MP_TUNNELBRIDGE
@ MP_TUNNELBRIDGE
Tunnel entry/exit and bridge heads.
Definition: tile_type.h:57
RoadVehicle::compatible_roadtypes
RoadTypes compatible_roadtypes
NOSAVE: Roadtypes this consist is powered on.
Definition: roadveh.h:118
TileIndexDiff
int32_t TileIndexDiff
An offset value between two tiles.
Definition: map_func.h:376
CFollowTrackT::FollowTileExit
void FollowTileExit()
Follow the m_exitdir from m_old_tile and fill m_new_tile and m_tiles_skipped.
Definition: follow_track.hpp:201
IsPlainRailTile
static debug_inline bool IsPlainRailTile(Tile t)
Checks whether the tile is a rail tile or rail tile with signals.
Definition: rail_map.h:60
GetTrackBits
TrackBits GetTrackBits(Tile tile)
Gets the track bits of the given tile.
Definition: rail_map.h:136
CFollowTrackT::m_old_td
Trackdir m_old_td
the trackdir (the vehicle was on) before move
Definition: follow_track.hpp:42
RailTypeInfo::max_speed
uint16_t max_speed
Maximum speed for vehicles travelling on this rail type.
Definition: rail.h:231
IsStationRoadStopTile
bool IsStationRoadStopTile(Tile t)
Is tile t a road stop station?
Definition: station_map.h:234
TileOffsByDiagDir
TileIndexDiff TileOffsByDiagDir(DiagDirection dir)
Convert a DiagDirection to a TileIndexDiff.
Definition: map_func.h:565
GetRoadTypeInfo
const RoadTypeInfo * GetRoadTypeInfo(RoadType roadtype)
Returns a pointer to the Roadtype information for a given roadtype.
Definition: road.h:227
Track
Track
These are used to specify a single track.
Definition: track_type.h:19
GetTrackdirBitsForRoad
TrackdirBits GetTrackdirBitsForRoad(TileIndex tile, RoadTramType rtt)
Wrapper around GetTileTrackStatus() and TrackStatusToTrackdirBits(), as for single tram bits GetTileT...
Definition: pathfinder_func.h:60
Trackdir
Trackdir
Enumeration for tracks and directions.
Definition: track_type.h:67
SpecializedVehicle< Train, Type >::From
static Train * From(Vehicle *v)
Converts a Vehicle to SpecializedVehicle with type checking.
Definition: vehicle_base.h:1215
TRANSPORT_RAIL
@ TRANSPORT_RAIL
Transport by train.
Definition: transport_type.h:27
HasStationReservation
bool HasStationReservation(Tile t)
Get the reservation state of the rail station.
Definition: station_map.h:552
ROAD_NE
@ ROAD_NE
North-east part.
Definition: road_type.h:57
GetTileRailType
RailType GetTileRailType(Tile tile)
Return the rail type of tile, or INVALID_RAILTYPE if this is no rail tile.
Definition: rail.cpp:155
GetRoadBits
RoadBits GetRoadBits(Tile t, RoadTramType rtt)
Get the present road bits for a specific road type.
Definition: road_map.h:128
CFollowTrackT::m_veh_owner
Owner m_veh_owner
owner of the vehicle
Definition: follow_track.hpp:40
CFollowTrackT::m_new_tile
TileIndex m_new_tile
the new tile (the vehicle has entered)
Definition: follow_track.hpp:43
GetOtherTunnelEnd
TileIndex GetOtherTunnelEnd(TileIndex tile)
Gets the other end of the tunnel.
Definition: tunnel_map.cpp:22
RoadTypeInfo::max_speed
uint16_t max_speed
Maximum speed for vehicles travelling on this road type.
Definition: road.h:142
CFollowTrackT::Follow
bool Follow(TileIndex old_tile, Trackdir old_td)
main follower routine.
Definition: follow_track.hpp:119
CFollowTrackT::m_exitdir
DiagDirection m_exitdir
exit direction (leaving the old tile)
Definition: follow_track.hpp:45
CFollowTrackT::CanEnterNewTile
bool CanEnterNewTile()
return true if we can enter m_new_tile from m_exitdir
Definition: follow_track.hpp:281
CFollowTrackT::m_new_td_bits
TrackdirBits m_new_td_bits
the new set of available trackdirs
Definition: follow_track.hpp:44
VehicleType
VehicleType
Available vehicle types.
Definition: vehicle_type.h:21
pathfinder_func.h
IsTileType
static debug_inline bool IsTileType(Tile tile, TileType type)
Checks if a tile is a given tiletype.
Definition: tile_map.h:150
TrackdirCrossesTrackdirs
TrackdirBits TrackdirCrossesTrackdirs(Trackdir trackdir)
Maps a trackdir to all trackdirs that make 90 deg turns with it.
Definition: track_func.h:606
BaseStation::GetPlatformLength
virtual uint GetPlatformLength(TileIndex tile) const =0
Obtain the length of a platform.
TrackdirBits
TrackdirBits
Allow incrementing of Trackdir variables.
Definition: track_type.h:98
INVALID_TRACKDIR
@ INVALID_TRACKDIR
Flag for an invalid trackdir.
Definition: track_type.h:86
CFollowTrackT::GetSpeedLimit
int GetSpeedLimit(int *pmin_speed=nullptr) const
Helper for pathfinders - get min/max speed on the m_old_tile/m_old_td.
Definition: follow_track.hpp:442
TileAddByDiagDir
TileIndex TileAddByDiagDir(TileIndex tile, DiagDirection dir)
Adds a DiagDir to a tile.
Definition: map_func.h:606
CFollowTrackT::m_veh
const VehicleType * m_veh
moving vehicle
Definition: follow_track.hpp:39
CFollowTrackT::ForcedReverse
bool ForcedReverse()
return true if we must reverse (in depots and single tram bits)
Definition: follow_track.hpp:389
CFollowTrackT::GetSingleTramBit
DiagDirection GetSingleTramBit(TileIndex tile)
Tests if a tile is a road tile with a single tramtrack (tram can reverse)
Definition: follow_track.hpp:98
CFollowTrackT
Track follower helper template class (can serve pathfinders and vehicle controllers).
Definition: follow_track.hpp:28
CFollowTrackT::m_tiles_skipped
int m_tiles_skipped
number of skipped tunnel or station tiles
Definition: follow_track.hpp:49
CFollowTrackT::m_is_tunnel
bool m_is_tunnel
last turn passed tunnel
Definition: follow_track.hpp:46
GetBridgeType
BridgeType GetBridgeType(Tile t)
Determines the type of bridge on a tile.
Definition: bridge_map.h:56
GetTunnelBridgeDirection
DiagDirection GetTunnelBridgeDirection(Tile t)
Get the direction pointing to the other end.
Definition: tunnelbridge_map.h:26
CFollowTrackT::TryReverse
bool TryReverse()
return true if we successfully reversed at end of road/track
Definition: follow_track.hpp:421
HasBit
constexpr debug_inline bool HasBit(const T x, const uint8_t y)
Checks if a bit in a value is set.
Definition: bitmath_func.hpp:103