2006-03-15 16:44:50 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2007-04-03 21:51:40 +00:00
|
|
|
/** @file bridge_map.cpp Map accessor functions for bridges. */
|
2007-02-23 11:50:43 +00:00
|
|
|
|
2006-03-15 16:44:50 +00:00
|
|
|
#include "stdafx.h"
|
2007-10-20 16:50:48 +00:00
|
|
|
#include "landscape.h"
|
2007-12-16 15:38:51 +00:00
|
|
|
#include "tunnelbridge_map.h"
|
2006-03-15 16:44:50 +00:00
|
|
|
|
|
|
|
|
2009-11-09 10:40:33 +00:00
|
|
|
/**
|
|
|
|
* Finds the end of a bridge in the specified direction starting at a middle tile
|
2009-11-13 17:40:21 +00:00
|
|
|
* @param tile the bridge tile to find the bridge ramp for
|
|
|
|
* @param dir the direction to search in
|
2009-11-09 10:40:33 +00:00
|
|
|
*/
|
|
|
|
static TileIndex GetBridgeEnd(TileIndex tile, DiagDirection dir)
|
2006-03-16 05:28:15 +00:00
|
|
|
{
|
2006-09-05 23:21:41 +00:00
|
|
|
TileIndexDiff delta = TileOffsByDiagDir(dir);
|
2006-03-16 05:28:15 +00:00
|
|
|
|
2006-12-27 12:38:02 +00:00
|
|
|
dir = ReverseDiagDir(dir);
|
2006-06-07 19:35:21 +00:00
|
|
|
do {
|
|
|
|
tile += delta;
|
2007-12-16 15:38:51 +00:00
|
|
|
} while (!IsBridgeTile(tile) || GetTunnelBridgeDirection(tile) != dir);
|
2006-03-16 05:28:15 +00:00
|
|
|
|
2006-06-07 19:35:21 +00:00
|
|
|
return tile;
|
2006-06-02 13:05:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-18 22:17:15 +00:00
|
|
|
/**
|
|
|
|
* Finds the northern end of a bridge starting at a middle tile
|
|
|
|
* @param t the bridge tile to find the bridge ramp for
|
|
|
|
*/
|
2006-12-27 12:38:02 +00:00
|
|
|
TileIndex GetNorthernBridgeEnd(TileIndex t)
|
|
|
|
{
|
|
|
|
return GetBridgeEnd(t, ReverseDiagDir(AxisToDiagDir(GetBridgeAxis(t))));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-18 22:17:15 +00:00
|
|
|
/**
|
|
|
|
* Finds the southern end of a bridge starting at a middle tile
|
|
|
|
* @param t the bridge tile to find the bridge ramp for
|
|
|
|
*/
|
2006-03-16 05:28:15 +00:00
|
|
|
TileIndex GetSouthernBridgeEnd(TileIndex t)
|
|
|
|
{
|
|
|
|
return GetBridgeEnd(t, AxisToDiagDir(GetBridgeAxis(t)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-18 22:17:15 +00:00
|
|
|
/**
|
|
|
|
* Starting at one bridge end finds the other bridge end
|
|
|
|
* @param t the bridge ramp tile to find the other bridge ramp for
|
|
|
|
*/
|
2006-03-15 16:44:50 +00:00
|
|
|
TileIndex GetOtherBridgeEnd(TileIndex tile)
|
|
|
|
{
|
2006-12-27 12:38:02 +00:00
|
|
|
assert(IsBridgeTile(tile));
|
2007-12-16 15:38:51 +00:00
|
|
|
return GetBridgeEnd(tile, GetTunnelBridgeDirection(tile));
|
2006-12-27 12:38:02 +00:00
|
|
|
}
|
2006-06-02 13:05:41 +00:00
|
|
|
|
2011-01-18 22:17:15 +00:00
|
|
|
/**
|
2011-11-04 10:20:24 +00:00
|
|
|
* Get the height ('z') of a bridge.
|
2011-01-18 22:17:15 +00:00
|
|
|
* @param tile the bridge ramp tile to get the bridge height from
|
2011-11-04 10:20:24 +00:00
|
|
|
* @return the height of the bridge.
|
2011-01-18 22:17:15 +00:00
|
|
|
*/
|
2011-11-04 11:30:37 +00:00
|
|
|
int GetBridgeHeight(TileIndex t)
|
2006-12-27 12:38:02 +00:00
|
|
|
{
|
2011-11-04 11:30:37 +00:00
|
|
|
int h;
|
2011-11-04 10:20:24 +00:00
|
|
|
Slope tileh = GetTileSlope(t, &h);
|
2007-12-16 15:38:51 +00:00
|
|
|
Foundation f = GetBridgeFoundation(tileh, DiagDirToAxis(GetTunnelBridgeDirection(t)));
|
2006-12-27 12:38:02 +00:00
|
|
|
|
2007-10-20 16:50:48 +00:00
|
|
|
/* one height level extra for the ramp */
|
2011-11-04 10:20:24 +00:00
|
|
|
return h + 1 + ApplyFoundationToSlope(f, &tileh);
|
2006-03-15 16:44:50 +00:00
|
|
|
}
|