2012-03-22 01:36:20 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2007-06-04 18:47:15 +08:00
|
|
|
*
|
2012-03-22 01:36:20 +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
|
2007-06-04 18:47: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.
|
2012-03-22 01:36:20 +08:00
|
|
|
*
|
2007-06-04 18:47: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
|
2012-03-22 01:36:20 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2007-06-04 18:47:15 +08:00
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OSG_HINT
|
|
|
|
#define OSG_HINT 1
|
|
|
|
|
|
|
|
#include <osg/StateAttribute>
|
|
|
|
|
|
|
|
namespace osg
|
|
|
|
{
|
|
|
|
|
|
|
|
class OSG_EXPORT Hint : public StateAttribute
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
Hint():
|
|
|
|
_target(GL_NONE),
|
2007-12-08 21:29:31 +08:00
|
|
|
_mode(GL_DONT_CARE) {}
|
2007-06-04 18:47:15 +08:00
|
|
|
|
|
|
|
Hint(GLenum target, GLenum mode):
|
|
|
|
_target(target),
|
|
|
|
_mode(mode) {}
|
|
|
|
|
|
|
|
/** Copy constructor using CopyOp to manage deep vs shallow copy.*/
|
|
|
|
Hint(const Hint& hint,const CopyOp& copyop=CopyOp::SHALLOW_COPY):
|
|
|
|
StateAttribute(hint,copyop),
|
|
|
|
_target(hint._target),
|
|
|
|
_mode(hint._mode) {}
|
|
|
|
|
2007-12-08 21:29:31 +08:00
|
|
|
virtual osg::Object* cloneType() const { return new Hint( _target, GL_DONT_CARE ); }
|
|
|
|
virtual osg::Object* clone(const osg::CopyOp& copyop) const { return new Hint(*this,copyop); }
|
|
|
|
virtual bool isSameKindAs(const osg::Object* obj) const { return dynamic_cast<const Hint *>(obj)!=NULL; }
|
|
|
|
virtual const char* libraryName() const { return "osg"; }
|
2008-05-12 18:16:40 +08:00
|
|
|
virtual const char* className() const { return "Hint"; }
|
2007-12-08 21:29:31 +08:00
|
|
|
virtual Type getType() const { return HINT; }
|
2007-06-04 18:47:15 +08:00
|
|
|
|
|
|
|
virtual int compare(const StateAttribute& sa) const
|
|
|
|
{
|
2007-12-08 21:29:31 +08:00
|
|
|
// check the types are equal and then create the rhs variable
|
2010-10-01 00:57:02 +08:00
|
|
|
// used by the COMPARE_StateAttribute_Parameter macros below.
|
2007-12-08 21:29:31 +08:00
|
|
|
COMPARE_StateAttribute_Types(Hint,sa)
|
2007-06-04 18:47:15 +08:00
|
|
|
|
2007-12-11 01:30:18 +08:00
|
|
|
// compare each parameter in turn against the rhs.
|
2007-06-04 18:47:15 +08:00
|
|
|
COMPARE_StateAttribute_Parameter(_target)
|
|
|
|
COMPARE_StateAttribute_Parameter(_mode)
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2007-06-04 18:47:15 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Return the member identifier within the attribute's class type. Used for light number/clip plane number etc.*/
|
|
|
|
virtual unsigned int getMember() const { return static_cast<unsigned int>(_target); }
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2007-12-09 22:54:02 +08:00
|
|
|
void setTarget(GLenum target);
|
2007-06-04 18:47:15 +08:00
|
|
|
inline GLenum getTarget() const { return _target; }
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2007-06-04 18:47:15 +08:00
|
|
|
inline void setMode(GLenum mode) { _mode = mode; }
|
|
|
|
inline GLenum getMode() const { return _mode; }
|
|
|
|
|
|
|
|
virtual void apply(State& state) const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2007-06-04 18:47:15 +08:00
|
|
|
GLenum _target;
|
|
|
|
GLenum _mode;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|