1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
|
/**************************************************************************\
*
* This file is part of the Coin 3D visualization library.
* Copyright (C) by Kongsberg Oil & Gas Technologies.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* ("GPL") version 2 as published by the Free Software Foundation.
* See the file LICENSE.GPL at the root directory of this source
* distribution for additional information about the GNU GPL.
*
* For using Coin with software that can not be combined with the GNU
* GPL, and for taking advantage of the additional benefits of our
* support services, please contact Kongsberg Oil & Gas Technologies
* about acquiring a Coin Professional Edition License.
*
* See http://www.coin3d.org/ for more information.
*
* Kongsberg Oil & Gas Technologies, Bygdoy Alle 5, 0257 Oslo, NORWAY.
* http://www.sim.no/ sales@sim.no coin-support@coin3d.org
*
\**************************************************************************/
/*!
\class SoDrawStyle SoDrawStyle.h Inventor/nodes/SoDrawStyle.h
\brief The SoDrawStyle class specificies common rendering properties for shapes.
\ingroup nodes
Use SoDrawStyle nodes to influence how shape nodes following them in
the scenegraph will be rendered. This node type have fields to help
decide how certain aspects of point-based shapes, line-based shapes
and filled shape primitives are rendered.
Simple scenegraph structure usage example:
\code
#Inventor V2.1 ascii
Separator {
Sphere { }
Translation { translation 4 0 0 }
DrawStyle { style LINES lineWidth 2 }
Sphere { }
Translation { translation 4 0 0 }
DrawStyle { style POINTS pointSize 2 }
Sphere { }
}
\endcode
<center>
<img src="http://doc.coin3d.org/images/Coin/nodes/drawstyle.png">
</center>
<b>FILE FORMAT/DEFAULTS:</b>
\code
DrawStyle {
style FILLED
pointSize 0
lineWidth 0
linePattern 0xffff
}
\endcode
*/
// *************************************************************************
#include <Inventor/actions/SoCallbackAction.h>
#include <Inventor/actions/SoGLRenderAction.h>
#include <Inventor/elements/SoGLDrawStyleElement.h>
#include <Inventor/elements/SoGLLinePatternElement.h>
#include <Inventor/elements/SoGLLineWidthElement.h>
#include <Inventor/elements/SoGLPointSizeElement.h>
#include <Inventor/elements/SoOverrideElement.h>
#include <Inventor/elements/SoShapeStyleElement.h>
#include "nodes/SoSubNodeP.h"
// *************************************************************************
/*!
\enum SoDrawStyle::Style
Enumeration for the various ways to render geometry.
*/
/*!
\var SoDrawStyle::Style SoDrawStyle::FILLED
Render all geometry as-is.
*/
/*!
\var SoDrawStyle::Style SoDrawStyle::LINES
Render all geometry as border lines.
*/
/*!
\var SoDrawStyle::Style SoDrawStyle::POINTS
Render all geometry as vertex points.
*/
/*!
\var SoDrawStyle::Style SoDrawStyle::INVISIBLE
Don't render geometry.
*/
/*!
\var SoSFEnum SoDrawStyle::style
How to render the geometry following a drawstyle node in the scene
graph. Default SoDrawStyle::FILLED.
*/
/*!
\var SoSFFloat SoDrawStyle::pointSize
Size in screen pixels of SoPointSet points, and also of geometry
vertex points if setting the SoDrawStyle::style to
SoDrawStyle::POINTS.
The valid range of pointsize settings varies according to which
OpenGL implementation is used. For the purpose of not trying to set
illegal values, the application programmer should at run-time check
the valid range. How this can be accomplished is described in the
class documentation of SoGLPointSizeElement.
Default value is 0.0f, which is a "tag" value which tells the
rendering library to use the default setting.
*/
// FIXME: default value 0? Weird -- shouldn't that mean that no points
// were drawn? Test what SGI Inventor does in that case. 20010823 mortene.
/*!
\var SoSFFloat SoDrawStyle::lineWidth
Width in screen pixels of SoLineSet and SoIndexedLineSet lines, and
also of geometry border lines if setting the SoDrawStyle::style to
SoDrawStyle::LINES.
The valid range of linewidth settings varies according to which
OpenGL implementation is used. For the purpose of not trying to set
illegal values, the application programmer should at run-time check
the valid range. How this can be accomplished is described in the
class documentation of SoGLLineWidthElement.
Default value is 0.0f, which is a "tag" value which tells the
rendering library to use the default setting.
*/
/*!
\var SoSFUShort SoDrawStyle::linePattern
Pattern as a bitmask used when drawing lines. Default is 0xffff (no
"holes").
*/
// *************************************************************************
SO_NODE_SOURCE(SoDrawStyle);
/*!
Constructor.
*/
SoDrawStyle::SoDrawStyle(void)
{
SO_NODE_INTERNAL_CONSTRUCTOR(SoDrawStyle);
SO_NODE_ADD_FIELD(style, (SoDrawStyle::FILLED));
SO_NODE_ADD_FIELD(pointSize, (0));
SO_NODE_ADD_FIELD(lineWidth, (0));
SO_NODE_ADD_FIELD(linePattern, (0xffff));
SO_NODE_DEFINE_ENUM_VALUE(Style, FILLED);
SO_NODE_DEFINE_ENUM_VALUE(Style, LINES);
SO_NODE_DEFINE_ENUM_VALUE(Style, POINTS);
SO_NODE_DEFINE_ENUM_VALUE(Style, INVISIBLE);
SO_NODE_SET_SF_ENUM_TYPE(style, Style);
}
/*!
Destructor.
*/
SoDrawStyle::~SoDrawStyle()
{
}
// Doc from superclass.
void
SoDrawStyle::initClass(void)
{
SO_NODE_INTERNAL_INIT_CLASS(SoDrawStyle, SO_FROM_INVENTOR_1);
SO_ENABLE(SoGLRenderAction, SoGLDrawStyleElement);
SO_ENABLE(SoGLRenderAction, SoShapeStyleElement);
SO_ENABLE(SoGLRenderAction, SoGLLinePatternElement);
SO_ENABLE(SoGLRenderAction, SoGLLineWidthElement);
SO_ENABLE(SoGLRenderAction, SoGLPointSizeElement);
SO_ENABLE(SoCallbackAction, SoDrawStyleElement);
SO_ENABLE(SoCallbackAction, SoShapeStyleElement);
SO_ENABLE(SoCallbackAction, SoLinePatternElement);
SO_ENABLE(SoCallbackAction, SoLineWidthElement);
SO_ENABLE(SoCallbackAction, SoPointSizeElement);
}
// Doc from superclass.
void
SoDrawStyle::doAction(SoAction * action)
{
SoState * state = action->getState();
uint32_t flags = SoOverrideElement::getFlags(state);
#define TEST_OVERRIDE(bit) ((SoOverrideElement::bit & flags) != 0)
if (!this->style.isIgnored() && !TEST_OVERRIDE(DRAW_STYLE)) {
SoDrawStyleElement::set(state, this,
(SoDrawStyleElement::Style)this->style.getValue());
if (this->isOverride()) {
SoOverrideElement::setDrawStyleOverride(state, this, TRUE);
}
}
if (!this->linePattern.isIgnored() && !TEST_OVERRIDE(LINE_PATTERN)) {
SoLinePatternElement::set(state, this, this->linePattern.getValue());
if (this->isOverride()) {
SoOverrideElement::setLinePatternOverride(state, this, TRUE);
}
}
if (!this->lineWidth.isIgnored() && !TEST_OVERRIDE(LINE_WIDTH)) {
SoLineWidthElement::set(state, this, this->lineWidth.getValue());
if (this->isOverride()) {
SoOverrideElement::setLineWidthOverride(state, this, TRUE);
}
}
if (!this->pointSize.isIgnored() && !TEST_OVERRIDE(POINT_SIZE)) {
SoPointSizeElement::set(state, this, this->pointSize.getValue());
if (this->isOverride()) {
SoOverrideElement::setPointSizeOverride(state, this, TRUE);
}
}
#undef TEST_OVERRIDE
}
// Doc from superclass.
void
SoDrawStyle::GLRender(SoGLRenderAction * action)
{
SoDrawStyle::doAction(action);
}
// Doc from superclass.
void
SoDrawStyle::callback(SoCallbackAction * action)
{
SoDrawStyle::doAction(action);
}
|