2008-11-22 20:14:19 +08:00
|
|
|
/* -*-c++-*-
|
2009-11-13 21:39:21 +08:00
|
|
|
* Copyright (C) 2008 Cedric Pinson <cedric.pinson@plopbyte.net>
|
2008-11-22 20:14:19 +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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2009-11-13 21:39:21 +08:00
|
|
|
#ifndef OSGANIMATION_SKELETON
|
|
|
|
#define OSGANIMATION_SKELETON 1
|
2008-11-22 20:14:19 +08:00
|
|
|
|
|
|
|
#include <osgAnimation/Export>
|
2010-01-27 20:24:55 +08:00
|
|
|
#include <osg/MatrixTransform>
|
2008-11-22 20:14:19 +08:00
|
|
|
|
|
|
|
namespace osgAnimation
|
|
|
|
{
|
|
|
|
|
2010-01-27 20:24:55 +08:00
|
|
|
class OSGANIMATION_EXPORT Skeleton : public osg::MatrixTransform
|
2008-11-22 20:14:19 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
META_Node(osgAnimation, Skeleton);
|
|
|
|
|
2009-08-28 00:21:01 +08:00
|
|
|
class OSGANIMATION_EXPORT UpdateSkeleton : public osg::NodeCallback
|
2008-11-22 20:14:19 +08:00
|
|
|
{
|
2009-08-28 00:21:01 +08:00
|
|
|
public:
|
2008-12-17 04:29:00 +08:00
|
|
|
META_Object(osgAnimation, UpdateSkeleton);
|
2009-11-13 21:39:21 +08:00
|
|
|
UpdateSkeleton();
|
|
|
|
UpdateSkeleton(const UpdateSkeleton&, const osg::CopyOp&);
|
2008-11-22 20:14:19 +08:00
|
|
|
virtual void operator()(osg::Node* node, osg::NodeVisitor* nv);
|
2009-11-13 21:39:21 +08:00
|
|
|
bool needToValidate() const;
|
2009-08-28 00:21:01 +08:00
|
|
|
protected:
|
|
|
|
bool _needValidate;
|
2008-11-22 20:14:19 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
Skeleton();
|
2009-11-13 21:39:21 +08:00
|
|
|
Skeleton(const Skeleton&, const osg::CopyOp&);
|
|
|
|
void setDefaultUpdateCallback();
|
2010-01-27 20:24:55 +08:00
|
|
|
|
2008-11-22 20:14:19 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|