mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-08 01:10:28 +00:00
b618b75c9b
-Feature: Bridges can now be placed above: Any railway track combination (excluding depots and waypoints) Any road combination (excluding depots) Clear tiles (duh), including fields Tunnel entrances Bridge heads Thanks to Tron for idea and implementation, KUDr for the yapf synchronization and many others for hours of testing There are still a number of visual problems remaining, especially when electric railways are on or under the bridge. DO NOT REPORT THOSE BUGS FOR THE TIME BEING please.
55 lines
976 B
C
55 lines
976 B
C
/* $Id$ */
|
|
|
|
#include "stdafx.h"
|
|
#include "openttd.h"
|
|
#include "bridge_map.h"
|
|
#include "variables.h"
|
|
|
|
|
|
TileIndex GetBridgeEnd(TileIndex tile, DiagDirection dir)
|
|
{
|
|
TileIndexDiff delta = TileOffsByDir(dir);
|
|
|
|
do { tile += delta; } while (IsBridgeAbove(tile) && IsBridgeOfAxis(tile, DiagDirToAxis(dir)));
|
|
|
|
return tile;
|
|
}
|
|
|
|
|
|
TileIndex GetNorthernBridgeEnd(TileIndex t)
|
|
{
|
|
return GetBridgeEnd(t, ReverseDiagDir(AxisToDiagDir(GetBridgeAxis(t))));
|
|
}
|
|
|
|
|
|
TileIndex GetSouthernBridgeEnd(TileIndex t)
|
|
{
|
|
return GetBridgeEnd(t, AxisToDiagDir(GetBridgeAxis(t)));
|
|
}
|
|
|
|
|
|
TileIndex GetOtherBridgeEnd(TileIndex tile)
|
|
{
|
|
assert(IsBridgeTile(tile));
|
|
return GetBridgeEnd(tile, GetBridgeRampDirection(tile));
|
|
}
|
|
|
|
uint GetBridgeHeight(TileIndex tile, Axis a)
|
|
{
|
|
uint h, f;
|
|
uint tileh = GetTileSlope(tile, &h);
|
|
|
|
f = GetBridgeFoundation(tileh, a);
|
|
|
|
if (f) {
|
|
if (f < 15) {
|
|
h += TILE_HEIGHT;
|
|
tileh = SLOPE_FLAT;
|
|
} else {
|
|
tileh = _inclined_tileh[f - 15];
|
|
}
|
|
}
|
|
|
|
return h + TILE_HEIGHT;
|
|
}
|