OpenSceneGraph/src/osg/Geode.cpp

196 lines
5.1 KiB
C++
Raw Normal View History

/* -*-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.
*/
#include <osg/Geode>
#include <osg/Notify>
2001-01-11 00:32:10 +08:00
#include <stdio.h>
#include <math.h>
#define square(x) ((x)*(x))
using namespace osg;
Geode::Geode()
{
}
Geode::Geode(const Geode& geode,const CopyOp& copyop):
Node(geode,copyop)
{
for(DrawableList::const_iterator itr=geode._drawables.begin();
itr!=geode._drawables.end();
++itr)
{
Drawable* drawable = copyop(itr->get());
if (drawable) addDrawable(drawable);
}
}
2001-01-11 00:32:10 +08:00
Geode::~Geode()
{
// remove reference to this from children's parent lists.
for(DrawableList::iterator itr=_drawables.begin();
itr!=_drawables.end();
++itr)
{
(*itr)->removeParent(this);
}
2001-01-11 00:32:10 +08:00
}
bool Geode::addDrawable( Drawable *drawable )
2001-01-11 00:32:10 +08:00
{
if (drawable && !containsDrawable(drawable))
2001-01-11 00:32:10 +08:00
{
// note ref_ptr<> automatically handles incrementing drawable's reference count.
_drawables.push_back(drawable);
// register as parent of drawable.
drawable->addParent(this);
if (drawable->getUpdateCallback())
2002-07-10 23:35:47 +08:00
{
setNumChildrenRequiringUpdateTraversal(getNumChildrenRequiringUpdateTraversal()+1);
2002-07-10 23:35:47 +08:00
}
dirtyBound();
2001-01-11 00:32:10 +08:00
return true;
}
else return false;
}
bool Geode::removeDrawable( Drawable *drawable )
2001-01-11 00:32:10 +08:00
{
return removeDrawable(getDrawableIndex(drawable));
}
bool Geode::removeDrawable(unsigned int pos,unsigned int numDrawablesToRemove)
{
if (pos<_drawables.size() && numDrawablesToRemove>0)
2001-01-11 00:32:10 +08:00
{
unsigned int endOfRemoveRange = pos+numDrawablesToRemove;
if (endOfRemoveRange>_drawables.size())
{
notify(DEBUG_INFO)<<"Warning: Geode::removeDrawable(i,numDrawablesToRemove) has been passed an excessive number"<<std::endl;
notify(DEBUG_INFO)<<" of drawables to remove, trimming just to end of drawable list."<<std::endl;
endOfRemoveRange=_drawables.size();
}
unsigned int updateCallbackRemoved = 0;
for(unsigned i=pos;i<endOfRemoveRange;++i)
2002-07-10 23:35:47 +08:00
{
// remove this Geode from the child parent list.
_drawables[i]->removeParent(this);
// update the number of app calbacks removed
if (_drawables[i]->getUpdateCallback()) ++updateCallbackRemoved;
2002-07-10 23:35:47 +08:00
}
_drawables.erase(_drawables.begin()+pos,_drawables.begin()+endOfRemoveRange);
if (updateCallbackRemoved)
{
setNumChildrenRequiringUpdateTraversal(getNumChildrenRequiringUpdateTraversal()-updateCallbackRemoved);
}
2001-01-11 00:32:10 +08:00
dirtyBound();
2001-01-11 00:32:10 +08:00
return true;
}
else return false;
}
bool Geode::replaceDrawable( Drawable *origDrawable, Drawable *newDrawable )
2001-01-11 00:32:10 +08:00
{
if (newDrawable==NULL || origDrawable==newDrawable) return false;
2001-01-11 00:32:10 +08:00
unsigned int pos = getDrawableIndex(origDrawable);
if (pos<_drawables.size())
2001-01-11 00:32:10 +08:00
{
return setDrawable(pos,newDrawable);
}
return false;
}
bool Geode::setDrawable( unsigned int i, Drawable* newDrawable )
{
if (i<_drawables.size() && newDrawable)
{
Drawable* origDrawable = _drawables[i].get();
2002-07-10 23:35:47 +08:00
int delta = 0;
if (origDrawable->getUpdateCallback()) --delta;
if (newDrawable->getUpdateCallback()) ++delta;
2002-07-10 23:35:47 +08:00
if (delta!=0)
{
setNumChildrenRequiringUpdateTraversal(getNumChildrenRequiringUpdateTraversal()+delta);
2002-07-10 23:35:47 +08:00
}
// remove from origDrawable's parent list.
origDrawable->removeParent(this);
2001-01-11 00:32:10 +08:00
// note ref_ptr<> automatically handles decrementing origGset's reference count,
// and inccrementing newGset's reference count.
_drawables[i] = newDrawable;
// register as parent of child.
newDrawable->addParent(this);
2002-07-10 23:35:47 +08:00
2001-01-11 00:32:10 +08:00
dirtyBound();
2001-01-11 00:32:10 +08:00
return true;
}
else return false;
2001-01-11 00:32:10 +08:00
}
bool Geode::computeBound() const
{
_bsphere.init();
BoundingBox bb;
DrawableList::const_iterator itr;
for(itr=_drawables.begin();
itr!=_drawables.end();
2001-01-11 00:32:10 +08:00
++itr)
{
bb.expandBy((*itr)->getBound());
}
if (bb.valid())
2001-01-11 00:32:10 +08:00
{
_bsphere.expandBy(bb);
_bsphere_computed=true;
return true;
}
else
{
_bsphere_computed=true;
return false;
}
2001-01-11 00:32:10 +08:00
}
void Geode::compileDrawables(State& state)
2001-01-11 00:32:10 +08:00
{
for(DrawableList::iterator itr = _drawables.begin();
itr!=_drawables.end();
2001-01-11 00:32:10 +08:00
++itr)
{
(*itr)->compile(state);
2001-01-11 00:32:10 +08:00
}
}