summaryrefslogtreecommitdiff
path: root/src/ai
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2009-08-08 13:50:18 +0000
committeryexo <yexo@openttd.org>2009-08-08 13:50:18 +0000
commit2d1c64948a2d3e30844cc1332eed744a4a957bc8 (patch)
tree8ab71bcafca92c8ff7bdb49f75221d8b2fc47bd0 /src/ai
parentba2f6f0a669acb7132971ab13990500ad3089d80 (diff)
downloadopenttd-2d1c64948a2d3e30844cc1332eed744a4a957bc8.tar.xz
(svn r17110) -Fix [NoAI]: Print a warning message in the AI console when a deprecated function is used
Diffstat (limited to 'src/ai')
-rw-r--r--src/ai/api/ai_order.hpp2
-rw-r--r--src/ai/api/ai_sign.cpp1
-rw-r--r--src/ai/api/ai_tile.cpp1
3 files changed, 3 insertions, 1 deletions
diff --git a/src/ai/api/ai_order.hpp b/src/ai/api/ai_order.hpp
index f3ccbb32c..c04ffd799 100644
--- a/src/ai/api/ai_order.hpp
+++ b/src/ai/api/ai_order.hpp
@@ -404,7 +404,7 @@ public:
static bool SetOrderFlags(VehicleID vehicle_id, OrderPosition order_position, AIOrderFlags order_flags);
/**
- * Deprecated, use SetOrderFlags instead.
+ * @Deprecated, use SetOrderFlags instead.
*/
static bool ChangeOrder(VehicleID vehicle_id, OrderPosition order_position, AIOrderFlags order_flags);
diff --git a/src/ai/api/ai_sign.cpp b/src/ai/api/ai_sign.cpp
index 29609f29a..66ea4183c 100644
--- a/src/ai/api/ai_sign.cpp
+++ b/src/ai/api/ai_sign.cpp
@@ -15,6 +15,7 @@
/* static */ SignID AISign::GetMaxSignID()
{
+ AILog::Warning("AISign::GetMaxSignID is deprecated and will be removed soon, please use AISignList instead.");
return (SignID)::Sign::GetPoolSize();
}
diff --git a/src/ai/api/ai_tile.cpp b/src/ai/api/ai_tile.cpp
index f54285477..93f0bd82e 100644
--- a/src/ai/api/ai_tile.cpp
+++ b/src/ai/api/ai_tile.cpp
@@ -131,6 +131,7 @@
/* static */ int32 AITile::GetHeight(TileIndex tile)
{
+ AILog::Warning("AITile::GetHeight is deprecated and will be removed soon, please use GetMinHeight/GetMaxHeight/GetCornerHeight instead.");
if (!::IsValidTile(tile)) return -1;
return ::TileHeight(tile);