summaryrefslogtreecommitdiff
path: root/src/vehicle.cpp
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-02-02 16:49:11 +0000
committersmatz <smatz@openttd.org>2009-02-02 16:49:11 +0000
commitc50d94778438b74e7aa02712450f65fa7115d6cd (patch)
tree56a186664a8849e35d53f4377a2e53e70ad08509 /src/vehicle.cpp
parent2d489203c39f7d8129335aa6df76b6a85f74bdd3 (diff)
downloadopenttd-c50d94778438b74e7aa02712450f65fa7115d6cd.tar.xz
(svn r15318) -Fix [FS#2594](r10288): don't warn about non-primary engines getting old
Diffstat (limited to 'src/vehicle.cpp')
-rw-r--r--src/vehicle.cpp29
1 files changed, 15 insertions, 14 deletions
diff --git a/src/vehicle.cpp b/src/vehicle.cpp
index 0e77d83b1..2e5f87eea 100644
--- a/src/vehicle.cpp
+++ b/src/vehicle.cpp
@@ -926,17 +926,6 @@ void CheckVehicleBreakdown(Vehicle *v)
}
}
-static void ShowVehicleGettingOld(Vehicle *v, StringID msg)
-{
- if (v->owner != _local_company) return;
-
- /* Do not show getting-old message if autorenew is active (and it can replace the vehicle) */
- if (GetCompany(v->owner)->engine_renew && GetEngine(v->engine_type)->company_avail != 0) return;
-
- SetDParam(0, v->index);
- AddNewsItem(msg, NS_ADVICE, v->index, 0);
-}
-
void AgeVehicle(Vehicle *v)
{
if (v->age < 65535) v->age++;
@@ -949,13 +938,25 @@ void AgeVehicle(Vehicle *v)
InvalidateWindow(WC_VEHICLE_DETAILS, v->index);
+ /* Don't warn about non-primary or not ours vehicles */
+ if (v->Previous() != NULL || v->owner != _local_company) return;
+
+ /* Don't warn if a renew is active */
+ if (GetCompany(v->owner)->engine_renew && GetEngine(v->engine_type)->company_avail != 0) return;
+
+ StringID str;
if (age == -DAYS_IN_LEAP_YEAR) {
- ShowVehicleGettingOld(v, STR_01A0_IS_GETTING_OLD);
+ str = STR_01A0_IS_GETTING_OLD;
} else if (age == 0) {
- ShowVehicleGettingOld(v, STR_01A1_IS_GETTING_VERY_OLD);
+ str = STR_01A1_IS_GETTING_VERY_OLD;
} else if (age > 0 && (age % DAYS_IN_LEAP_YEAR) == 0) {
- ShowVehicleGettingOld(v, STR_01A2_IS_GETTING_VERY_OLD_AND);
+ str = STR_01A2_IS_GETTING_VERY_OLD_AND;
+ } else {
+ return;
}
+
+ SetDParam(0, v->index);
+ AddNewsItem(str, NS_ADVICE, v->index, 0);
}
/** Start/Stop a vehicle