summaryrefslogtreecommitdiff
path: root/pathfind.c
diff options
context:
space:
mode:
authorcelestar <celestar@openttd.org>2006-04-22 05:36:22 +0000
committercelestar <celestar@openttd.org>2006-04-22 05:36:22 +0000
commita18e9ccf27abbe5fb35ee0a8c577c7e51a205779 (patch)
tree40c78533485f63584fab7957fb44ace125f6e039 /pathfind.c
parenteb4a4b250928413dd82b372589c84eade3dec831 (diff)
downloadopenttd-a18e9ccf27abbe5fb35ee0a8c577c7e51a205779.tar.xz
(svn r4515) -Codechange: TPFMode2 is currently only used for TRANSPORT_WATER. So remove all stuff that deals with other transport types and assert TRANSPORT_WATER
Diffstat (limited to 'pathfind.c')
-rw-r--r--pathfind.c35
1 files changed, 1 insertions, 34 deletions
diff --git a/pathfind.c b/pathfind.c
index e3a21398d..3592c372d 100644
--- a/pathfind.c
+++ b/pathfind.c
@@ -134,47 +134,14 @@ static void TPFMode2(TrackPathFinder* tpf, TileIndex tile, DiagDirection directi
uint bits;
int i;
RememberData rd;
- int owner = -1;
- /* XXX: Mode 2 is currently only used for ships, why is this code here? */
- if (tpf->tracktype == TRANSPORT_RAIL) {
- switch (GetTileType(tile)) {
- case MP_TUNNELBRIDGE:
- // bridge middle has no owner
- if (IsBridge(tile) && IsBridgeMiddle(tile)) break;
- /* FALLTHROUGH */
-
- case MP_RAILWAY:
- case MP_STATION:
- owner = GetTileOwner(tile);
- break;
-
- default: break; // XXX can this occur?
- }
- }
+ assert(tpf->tracktype == TRANSPORT_WATER);
// This addition will sometimes overflow by a single tile.
// The use of TILE_MASK here makes sure that we still point at a valid
// tile, and then this tile will be in the sentinel row/col, so GetTileTrackStatus will fail.
tile = TILE_MASK(tile + TileOffsByDir(direction));
- /* Check in case of rail if the owner is the same */
- if (tpf->tracktype == TRANSPORT_RAIL) {
- switch (GetTileType(tile)) {
- case MP_TUNNELBRIDGE:
- // bridge middle has no owner
- if (IsBridge(tile) && IsBridgeMiddle(tile)) break;
- /* FALLTHROUGH */
-
- case MP_RAILWAY:
- case MP_STATION:
- if (owner != -1 && !IsTileOwner(tile, owner)) return;
- break;
-
- default: break; // XXX can this occur?
- }
- }
-
if (++tpf->rd.cur_length > 50)
return;