139 lines
4.5 KiB
Plaintext
139 lines
4.5 KiB
Plaintext
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2003 Robert Osfield
|
||
|
*
|
||
|
* 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
|
||
|
* (at your option) any later version. The full license is in LICENSE file
|
||
|
* included with this distribution, and on the openscenegraph.org website.
|
||
|
*
|
||
|
* 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
|
||
|
* OpenSceneGraph Public License for more details.
|
||
|
*/
|
||
|
//osgFX - Copyright (C) 2003 Marco Jez
|
||
|
|
||
|
#ifndef OSGFX_SPECULARHIGHLIGHTS_
|
||
|
#define OSGFX_SPECULARHIGHLIGHTS_
|
||
|
|
||
|
#include <osgFX/Export>
|
||
|
#include <osgFX/Effect>
|
||
|
|
||
|
namespace osgFX
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
This effect applies additive specular highlights at fragment level (instead
|
||
|
of OpenGL's vertex-level lighting) by using a cube map and reflective texgen.
|
||
|
A texture matrix is computed to rotate the cube map automatically; this makes
|
||
|
the specular effect consistent with respect to view direction and light position.
|
||
|
The user can choose which light should be used to compute the texture matrix.
|
||
|
This effect requires the GL_ARB_texture_env_add extension and one of the cube map
|
||
|
extensions (GL_EXT_texture_cube_map, GL_ARB_texture_cube_map or OpenGL v1.3).
|
||
|
*/
|
||
|
class OSGFX_EXPORT SpecularHighlights: public Effect {
|
||
|
public:
|
||
|
SpecularHighlights();
|
||
|
SpecularHighlights(const SpecularHighlights ©, const osg::CopyOp ©op = osg::CopyOp::SHALLOW_COPY);
|
||
|
|
||
|
META_Effect(osgFX, SpecularHighlights,
|
||
|
|
||
|
"Specular Highlights",
|
||
|
|
||
|
"This effect applies additive specular highlights at fragment level (instead "
|
||
|
"of OpenGL's vertex-level lighting) by using a cube map and reflective texgen. "
|
||
|
"A texture matrix is computed to rotate the cube map automatically; this makes "
|
||
|
"the specular effect consistent with respect to view direction and light position. "
|
||
|
"The user can choose which light should be used to compute the texture matrix.\n"
|
||
|
"This effect requires the GL_ARB_texture_env_add extension and one of the cube map "
|
||
|
"extensions (GL_EXT_texture_cube_map, GL_ARB_texture_cube_map or OpenGL v1.3).",
|
||
|
|
||
|
"Marco Jez");
|
||
|
|
||
|
|
||
|
/** get the OpenGL light number */
|
||
|
inline int getLightNumber() const;
|
||
|
|
||
|
/** set the OpenGL light number that will be used in lighting computations */
|
||
|
inline void setLightNumber(int n);
|
||
|
|
||
|
/** get the texture unit number */
|
||
|
inline int getTextureUnit() const;
|
||
|
|
||
|
/** set the texture unit that will be used to apply the cube map */
|
||
|
inline void setTextureUnit(int n);
|
||
|
|
||
|
/** get the specular color */
|
||
|
inline const osg::Vec4 &getSpecularColor() const;
|
||
|
|
||
|
/** set the specular color */
|
||
|
inline void setSpecularColor(const osg::Vec4 &color);
|
||
|
|
||
|
/** get the specular exponent */
|
||
|
inline float getSpecularExponent() const;
|
||
|
|
||
|
/** set the specular exponent */
|
||
|
inline void setSpecularExponent(float e);
|
||
|
|
||
|
protected:
|
||
|
virtual ~SpecularHighlights() {}
|
||
|
SpecularHighlights &operator=(const SpecularHighlights &) { return *this; }
|
||
|
|
||
|
bool define_techniques();
|
||
|
|
||
|
private:
|
||
|
int lightnum_;
|
||
|
int unit_;
|
||
|
osg::Vec4 color_;
|
||
|
float sexp_;
|
||
|
};
|
||
|
|
||
|
// INLINE METHODS
|
||
|
|
||
|
inline int SpecularHighlights::getLightNumber() const
|
||
|
{
|
||
|
return lightnum_;
|
||
|
}
|
||
|
|
||
|
inline void SpecularHighlights::setLightNumber(int n)
|
||
|
{
|
||
|
lightnum_ = n;
|
||
|
dirtyTechniques();
|
||
|
}
|
||
|
|
||
|
inline int SpecularHighlights::getTextureUnit() const
|
||
|
{
|
||
|
return unit_;
|
||
|
}
|
||
|
|
||
|
inline void SpecularHighlights::setTextureUnit(int n)
|
||
|
{
|
||
|
unit_ = n;
|
||
|
dirtyTechniques();
|
||
|
}
|
||
|
|
||
|
inline const osg::Vec4 &SpecularHighlights::getSpecularColor() const
|
||
|
{
|
||
|
return color_;
|
||
|
}
|
||
|
|
||
|
inline void SpecularHighlights::setSpecularColor(const osg::Vec4 &color)
|
||
|
{
|
||
|
color_ = color;
|
||
|
dirtyTechniques();
|
||
|
}
|
||
|
|
||
|
inline float SpecularHighlights::getSpecularExponent() const
|
||
|
{
|
||
|
return sexp_;
|
||
|
}
|
||
|
|
||
|
inline void SpecularHighlights::setSpecularExponent(float e)
|
||
|
{
|
||
|
sexp_ = e;
|
||
|
dirtyTechniques();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|