summaryrefslogtreecommitdiff
path: root/town.h
diff options
context:
space:
mode:
authormatthijs <matthijs@openttd.org>2005-02-06 22:36:08 +0000
committermatthijs <matthijs@openttd.org>2005-02-06 22:36:08 +0000
commitcc0966405b3dc39a762e54ec0895ad3f346c53ab (patch)
treeb4e6f6fce72b1b3fcb2b25b635ad70c6bd5b6741 /town.h
parent257e97c09a5445c339118c3269cd3bd39151c65c (diff)
downloadopenttd-cc0966405b3dc39a762e54ec0895ad3f346c53ab.tar.xz
(svn r1834) - Fix: NPF does not check the owner of its target, busses try to enter other players' depots. TODO
- Add: asserts to find the v->u.rail.track == 0 problem. - Add: IsValidDepot(), IsValidTown(), IsValidSign(), IsValidVehicle(), IsValidStation() - Add: GetTileOwner(), IsTileOwner() - Codechange: Replaced IsShipDepotTile(), IsTrainDepotTile(), IsRoadDepotTile() by IsTileDepotType(). - Codechange: typedeffed the MAP_OWNERS as Owner. Should be used as variable type. - Codechange: Replaced a few uint by TileIndex.
Diffstat (limited to 'town.h')
-rw-r--r--town.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/town.h b/town.h
index c5c3b574f..cf7eee16e 100644
--- a/town.h
+++ b/town.h
@@ -134,6 +134,14 @@ VARDEF uint16 *_town_sort;
extern MemoryPool _town_pool;
/**
+ * Check if a Town really exists.
+ */
+static inline bool IsValidTown(Town* town)
+{
+ return town->xy != 0; /* XXX: Replace by INVALID_TILE someday */
+}
+
+/**
* Get the pointer to the town with index 'index'
*/
static inline Town *GetTown(uint index)