Mercurial > hg > openttd
diff src/engine.cpp @ 9211:30076ddd1741 draft
(svn r13077) -Codechange: move function that updates cached num_engines to engine.cpp, make it run only 1 loop
author | smatz <smatz@openttd.org> |
---|---|
date | Tue, 13 May 2008 21:36:09 +0000 (2008-05-13) |
parents | b04689148abf |
children | baa148485404 |
line wrap: on
line diff
--- a/src/engine.cpp +++ b/src/engine.cpp @@ -27,6 +27,7 @@ #include "settings_type.h" #include "oldpool_func.h" #include "core/alloc_func.hpp" +#include "vehicle_func.h" #include "map" #include "table/strings.h" @@ -140,6 +141,42 @@ qsort(&((*el)[begin]), num_items, sizeof(EngineID), compare); } +void SetCachedEngineCounts() +{ + uint engines = GetEnginePoolSize(); + + /* Set up the engine count for all players */ + Player *p; + FOR_ALL_PLAYERS(p) { + free(p->num_engines); + p->num_engines = CallocT<EngineID>(engines); + } + + /* Recalculate */ + Group *g; + FOR_ALL_GROUPS(g) { + free(g->num_engines); + g->num_engines = CallocT<EngineID>(engines); + } + + const Vehicle *v; + FOR_ALL_VEHICLES(v) { + if (!IsEngineCountable(v)) continue; + + assert(v->engine_type < engines); + + GetPlayer(v->owner)->num_engines[v->engine_type]++; + + if (v->group_id == DEFAULT_GROUP) continue; + + g = GetGroup(v->group_id); + assert(v->type == g->vehicle_type); + assert(v->owner == g->owner); + + g->num_engines[v->engine_type]++; + } +} + void SetupEngines() { _Engine_pool.CleanPool();