1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
#ifndef OPENMW_COMPONENTS_SCENEUTIL_LIGHTCONTROLLER_H
#define OPENMW_COMPONENTS_SCENEUTIL_LIGHTCONTROLLER_H
#include <components/sceneutil/nodecallback.hpp>
#include <osg/Vec4f>
namespace SceneUtil
{
class LightSource;
/// @brief Controller class to handle a pulsing and/or flickering light
class LightController : public SceneUtil::NodeCallback<LightController, SceneUtil::LightSource*>
{
public:
enum LightType
{
LT_Normal,
LT_Flicker,
LT_FlickerSlow,
LT_Pulse,
LT_PulseSlow
};
LightController();
void setType(LightType type);
void setDiffuse(const osg::Vec4f& color);
void setSpecular(const osg::Vec4f& color);
void operator()(SceneUtil::LightSource* node, osg::NodeVisitor* nv);
private:
LightType mType;
osg::Vec4f mDiffuseColor;
osg::Vec4f mSpecularColor;
float mPhase;
float mBrightness;
double mStartTime;
double mLastTime;
float mTicksToAdvance;
};
}
#endif
|