Files
OpenSceneGraph/src/osg/LightSource.cpp
2002-07-21 01:29:11 +00:00

65 lines
1.4 KiB
C++

#include <osg/LightSource>
using namespace osg;
LightSource::LightSource():
_value(StateAttribute::ON)
{
// switch off culling of light source nodes by default.
setCullingActive(false);
_dstate = osgNew StateSet;
_light = osgNew Light;
}
LightSource::~LightSource()
{
// ref_ptr<> automactially decrements the reference count of attached lights.
}
void LightSource::setLight(StateAttribute* light)
{
_light = light;
setLocalStateSetModes(_value);
}
// Set the GLModes on StateSet associated with the ClipPlanes.
void LightSource::setStateSetModes(StateSet& stateset,const StateAttribute::GLModeValue value) const
{
if (_light.valid())
{
stateset.setAssociatedModes(_light.get(),value);
}
}
void LightSource::setLocalStateSetModes(const StateAttribute::GLModeValue value)
{
if (!_dstate) _dstate = osgNew StateSet;
_dstate->setAllToInherit();
setStateSetModes(*_dstate,value);
}
const bool LightSource::computeBound() const
{
Group::computeBound();
if (_light.valid())
{
const Light* light = dynamic_cast<const Light*>(_light.get());
if (light)
{
const Vec4& pos = light->getPosition();
if (pos[3]!=0.0f)
{
float div = 1.0f/pos[3];
_bsphere.expandBy(Vec3(pos[0]*div,pos[1]*div,pos[2]*div));
}
}
}
_bsphere_computed = true;
return true;
}