summaryrefslogtreecommitdiff
path: root/vehicle.c
diff options
context:
space:
mode:
authorbjarni <bjarni@openttd.org>2005-01-04 20:19:00 +0000
committerbjarni <bjarni@openttd.org>2005-01-04 20:19:00 +0000
commit5704882186da3ef6b0266aa8ef8eadff73357b09 (patch)
tree073a24ff0dc44ecce415b2cb9f4ea43e8029c30d /vehicle.c
parentf2b8e00eddc7e9e6302d50fd674b1c9a233834b8 (diff)
downloadopenttd-5704882186da3ef6b0266aa8ef8eadff73357b09.tar.xz
(svn r1378) Fix: train engines are now only replaced if the engine is really set to be replaced and they are replaced to the type that engine type is set to be replaced to (instead of whtat the first engine in the train is set to)
Diffstat (limited to 'vehicle.c')
-rw-r--r--vehicle.c17
1 files changed, 7 insertions, 10 deletions
diff --git a/vehicle.c b/vehicle.c
index 5fb97df38..1b79e0a8a 100644
--- a/vehicle.c
+++ b/vehicle.c
@@ -1604,23 +1604,20 @@ void MaybeReplaceVehicle(Vehicle *v)
This way the max is 6553 millions and it is more than the 32 bit that is stored in _patches
This is a nice way to send 32 bit and only use 16 bit
the last 8 bit is the engine. The 8 bits in front of the engine is free so it have room for 16 bit engine entries */
- new_engine_and_autoreplace_money = (((_patches.autorenew_money / 100000) & 0xFFFF) << 16)
- + _autoreplace_array[v->engine_type];
+ new_engine_and_autoreplace_money = ((_patches.autorenew_money / 100000) << 16) + _autoreplace_array[v->engine_type];
assert(v->type == _engines[ _autoreplace_array[v->engine_type] ].type);
if ( v->type != VEH_Train ) {
DoCommandP(v->tile, v->index, new_engine_and_autoreplace_money, NULL, CMD_REPLACE_VEHICLE | CMD_SHOW_NO_ERROR);
} else {
- // checks if the front engine is outdated
- if (v->engine_type != _autoreplace_array[v->engine_type] )
- DoCommandP(v->tile, v->index, new_engine_and_autoreplace_money, NULL, CMD_REPLACE_VEHICLE | CMD_SHOW_NO_ERROR);
- //we will check all the cars and engines if they should be replaced
- while (v->next != NULL){
- v = v->next;
- if (v->engine_type != _autoreplace_array[v->engine_type] || v->age - v->max_age < (_patches.autorenew_months * 30))
- DoCommandP(v->tile, v->index, new_engine_and_autoreplace_money , NULL, CMD_REPLACE_VEHICLE | CMD_SHOW_NO_ERROR);
+ // checks if any of the engines in the train are either old or listed for replacement
+ do {
+ if ( v->engine_type != _autoreplace_array[v->engine_type] || (v->age - v->max_age) > (_patches.autorenew_months * 30)) {
+ new_engine_and_autoreplace_money = (new_engine_and_autoreplace_money & 0xFFFF0000) + _autoreplace_array[v->engine_type]; // sets the new engine replacement type
+ DoCommandP(v->tile, v->index, new_engine_and_autoreplace_money, NULL, CMD_REPLACE_VEHICLE | CMD_SHOW_NO_ERROR);
}
+ } while ((v=v->next) != NULL);
}
_current_player = OWNER_NONE;
}