|
|
|
@ -7,6 +7,7 @@
|
|
|
|
|
#include <components/esm/defs.hpp>
|
|
|
|
|
#include <components/esm/cellstate.hpp>
|
|
|
|
|
#include <components/loadinglistener/loadinglistener.hpp>
|
|
|
|
|
#include <components/settings/settings.hpp>
|
|
|
|
|
|
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
|
|
|
#include "../mwbase/world.hpp"
|
|
|
|
@ -88,7 +89,7 @@ void MWWorld::Cells::writeCell (ESM::ESMWriter& writer, CellStore& cell) const
|
|
|
|
|
|
|
|
|
|
MWWorld::Cells::Cells (const MWWorld::ESMStore& store, std::vector<ESM::ESMReader>& reader)
|
|
|
|
|
: mStore (store), mReader (reader),
|
|
|
|
|
mIdCache (40, std::pair<std::string, CellStore *> ("", (CellStore*)0)), /// \todo make cache size configurable
|
|
|
|
|
mIdCache (Settings::Manager::getInt("pointers cache size", "Cells"), std::pair<std::string, CellStore *> ("", (CellStore*)0)),
|
|
|
|
|
mIdCacheIndex (0)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|