2012-03-22 01:36:20 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2003-01-22 00:45:36 +08:00
|
|
|
*
|
2012-03-22 01:36:20 +08:00
|
|
|
* 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
|
2003-01-22 00:45:36 +08:00
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
2012-03-22 01:36:20 +08:00
|
|
|
*
|
2003-01-22 00:45:36 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2012-03-22 01:36:20 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2003-01-22 00:45:36 +08:00
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
2002-06-05 20:44:55 +08:00
|
|
|
//osgParticle - Copyright (C) 2002 Marco Jez
|
|
|
|
|
2005-04-29 17:47:57 +08:00
|
|
|
#ifndef OSGPARTICLE_SHOOTER
|
|
|
|
#define OSGPARTICLE_SHOOTER 1
|
2002-06-05 20:44:55 +08:00
|
|
|
|
|
|
|
#include <osg/CopyOp>
|
|
|
|
#include <osg/Object>
|
|
|
|
|
|
|
|
namespace osgParticle
|
|
|
|
{
|
|
|
|
|
|
|
|
class Particle;
|
|
|
|
|
2012-03-22 01:36:20 +08:00
|
|
|
/** An abstract base class used by ModularEmitter to "shoot" the particles after they have been placed.
|
2002-06-05 20:44:55 +08:00
|
|
|
Descendants of this class must override the <CODE>shoot()</CODE> method.
|
|
|
|
*/
|
2005-04-29 17:47:57 +08:00
|
|
|
class Shooter: public osg::Object
|
|
|
|
{
|
2002-06-05 20:44:55 +08:00
|
|
|
public:
|
|
|
|
inline Shooter();
|
2005-04-29 17:47:57 +08:00
|
|
|
inline Shooter(const Shooter& copy, const osg::CopyOp& copyop = osg::CopyOp::SHALLOW_COPY);
|
2002-06-05 20:44:55 +08:00
|
|
|
|
2005-04-29 17:47:57 +08:00
|
|
|
virtual const char* libraryName() const { return "osgParticle"; }
|
|
|
|
virtual const char* className() const { return "Shooter"; }
|
|
|
|
virtual bool isSameKindAs(const osg::Object* obj) const { return dynamic_cast<const Shooter *>(obj) != 0; }
|
2002-06-05 20:44:55 +08:00
|
|
|
|
2017-08-16 00:23:49 +08:00
|
|
|
/** Shoot a particle. Must be overridden by descendants.
|
2002-06-05 20:44:55 +08:00
|
|
|
This method should only set the velocity vector of particle <CODE>P</CODE>, leaving other
|
|
|
|
attributes unchanged.
|
|
|
|
*/
|
2005-04-29 17:47:57 +08:00
|
|
|
virtual void shoot(Particle* P) const = 0;
|
2002-06-05 20:44:55 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ~Shooter() {}
|
|
|
|
Shooter &operator=(const Shooter &) { return *this; }
|
|
|
|
};
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2002-06-05 20:44:55 +08:00
|
|
|
// INLINE FUNCTIONS
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2002-06-05 20:44:55 +08:00
|
|
|
inline Shooter::Shooter()
|
|
|
|
: osg::Object()
|
|
|
|
{
|
|
|
|
}
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2005-04-29 17:47:57 +08:00
|
|
|
inline Shooter::Shooter(const Shooter& copy, const osg::CopyOp& copyop)
|
2002-06-05 20:44:55 +08:00
|
|
|
: osg::Object(copy, copyop)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|