summaryrefslogtreecommitdiff
path: root/src/pbs.cpp
diff options
context:
space:
mode:
authormichi_cc <michi_cc@openttd.org>2009-01-05 20:28:51 +0000
committermichi_cc <michi_cc@openttd.org>2009-01-05 20:28:51 +0000
commit809d9bc498fe2c737cd18e3cdb9186e42dfea8d4 (patch)
treebde62851c8dae22c4d426d6287c1a96c61930de7 /src/pbs.cpp
parent9ad0c80e67e8b1f58fec032edc964ce84d32f16a (diff)
downloadopenttd-809d9bc498fe2c737cd18e3cdb9186e42dfea8d4.tar.xz
(svn r14849) -Fix [FS#2478]: A train meeting its end could lead to an endless loop.
Diffstat (limited to 'src/pbs.cpp')
-rw-r--r--src/pbs.cpp20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/pbs.cpp b/src/pbs.cpp
index 711bbaaa0..3b85d16e7 100644
--- a/src/pbs.cpp
+++ b/src/pbs.cpp
@@ -179,10 +179,26 @@ bool TryReserveRailTrack(TileIndex tile, Track t)
/** Follow a reservation starting from a specific tile to the end. */
static PBSTileInfo FollowReservation(Owner o, RailTypes rts, TileIndex tile, Trackdir trackdir, bool ignore_oneway = false)
{
+ TileIndex start_tile = tile;
+ Trackdir start_trackdir = trackdir;
+
+ /* Start track not reserved? This can happen if two trains
+ * are on the same tile. The reservation on the next tile
+ * is not ours in this case, so exit. */
+ if (!HasReservedTracks(tile, TrackToTrackBits(TrackdirToTrack(trackdir)))) return PBSTileInfo(tile, trackdir, false);
+
/* Do not disallow 90 deg turns as the setting might have changed between reserving and now. */
CFollowTrackRail ft(o, rts);
+
+ /* If the start tile is in a station, we need to skip to the platform
+ * end and use that as the tile for the loop test because the track
+ * follower will skip to there in the actual loop as well. */
+ if (IsRailwayStationTile(start_tile) && ft.Follow(start_tile, start_trackdir) && ft.m_tiles_skipped > 0) {
+ start_tile = ft.m_new_tile;
+ }
+
while (ft.Follow(tile, trackdir)) {
- TrackdirBits reserved = (TrackdirBits)(ft.m_new_td_bits & (GetReservedTrackbits(ft.m_new_tile) * 0x101));
+ TrackdirBits reserved = ft.m_new_td_bits & TrackBitsToTrackdirBits(GetReservedTrackbits(ft.m_new_tile));
/* No reservation --> path end found */
if (reserved == TRACKDIR_BIT_NONE) break;
@@ -197,6 +213,8 @@ static PBSTileInfo FollowReservation(Owner o, RailTypes rts, TileIndex tile, Tra
tile = ft.m_new_tile;
trackdir = new_trackdir;
+ /* Loop encountered? */
+ if (tile == start_tile && trackdir == start_trackdir) break;
/* Depot tile? Can't continue. */
if (IsRailDepotTile(tile)) break;
/* Non-pbs signal? Reservation can't continue. */