OpenSceneGraph/include/osgFX/Registry

93 lines
2.2 KiB
Plaintext
Raw Normal View History

/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
2003-08-27 06:09:15 +08:00
*
* This library is open source and may be redistributed and/or modified under
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
2003-08-27 06:09:15 +08:00
* (at your option) any later version. The full license is in LICENSE file
* included with this distribution, and on the openscenegraph.org website.
*
2003-08-27 06:09:15 +08:00
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2003-08-27 06:09:15 +08:00
* OpenSceneGraph Public License for more details.
*/
//osgFX - Copyright (C) 2003 Marco Jez
#ifndef OSGFX_REGISTRY_
#define OSGFX_REGISTRY_
#include <osgFX/Export>
#include <osgFX/Effect>
#include <osg/ref_ptr>
#include <map>
#include <string>
namespace osgFX
{
2005-04-29 14:32:13 +08:00
class OSGFX_EXPORT Registry : public osg::Referenced
{
2003-08-27 06:09:15 +08:00
public:
struct Proxy {
Proxy(const Effect* effect): _effect(effect)
2003-08-27 06:09:15 +08:00
{
Registry::instance()->registerEffect(effect);
}
~Proxy()
{
Registry::instance()->removeEffect(_effect.get());
}
private:
osg::ref_ptr<const Effect> _effect;
2003-08-27 06:09:15 +08:00
};
2005-04-29 14:32:13 +08:00
typedef std::map<std::string, osg::ref_ptr<const Effect> > EffectMap;
2003-08-27 06:09:15 +08:00
2005-04-29 14:32:13 +08:00
static Registry* instance();
2003-08-27 06:09:15 +08:00
2005-04-29 14:32:13 +08:00
inline void registerEffect(const Effect* effect);
2003-08-27 06:09:15 +08:00
inline void removeEffect(const Effect* effect);
2005-04-29 14:32:13 +08:00
inline const EffectMap& getEffectMap() const;
2003-08-27 06:09:15 +08:00
protected:
// Registry is a singleton; constructor and destructor must be protected
Registry();
~Registry() {}
private:
2005-04-29 14:32:13 +08:00
EffectMap _effects;
2003-08-27 06:09:15 +08:00
};
// INLINE METHODS
2003-08-27 06:09:15 +08:00
2005-04-29 14:32:13 +08:00
inline const Registry::EffectMap& Registry::getEffectMap() const
2003-08-27 06:09:15 +08:00
{
2005-04-29 14:32:13 +08:00
return _effects;
2003-08-27 06:09:15 +08:00
}
2005-04-29 14:32:13 +08:00
inline void Registry::registerEffect(const Effect* effect)
2003-08-27 06:09:15 +08:00
{
2005-04-29 14:32:13 +08:00
_effects[effect->effectName()] = effect;
2003-08-27 06:09:15 +08:00
}
inline void Registry::removeEffect(const Effect* effect)
{
EffectMap::iterator itr = _effects.find(effect->effectName());
if (itr != _effects.end())
{
_effects.erase(itr);
}
}
2003-08-27 06:09:15 +08:00
}
#endif