summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2009-07-31 22:38:09 +0000
committeryexo <yexo@openttd.org>2009-07-31 22:38:09 +0000
commit8d768f5b30b4415591fafa23345d81cc306e28ea (patch)
treef561978c2350f6e2c411e61a2ea4dd51241a16d6 /src
parent8c05194c0241d88226ba6c727a0c45b00d8495ed (diff)
downloadopenttd-8d768f5b30b4415591fafa23345d81cc306e28ea.tar.xz
(svn r17012) -Add [NoAI]: AIBaseStation::GetConstructionDate
Diffstat (limited to 'src')
-rw-r--r--src/ai/api/ai_basestation.cpp7
-rw-r--r--src/ai/api/ai_basestation.hpp7
-rw-r--r--src/ai/api/ai_basestation.hpp.sq9
3 files changed, 19 insertions, 4 deletions
diff --git a/src/ai/api/ai_basestation.cpp b/src/ai/api/ai_basestation.cpp
index c9f68b3f3..0f51383e9 100644
--- a/src/ai/api/ai_basestation.cpp
+++ b/src/ai/api/ai_basestation.cpp
@@ -45,3 +45,10 @@
return ::BaseStation::Get(station_id)->xy;
}
+
+/* static */ int32 AIBaseStation::GetConstructionDate(StationID station_id)
+{
+ if (!IsValidBaseStation(station_id)) return -1;
+
+ return ::BaseStation::Get(station_id)->build_date;
+}
diff --git a/src/ai/api/ai_basestation.hpp b/src/ai/api/ai_basestation.hpp
index fa103b59e..609d350c2 100644
--- a/src/ai/api/ai_basestation.hpp
+++ b/src/ai/api/ai_basestation.hpp
@@ -61,6 +61,13 @@ public:
* @return The tile the basestation is currently on.
*/
static TileIndex GetLocation(StationID station_id);
+
+ /**
+ * Get the last date a station part was added to this station.
+ * @param station_id The station to look at.
+ * @return The last date some part of this station was build.
+ */
+ static int32 GetConstructionDate(StationID station_id);
};
#endif /* AI_BASESTATION_HPP */
diff --git a/src/ai/api/ai_basestation.hpp.sq b/src/ai/api/ai_basestation.hpp.sq
index f18e6f621..abbf7e69b 100644
--- a/src/ai/api/ai_basestation.hpp.sq
+++ b/src/ai/api/ai_basestation.hpp.sq
@@ -26,10 +26,11 @@ void SQAIBaseStation_Register(Squirrel *engine) {
SQAIBaseStation.DefSQConst(engine, AIBaseStation::STATION_INVALID, "STATION_INVALID");
SQAIBaseStation.DefSQConst(engine, AIBaseStation::WAYPOINT_INVALID, "WAYPOINT_INVALID");
- SQAIBaseStation.DefSQStaticMethod(engine, &AIBaseStation::IsValidBaseStation, "IsValidBaseStation", 2, ".i");
- SQAIBaseStation.DefSQStaticMethod(engine, &AIBaseStation::GetName, "GetName", 2, ".i");
- SQAIBaseStation.DefSQStaticMethod(engine, &AIBaseStation::SetName, "SetName", 3, ".is");
- SQAIBaseStation.DefSQStaticMethod(engine, &AIBaseStation::GetLocation, "GetLocation", 2, ".i");
+ SQAIBaseStation.DefSQStaticMethod(engine, &AIBaseStation::IsValidBaseStation, "IsValidBaseStation", 2, ".i");
+ SQAIBaseStation.DefSQStaticMethod(engine, &AIBaseStation::GetName, "GetName", 2, ".i");
+ SQAIBaseStation.DefSQStaticMethod(engine, &AIBaseStation::SetName, "SetName", 3, ".is");
+ SQAIBaseStation.DefSQStaticMethod(engine, &AIBaseStation::GetLocation, "GetLocation", 2, ".i");
+ SQAIBaseStation.DefSQStaticMethod(engine, &AIBaseStation::GetConstructionDate, "GetConstructionDate", 2, ".i");
SQAIBaseStation.PostRegister(engine);
}