OpenSceneGraph/include/osg/Light

155 lines
6.0 KiB
Plaintext
Raw Normal View History

//C++ header - Open Scene Graph - Copyright (C) 1998-2001 Robert Osfield
//Distributed under the terms of the GNU Library General Public License (LGPL)
//as published by the Free Software Foundation.
2001-01-11 00:32:10 +08:00
#ifndef OSG_LIGHT
#define OSG_LIGHT 1
#include <osg/Vec3>
2001-01-11 00:32:10 +08:00
#include <osg/Vec4>
#include <osg/StateAttribute>
#include <osg/StateSet>
2001-01-11 00:32:10 +08:00
namespace osg {
/** Light state class which encapsulates OpenGL glLight() functionality.*/
class SG_EXPORT Light : public StateAttribute
2001-01-11 00:32:10 +08:00
{
public :
Light();
2001-09-22 10:42:08 +08:00
META_StateAttribute(Light, (Type)(LIGHT_0+_lightnum));
2001-01-11 00:32:10 +08:00
2001-09-22 10:42:08 +08:00
/** return -1 if *this < *rhs, 0 if *this==*rhs, 1 if *this>*rhs.*/
virtual int compare(const StateAttribute& sa) const
{
2001-09-22 10:42:08 +08:00
// check the types are equal and then create the rhs variable
// used by the COMPARE_StateAttribute_Paramter macro's below.
COMPARE_StateAttribute_Types(Light,sa)
// compare each paramter in turn against the rhs.
COMPARE_StateAttribute_Parameter(_lightnum)
COMPARE_StateAttribute_Parameter(_on)
COMPARE_StateAttribute_Parameter(_ambient)
COMPARE_StateAttribute_Parameter(_diffuse)
COMPARE_StateAttribute_Parameter(_specular)
COMPARE_StateAttribute_Parameter(_position)
COMPARE_StateAttribute_Parameter(_direction)
COMPARE_StateAttribute_Parameter(_constant_attenuation)
COMPARE_StateAttribute_Parameter(_linear_attenuation)
COMPARE_StateAttribute_Parameter(_quadratic_attenuation)
COMPARE_StateAttribute_Parameter(_spot_exponent)
COMPARE_StateAttribute_Parameter(_spot_cutoff)
return 0; // passed all the above comparison macro's, must be equal.
}
2001-01-11 00:32:10 +08:00
/**
* Turn the light on.
* Calling this method doesn't directly affect OpenGL's lighting mode.
*/
inline void on() { _on = true; }
2001-01-11 00:32:10 +08:00
/**
* Turn the light off.
* Calling this method doesn't directly affect OpenGL's lighting mode.
*/
inline void off() { _on = false; }
2001-01-11 00:32:10 +08:00
/** Apply the light's state to the OpenGL state machine. */
virtual void apply(State& state) const;
2001-01-11 00:32:10 +08:00
/** Set the ambient component of the light. */
inline void setAmbient( const Vec4& ambient ) { _ambient = ambient; }
2001-01-11 00:32:10 +08:00
/** Get the ambient component of the light. */
inline const Vec4& getAmbient() const { return _ambient; }
2001-01-11 00:32:10 +08:00
/** Set the diffuse component of the light. */
inline void setDiffuse( const Vec4& diffuse ) { _diffuse = diffuse; }
2001-01-11 00:32:10 +08:00
/** Get the diffuse component of the light. */
inline const Vec4& getDiffuse() const { return _diffuse; }
2001-01-11 00:32:10 +08:00
/** Set the specular component of the light. */
inline void setSpecular( const Vec4& specular ) { _specular = specular; }
2001-01-11 00:32:10 +08:00
/** Get the specular component of the light. */
inline const Vec4& getSpecular() const { return _specular; }
2001-01-11 00:32:10 +08:00
/** Set the position of the light. */
inline void setPosition( const Vec4& position ) { _position = position; }
2001-01-11 00:32:10 +08:00
/** Get the position of the light. */
inline const Vec4& getPosition() const { return _position; }
2001-01-11 00:32:10 +08:00
/** Set the direction of the light. */
inline void setDirection( const Vec3& direction ) { _direction = direction; }
2001-01-11 00:32:10 +08:00
/** Get the direction of the light. */
inline const Vec3& getDirection() const { return _direction; }
2001-01-11 00:32:10 +08:00
/** Set the constant attenuation of the light. */
inline void setConstantAttenuation( const float constant_attenuation ) { _constant_attenuation = constant_attenuation; }
2001-01-11 00:32:10 +08:00
/** Get the constant attenuation of the light. */
inline const float getConstantAttenuation() const { return _constant_attenuation; }
2001-01-11 00:32:10 +08:00
/** Set the linear attenuation of the light. */
inline void setLinearAttenuation ( const float linear_attenuation ) { _linear_attenuation = linear_attenuation; }
2001-01-11 00:32:10 +08:00
/** Get the linear attenuation of the light. */
inline const float getLinearAttenuation () const { return _linear_attenuation; }
2001-01-11 00:32:10 +08:00
/** Set the quadratic attenuation of the light. */
inline void setQuadraticAttenuation ( const float quadratic_attenuation ) { _quadratic_attenuation = quadratic_attenuation; }
2001-01-11 00:32:10 +08:00
/** Get the quadratic attenuation of the light. */
inline const float getQuadraticAttenuation() const { return _quadratic_attenuation; }
2001-01-11 00:32:10 +08:00
/** Set the spot exponent of the light. */
inline void setSpotExponent( const float spot_exponent ) { _spot_exponent = spot_exponent; }
2001-01-11 00:32:10 +08:00
/** Get the spot exponent of the light. */
inline const float getSpotExponent() const { return _spot_exponent; }
2001-01-11 00:32:10 +08:00
/** Set the spot cutoff of the light. */
inline void setSpotCutoff( const float spot_cutoff ) { _spot_cutoff = spot_cutoff; }
2001-01-11 00:32:10 +08:00
/** Get the spot cutoff of the light. */
inline const float getSpotCutoff() const { return _spot_cutoff; }
2001-01-11 00:32:10 +08:00
/**
* Capture the lighting settings of the current OpenGL state
* and store them in this object.
*/
void captureLightState();
protected :
virtual ~Light();
2001-01-11 00:32:10 +08:00
/** Initialize the light's settings with some decent defaults. */
void init();
2001-01-11 00:32:10 +08:00
int _lightnum; // OpenGL light number
bool _on; // on/off state
Vec4 _ambient; // r, g, b, w
Vec4 _diffuse; // r, g, b, w
Vec4 _specular; // r, g, b, w
Vec4 _position; // x, y, z, w
Vec3 _direction; // x, y, z
float _constant_attenuation; // constant
float _linear_attenuation; // linear
float _quadratic_attenuation; // quadratic
float _spot_exponent; // exponent
float _spot_cutoff; // spread
static int _currentLightNum; // current max. OpenGL light number
};
};
#endif