summaryrefslogtreecommitdiff
path: root/unmovable_map.h
diff options
context:
space:
mode:
authorcelestar <celestar@openttd.org>2006-03-31 09:09:26 +0000
committercelestar <celestar@openttd.org>2006-03-31 09:09:26 +0000
commit20c29f10df67efcada2bd3275863848a21d5040f (patch)
tree538459d686ebc5fe02d81cb3357858894f1b241a /unmovable_map.h
parent1c19e7be00b8547df8694fa118f294492c7ef640 (diff)
downloadopenttd-20c29f10df67efcada2bd3275863848a21d5040f.tar.xz
(svn r4196) -Codechange: Add and make use of an accessor that modifies the size of the Company HQ
Diffstat (limited to 'unmovable_map.h')
-rw-r--r--unmovable_map.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/unmovable_map.h b/unmovable_map.h
index 6eb164956..fed814ced 100644
--- a/unmovable_map.h
+++ b/unmovable_map.h
@@ -39,6 +39,17 @@ static inline bool IsOwnedLandTile(TileIndex t)
}
+static inline void EnlargeCompanyHQ(TileIndex t, byte size)
+{
+ if (size <= _m[t].m5 - UNMOVABLE_HQ_NORTH) return;
+
+ _m[t + TileDiffXY(0, 0)].m5 = UNMOVABLE_HQ_NORTH + size * 4;
+ _m[t + TileDiffXY(0, 1)].m5 = UNMOVABLE_HQ_WEST + size * 4;
+ _m[t + TileDiffXY(1, 0)].m5 = UNMOVABLE_HQ_EAST + size * 4;
+ _m[t + TileDiffXY(1, 1)].m5 = UNMOVABLE_HQ_SOUTH + size * 4;
+}
+
+
static inline void MakeUnmovable(TileIndex t, UnmovableType u, Owner o)
{
SetTileType(t, MP_UNMOVABLE);