From 8ceb92e6998cdcf0b7821a9c18ec8d216b1a06fa Mon Sep 17 00:00:00 2001 From: yexo Date: Sat, 14 Feb 2009 21:13:15 +0000 Subject: (svn r15486) -Change [API CHANGE]: Remove AITown::GetMaxTownID. --- src/ai/api/ai_town.cpp | 5 ----- src/ai/api/ai_town.hpp | 7 ------- src/ai/api/ai_town.hpp.sq | 1 - 3 files changed, 13 deletions(-) (limited to 'src') diff --git a/src/ai/api/ai_town.cpp b/src/ai/api/ai_town.cpp index 117c35f39..f7584c979 100644 --- a/src/ai/api/ai_town.cpp +++ b/src/ai/api/ai_town.cpp @@ -14,11 +14,6 @@ #include "../../station_base.h" #include "table/strings.h" -/* static */ TownID AITown::GetMaxTownID() -{ - return ::GetMaxTownIndex(); -} - /* static */ int32 AITown::GetTownCount() { return ::GetNumTowns(); diff --git a/src/ai/api/ai_town.hpp b/src/ai/api/ai_town.hpp index 02b806b4c..c132beea3 100644 --- a/src/ai/api/ai_town.hpp +++ b/src/ai/api/ai_town.hpp @@ -96,13 +96,6 @@ public: ROAD_LAYOUT_INVALID = -1, ///< The layout for invalid towns. }; - /** - * Gets the maximum town index; there are no valid towns with a higher index. - * @return The maximum town index. - * @post Return value is always non-negative. - */ - static TownID GetMaxTownID(); - /** * Gets the number of towns. This is different than GetMaxTownID() * because of the way OpenTTD works internally. diff --git a/src/ai/api/ai_town.hpp.sq b/src/ai/api/ai_town.hpp.sq index d5fd67aee..f31a22867 100644 --- a/src/ai/api/ai_town.hpp.sq +++ b/src/ai/api/ai_town.hpp.sq @@ -49,7 +49,6 @@ void SQAITown_Register(Squirrel *engine) { SQAITown.DefSQConst(engine, AITown::ROAD_LAYOUT_3x3, "ROAD_LAYOUT_3x3"); SQAITown.DefSQConst(engine, AITown::ROAD_LAYOUT_INVALID, "ROAD_LAYOUT_INVALID"); - SQAITown.DefSQStaticMethod(engine, &AITown::GetMaxTownID, "GetMaxTownID", 1, "?"); SQAITown.DefSQStaticMethod(engine, &AITown::GetTownCount, "GetTownCount", 1, "?"); SQAITown.DefSQStaticMethod(engine, &AITown::IsValidTown, "IsValidTown", 2, "?i"); SQAITown.DefSQStaticMethod(engine, &AITown::GetName, "GetName", 2, "?i"); -- cgit v1.2.3-54-g00ecf