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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
|
/**************************************************************************\
*
* 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
*
\**************************************************************************/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif // HAVE_CONFIG_H
#ifdef HAVE_VRML97
/*!
\class SoVRMLShape SoVRMLShape.h Inventor/VRMLnodes/SoVRMLShape.h
\brief The SoVRMLShape class holds geometry and geometry appearance nodes.
\ingroup VRMLnodes
\WEB3DCOPYRIGHT
\verbatim
Shape {
exposedField SFNode appearance NULL
exposedField SFNode geometry NULL
}
\endverbatim
The Shape node has two fields, \e appearance and \e geometry, which
are used to create rendered objects in the world. The \e appearance
field contains an SoVRMLAppearance node that specifies the visual
attributes (e.g., material and texture) to be applied to the
geometry. The geometry field contains a geometry node. The specified
geometry node is rendered with the specified appearance nodes
applied. See 4.6.3, Shapes and geometry
(<http://www.web3d.org/x3d/specifications/vrml/ISO-IEC-14772-VRML97/part1/concepts.html#4.6.3>),
and SoVRMLAppearance, for more information.
4.14, Lighting model
(<http://www.web3d.org/x3d/specifications/vrml/ISO-IEC-14772-VRML97/part1/concepts.html#4.14>),
contains details of the VRML lighting model and the interaction
between Appearance nodes and geometry nodes. If the geometry field
is NULL, the object is not drawn.
*/
/*!
\enum SoVRMLShape::CacheEnabled
Used to enumerate cache strategies.
*/
/*!
\var SoVRMLShape::CacheEnabled SoVRMLShape::OFF
Never cache
*/
/*!
\var SoVRMLShape::CacheEnabled SoVRMLShape::ON
Always cache
*/
/*!
\var SoVRMLShape::CacheEnabled SoVRMLShape::AUTO
Use heuristics to try to figure out the optimal caching policy.
*/
/*!
\var SoSFNode SoVRMLShape::appearance
Can store an SoVRMLAppearance node, or NULL.
*/
/*!
\var SoSFNode SoVRMLShape::geometry
Can store any SoVRMLGeometry subclass, or NULL.
*/
/*!
\var SoSFEnum SoVRMLShape::renderCaching
Render caching strategy. Default value is AUTO.
*/
/*!
\var SoSFEnum SoVRMLShape::boundingBoxCaching
Bounding box caching strategy. Default value is AUTO.
*/
#include <Inventor/VRMLnodes/SoVRMLShape.h>
#include <stddef.h>
#include <Inventor/VRMLnodes/SoVRMLMacros.h>
#include <Inventor/VRMLnodes/SoVRMLAppearance.h>
#include <Inventor/VRMLnodes/SoVRMLMaterial.h>
#include <Inventor/VRMLnodes/SoVRMLParent.h>
#include <Inventor/nodes/SoShape.h>
#include <Inventor/misc/SoChildList.h>
#include <Inventor/misc/SoState.h>
#include <Inventor/actions/SoGLRenderAction.h>
#include <Inventor/actions/SoGetBoundingBoxAction.h>
#include <Inventor/actions/SoSearchAction.h>
#include <Inventor/actions/SoRayPickAction.h>
#include <Inventor/elements/SoCacheElement.h>
#include <Inventor/elements/SoLocalBBoxMatrixElement.h>
#include <Inventor/elements/SoCullElement.h>
#include <Inventor/elements/SoComplexityTypeElement.h>
#include <Inventor/caches/SoBoundingBoxCache.h>
#include <Inventor/caches/SoGLCacheList.h>
#include <Inventor/elements/SoGLLazyElement.h>
#include <Inventor/caches/SoGLCacheList.h>
#include <Inventor/elements/SoGLShapeHintsElement.h>
#include <Inventor/elements/SoGLTextureEnabledElement.h>
#include <Inventor/system/gl.h>
#ifdef HAVE_THREADS
#include <Inventor/threads/SbMutex.h>
#endif // HAVE_THREADS
#include "misc/SoGL.h"
#include "nodes/SoSubNodeP.h"
#include "tidbitsp.h"
#include "profiler/SoNodeProfiling.h"
// *************************************************************************
class SoVRMLShapeP {
public:
SoGLCacheList * cachelist;
SoChildList * childlist;
SbBool childlistvalid;
#ifdef COIN_THREADSAFE
SbMutex childlistmutex;
void lockChildList(void) { this->childlistmutex.lock(); }
void unlockChildList(void) { this->childlistmutex.unlock(); }
#else // !COIN_THREADSAFE
void lockChildList(void) { }
void unlockChildList(void) { }
#endif // !COIN_THREADSAFE
};
// *************************************************************************
SO_NODE_SOURCE(SoVRMLShape);
// *************************************************************************
static int sovrmlshape_numrendercaches = 0;
static void sovrmlshape_cleanup(void) {
sovrmlshape_numrendercaches = 0;
}
// *************************************************************************
void
SoVRMLShape::initClass(void) // static
{
SO_NODE_INTERNAL_INIT_CLASS(SoVRMLShape, SO_VRML97_NODE_TYPE);
coin_atexit((coin_atexit_f*)sovrmlshape_cleanup, CC_ATEXIT_NORMAL);
SoType type = SoVRMLShape::getClassTypeId();
SoRayPickAction::addMethod(type, SoNode::rayPickS);
}
#define PRIVATE(thisp) ((thisp)->pimpl)
SoVRMLShape::SoVRMLShape(void)
{
PRIVATE(this) = new SoVRMLShapeP;
SO_VRMLNODE_INTERNAL_CONSTRUCTOR(SoVRMLShape);
SO_VRMLNODE_ADD_EXPOSED_FIELD(appearance, (NULL));
SO_VRMLNODE_ADD_EXPOSED_FIELD(geometry, (NULL));
SO_NODE_ADD_FIELD(renderCaching, (AUTO));
SO_NODE_ADD_FIELD(boundingBoxCaching, (AUTO));
SO_NODE_DEFINE_ENUM_VALUE(CacheEnabled, ON);
SO_NODE_DEFINE_ENUM_VALUE(CacheEnabled, OFF);
SO_NODE_DEFINE_ENUM_VALUE(CacheEnabled, AUTO);
SO_NODE_SET_SF_ENUM_TYPE(renderCaching, CacheEnabled);
SO_NODE_SET_SF_ENUM_TYPE(boundingBoxCaching, CacheEnabled);
// supply a NULL-pointer as parent, since notifications will be
// handled by the fields that actually contain the node(s)
PRIVATE(this)->childlist = new SoChildList(NULL);
PRIVATE(this)->childlistvalid = FALSE;
PRIVATE(this)->cachelist = NULL;
}
SoVRMLShape::~SoVRMLShape()
{
delete PRIVATE(this)->childlist;
delete PRIVATE(this)->cachelist;
delete PRIVATE(this);
}
void
SoVRMLShape::setNumRenderCaches(int num)
{
sovrmlshape_numrendercaches = num;
}
int
SoVRMLShape::getNumRenderCaches(void)
{
return sovrmlshape_numrendercaches;
}
SbBool
SoVRMLShape::affectsState(void) const
{
return FALSE;
}
void
SoVRMLShape::doAction(SoAction * action)
{
SoState * state = action->getState();
if (state->isElementEnabled(SoLazyElement::getClassStackIndex())) {
if ((this->appearance.getValue() == NULL) ||
(((SoVRMLAppearance*)this->appearance.getValue())->material.getValue() == NULL)) {
SoLazyElement::setLightModel(state, SoLazyElement::BASE_COLOR);
}
}
state->push();
int numindices;
const int * indices;
if (action->getPathCode(numindices, indices) == SoAction::IN_PATH) {
this->getChildren()->traverseInPath(action, numindices, indices);
}
else {
this->getChildren()->traverse(action); // traverse all children
}
state->pop();
}
void
SoVRMLShape::callback(SoCallbackAction * action)
{
SoVRMLShape::doAction((SoAction*) action);
}
void
SoVRMLShape::GLRender(SoGLRenderAction * action)
{
SoState * state = action->getState();
state->push();
if ((this->appearance.getValue() == NULL) ||
(((SoVRMLAppearance*)this->appearance.getValue())->material.getValue() == NULL)) {
SoLazyElement::setLightModel(state, SoLazyElement::BASE_COLOR);
}
int numindices;
const int * indices;
SoAction::PathCode pathcode = action->getPathCode(numindices, indices);
SoNode ** childarray = (SoNode**) this->getChildren()->getArrayPtr();
if (pathcode == SoAction::IN_PATH) {
int lastchild = indices[numindices - 1];
for (int i = 0; i <= lastchild && !action->hasTerminated(); i++) {
SoNode * child = childarray[i];
action->pushCurPath(i, child);
if (action->getCurPathCode() != SoAction::OFF_PATH ||
child->affectsState()) {
if (!action->abortNow()) {
SoNodeProfiling profiling;
profiling.preTraversal(action);
child->GLRender(action);
profiling.postTraversal(action);
}
else {
SoCacheElement::invalidate(state);
}
}
action->popCurPath(pathcode);
}
}
else {
action->pushCurPath();
int n = this->getChildren()->getLength();
for (int i = 0; i < n && !action->hasTerminated(); i++) {
action->popPushCurPath(i, childarray[i]);
if (action->abortNow()) {
// only cache if we do a full traversal
SoCacheElement::invalidate(state);
break;
}
SoNodeProfiling profiling;
profiling.preTraversal(action);
childarray[i]->GLRender(action);
profiling.postTraversal(action);
}
action->popCurPath();
}
state->pop();
}
void
SoVRMLShape::getBoundingBox(SoGetBoundingBoxAction * action)
{
SoState * state = action->getState();
state->push();
int numindices;
const int * indices;
if (action->getPathCode(numindices, indices) == SoAction::IN_PATH) {
this->getChildren()->traverseInPath(action, numindices, indices);
}
else {
this->getChildren()->traverse(action); // traverse all children
}
state->pop();
}
void
SoVRMLShape::rayPick(SoRayPickAction * action)
{
SoVRMLShape::doAction(action);
}
// Doc in parent
void
SoVRMLShape::write(SoWriteAction * action)
{
// do not call inherited::write() or SoGroup::write()
this->boundingBoxCaching.setDefault(TRUE);
this->renderCaching.setDefault(TRUE);
inherited::write(action);
}
void
SoVRMLShape::search(SoSearchAction * action)
{
// Include this node in the search.
SoNode::search(action);
if (action->isFound()) return;
SoVRMLShape::doAction(action);
}
void
SoVRMLShape::getPrimitiveCount(SoGetPrimitiveCountAction * action)
{
SoVRMLShape::doAction((SoAction*) action);
}
SoChildList *
SoVRMLShape::getChildren(void) const
{
if (!PRIVATE(this)->childlistvalid) {
// this is not 100% thread safe. The assumption is that no nodes
// will be added or removed while a scene graph is being
// traversed. For Coin, this is an ok assumption.
PRIVATE(this)->lockChildList();
// test again after we've locked
if (!PRIVATE(this)->childlistvalid) {
SoVRMLShape * thisp = (SoVRMLShape*) this;
SoVRMLParent::updateChildList(thisp, *(PRIVATE(thisp)->childlist));
PRIVATE(thisp)->childlistvalid = TRUE;
}
PRIVATE(this)->unlockChildList();
}
return PRIVATE(this)->childlist;
}
void
SoVRMLShape::notify(SoNotList * list)
{
SoField * f = list->getLastField();
if (f && f->getTypeId() == SoSFNode::getClassTypeId()) {
PRIVATE(this)->childlistvalid = FALSE;
}
inherited::notify(list);
}
void
SoVRMLShape::copyContents(const SoFieldContainer * from,
SbBool copyConn)
{
inherited::copyContents(from, copyConn);
PRIVATE(this)->childlistvalid = FALSE;
PRIVATE(this)->childlist->truncate(0);
}
#undef PRIVATE
#endif // HAVE_VRML97
|