2018-05-31 21:45:37 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2018 Robert Osfield
|
2009-04-27 19:02:18 +08:00
|
|
|
*
|
2018-05-31 21:45:37 +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
|
|
|
|
* (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
|
|
|
*
|
2018-05-31 21:45:37 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2009-04-27 19:02:18 +08:00
|
|
|
* 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
|
2018-05-31 21:45:37 +08:00
|
|
|
* OpenSceneGraph Public License for more details.
|
2009-04-27 19:02:18 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OSG_ANIMATIONMATERIAL
|
|
|
|
#define OSG_ANIMATIONMATERIAL 1
|
|
|
|
|
|
|
|
#include <osg/Material>
|
2014-06-06 00:26:13 +08:00
|
|
|
#include <osg/Callback>
|
2009-04-27 19:02:18 +08:00
|
|
|
|
2009-06-25 00:03:49 +08:00
|
|
|
#include <osgPresentation/Export>
|
|
|
|
|
2009-11-18 20:15:29 +08:00
|
|
|
#include <iosfwd>
|
2009-04-27 19:02:18 +08:00
|
|
|
#include <map>
|
|
|
|
#include <float.h>
|
|
|
|
|
2009-06-25 00:03:49 +08:00
|
|
|
namespace osgPresentation {
|
2009-04-27 19:02:18 +08:00
|
|
|
|
|
|
|
/** AnimationMaterial for specify the time varying transformation pathway to use when update camera and model objects.
|
|
|
|
* Subclassed from Transform::ComputeTransformCallback allows AnimationMaterial to
|
|
|
|
* be attached directly to Transform nodes to move subgraphs around the scene.
|
|
|
|
*/
|
2009-06-25 00:03:49 +08:00
|
|
|
class OSGPRESENTATION_EXPORT AnimationMaterial : public virtual osg::Object
|
2009-04-27 19:02:18 +08:00
|
|
|
{
|
|
|
|
public:
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
AnimationMaterial():_loopMode(LOOP) {}
|
|
|
|
|
|
|
|
AnimationMaterial(const AnimationMaterial& ap, const osg::CopyOp& copyop=osg::CopyOp::SHALLOW_COPY):
|
|
|
|
Object(ap,copyop),
|
|
|
|
_timeControlPointMap(ap._timeControlPointMap),
|
|
|
|
_loopMode(ap._loopMode) {}
|
|
|
|
|
|
|
|
META_Object(osg,AnimationMaterial);
|
|
|
|
|
|
|
|
|
2012-03-22 01:36:20 +08:00
|
|
|
/** get the transformation matrix for a point in time.*/
|
2009-04-27 19:02:18 +08:00
|
|
|
bool getMaterial(double time,osg::Material& material) const;
|
|
|
|
|
|
|
|
void insert(double time,osg::Material* material);
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
double getFirstTime() const { if (!_timeControlPointMap.empty()) return _timeControlPointMap.begin()->first; else return 0.0;}
|
|
|
|
double getLastTime() const { if (!_timeControlPointMap.empty()) return _timeControlPointMap.rbegin()->first; else return 0.0;}
|
|
|
|
double getPeriod() const { return getLastTime()-getFirstTime();}
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
enum LoopMode
|
|
|
|
{
|
|
|
|
SWING,
|
|
|
|
LOOP,
|
|
|
|
NO_LOOPING
|
|
|
|
};
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
void setLoopMode(LoopMode lm) { _loopMode = lm; }
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
LoopMode getLoopMode() const { return _loopMode; }
|
|
|
|
|
|
|
|
|
|
|
|
typedef std::map<double, osg::ref_ptr<osg::Material> > TimeControlPointMap;
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
TimeControlPointMap& getTimeControlPointMap() { return _timeControlPointMap; }
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
const TimeControlPointMap& getTimeControlPointMap() const { return _timeControlPointMap; }
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
/** read the anumation path from a flat ascii file stream.*/
|
|
|
|
void read(std::istream& in);
|
|
|
|
|
|
|
|
/** write the anumation path to a flat ascii file stream.*/
|
|
|
|
void write(std::ostream& out) const;
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
bool requiresBlending() const;
|
|
|
|
|
|
|
|
protected:
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
virtual ~AnimationMaterial() {}
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
void interpolate(osg::Material& material, float r, const osg::Material& lhs,const osg::Material& rhs) const;
|
|
|
|
|
|
|
|
TimeControlPointMap _timeControlPointMap;
|
|
|
|
LoopMode _loopMode;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-02-19 22:30:01 +08:00
|
|
|
class OSGPRESENTATION_EXPORT AnimationMaterialCallback : public osg::NodeCallback
|
2009-04-27 19:02:18 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
AnimationMaterialCallback():
|
2016-06-22 18:39:11 +08:00
|
|
|
_useInverseMatrix(false),
|
2009-04-27 19:02:18 +08:00
|
|
|
_timeOffset(0.0),
|
|
|
|
_timeMultiplier(1.0),
|
|
|
|
_firstTime(DBL_MAX),
|
|
|
|
_latestTime(0.0),
|
|
|
|
_pause(false),
|
|
|
|
_pauseTime(0.0) {}
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
|
|
|
|
AnimationMaterialCallback(const AnimationMaterialCallback& apc,const osg::CopyOp& copyop):
|
2016-08-29 16:41:40 +08:00
|
|
|
osg::Object(apc, copyop),
|
|
|
|
osg::Callback(apc, copyop),
|
2009-04-27 19:02:18 +08:00
|
|
|
osg::NodeCallback(apc,copyop),
|
|
|
|
_animationMaterial(apc._animationMaterial),
|
|
|
|
_useInverseMatrix(apc._useInverseMatrix),
|
|
|
|
_timeOffset(apc._timeOffset),
|
|
|
|
_timeMultiplier(apc._timeMultiplier),
|
|
|
|
_firstTime(apc._firstTime),
|
|
|
|
_latestTime(apc._latestTime),
|
|
|
|
_pause(apc._pause),
|
|
|
|
_pauseTime(apc._pauseTime) {}
|
|
|
|
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
META_Object(osg,AnimationMaterialCallback);
|
|
|
|
|
|
|
|
AnimationMaterialCallback(AnimationMaterial* ap,double timeOffset=0.0f,double timeMultiplier=1.0f):
|
|
|
|
_animationMaterial(ap),
|
|
|
|
_useInverseMatrix(false),
|
|
|
|
_timeOffset(timeOffset),
|
|
|
|
_timeMultiplier(timeMultiplier),
|
|
|
|
_firstTime(DBL_MAX),
|
|
|
|
_latestTime(0.0),
|
|
|
|
_pause(false),
|
|
|
|
_pauseTime(0.0) {}
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
void setAnimationMaterial(AnimationMaterial* path) { _animationMaterial = path; }
|
|
|
|
|
|
|
|
AnimationMaterial* getAnimationMaterial() { return _animationMaterial.get(); }
|
|
|
|
|
|
|
|
const AnimationMaterial* getAnimationMaterial() const { return _animationMaterial.get(); }
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
void setTimeOffset(double offset) { _timeOffset = offset; }
|
|
|
|
double getTimeOffset() const { return _timeOffset; }
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
void setTimeMultiplier(double multiplier) { _timeMultiplier = multiplier; }
|
|
|
|
double getTimeMultiplier() const { return _timeMultiplier; }
|
|
|
|
|
|
|
|
void reset();
|
|
|
|
|
|
|
|
void setPause(bool pause);
|
|
|
|
|
|
|
|
/** get the animation time that is used to specify the position along the AnimationMaterial.
|
|
|
|
* Animation time is computed from the formula ((_latestTime-_firstTime)-_timeOffset)*_timeMultiplier.*/
|
|
|
|
double getAnimationTime() const;
|
|
|
|
|
|
|
|
/** implements the callback*/
|
|
|
|
virtual void operator()(osg::Node* node, osg::NodeVisitor* nv);
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
void update(osg::Node& node);
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
osg::ref_ptr<AnimationMaterial> _animationMaterial;
|
|
|
|
bool _useInverseMatrix;
|
|
|
|
double _timeOffset;
|
|
|
|
double _timeMultiplier;
|
|
|
|
double _firstTime;
|
|
|
|
double _latestTime;
|
|
|
|
bool _pause;
|
|
|
|
double _pauseTime;
|
|
|
|
|
|
|
|
protected:
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-04-27 19:02:18 +08:00
|
|
|
~AnimationMaterialCallback(){}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|