summaryrefslogtreecommitdiff
path: root/ai.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-08-17 16:20:04 +0000
committertruelight <truelight@openttd.org>2004-08-17 16:20:04 +0000
commit4b919416a2d627fc6c979bc12069f120040a48f7 (patch)
tree8e87986ba34d24e9358ebd81cc9cac5469c51089 /ai.c
parent5e25a4ee7996a4cc3456c91ba07f27b5e810ffdf (diff)
downloadopenttd-4b919416a2d627fc6c979bc12069f120040a48f7.tar.xz
(svn r77) -Fix: [1010788] AI service interval bug (tnx truesatan)
-Add: AI overrides service interval to 180 days -Fix: AI hanged when all vehicles were disabled in Patch menu
Diffstat (limited to 'ai.c')
-rw-r--r--ai.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/ai.c b/ai.c
index 70679deca..4039229a4 100644
--- a/ai.c
+++ b/ai.c
@@ -301,6 +301,8 @@ static void AiHandleReplaceTrain(Player *p)
veh = _new_train_id;
AiRestoreVehicleOrders(&_vehicles[veh], orderbak);
DoCommandByTile(0, veh, 0, DC_EXEC, CMD_START_STOP_TRAIN);
+ // Force the service interval to 180 days.. else things can go very wrong :p
+ DoCommandByTile(0, veh, 180, DC_EXEC, CMD_CHANGE_TRAIN_SERVICE_INT);
}
}
}
@@ -327,6 +329,8 @@ static void AiHandleReplaceRoadVeh(Player *p)
veh = _new_roadveh_id;
AiRestoreVehicleOrders(&_vehicles[veh], orderbak);
DoCommandByTile(0, veh, 0, DC_EXEC, CMD_START_STOP_ROADVEH);
+ // Force the service interval to 180 days.. else things can go very wrong :p
+ DoCommandByTile(0, veh, 180, DC_EXEC, CMD_CHANGE_ROADVEH_SERVICE_INT);
}
}
}
@@ -353,6 +357,8 @@ static void AiHandleReplaceAircraft(Player *p)
veh = _new_aircraft_id;
AiRestoreVehicleOrders(&_vehicles[veh], orderbak);
DoCommandByTile(0, veh, 0, DC_EXEC, CMD_START_STOP_AIRCRAFT);
+ // Force the service interval to 180 days.. else things can go very wrong :p
+ DoCommandByTile(0, veh, 180, DC_EXEC, CMD_CHANGE_AIRCRAFT_SERVICE_INT);
}
}
}
@@ -1492,6 +1498,10 @@ static void AiStateWantNewRoute(Player *p)
for(;;) {
r = (uint16)Random();
+ if (_patches.ai_disable_veh_train && _patches.ai_disable_veh_roadveh &&
+ _patches.ai_disable_veh_aircraft && _patches.ai_disable_veh_ship)
+ return;
+
if (r < 0x7626) {
if (_patches.ai_disable_veh_train) continue;
AiWantTrainRoute(p);
@@ -2422,6 +2432,8 @@ handle_nocash:
}
DoCommandByTile(0, loco_id, 0, DC_EXEC, CMD_START_STOP_TRAIN);
+ // Force the service interval to 180 days.. else things can go very wrong :p
+ DoCommandByTile(0, loco_id, 180, DC_EXEC, CMD_CHANGE_TRAIN_SERVICE_INT);
if (p->ai.num_want_fullload != 0)
p->ai.num_want_fullload--;
@@ -3167,6 +3179,8 @@ static void AiStateBuildRoadVehicles(Player *p)
}
DoCommandByTile(0, loco_id, 0, DC_EXEC, CMD_START_STOP_ROADVEH);
+ // Force the service interval to 180 days.. else things can go very wrong :p
+ DoCommandByTile(0, loco_id, 180, DC_EXEC, CMD_CHANGE_ROADVEH_SERVICE_INT);
if (p->ai.num_want_fullload != 0)
p->ai.num_want_fullload--;
@@ -3473,6 +3487,8 @@ static void AiStateBuildAircraftVehicles(Player *p)
}
DoCommandByTile(0, loco_id, 0, DC_EXEC, CMD_START_STOP_AIRCRAFT);
+ // Force the service interval to 180 days.. else things can go very wrong :p
+ DoCommandByTile(0, loco_id, 180, DC_EXEC, CMD_CHANGE_AIRCRAFT_SERVICE_INT);
if (p->ai.num_want_fullload != 0)
p->ai.num_want_fullload--;