summaryrefslogtreecommitdiff
path: root/src/terraform_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2014-09-21 17:29:48 +0000
committerrubidium <rubidium@openttd.org>2014-09-21 17:29:48 +0000
commit073aa05da5fa417ede47679291f2d117b119dfd6 (patch)
tree5687e77ca3045478e62b170a91037fa80c0ef0c9 /src/terraform_cmd.cpp
parent4d619ad10e8a8b35b96b9772543c8fa46d5beb10 (diff)
downloadopenttd-073aa05da5fa417ede47679291f2d117b119dfd6.tar.xz
(svn r26900) -Fix-ish: dirty the appropriate area around map edges when terraforming there to prevent any artefacts from occuring (ic111)
Diffstat (limited to 'src/terraform_cmd.cpp')
-rw-r--r--src/terraform_cmd.cpp80
1 files changed, 80 insertions, 0 deletions
diff --git a/src/terraform_cmd.cpp b/src/terraform_cmd.cpp
index 2d36a101e..bcc480897 100644
--- a/src/terraform_cmd.cpp
+++ b/src/terraform_cmd.cpp
@@ -321,6 +321,86 @@ CommandCost CmdTerraformLand(TileIndex tile, DoCommandFlag flags, uint32 p1, uin
/* Finally mark the dirty tiles dirty */
for (TileIndexSet::const_iterator it = ts.dirty_tiles.begin(); it != ts.dirty_tiles.end(); it++) {
MarkTileDirtyByTile(*it);
+
+ int height = TerraformGetHeightOfTile(&ts, *it);
+
+ /* Now, if we alter the height of the map edge, we need to take care
+ * about repainting the affected areas outside map as well.
+ * Remember:
+ * Outside map, we assume that our landscape descends to
+ * height zero as fast as possible.
+ * Those simulated tiles (they don't exist as datastructure,
+ * only as concept in code) need to be repainted properly,
+ * otherwise we will get ugly glitches.
+ *
+ * Furthermore, note that we have to take care about the possibility,
+ * that landscape was higher before the change,
+ * so also tiles a bit outside need to be repainted.
+ */
+ int x = TileX(*it);
+ int y = TileY(*it);
+ if (x == 0) {
+ if (y == 0) {
+ /* Height of the northern corner is altered. */
+ for (int cx = 0; cx >= -height - 1; cx--) {
+ for (int cy = 0; cy >= -height - 1; cy--) {
+ /* This means, tiles in the sector north of that
+ * corner need to be repainted.
+ */
+ if (cx + cy >= -height - 2) {
+ /* But only tiles that actually might have changed. */
+ MarkTileDirtyByTileOutsideMap(cx, cy);
+ }
+ }
+ }
+ } else if (y < (int)MapMaxY()) {
+ for (int cx = 0; cx >= -height - 1; cx--) {
+ MarkTileDirtyByTileOutsideMap(cx, y);
+ }
+ } else {
+ for (int cx = 0; cx >= -height - 1; cx--) {
+ for (int cy = (int)MapMaxY(); cy <= (int)MapMaxY() + height + 1; cy++) {
+ if (cx + ((int)MapMaxY() - cy) >= -height - 2) {
+ MarkTileDirtyByTileOutsideMap(cx, cy);
+ }
+ }
+ }
+ }
+ } else if (x < (int)MapMaxX()) {
+ if (y == 0) {
+ for (int cy = 0; cy >= -height - 1; cy--) {
+ MarkTileDirtyByTileOutsideMap(x, cy);
+ }
+ } else if (y < (int)MapMaxY()) {
+ /* Nothing to be done here, we are inside the map. */
+ } else {
+ for (int cy = (int)MapMaxY(); cy <= (int)MapMaxY() + height + 1; cy++) {
+ MarkTileDirtyByTileOutsideMap(x, cy);
+ }
+ }
+ } else {
+ if (y == 0) {
+ for (int cx = (int)MapMaxX(); cx <= (int)MapMaxX() + height + 1; cx++) {
+ for (int cy = 0; cy >= -height - 1; cy--) {
+ if (((int)MapMaxX() - cx) + cy >= -height - 2) {
+ MarkTileDirtyByTileOutsideMap(cx, cy);
+ }
+ }
+ }
+ } else if (y < (int)MapMaxY()) {
+ for (int cx = (int)MapMaxX(); cx <= (int)MapMaxX() + height + 1; cx++) {
+ MarkTileDirtyByTileOutsideMap(cx, y);
+ }
+ } else {
+ for (int cx = (int)MapMaxX(); cx <= (int)MapMaxX() + height + 1; cx++) {
+ for (int cy = (int)MapMaxY(); cy <= (int)MapMaxY() + height + 1; cy++) {
+ if (((int)MapMaxX() - cx) + ((int)MapMaxY() - cy) >= -height - 2) {
+ MarkTileDirtyByTileOutsideMap(cx, cy);
+ }
+ }
+ }
+ }
+ }
}
if (c != NULL) c->terraform_limit -= ts.tile_to_new_height.size() << 16;