1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-10 15:39:02 +00:00
OpenMW/components/resource/resourcemanager.cpp

35 lines
890 B
C++
Raw Normal View History

#include "resourcemanager.hpp"
#include "objectcache.hpp"
namespace Resource
{
ResourceManager::ResourceManager(const VFS::Manager *vfs, const double expiryDelay)
: mVFS(vfs)
, mCache(new osgDB::ObjectCache)
, mExpiryDelay(expiryDelay)
{
}
void ResourceManager::updateCache(double referenceTime)
{
// NOTE: we could clear the cache from the background thread if the deletion proves too much of an overhead
// idea: customize objectCache to not hold a lock while doing the actual deletion
mCache->updateTimeStampOfObjectsInCacheWithExternalReferences(referenceTime);
mCache->removeExpiredObjectsInCache(referenceTime - mExpiryDelay);
}
void ResourceManager::clearCache()
{
mCache->clear();
}
const VFS::Manager* ResourceManager::getVFS() const
{
return mVFS;
}
}