1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-09 21:42:13 +00:00
OpenMW/components/terrain/chunkmanager.hpp

51 lines
1.1 KiB
C++
Raw Normal View History

#ifndef OPENMW_COMPONENTS_TERRAIN_CHUNKMANAGER_H
#define OPENMW_COMPONENTS_TERRAIN_CHUNKMANAGER_H
#include <components/resource/resourcemanager.hpp>
#include "buffercache.hpp"
namespace osg
{
class Geometry;
}
namespace SceneUtil
{
class PositionAttitudeTransform;
}
namespace Resource
{
class SceneManager;
}
namespace Terrain
{
class TextureManager;
class Storage;
/// @brief Handles loading and caching of terrain chunks
class ChunkManager : public Resource::ResourceManager
{
public:
ChunkManager(Storage* storage, Resource::SceneManager* sceneMgr, TextureManager* textureManager);
osg::ref_ptr<osg::Node> getChunk(float size, const osg::Vec2f& center);
2017-03-07 03:02:06 +00:00
virtual void reportStats(unsigned int frameNumber, osg::Stats* stats) const;
private:
osg::ref_ptr<osg::Node> createChunk(float size, const osg::Vec2f& center);
Terrain::Storage* mStorage;
Resource::SceneManager* mSceneManager;
TextureManager* mTextureManager;
BufferCache mBufferCache;
};
}
#endif