openmw-tes3coop/components/resource/scenemanager.hpp

41 lines
852 B
C++
Raw Normal View History

2015-03-26 17:02:51 +00:00
#ifndef OPENMW_COMPONENTS_RESOURCE_SCENEMANAGER_H
#define OPENMW_COMPONENTS_RESOURCE_SCENEMANAGER_H
#include <string>
#include <map>
#include <osg/ref_ptr>
#include <osg/Node>
namespace VFS
{
class Manager;
}
namespace Resource
{
/// @brief Handles loading and caching of scenes, e.g. NIF files
class SceneManager
{
public:
SceneManager(const VFS::Manager* vfs);
/// Get a read-only copy of this scene "template"
osg::ref_ptr<const osg::Node> getTemplate(const std::string& name);
/// Create an instance of the given scene template
osg::ref_ptr<osg::Node> getInstance(const std::string& name);
private:
const VFS::Manager* mVFS;
// observer_ptr?
typedef std::map<std::string, osg::ref_ptr<const osg::Node> > Index;
Index mIndex;
};
}
#endif