summaryrefslogtreecommitdiff
path: root/tunnelbridge_cmd.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-03-15 17:38:00 +0000
committertron <tron@openttd.org>2006-03-15 17:38:00 +0000
commitb36203f671cddce99b938abe4999a19f62bc79cf (patch)
tree46f678492956c5448d25ac528f516522a8af9a56 /tunnelbridge_cmd.c
parentf262ae6c8b03f4a66397a2f70780d23328d90d51 (diff)
downloadopenttd-b36203f671cddce99b938abe4999a19f62bc79cf.tar.xz
(svn r3890) Simplify deleting a bridge by handling the ramps outside of the removal loop
Diffstat (limited to 'tunnelbridge_cmd.c')
-rw-r--r--tunnelbridge_cmd.c50
1 files changed, 23 insertions, 27 deletions
diff --git a/tunnelbridge_cmd.c b/tunnelbridge_cmd.c
index 53eeae041..9806d59be 100644
--- a/tunnelbridge_cmd.c
+++ b/tunnelbridge_cmd.c
@@ -698,45 +698,41 @@ static int32 DoClearBridge(TileIndex tile, uint32 flags)
}
if (flags & DC_EXEC) {
- TileIndex c = tile;
+ TileIndexDiff delta = (direction == AXIS_X ? TileDiffXY(1, 0) : TileDiffXY(0, 1));
+ TileIndex c;
//checks if the owner is town then decrease town rating by RATING_TUNNEL_BRIDGE_DOWN_STEP until
// you have a "Poor" (0) town rating
if (IsTileOwner(tile, OWNER_TOWN) && _game_mode != GM_EDITOR)
ChangeTownRating(t, RATING_TUNNEL_BRIDGE_DOWN_STEP, RATING_TUNNEL_BRIDGE_MINIMUM);
- do {
- if (!(_m[c].m5 & 0x40)) {
- // bridge ramp
- DoClearSquare(c);
+ DoClearSquare(tile);
+ DoClearSquare(endtile);
+ for (c = tile + delta; c != endtile; c += delta) {
+ if (_m[c].m5 & 0x20) {
+ // transport under bridge
+ if (GB(_m[c].m5, 3, 2) == TRANSPORT_RAIL) {
+ MakeRailNormal(c, GetTileOwner(c), _m[c].m5 & 1 ? TRACK_BIT_X : TRACK_BIT_Y, GB(_m[c].m3, 0, 3));
+ } else {
+ MakeRoadNormal(c, GetTileOwner(c), _m[c].m5 & 1 ? ROAD_X : ROAD_Y, 0); // XXX Determine town, missing till now
+ }
+ MarkTileDirtyByTile(c);
} else {
- // bridge middle part
- if (_m[c].m5 & 0x20) {
- // transport under bridge
- if (GB(_m[c].m5, 3, 2) == TRANSPORT_RAIL) {
- MakeRailNormal(c, GetTileOwner(c), _m[c].m5 & 1 ? TRACK_BIT_X : TRACK_BIT_Y, GB(_m[c].m3, 0, 3));
- } else {
- MakeRoadNormal(c, GetTileOwner(c), _m[c].m5 & 1 ? ROAD_X : ROAD_Y, 0); // XXX Determine town, missing till now
- }
- MarkTileDirtyByTile(c);
+ // clear under bridge
+ if (GB(_m[c].m5, 3, 2) == 0) {
+ // grass under bridge
+ DoClearSquare(c);
} else {
- // clear under bridge
- if (GB(_m[c].m5, 3, 2) == 0) {
- // grass under bridge
- DoClearSquare(c);
+ // water under bridge
+ if (GetTileSlope(c, NULL) == 0) {
+ MakeWater(c);
} else {
- // water under bridge
- if (GetTileSlope(c, NULL) == 0) {
- MakeWater(c);
- } else {
- MakeShore(c);
- }
- MarkTileDirtyByTile(c);
+ MakeShore(c);
}
+ MarkTileDirtyByTile(c);
}
}
- c += (direction == AXIS_X ? TileDiffXY(1, 0) : TileDiffXY(0, 1));
- } while (c <= endtile);
+ }
SetSignalsOnBothDir(tile, direction == AXIS_X ? TRACK_X : TRACK_Y);
SetSignalsOnBothDir(endtile, direction == AXIS_X ? TRACK_X : TRACK_Y);