summaryrefslogtreecommitdiff
path: root/station_cmd.c
diff options
context:
space:
mode:
authorKUDr <KUDr@openttd.org>2006-11-16 16:18:00 +0000
committerKUDr <KUDr@openttd.org>2006-11-16 16:18:00 +0000
commit17476d74a313f1235cfa5541aaa42bef6ee3e979 (patch)
treedb70be83163df5c24f588f93364497faeaf4e3d0 /station_cmd.c
parent6587db1c98fbf2ab3834f62dc909e8bcf9db878d (diff)
downloadopenttd-17476d74a313f1235cfa5541aaa42bef6ee3e979.tar.xz
(svn r7169) -Fix: [FS#388] Station sign (and base station coordinates) didn't move along with station when station moved by walking. (HMage)
Diffstat (limited to 'station_cmd.c')
-rw-r--r--station_cmd.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/station_cmd.c b/station_cmd.c
index cedc7c3b4..a00a74904 100644
--- a/station_cmd.c
+++ b/station_cmd.c
@@ -763,6 +763,24 @@ static void UpdateStationAcceptance(Station *st, bool show_msg)
InvalidateWindowWidget(WC_STATION_VIEW, st->index, 4);
}
+
+static void UpdateStationSignCoord(Station *st)
+{
+ ottd_Rectangle r = {MapSizeX(), MapSizeY(), 0, 0};
+ TileIndex tile;
+
+ // get station bounding rect
+ for (tile = 0; tile < MapSize(); tile++) {
+ if (IsTileType(tile, MP_STATION) && GetStationIndex(tile) == st->index) MergePoint(&r, tile);
+ }
+
+ if (r.max_x < r.min_x) return; // no tiles belong to this station
+
+ // clamp sign coord to be inside the rect
+ st->xy = TileXY(clampu(TileX(st->xy), r.min_x, r.max_x), clampu(TileY(st->xy), r.min_y, r.max_y));
+ UpdateStationVirtCoordDirty(st);
+}
+
// This is called right after a station was deleted.
// It checks if the whole station is free of substations, and if so, the station will be
// deleted after a little while.
@@ -773,6 +791,8 @@ static void DeleteStationIfEmpty(Station* st)
RebuildStationLists();
InvalidateWindow(WC_STATION_LIST, st->owner);
}
+ /* station remains but it probably lost some parts - station sign should stay in the station boundaries */
+ UpdateStationSignCoord(st);
}
static int32 ClearTile_Station(TileIndex tile, byte flags);
@@ -1218,6 +1238,7 @@ int32 CmdRemoveFromRailroadStation(TileIndex tile, uint32 flags, uint32 p1, uint
// we also need to adjust train_tile.
MakeRailwayStationAreaSmaller(st);
MarkStationTilesDirty(st);
+ UpdateStationSignCoord(st);
// if we deleted the whole station, delete the train facility.
if (st->train_tile == 0) {