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 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
|
/**************************************************************************\
*
* 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 SoSeparator SoSeparator.h Inventor/nodes/SoSeparator.h
\brief The SoSeparator class is a state-preserving group node.
\ingroup nodes
Subgraphs parented by SoSeparator nodes will not affect the state,
as they push and pop the traversal state before and after traversal
of its children.
SoSeparator nodes also provides options for traversal optimalization
through the use of caching.
<b>FILE FORMAT/DEFAULTS:</b>
\code
Separator {
renderCaching AUTO
boundingBoxCaching AUTO
renderCulling AUTO
pickCulling AUTO
}
\endcode
\sa SoTransformSeparator
*/
// *************************************************************************
#include <Inventor/nodes/SoSeparator.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif // HAVE_CONFIG_H
#include <stdlib.h> // strtol(), rand()
#include <limits.h> // LONG_MIN, LONG_MAX
#include <Inventor/actions/SoCallbackAction.h>
#include <Inventor/actions/SoGLRenderAction.h>
#include <Inventor/actions/SoGetBoundingBoxAction.h>
#include <Inventor/actions/SoGetMatrixAction.h>
#include <Inventor/actions/SoHandleEventAction.h>
#include <Inventor/actions/SoRayPickAction.h>
#include <Inventor/actions/SoSearchAction.h>
#include <Inventor/actions/SoAudioRenderAction.h>
#include <Inventor/caches/SoBoundingBoxCache.h>
#include <Inventor/caches/SoGLCacheList.h>
#include <Inventor/elements/SoCacheElement.h>
#include <Inventor/elements/SoCullElement.h>
#include <Inventor/elements/SoLocalBBoxMatrixElement.h>
#include <Inventor/elements/SoSoundElement.h>
#include <Inventor/misc/SoChildList.h>
#include <Inventor/misc/SoState.h>
#include <Inventor/errors/SoDebugError.h>
#include <Inventor/system/gl.h>
#include <Inventor/C/tidbits.h> // coin_getenv()
#include <Inventor/threads/SbStorage.h>
#ifdef COIN_THREADSAFE
#include <Inventor/threads/SbMutex.h>
#endif // COIN_THREADSAFE
#include "coindefs.h" // COIN_OBSOLETED()
#include "nodes/SoSubNodeP.h"
#include "glue/glp.h"
#include "misc/SoGL.h"
#include "misc/SoDBP.h"
#include <Inventor/annex/Profiler/SoProfiler.h>
#include "profiler/SoNodeProfiling.h"
// *************************************************************************
#if COIN_DEBUG
#define GLCACHE_DEBUG 0 // set to 1 to debug caching
#endif
// *************************************************************************
// environment variable
static int COIN_RANDOMIZE_RENDER_CACHING = -1;
// Maximum number of caches available for allocation for the
// rendercaching.
int SoSeparator::numrendercaches = 2;
// *************************************************************************
/*!
\enum SoSeparator::CacheEnabled
Enumeration of flags for the fields deciding which optimalizations
to do in SoSeparator nodes. There are two types of settings
available: caching policies or culling policies. See doumentation of
fields.
*/
/*!
\var SoSeparator::CacheEnabled SoSeparator::OFF
No caching.
*/
/*!
\var SoSeparator::CacheEnabled SoSeparator::ON
Always try to cache state.
*/
/*!
\var SoSeparator::CacheEnabled SoSeparator::AUTO
Use heuristics to try to figure out the optimal caching policy.
*/
/*!
\var SoSFEnum SoSeparator::renderCaching
Policy for caching of rendering instructions for faster
execution. This will typically use the OpenGL \e displaylist
mechanism.
Default value is SoSeparator::AUTO.
If you know that some parts of your scene will never change,
rendering might happen faster if you explicitly set this field to
SoSeparator::ON. If you on the other hand know that parts of the
scene will change a lot (like for every redraw), it will be
beneficial to set this field to SoSeparator::OFF for the top-level
separator node of this (sub)graph.
Usually the default setting of \c AUTO will handle any scene very
well. The advantages that \e can be had from setting
SoSeparator::renderCaching to \c ON are:
<ul>
<li> If you positively know that the geometry under the SoSeparator is
static, you get the cache set up right away.
Otherwise, the code in Coin will do a bit of testing and decide
by some heuristics whether or not to enable it. That will make
the rendering be a tiny bit slower right after start-up than with
renderCaching set to \c ON.
(The slow-down should hardly be noticable, though, so we don't
advice application programmers to do this.)
</li>
<li> For many of the shape nodes that can contain many basic
primitives, like e.g. SoFaceSet, SoIndexedFaceSet, SoLineSet, etc
etc, there is an internal threshold for how many primitives a
node can contain before we don't do caching when
SoSeparator::renderCaching is set to \c AUTO.
The reason we do this is because OpenGL renderlists can
potentially suck up a lot of memory resources on the graphics
card.
But if you know that it will be advantageous on your particular
platform, you can override this by setting
SoSeparator::renderCaching equal to \c ON.
(We don't advice application programmers to do this either. A
better solution in these cases would simply be to get in touch
with SIM and describe the platform and the problem, and we could
integrate a proper fix into Coin.)
</li>
</ul>
There are good reasons for setting renderCaching to \c OFF, like
when you know the geometry will be changing a lot. Still, Coin
should work fairly well without even this optimization. (If
renderCaching is \c AUTO over a sub-graph with changing geometry or
other cache smashing nodes, the caching heuristics will stop the
SoSeparator node from trying to make caches -- at least after a few
tries has been made and failed.)
The short story about how auto-caching works is as follows:
<ul>
<li>For vertex-based shapes with fewer than 100 triangles and
where the geometry is detected to be fairly static, caching is
enabled.</li>
<li>For shapes with more than 1000 trangles, it is disabled, to
avoid spending too much of the on-board graphics card's memory
resources.</li>
<li>For shapes with between 100 and 1000 shapes, displaylist
caching will be turned on if our heuristics decides that the
geometry can be considered static.</li>
</ul>
The maximum threshold (of 1000) is higher when doing remote
rendering (as when rendering from one X11-based system to another).
Disabling the displaylist caching takes precedence over enabling, so
if you have an SoSeparator with a shape with more than 1000
triangles and a shape with fewer than 100 triangles, caching will be
disabled for the SoSeparator.
It's possible to tune the limits using some environment variables:
<ul>
<li>\c COIN_AUTOCACHE_LOCAL_MIN can be used to change the
enable-caching limit, while \c COIN_AUTOCACHE_LOCAL_MAX
controls the disable-caching limit.</li>
<li>The corresponding variables for remote rendering are \c
COIN_AUTOCACHE_REMOTE_MIN and \c
COIN_AUTOCACHE_REMOTE_MAX.</li>
</ul>
*/
/*!
\var SoSFEnum SoSeparator::boundingBoxCaching
Policy for caching bounding box calculations. Default value is
SoSeparator::AUTO.
See also documentation for SoSeparator::renderCaching.
*/
/*!
\var SoSFEnum SoSeparator::renderCulling
Policy for doing viewport culling during rendering
traversals. Default value is SoSeparator::AUTO.
When the render culling is turned off for Coin, it will be left to
be done for the underlying immediate mode rendering library. This
will often be faster than doing culling from within Coin, so be
careful to monitor the change in execution speed if setting this
field to SoSeparator::ON.
See also documentation for SoSeparator::renderCaching.
*/
/*!
\var SoSFEnum SoSeparator::pickCulling
Policy for doing viewport culling during pick traversals. Default
value is SoSeparator::AUTO.
See documentation for SoSeparator::renderCulling.
*/
// *************************************************************************
// when doing threadsafe rendering, each thread needs its own
// glcachelist
typedef struct {
SoGLCacheList * glcachelist;
} soseparator_storage;
static void
soseparator_storage_construct(void * data)
{
soseparator_storage * ptr = (soseparator_storage*) data;
ptr->glcachelist = NULL;
}
static void
soseparator_storage_destruct(void * data)
{
soseparator_storage * ptr = (soseparator_storage*) data;
delete ptr->glcachelist;
}
// *************************************************************************
class SoSeparatorP {
public:
SoSeparatorP(void) {
this->glcachestorage =
new SbStorage(sizeof(soseparator_storage),
soseparator_storage_construct,
soseparator_storage_destruct);
this->pub = NULL;
}
~SoSeparatorP() {
delete this->glcachestorage;
}
SoSeparator * pub;
SoBoundingBoxCache * bboxcache;
uint32_t bboxcache_usecount;
uint32_t bboxcache_destroycount;
#ifdef COIN_THREADSAFE
// FIXME: a mutex for every SoSeparator instance seems a bit
// excessive, especially since MSWindows might have rather strict
// limits on the total amount of mutex resources a process (or even
// a user) can allocate. so consider making this a class-wide
// instance instead. -mortene.
SbMutex mutex;
#endif // !COIN_THREADSAFE
SbStorage * glcachestorage;
static void invalidate_gl_cache(void * tls, void *) {
soseparator_storage * ptr = (soseparator_storage*) tls;
if (ptr->glcachelist) {
ptr->glcachelist->invalidateAll();
}
}
enum { YES, NO, MAYBE } hassoundchild;
SoGLCacheList * getGLCacheList(SbBool createifnull);
void invalidateGLCaches(void) {
glcachestorage->applyToAll(invalidate_gl_cache, NULL);
}
void lock(void) {
#ifdef COIN_THREADSAFE
this->mutex.lock();
#endif // COIN_THREADSAFE
}
void unlock(void) {
#ifdef COIN_THREADSAFE
this->mutex.unlock();
#endif // COIN_THREADSAFE
}
static SbBool doCull(SoSeparatorP * thisp, SoState * state,
SbBool (* cullfunc)(SoState *, const SbBox3f &, const SbBool));
};
#define PRIVATE(obj) ((obj)->pimpl)
#define PUBLIC(obj) ((obj)->pub)
// *************************************************************************
SoGLCacheList *
SoSeparatorP::getGLCacheList(SbBool createifnull)
{
soseparator_storage * ptr =
(soseparator_storage*) this->glcachestorage->get();
if (createifnull && ptr->glcachelist == NULL) {
ptr->glcachelist = new SoGLCacheList(SoSeparator::getNumRenderCaches());
}
return ptr->glcachelist;
}
// *************************************************************************
SO_NODE_SOURCE(SoSeparator);
/*!
Default constructor.
*/
SoSeparator::SoSeparator(void)
{
this->commonConstructor();
}
/*!
Constructor.
The argument should be the approximate number of children which is
expected to be inserted below this node. The number need not be
exact, as it is only used as a hint for better memory resource
allocation.
*/
SoSeparator::SoSeparator(const int nchildren)
: SoGroup(nchildren)
{
this->commonConstructor();
}
// private common constructor helper function
void
SoSeparator::commonConstructor(void)
{
PRIVATE(this)->pub = this;
SO_NODE_INTERNAL_CONSTRUCTOR(SoSeparator);
SO_NODE_ADD_FIELD(renderCaching, (SoSeparator::AUTO));
SO_NODE_ADD_FIELD(boundingBoxCaching, (SoSeparator::AUTO));
SO_NODE_ADD_FIELD(renderCulling, (SoSeparator::AUTO));
SO_NODE_ADD_FIELD(pickCulling, (SoSeparator::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);
SO_NODE_SET_SF_ENUM_TYPE(renderCulling, CacheEnabled);
SO_NODE_SET_SF_ENUM_TYPE(pickCulling, CacheEnabled);
static long int maxcaches = -1;
if (maxcaches == -1) {
maxcaches = -2; // so we don't request the envvar later if it is not set
const char * maxcachesstr = coin_getenv("IV_SEPARATOR_MAX_CACHES");
if (maxcachesstr) {
maxcaches = strtol(maxcachesstr, NULL, 10);
if ((maxcaches == LONG_MIN) || (maxcaches == LONG_MAX) || (maxcaches < 0)) {
SoDebugError::post("SoSeparator::commonConstructor",
"Environment variable IV_SEPARATOR_MAX_CACHES "
"has invalid setting \"%s\"", maxcachesstr);
}
else {
SoSeparator::setNumRenderCaches(maxcaches);
}
}
}
PRIVATE(this)->bboxcache = NULL;
PRIVATE(this)->bboxcache_usecount = 0;
PRIVATE(this)->bboxcache_destroycount = 0;
// This environment variable used for local stability / robustness /
// correctness testing of the render caching. If set >= 1,
// renderCaching will be set to "ON" with a probability of 0.5 for
// every SoSeparator instantiated.
if (COIN_RANDOMIZE_RENDER_CACHING < 0) {
const char * env = coin_getenv("COIN_RANDOMIZE_RENDER_CACHING");
if (env) COIN_RANDOMIZE_RENDER_CACHING = atoi(env);
else COIN_RANDOMIZE_RENDER_CACHING = 0;
}
if (COIN_RANDOMIZE_RENDER_CACHING > 0) {
if (rand() > (RAND_MAX/2)) { this->renderCaching = SoSeparator::ON; }
}
PRIVATE(this)->hassoundchild = SoSeparatorP::MAYBE;
}
/*!
Destructor. Frees resources used to implement caches.
*/
SoSeparator::~SoSeparator()
{
if (PRIVATE(this)->bboxcache) {
PRIVATE(this)->bboxcache->unref();
}
}
// Doc from superclass.
void
SoSeparator::initClass(void)
{
SO_NODE_INTERNAL_INIT_CLASS(SoSeparator, SO_FROM_INVENTOR_1|SoNode::VRML1);
SO_ENABLE(SoGetBoundingBoxAction, SoCacheElement);
SO_ENABLE(SoGLRenderAction, SoCacheElement);
SoSeparator::numrendercaches = 2;
}
// Doc from superclass.
void
SoSeparator::doAction(SoAction * action)
{
action->getState()->push();
inherited::doAction(action);
action->getState()->pop();
}
// Doc from superclass.
void
SoSeparator::getBoundingBox(SoGetBoundingBoxAction * action)
{
SoState * state = action->getState();
SbXfBox3f childrenbbox;
SbBool childrencenterset;
SbVec3f childrencenter;
// FIXME: AUTO is interpreted as ON for the boundingBoxCaching
// field, but we should trigger some heuristics based on scene graph
// "behavior" in the children subgraphs if the value is set to
// AUTO. 19990513 mortene.
SbBool iscaching = this->boundingBoxCaching.getValue() != OFF;
switch (action->getCurPathCode()) {
case SoAction::IN_PATH:
// can't cache if we're not traversing all children
iscaching = FALSE;
break;
case SoAction::OFF_PATH:
return; // no need to do any more work
case SoAction::BELOW_PATH:
case SoAction::NO_PATH:
// check if this is a normal traversal
if (action->isInCameraSpace() || action->isResetPath()) iscaching = FALSE;
break;
default:
iscaching = FALSE;
assert(0 && "unknown path code");
break;
}
SbBool validcache = iscaching && PRIVATE(this)->bboxcache && PRIVATE(this)->bboxcache->isValid(state);
if (iscaching && validcache) {
SoCacheElement::addCacheDependency(state, PRIVATE(this)->bboxcache);
PRIVATE(this)->bboxcache_usecount++;
childrenbbox = PRIVATE(this)->bboxcache->getBox();
childrencenterset = PRIVATE(this)->bboxcache->isCenterSet();
childrencenter = PRIVATE(this)->bboxcache->getCenter();
if (PRIVATE(this)->bboxcache->hasLinesOrPoints()) {
SoBoundingBoxCache::setHasLinesOrPoints(state);
}
}
else {
SbXfBox3f abox = action->getXfBoundingBox();
SbBool storedinvalid = FALSE;
// check if we should disable auto caching
if (PRIVATE(this)->bboxcache_destroycount > 10 && this->boundingBoxCaching.getValue() == AUTO) {
if (float(PRIVATE(this)->bboxcache_usecount) / float(PRIVATE(this)->bboxcache_destroycount) < 5.0f) {
iscaching = FALSE;
}
}
if (iscaching) {
storedinvalid = SoCacheElement::setInvalid(FALSE);
}
state->push();
if (iscaching) {
// lock before changing the bboxcache pointer so that the notify()
// function can be used by another thread.
PRIVATE(this)->lock();
// if we get here, we know bbox cache is not created or is invalid
if (PRIVATE(this)->bboxcache) {
PRIVATE(this)->bboxcache_destroycount++;
PRIVATE(this)->bboxcache->unref();
}
PRIVATE(this)->bboxcache = new SoBoundingBoxCache(state);
PRIVATE(this)->bboxcache->ref();
PRIVATE(this)->unlock();
// set active cache to record cache dependencies
SoCacheElement::set(state, PRIVATE(this)->bboxcache);
}
SoLocalBBoxMatrixElement::makeIdentity(state);
action->getXfBoundingBox().makeEmpty();
inherited::getBoundingBox(action);
childrenbbox = action->getXfBoundingBox();
childrencenterset = action->isCenterSet();
if (childrencenterset) childrencenter = action->getCenter();
action->getXfBoundingBox() = abox; // reset action bbox
if (iscaching) {
PRIVATE(this)->bboxcache->set(childrenbbox, childrencenterset, childrencenter);
}
state->pop();
if (iscaching) SoCacheElement::setInvalid(storedinvalid);
}
if (!childrenbbox.isEmpty()) {
action->extendBy(childrenbbox);
if (childrencenterset) {
// FIXME: shouldn't this assert() hold up? Investigate. 19990422 mortene.
#if 0 // disabled
assert(!action->isCenterSet());
#else
action->resetCenter();
#endif
action->setCenter(childrencenter, TRUE);
}
}
}
// Doc from superclass.
void
SoSeparator::callback(SoCallbackAction * action)
{
SoState * state = action->getState();
state->push();
// culling planes should normally not be set, but can be set
// manually by the application programmer to optimize callback
// action traversal.
if (!this->cullTest(state)) {
SoGroup::callback(action);
}
state->pop();
}
// *************************************************************************
// Doc from superclass.
void
SoSeparator::GLRender(SoGLRenderAction * action)
{
switch (action->getCurPathCode()) {
case SoAction::NO_PATH:
case SoAction::BELOW_PATH:
this->GLRenderBelowPath(action);
break;
case SoAction::OFF_PATH:
// do nothing. Separator will reset state.
break;
case SoAction::IN_PATH:
this->GLRenderInPath(action);
break;
}
}
/*!
SGI Open Inventor v2.1 obsoleted support for
SoGLRenderAction::addMethod(). Instead, GLRender() might be called
directly, and to optimize traversal, the SoSeparator node calls
GLRenderBelowPath whenever the path code is BELOW_PATH or NO_PATH
(path code is guaranteed not to change). To be compatible with SGI's
Inventor (and thereby also TGS') we have chosen to follow their
implementation in this respect.
SoSeparator::GLRenderBelowPath() do not traverse its children using
SoChildList::traverse(), but calls GLRenderBelowPath() directly
for all its children.
*/
void
SoSeparator::GLRenderBelowPath(SoGLRenderAction * action)
{
SoState * state = action->getState();
state->push();
SbBool didcull = FALSE;
SoGLCacheList * createcache = NULL;
if ((this->renderCaching.getValue() != OFF) &&
(SoSeparator::getNumRenderCaches() > 0)) {
// test if bbox is outside view-volume
if (!state->isCacheOpen()) {
didcull = TRUE;
if (this->cullTest(state)) {
state->pop();
return;
}
}
PRIVATE(this)->lock();
SoGLCacheList * glcachelist = PRIVATE(this)->getGLCacheList(TRUE);
PRIVATE(this)->unlock();
if (glcachelist->call(action)) {
#if GLCACHE_DEBUG // debug
SoDebugError::postInfo("SoSeparator::GLRenderBelowPath",
"%p executed GL cache", this);
#endif // debug
state->pop();
if (SoProfiler::isEnabled()) {
SoProfilerElement * e = SoProfilerElement::get(state);
if (e) {
e->getProfilingData().setNodeFlag(action->getCurPath(), SbProfilingData::GL_CACHED_FLAG, TRUE);
}
}
return;
}
if (!SoCacheElement::anyOpen(state)) {
#if GLCACHE_DEBUG // debug
SoDebugError::postInfo("SoSeparator::GLRenderBelowPath",
"%p creating GL cache", this);
#endif // debug
createcache = glcachelist;
}
}
if (createcache) {
createcache->open(action, this->renderCaching.getValue() == AUTO);
}
SbBool outsidefrustum =
(createcache || state->isCacheOpen() || didcull) ?
FALSE : this->cullTest(state);
if (createcache || !outsidefrustum) {
int n = this->children->getLength();
SoNode ** childarray = (SoNode**) this->children->getArrayPtr();
action->pushCurPath();
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]->GLRenderBelowPath(action); // traversal call
profiling.postTraversal(action);
}
#if COIN_DEBUG
// The GL error test is default disabled for this optimized
// path. If you get a GL error reporting an error in the
// Separator node, enable this code by setting the environment
// variable COIN_GLERROR_DEBUGGING to "1" to see exactly which
// node caused the error.
static SbBool chkglerr = sogl_glerror_debugging();
if (chkglerr) {
cc_string str;
cc_string_construct(&str);
const unsigned int errs = coin_catch_gl_errors(&str);
if (errs > 0) {
SoDebugError::post("SoSeparator::GLRenderBelowPath",
"GL error: '%s', nodetype: %s",
cc_string_get_text(&str),
(*this->children)[i]->getTypeId().getName().getString());
}
cc_string_clean(&str);
}
#endif // COIN_DEBUG
}
action->popCurPath();
}
state->pop();
if (createcache) {
createcache->close(action);
}
}
// Doc from superclass.
void
SoSeparator::GLRenderInPath(SoGLRenderAction * action)
{
int numindices;
const int * indices;
SoAction::PathCode pathcode = action->getPathCode(numindices, indices);
if (pathcode == SoAction::IN_PATH) {
SoState * state = action->getState();
SoNode ** childarray = (SoNode**) this->children->getArrayPtr();
state->push();
int childidx = 0;
for (int i = 0; i < numindices; i++) {
for (; childidx < indices[i] && !action->hasTerminated(); childidx++) {
SoNode * offpath = childarray[childidx];
if (offpath->affectsState()) {
action->pushCurPath(childidx, offpath);
if (!action->abortNow()) {
SoNodeProfiling profiling;
profiling.preTraversal(action);
offpath->GLRenderOffPath(action); // traversal call
profiling.postTraversal(action);
}
else {
SoCacheElement::invalidate(state);
}
action->popCurPath(pathcode);
}
}
SoNode * inpath = childarray[childidx];
action->pushCurPath(childidx, inpath);
if (!action->abortNow()) {
SoNodeProfiling profiling;
profiling.preTraversal(action);
inpath->GLRenderInPath(action); // traversal call
profiling.postTraversal(action);
}
else {
SoCacheElement::invalidate(state);
}
action->popCurPath(pathcode);
childidx++;
}
state->pop();
}
else if (pathcode == SoAction::BELOW_PATH) {
this->GLRenderBelowPath(action);
}
}
// Doc from superclass.
void
SoSeparator::GLRenderOffPath(SoGLRenderAction *)
{
// do nothing, since all state changes will be reset by the separator
}
// Doc from superclass.
void
SoSeparator::handleEvent(SoHandleEventAction * action)
{
SoSeparator::doAction(action);
}
// Doc from superclass.
void
SoSeparator::audioRender(SoAudioRenderAction * action)
{
// Note: This function is similar to SoVRMLGroup::audioRender().
/* FIXME: how should we handle termination of an action? We should
probably reset PRIVATE(this)->hassoundchild to MAYBE. Investigate
2003-01-31 thammer. */
int numindices;
const int * indices;
SoState * state = action->getState();
if (PRIVATE(this)->hassoundchild != SoSeparatorP::NO) {
if (action->getPathCode(numindices, indices) != SoAction::IN_PATH) {
action->getState()->push();
SoSoundElement::setSceneGraphHasSoundNode(state, this, FALSE);
inherited::doAction(action);
PRIVATE(this)->hassoundchild = SoSoundElement::sceneGraphHasSoundNode(state) ?
SoSeparatorP::YES : SoSeparatorP::NO;
action->getState()->pop();
} else {
SoSeparator::doAction((SoAction*)action);
}
}
}
// compute object space ray and test for intersection
static SbBool
ray_intersect(SoRayPickAction * action, const SbBox3f &box)
{
if (box.isEmpty()) return FALSE;
action->setObjectSpace();
return action->intersect(box, TRUE);
}
// Doc from superclass.
void
SoSeparator::rayPick(SoRayPickAction * action)
{
if (this->pickCulling.getValue() == OFF ||
!PRIVATE(this)->bboxcache || !PRIVATE(this)->bboxcache->isValid(action->getState()) ||
!action->hasWorldSpaceRay() ||
ray_intersect(action, PRIVATE(this)->bboxcache->getProjectedBox())) {
SoSeparator::doAction(action);
}
}
// Doc from superclass.
void
SoSeparator::search(SoSearchAction * action)
{
// Include this node in the search. (_Don't_ use the
// SoGroup::search(), as it will also traverse all children.)
SoNode::search(action);
if (action->isFound()) return;
SoSeparator::doAction(action);
}
// Doc from superclass.
void
SoSeparator::getMatrix(SoGetMatrixAction * action)
{
int numindices;
const int * indices;
if (action->getPathCode(numindices, indices) == SoAction::IN_PATH) {
// need to push/pop to handle SoUnitsElement correctly
action->getState()->push();
this->children->traverseInPath(action, numindices, indices);
action->getState()->pop();
}
}
/*!
Set the maximum number of caches that SoSeparator nodes may allocate
for render caching.
This is a global value which will be used for all SoSeparator nodes,
but the value indicate the maximum number \e per SoSeparator node.
More caches might give better performance, but will use more memory.
The built-in default value is 2.
The value can also be changed globally by setting the host system's
environment variable IV_SEPARATOR_MAX_CACHES to the wanted
number. This is primarily meant as an aid during debugging, to make
it easy to turn off rendercaching completely (by setting
"IV_SEPARATOR_MAX_CACHES=0") without having to change any
application code.
*/
void
SoSeparator::setNumRenderCaches(const int howmany)
{
SoSeparator::numrendercaches = howmany;
}
/*!
Returns maximum number of caches SoSeparator nodes are allowed to
use for render caching.
\sa setNumRenderCaches()
*/
int
SoSeparator::getNumRenderCaches(void)
{
return SoSeparator::numrendercaches;
}
// Doc from superclass.
SbBool
SoSeparator::affectsState(void) const
{
// Subgraphs parented by SoSeparator nodes will not affect the
// state, as they push and pop the traversal state before and after
// traversal of its children.
return FALSE;
}
// Doc from superclass.
void
SoSeparator::getPrimitiveCount(SoGetPrimitiveCountAction * action)
{
SoSeparator::doAction((SoAction *)action);
}
// Doc from superclass.
void
SoSeparator::notify(SoNotList * nl)
{
inherited::notify(nl);
// lock before using the cache pointers so that we know the pointers
// are valid while reading them
PRIVATE(this)->lock();
if (PRIVATE(this)->bboxcache) PRIVATE(this)->bboxcache->invalidate();
PRIVATE(this)->invalidateGLCaches();
PRIVATE(this)->hassoundchild = SoSeparatorP::MAYBE;
PRIVATE(this)->unlock();
}
/*!
This is an internal Open Inventor method. We've implemented
view frustum culling in a different manner. Let us know if
you need this function, and we'll consider implementing it.
*/
SbBool
SoSeparator::cullTest(SoGLRenderAction * action, int & cullresults)
{
COIN_OBSOLETED();
return FALSE;
}
// Doc from superclass.
SbBool
SoSeparator::readInstance(SoInput * in, unsigned short flags)
{
return inherited::readInstance(in, flags);
}
// *************************************************************************
SbBool
SoSeparatorP::doCull(SoSeparatorP * thisp, SoState * state,
SbBool (* cullfunc)(SoState *, const SbBox3f &, const SbBool))
{
if (PUBLIC(thisp)->renderCulling.getValue() == SoSeparator::OFF) return FALSE;
if (SoCullElement::completelyInside(state)) return FALSE;
SbBool outside = FALSE;
if (thisp->bboxcache &&
thisp->bboxcache->isValid(state)) {
const SbBox3f & bbox = thisp->bboxcache->getProjectedBox();
if (!bbox.isEmpty()) {
outside = (*cullfunc)(state, bbox, TRUE);
}
}
#if 0
// temporarily disabled. setNodeFlag() needs current path, which is
// unavailable here
if (outside && SoProfiler::isEnabled()) {
SoProfilerElement * elt = SoProfilerElement::get(state);
if (elt) {
// FIXME: need current path to set this flag. move outside cullTest()?
// elt->getProfilingData().setNodeFlag(PUBLIC(thisp)->getCurPath(), SbProfilingData::CULLED_FLAG, TRUE);
}
}
#endif
return outside;
}
/*!
Internal method which do view frustum culling. For now, view frustum
culling is performed if the renderCulling field is \c AUTO or \c ON,
and the bounding box cache is valid.
Returns \c TRUE if this separator is outside view frustum, \c FALSE
if inside.
*/
SbBool
SoSeparator::cullTest(SoState * state)
{
return SoSeparatorP::doCull(&PRIVATE(this).get(), state, SoCullElement::cullBox);
}
//
// Performs a cull test on this node. This call will not update
// the SoCullElement, so it can be called without calling
// state->push() first.
//
SbBool
SoSeparator::cullTestNoPush(SoState * state)
{
return SoSeparatorP::doCull(&PRIVATE(this).get(), state, SoCullElement::cullTest);
}
// *************************************************************************
#undef PRIVATE
#undef PUBLIC
#undef GLCACHE_DEBUG
|