summaryrefslogtreecommitdiff
path: root/town.h
diff options
context:
space:
mode:
authormatthijs <matthijs@openttd.org>2006-12-05 13:58:20 +0000
committermatthijs <matthijs@openttd.org>2006-12-05 13:58:20 +0000
commit9218fc16e6fff350e6209b6b90b8597fc431f00f (patch)
treee23ebc401e3e8f7037ad38701e00a6bf1fb61136 /town.h
parent681f994d16a71813144352b3a6ef05a22cb8b3ff (diff)
downloadopenttd-9218fc16e6fff350e6209b6b90b8597fc431f00f.tar.xz
(svn r7372) - CodeChange: Rename all GetXXXArraySize() functions to GetNumXXX() and add GetMaxXXXIndex() functions. This prepares for the new pool interface.
Diffstat (limited to 'town.h')
-rw-r--r--town.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/town.h b/town.h
index 896e3415c..50a47c14b 100644
--- a/town.h
+++ b/town.h
@@ -164,13 +164,18 @@ static inline bool IsValidTown(const Town* town)
VARDEF uint _total_towns;
-static inline TownID GetTownArraySize(void)
+static inline TownID GetMaxTownIndex(void)
{
/* TODO - This isn't the real content of the function, but
* with the new pool-system this will be replaced with one that
- * _really_ returns the highest index + 1. Now it just returns
+ * _really_ returns the highest index. Now it just returns
* the next safe value we are sure about everything is below.
*/
+ return _total_towns - 1;
+}
+
+static inline uint GetNumTowns(void)
+{
return _total_towns;
}
@@ -179,7 +184,7 @@ static inline TownID GetTownArraySize(void)
*/
static inline Town *GetRandomTown(void)
{
- uint num = RandomRange(GetTownArraySize());
+ uint num = RandomRange(GetNumTowns());
uint index = 0;
while (num > 0) {
@@ -189,7 +194,7 @@ static inline Town *GetRandomTown(void)
/* Make sure we have a valid industry */
while (GetTown(index) == NULL) {
index++;
- if (index == GetTownArraySize()) index = 0;
+ if (index > GetMaxTownIndex()) index = 0;
}
}