69 lines
2.0 KiB
C++
69 lines
2.0 KiB
C++
#include <osgParticle/ParticleSystemUpdater>
|
|
|
|
#include <osg/CopyOp>
|
|
#include <osg/Node>
|
|
|
|
using namespace osg;
|
|
|
|
osgParticle::ParticleSystemUpdater::ParticleSystemUpdater()
|
|
: osg::Node(), _t0(-1), _frameNumber(0)
|
|
{
|
|
setCullingActive(false);
|
|
}
|
|
|
|
osgParticle::ParticleSystemUpdater::ParticleSystemUpdater(const ParticleSystemUpdater& copy, const osg::CopyOp& copyop)
|
|
: osg::Node(copy, copyop), _t0(copy._t0)
|
|
{
|
|
ParticleSystem_Vector::const_iterator i;
|
|
for (i=copy._psv.begin(); i!=copy._psv.end(); ++i) {
|
|
_psv.push_back(static_cast<ParticleSystem* >(copyop(i->get())));
|
|
}
|
|
}
|
|
|
|
void osgParticle::ParticleSystemUpdater::traverse(osg::NodeVisitor& nv)
|
|
{
|
|
osgUtil::CullVisitor *cv = dynamic_cast<osgUtil::CullVisitor *>(&nv);
|
|
if (cv)
|
|
{
|
|
if (nv.getFrameStamp())
|
|
{
|
|
|
|
if( _frameNumber < nv.getFrameStamp()->getFrameNumber())
|
|
{
|
|
_frameNumber = nv.getFrameStamp()->getFrameNumber();
|
|
|
|
double t = nv.getFrameStamp()->getSimulationTime();
|
|
if (_t0 != -1.0)
|
|
{
|
|
ParticleSystem_Vector::iterator i;
|
|
for (i=_psv.begin(); i!=_psv.end(); ++i)
|
|
{
|
|
ParticleSystem* ps = i->get();
|
|
|
|
OpenThreads::ScopedWriteLock lock(*(ps->getReadWriteMutex()));
|
|
|
|
if (!ps->isFrozen() && (ps->getLastFrameNumber() >= (nv.getFrameStamp()->getFrameNumber() - 1) || !ps->getFreezeOnCull()))
|
|
{
|
|
ps->update(t - _t0);
|
|
}
|
|
}
|
|
}
|
|
_t0 = t;
|
|
}
|
|
|
|
}
|
|
else
|
|
{
|
|
osg::notify(osg::WARN) << "osgParticle::ParticleSystemUpdater::traverse(NodeVisitor&) requires a valid FrameStamp to function, particles not updated.\n";
|
|
}
|
|
|
|
}
|
|
Node::traverse(nv);
|
|
}
|
|
|
|
osg::BoundingSphere osgParticle::ParticleSystemUpdater::computeBound() const
|
|
{
|
|
return osg::BoundingSphere();
|
|
}
|
|
|