2017-03-06 19:04:17 +01:00
|
|
|
#include "landmanager.hpp"
|
|
|
|
|
|
|
|
#include <osg/Stats>
|
|
|
|
|
|
|
|
#include <components/resource/objectcache.hpp>
|
|
|
|
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
|
|
#include "../mwbase/world.hpp"
|
|
|
|
#include "../mwworld/esmstore.hpp"
|
|
|
|
|
|
|
|
namespace MWRender
|
|
|
|
{
|
|
|
|
|
|
|
|
LandManager::LandManager(int loadFlags)
|
2023-05-15 00:34:17 +02:00
|
|
|
: GenericResourceManager<ESM::ExteriorCellLocation>(nullptr)
|
2017-03-06 19:04:17 +01:00
|
|
|
, mLoadFlags(loadFlags)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-05-12 13:24:59 +02:00
|
|
|
osg::ref_ptr<ESMTerrain::LandObject> LandManager::getLand(ESM::ExteriorCellLocation cellIndex)
|
2022-09-22 21:26:05 +03:00
|
|
|
{
|
2023-08-19 01:27:08 +02:00
|
|
|
if (const std::optional<osg::ref_ptr<osg::Object>> obj = mCache->getRefFromObjectCacheOrNone(cellIndex))
|
|
|
|
return static_cast<ESMTerrain::LandObject*>(obj->get());
|
2023-08-18 19:06:08 +02:00
|
|
|
|
|
|
|
const MWBase::World& world = *MWBase::Environment::get().getWorld();
|
2023-08-19 01:29:08 +02:00
|
|
|
osg::ref_ptr<ESMTerrain::LandObject> landObj = nullptr;
|
2023-08-18 19:06:08 +02:00
|
|
|
|
|
|
|
if (ESM::isEsm4Ext(cellIndex.mWorldspace))
|
|
|
|
{
|
|
|
|
const ESM4::Land* land = world.getStore().get<ESM4::Land>().search(cellIndex);
|
2023-08-19 01:27:08 +02:00
|
|
|
if (land != nullptr)
|
|
|
|
landObj = new ESMTerrain::LandObject(*land, mLoadFlags);
|
2023-08-18 19:06:08 +02:00
|
|
|
}
|
2022-09-22 21:26:05 +03:00
|
|
|
else
|
|
|
|
{
|
2023-08-18 19:06:08 +02:00
|
|
|
const ESM::Land* land = world.getStore().get<ESM::Land>().search(cellIndex.mX, cellIndex.mY);
|
2023-08-19 01:27:08 +02:00
|
|
|
if (land != nullptr)
|
|
|
|
landObj = new ESMTerrain::LandObject(*land, mLoadFlags);
|
2017-03-06 19:04:17 +01:00
|
|
|
}
|
2023-08-19 01:29:08 +02:00
|
|
|
|
|
|
|
mCache->addEntryToObjectCache(cellIndex, landObj.get());
|
|
|
|
return landObj;
|
2022-09-22 21:26:05 +03:00
|
|
|
}
|
2017-03-06 19:04:17 +01:00
|
|
|
|
2017-03-07 04:02:06 +01:00
|
|
|
void LandManager::reportStats(unsigned int frameNumber, osg::Stats* stats) const
|
2022-09-22 21:26:05 +03:00
|
|
|
{
|
2017-03-06 19:04:17 +01:00
|
|
|
stats->setAttribute(frameNumber, "Land", mCache->getCacheSize());
|
2022-09-22 21:26:05 +03:00
|
|
|
}
|
2017-03-06 19:04:17 +01:00
|
|
|
|
|
|
|
}
|