Mercurial > hg > openttd
diff src/openttd.cpp @ 6500:ad8ea1f30c99 draft
(svn r9683) -Fix [FS#423]: improved loading does not use a huge amount of processing power anymore when having a lot of trains.
author | rubidium <rubidium@openttd.org> |
---|---|
date | Fri, 20 Apr 2007 08:00:30 +0000 |
parents | 696f0e1b046e |
children | 838badc858d3 |
line wrap: on
line diff
--- a/src/openttd.cpp +++ b/src/openttd.cpp @@ -1926,6 +1926,18 @@ } } + if (CheckSavegameVersion(57)) { + Vehicle *v; + /* Added a FIFO queue of vehicles loading at stations */ + FOR_ALL_VEHICLES(v) { + if ((v->type != VEH_TRAIN || IsFrontEngine(v)) && // for all locs + !(v->vehstatus & (VS_STOPPED | VS_CRASHED)) && // not stopped or crashed + v->current_order.type == OT_LOADING) { // loading + GetStation(v->last_station_visited)->loading_vehicles.push_back(v); + } + } + } + return true; }