diff options
author | zuu <zuu@openttd.org> | 2013-10-12 22:28:38 +0000 |
---|---|---|
committer | zuu <zuu@openttd.org> | 2013-10-12 22:28:38 +0000 |
commit | e50478c053acfffcad98547bf265ff3ada77a33e (patch) | |
tree | 65c2f2ba0d6d8bdc40bf3097eff9b83653e50b7a /src | |
parent | fb5dc7762b72b0b7c9c8c16cda7e819fa92f6d01 (diff) | |
download | openttd-e50478c053acfffcad98547bf265ff3ada77a33e.tar.xz |
(svn r25853) -Codechange: Simplify SetupFarmFieldFence by replacing the Axis and north parameter with a direction parameter and taking adventage of the new unified SetFence function (cirdan, LordAro)
Diffstat (limited to 'src')
-rw-r--r-- | src/industry_cmd.cpp | 35 |
1 files changed, 16 insertions, 19 deletions
diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp index ad1480e21..0bc92459d 100644 --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -956,8 +956,17 @@ static bool IsSuitableForFarmField(TileIndex tile, bool allow_fields) } } -static void SetupFarmFieldFence(TileIndex tile, int size, byte type, Axis direction, bool north) +/** + * Build farm field fence + * @param tile the tile to position the fence on + * @param size the size of the field being planted in tiles + * @param type type of fence to set + * @param side the side of the tile to attempt placement + */ +static void SetupFarmFieldFence(TileIndex tile, int size, byte type, DiagDirection side) { + TileIndexDiff diff = (DiagDirToAxis(side) == AXIS_Y ? TileDiffXY(1, 0) : TileDiffXY(0, 1)); + do { tile = TILE_MASK(tile); @@ -966,22 +975,10 @@ static void SetupFarmFieldFence(TileIndex tile, int size, byte type, Axis direct if (or_ == 1 && Chance16(1, 7)) or_ = 2; - if (direction == AXIS_X) { - if (north) { - SetFence(tile, DIAGDIR_NW, or_); - } else { - SetFence(tile, DIAGDIR_SE, or_); - } - } else { - if (north) { - SetFence(tile, DIAGDIR_NE, or_); - } else { - SetFence(tile, DIAGDIR_SW, or_); - } - } + SetFence(tile, side, or_); } - tile += (direction == AXIS_X ? TileDiffXY(1, 0) : TileDiffXY(0, 1)); + tile += diff; } while (--size); } @@ -1030,10 +1027,10 @@ static void PlantFarmField(TileIndex tile, IndustryID industry) type = _plantfarmfield_type[Random() & 0xF]; } - SetupFarmFieldFence(ta.tile, ta.h, type, AXIS_Y, true); - SetupFarmFieldFence(ta.tile, ta.w, type, AXIS_X, true); - SetupFarmFieldFence(ta.tile + TileDiffXY(ta.w - 1, 0), ta.h, type, AXIS_Y, false); - SetupFarmFieldFence(ta.tile + TileDiffXY(0, ta.h - 1), ta.w, type, AXIS_X, false); + SetupFarmFieldFence(ta.tile, ta.h, type, DIAGDIR_NE); + SetupFarmFieldFence(ta.tile, ta.w, type, DIAGDIR_NW); + SetupFarmFieldFence(ta.tile + TileDiffXY(ta.w - 1, 0), ta.h, type, DIAGDIR_SW); + SetupFarmFieldFence(ta.tile + TileDiffXY(0, ta.h - 1), ta.w, type, DIAGDIR_SE); } void PlantRandomFarmField(const Industry *i) |