summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_industry.hpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-05-09 15:59:30 +0000
committeryexo <yexo@openttd.org>2010-05-09 15:59:30 +0000
commit37928e29f7f15680b946a1451fe202601d3ef81f (patch)
treec90ae0b8d246d65155338ee18043ca14b7d4d885 /src/ai/api/ai_industry.hpp
parent96c1fd61735ecc73dea18bd1cdf58c18b3b1a5c8 (diff)
downloadopenttd-37928e29f7f15680b946a1451fe202601d3ef81f.tar.xz
(svn r19773) -Add: [NoAI] AIIndustry::GetIndustryID(TileIndex)
Diffstat (limited to 'src/ai/api/ai_industry.hpp')
-rw-r--r--src/ai/api/ai_industry.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ai/api/ai_industry.hpp b/src/ai/api/ai_industry.hpp
index cbaa9f407..815e37ad0 100644
--- a/src/ai/api/ai_industry.hpp
+++ b/src/ai/api/ai_industry.hpp
@@ -37,6 +37,16 @@ public:
static bool IsValidIndustry(IndustryID industry_id);
/**
+ * Get the IndustryID of a tile, if there is an industry.
+ * @param tile The tile to find the IndustryID of.
+ * @return IndustryID of the industry.
+ * @post Use IsValidIndustry() to see if the industry is valid.
+ * @note GetIndustryID will return an invalid IndustryID for the
+ * station tile of industries with a dock/heliport.
+ */
+ static IndustryID GetIndustryID(TileIndex tile);
+
+ /**
* Get the name of the industry.
* @param industry_id The industry to get the name of.
* @pre IsValidIndustry(industry_id).