2003-01-22 00:45:36 +08:00
|
|
|
/* -*-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.
|
|
|
|
*/
|
2002-02-25 04:55:45 +08:00
|
|
|
|
|
|
|
#ifndef OSG_LINESTIPPLE
|
|
|
|
#define OSG_LINESTIPPLE 1
|
|
|
|
|
|
|
|
#include <osg/StateAttribute>
|
|
|
|
|
|
|
|
namespace osg {
|
|
|
|
|
|
|
|
class SG_EXPORT LineStipple : public StateAttribute
|
|
|
|
{
|
|
|
|
public :
|
|
|
|
|
|
|
|
LineStipple();
|
|
|
|
|
|
|
|
/** Copy constructor using CopyOp to manage deep vs shallow copy.*/
|
|
|
|
LineStipple(const LineStipple& lw,const CopyOp& copyop=CopyOp::SHALLOW_COPY):
|
|
|
|
StateAttribute(lw,copyop),
|
|
|
|
_factor(lw._factor),
|
|
|
|
_pattern(lw._pattern) {}
|
|
|
|
|
2002-06-06 21:25:36 +08:00
|
|
|
META_StateAttribute(osg, LineStipple, LINESTIPPLE);
|
2002-02-25 04:55:45 +08:00
|
|
|
|
|
|
|
/** return -1 if *this < *rhs, 0 if *this==*rhs, 1 if *this>*rhs.*/
|
|
|
|
virtual int compare(const StateAttribute& sa) const
|
|
|
|
{
|
|
|
|
// check the types are equal and then create the rhs variable
|
|
|
|
// used by the COMPARE_StateAttribute_Paramter macro's below.
|
|
|
|
COMPARE_StateAttribute_Types(LineStipple,sa)
|
|
|
|
|
|
|
|
// compare each paramter in turn against the rhs.
|
|
|
|
COMPARE_StateAttribute_Parameter(_factor)
|
|
|
|
COMPARE_StateAttribute_Parameter(_pattern)
|
|
|
|
|
|
|
|
return 0; // passed all the above comparison macro's, must be equal.
|
|
|
|
}
|
|
|
|
|
2002-07-09 17:35:42 +08:00
|
|
|
virtual void getAssociatedModes(std::vector<GLMode>& modes) const
|
2002-02-25 04:55:45 +08:00
|
|
|
{
|
2002-07-09 17:35:42 +08:00
|
|
|
modes.push_back(GL_LINE_STIPPLE);
|
2002-02-25 04:55:45 +08:00
|
|
|
}
|
|
|
|
|
2002-09-02 20:31:35 +08:00
|
|
|
void setFactor(GLint factor);
|
|
|
|
inline GLint getFactor() const { return _factor; }
|
2002-02-25 04:55:45 +08:00
|
|
|
|
2002-09-02 20:31:35 +08:00
|
|
|
void setPattern(GLushort pattern);
|
|
|
|
inline GLushort getPattern() const { return _pattern; }
|
2002-02-25 04:55:45 +08:00
|
|
|
|
|
|
|
virtual void apply(State& state) const;
|
|
|
|
|
|
|
|
|
|
|
|
protected :
|
|
|
|
|
|
|
|
virtual ~LineStipple();
|
|
|
|
|
2002-09-02 20:31:35 +08:00
|
|
|
GLint _factor;
|
|
|
|
GLushort _pattern;
|
2002-02-25 04:55:45 +08:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|