summaryrefslogtreecommitdiff
path: root/road_cmd.c
diff options
context:
space:
mode:
authorcelestar <celestar@openttd.org>2006-04-03 15:18:12 +0000
committercelestar <celestar@openttd.org>2006-04-03 15:18:12 +0000
commit857ccb97c9731ab2cabed09641d2a7b4139feb05 (patch)
tree97b6d92b324358a897d6a5154078423c424b983b /road_cmd.c
parent1b51ad3dde5e3a75597e299ddb8c873a9dea113e (diff)
downloadopenttd-857ccb97c9731ab2cabed09641d2a7b4139feb05.tar.xz
(svn r4263) -Codechange: Road building no longer uses FindLandscapeHeight. Last occurence of FindLandscapeTile in the tile-specific functions gone. Thanks to Tron for doing lots of work in this direction
Diffstat (limited to 'road_cmd.c')
-rw-r--r--road_cmd.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/road_cmd.c b/road_cmd.c
index 9bc4c84d9..fc603c7e3 100644
--- a/road_cmd.c
+++ b/road_cmd.c
@@ -277,12 +277,12 @@ static uint32 CheckRoadSlope(int tileh, RoadBits* pieces, RoadBits existing)
*/
int32 CmdBuildRoad(int x, int y, uint32 flags, uint32 p1, uint32 p2)
{
- TileInfo ti;
int32 cost = 0;
int32 ret;
RoadBits existing = 0;
RoadBits pieces;
TileIndex tile;
+ byte tileh;
SET_EXPENSES_TYPE(EXPENSES_CONSTRUCTION);
@@ -291,10 +291,10 @@ int32 CmdBuildRoad(int x, int y, uint32 flags, uint32 p1, uint32 p2)
if ((p1 >> 4) || (_current_player < MAX_PLAYERS && p2 != 0) || !IsTownIndex(p2)) return CMD_ERROR;
pieces = p1;
- FindLandscapeHeight(&ti, x, y);
- tile = ti.tile;
+ tile = TileVirtXY(x, y);
+ tileh = GetTileSlope(tile, NULL);
- switch (ti.type) {
+ switch (GetTileType(tile)) {
case MP_STREET:
switch (GetRoadType(tile)) {
case ROAD_NORMAL:
@@ -320,13 +320,13 @@ int32 CmdBuildRoad(int x, int y, uint32 flags, uint32 p1, uint32 p2)
case MP_RAILWAY: {
Axis roaddir;
- if (IsSteepTileh(ti.tileh)) { // very steep tile
+ if (IsSteepTileh(tileh)) { // very steep tile
return_cmd_error(STR_1000_LAND_SLOPED_IN_WRONG_DIRECTION);
}
#define M(x) (1 << (x))
/* Level crossings may only be built on these slopes */
- if (!HASBIT(M(14) | M(13) | M(11) | M(10) | M(7) | M(5) | M(0), ti.tileh)) {
+ if (!HASBIT(M(14) | M(13) | M(11) | M(10) | M(7) | M(5) | M(0), tileh)) {
return_cmd_error(STR_1000_LAND_SLOPED_IN_WRONG_DIRECTION);
}
#undef M
@@ -357,7 +357,7 @@ int32 CmdBuildRoad(int x, int y, uint32 flags, uint32 p1, uint32 p2)
case MP_TUNNELBRIDGE:
/* check for flat land */
- if (IsSteepTileh(ti.tileh)) { // very steep tile
+ if (IsSteepTileh(tileh)) { // very steep tile
return_cmd_error(STR_1000_LAND_SLOPED_IN_WRONG_DIRECTION);
}
@@ -393,14 +393,14 @@ do_clear:;
cost += ret;
}
- ret = CheckRoadSlope(ti.tileh, &pieces, existing);
+ ret = CheckRoadSlope(tileh, &pieces, existing);
if (CmdFailed(ret)) return_cmd_error(STR_1800_LAND_SLOPED_IN_WRONG_DIRECTION);
if (ret != 0 && (!_patches.build_on_slopes || _is_old_ai_player)) {
return CMD_ERROR;
}
cost += ret;
- if (ti.type == MP_STREET) {
+ if (IsTileType(tile, MP_STREET)) {
// Don't put the pieces that already exist
pieces &= ComplementRoadBits(existing);
}
@@ -408,7 +408,7 @@ do_clear:;
cost += CountRoadBits(pieces) * _price.build_road;
if (flags & DC_EXEC) {
- if (ti.type == MP_STREET) {
+ if (IsTileType(tile, MP_STREET)) {
SetRoadBits(tile, existing | pieces);
} else {
MakeRoadNormal(tile, _current_player, pieces, p2);