mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-02 09:40:35 +00:00
072ce4bb17
-Change [NoAI]: mark AITown::GetMaxProduction as deprecated, AITown::GetLastMonthProduction returns now the value GetMaxProduction did
79 lines
2.9 KiB
Plaintext
79 lines
2.9 KiB
Plaintext
/* $Id$ */
|
|
|
|
AISign.GetMaxSignID <- function()
|
|
{
|
|
AILog.Warning("AISign::GetMaxSignID is deprecated and will be removed soon, please use AISignList instead.");
|
|
local list = AISignList();
|
|
local max_id = 0;
|
|
foreach (id, d in list) {
|
|
if (id > max_id) max_id = id;
|
|
}
|
|
return max_id;
|
|
}
|
|
|
|
AITile.GetHeight <- function(tile)
|
|
{
|
|
AILog.Warning("AITile::GetHeight is deprecated and will be removed soon, please use GetMinHeight/GetMaxHeight/GetCornerHeight instead.");
|
|
if (!AIMap.IsValidTile(tile)) return -1;
|
|
|
|
return AITile.GetCornerHeight(tile, AITile.CORNER_N);
|
|
}
|
|
|
|
AIOrder.ChangeOrder <- function(vehicle_id, order_position, order_flags)
|
|
{
|
|
AILog.Warning("AIOrder::ChangeOrder is deprecated and will be removed soon, please use AIOrder::SetOrderFlags instead.")
|
|
|
|
return AIOrder.SetOrderFlags(vehicle_id, order_position, order_flags);
|
|
}
|
|
|
|
AIWaypoint.WAYPOINT_INVALID <- 0xFFFF;
|
|
|
|
AISubsidy.SourceIsTown <- function(subsidy_id)
|
|
{
|
|
AILog.Warning("AISubsidy::SourceIsTown is deprecated and will be removed soon, please use AISubsidy::GetSourceType instead.");
|
|
if (!AISubsidy.IsValidSubsidy(subsidy_id) || AISubsidy.IsAwarded(subsidy_id)) return false;
|
|
|
|
return AISubsidy.GetSourceType(subsidy_id) == AISubsidy.SPT_TOWN;
|
|
}
|
|
|
|
AISubsidy.GetSource <- function(subsidy_id)
|
|
{
|
|
AILog.Warning("AISubsidy::GetSource is deprecated and will be removed soon, please use AISubsidy::GetSourceIndex instead.");
|
|
if (!AISubsidy.IsValidSubsidy(subsidy_id)) return AIBaseStation.STATION_INVALID;
|
|
|
|
if (AISubsidy.IsAwarded(subsidy_id)) {
|
|
AILog.Error("AISubsidy::GetSource returned STATION_INVALID due to internal changes in the Subsidy logic.");
|
|
return AIBaseStation.STATION_INVALID;
|
|
}
|
|
|
|
return AISubsidy.GetSourceIndex(subsidy_id);
|
|
}
|
|
|
|
AISubsidy.DestinationIsTown <- function(subsidy_id)
|
|
{
|
|
AILog.Warning("AISubsidy::DestinationIsTown is deprecated and will be removed soon, please use AISubsidy::GetDestinationType instead.");
|
|
if (!AISubsidy.IsValidSubsidy(subsidy_id) || AISubsidy.IsAwarded(subsidy_id)) return false;
|
|
|
|
return AISubsidy.GetDestinationType(subsidy_id) == AISubsidy.SPT_TOWN;
|
|
}
|
|
|
|
AISubsidy.GetDestination <- function(subsidy_id)
|
|
{
|
|
AILog.Warning("AISubsidy::GetDestination is deprecated and will be removed soon, please use AISubsidy::GetDestinationIndex instead.");
|
|
if (!AISubsidy.IsValidSubsidy(subsidy_id)) return AIBaseStation.STATION_INVALID;
|
|
|
|
if (AISubsidy.IsAwarded(subsidy_id)) {
|
|
AILog.Error("AISubsidy::GetDestination returned STATION_INVALID due to internal changes in the Subsidy logic.");
|
|
return AIBaseStation.STATION_INVALID;
|
|
}
|
|
|
|
return AISubsidy.GetDestinationIndex(subsidy_id);
|
|
}
|
|
|
|
AITown.GetMaxProduction <- function(town_id, cargo_id)
|
|
{
|
|
AILog.Warning("AITown::GetMaxProduction is deprecated and will be removed soon, please use AITown::GetLastMonthProduction instead.");
|
|
AILog.Warning("Also note that behaviour of AITown::GetLastMonthProduction has slightly changed.");
|
|
return AITown.GetLastMonthProduction(town_id, cargo_id);
|
|
}
|