You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
852 B
C++
41 lines
852 B
C++
10 years ago
|
#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
|