File diff r18248:133cf25ab512 → r18249:4312edc888fe
src/ai/api/ai_tunnel.cpp
Show inline comments
 
@@ -27,23 +27,23 @@
 
	if (!::IsValidTile(tile)) return INVALID_TILE;
 

	
 
	/* If it's a tunnel already, take the easy way out! */
 
	if (IsTunnelTile(tile)) return ::GetOtherTunnelEnd(tile);
 

	
 
	uint start_z;
 
	Slope start_tileh = ::GetTilePixelSlope(tile, &start_z);
 
	Slope start_tileh = ::GetTileSlope(tile, &start_z);
 
	DiagDirection direction = ::GetInclinedSlopeDirection(start_tileh);
 
	if (direction == INVALID_DIAGDIR) return INVALID_TILE;
 

	
 
	TileIndexDiff delta = ::TileOffsByDiagDir(direction);
 
	uint end_z;
 
	do {
 
		tile += delta;
 
		if (!::IsValidTile(tile)) return INVALID_TILE;
 

	
 
		::GetTilePixelSlope(tile, &end_z);
 
		::GetTileSlope(tile, &end_z);
 
	} while (start_z != end_z);
 

	
 
	return tile;
 
}
 

	
 
/**