2002-06-05 20:44:55 +08:00
|
|
|
//C++ header - Open Scene Graph - Copyright (C) 1998-2002 Robert Osfield
|
|
|
|
//Distributed under the terms of the GNU Library General Public License (LGPL)
|
|
|
|
//as published by the Free Software Foundation.
|
|
|
|
//osgParticle - Copyright (C) 2002 Marco Jez
|
|
|
|
|
|
|
|
#ifndef OSGPARTICLE_COUNTER_
|
|
|
|
#define OSGPARTICLE_COUNTER_ 1
|
|
|
|
|
|
|
|
#include <osg/CopyOp>
|
|
|
|
#include <osg/Object>
|
|
|
|
|
|
|
|
namespace osgParticle
|
|
|
|
{
|
|
|
|
|
|
|
|
class Counter: public osg::Object {
|
|
|
|
public:
|
|
|
|
inline Counter();
|
|
|
|
inline Counter(const Counter ©, const osg::CopyOp ©op = osg::CopyOp::SHALLOW_COPY);
|
|
|
|
|
2002-06-06 21:25:36 +08:00
|
|
|
virtual const char *libraryName() const { return "osgParticle"; }
|
2002-06-05 20:44:55 +08:00
|
|
|
virtual const char *className() const { return "Counter"; }
|
|
|
|
virtual bool isSameKindAs(const osg::Object *obj) const { return dynamic_cast<const Counter *>(obj) != 0; }
|
|
|
|
|
|
|
|
virtual int numParticlesToCreate(double dt) const = 0;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
~Counter() {}
|
|
|
|
Counter &operator=(const Counter &) { return *this; }
|
|
|
|
};
|
|
|
|
|
|
|
|
// INLINE FUNCTIONS
|
|
|
|
|
|
|
|
inline Counter::Counter()
|
|
|
|
: osg::Object()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
inline Counter::Counter(const Counter ©, const osg::CopyOp ©op)
|
|
|
|
: osg::Object(copy, copyop)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|