summaryrefslogtreecommitdiff
path: root/ai/default
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2006-08-22 20:41:26 +0000
committertruelight <truelight@openttd.org>2006-08-22 20:41:26 +0000
commit15aff22c965913598652666046c522eaa0c76641 (patch)
treec177232d70dec4fb6d7cd2dbac79206e86ee2daa /ai/default
parentf2b804f0a6d2b668a73f8c0daa8ed20c81afa4d3 (diff)
downloadopenttd-15aff22c965913598652666046c522eaa0c76641.tar.xz
(svn r6055) -Codechange: added GetXXXArraySize, which returns HighestID + 1 (or, will do that).
It isn't the best name, but we couldn't find any better. This unifies the pool-system even more.
Diffstat (limited to 'ai/default')
-rw-r--r--ai/default/default.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ai/default/default.c b/ai/default/default.c
index c57ba0c51..3de583bf4 100644
--- a/ai/default/default.c
+++ b/ai/default/default.c
@@ -441,13 +441,13 @@ typedef struct FoundRoute {
static Town *AiFindRandomTown(void)
{
- Town *t = GetTown(RandomRange(_total_towns));
+ Town *t = GetTown(RandomRange(GetTownArraySize()));
return IsValidTown(t) ? t : NULL;
}
static Industry *AiFindRandomIndustry(void)
{
- Industry *i = GetIndustry(RandomRange(_total_industries));
+ Industry *i = GetIndustry(RandomRange(GetIndustryArraySize()));
return IsValidIndustry(i) ? i : NULL;
}
@@ -3566,8 +3566,8 @@ static void AiStateRemoveStation(Player *p)
p->ai.state = AIS_1;
// Get a list of all stations that are in use by a vehicle
- in_use = malloc(GetStationPoolSize());
- memset(in_use, 0, GetStationPoolSize());
+ in_use = malloc(GetStationArraySize());
+ memset(in_use, 0, GetStationArraySize());
FOR_ALL_ORDERS(ord) {
if (ord->type == OT_GOTO_STATION) in_use[ord->station] = 1;
}