/**************************************************************************\ * * This file is part of the Coin 3D visualization library. * Copyright (C) 1998-2007 by Systems in Motion. All rights reserved. * * 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 Systems in Motion about acquiring * a Coin Professional Edition License. * * See http://www.coin3d.org/ for more information. * * Systems in Motion, Postboks 1283, Pirsenteret, 7462 Trondheim, 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
FILE FORMAT/DEFAULTS: \code DrawStyle { style FILLED pointSize 0 lineWidth 0 linePattern 0xffff } \endcode */ // ************************************************************************* #include #include #include #include #include #include #include #include #include // ************************************************************************* /*! \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); }