2012-03-22 01:36:20 +08:00
|
|
|
/* -*-c++-*-
|
2009-06-15 22:48:37 +08:00
|
|
|
* Copyright (C) 2008 Cedric Pinson <cedric.pinson@plopbyte.net>
|
2008-11-22 20:14:19 +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
|
2008-11-22 20:14:19 +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
|
|
|
*
|
2008-11-22 20:14:19 +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
|
2008-11-22 20:14:19 +08:00
|
|
|
* OpenSceneGraph Public License for more details.
|
2012-03-22 01:36:20 +08:00
|
|
|
*
|
2009-08-06 20:40:06 +08:00
|
|
|
* Authors:
|
|
|
|
* Cedric Pinson <cedric.pinson@plopbyte.net>
|
|
|
|
* Michael Platings <mplatings@pixelpower.com>
|
|
|
|
*/
|
2008-11-22 20:14:19 +08:00
|
|
|
|
2010-01-27 20:24:55 +08:00
|
|
|
#ifndef OSGANIMATION_BONE
|
|
|
|
#define OSGANIMATION_BONE 1
|
2008-11-22 20:14:19 +08:00
|
|
|
|
2010-01-27 20:24:55 +08:00
|
|
|
#include <osg/MatrixTransform>
|
2008-11-22 20:14:19 +08:00
|
|
|
#include <osgAnimation/Export>
|
|
|
|
|
2012-03-22 01:36:20 +08:00
|
|
|
namespace osgAnimation
|
2008-11-22 20:14:19 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
// A bone can't have more than one parent Bone, so sharing a part of Bone's hierarchy
|
2009-08-28 00:21:01 +08:00
|
|
|
// makes no sense. You can share the entire hierarchy but not only a part of it.
|
2010-01-27 20:24:55 +08:00
|
|
|
class OSGANIMATION_EXPORT Bone : public osg::MatrixTransform
|
2008-11-22 20:14:19 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef osg::Matrix MatrixType;
|
|
|
|
|
|
|
|
META_Node(osgAnimation, Bone);
|
2008-12-17 04:29:00 +08:00
|
|
|
Bone(const Bone& b, const osg::CopyOp& copyop= osg::CopyOp::SHALLOW_COPY);
|
|
|
|
Bone(const std::string& name = "");
|
2008-11-22 20:14:19 +08:00
|
|
|
|
2008-12-17 04:29:00 +08:00
|
|
|
void setDefaultUpdateCallback(const std::string& name = "");
|
2008-11-22 20:14:19 +08:00
|
|
|
|
|
|
|
Bone* getBoneParent();
|
|
|
|
const Bone* getBoneParent() const;
|
|
|
|
|
2010-01-27 20:24:55 +08:00
|
|
|
const osg::Matrix& getMatrixInBoneSpace() const { return getMatrix();}
|
2008-11-22 20:14:19 +08:00
|
|
|
const osg::Matrix& getMatrixInSkeletonSpace() const { return _boneInSkeletonSpace; }
|
|
|
|
const osg::Matrix& getInvBindMatrixInSkeletonSpace() const { return _invBindInSkeletonSpace;}
|
2009-01-22 03:02:54 +08:00
|
|
|
void setMatrixInSkeletonSpace(const osg::Matrix& matrix) { _boneInSkeletonSpace = matrix; }
|
2010-01-27 20:24:55 +08:00
|
|
|
void setInvBindMatrixInSkeletonSpace(const osg::Matrix& matrix) { _invBindInSkeletonSpace = matrix; }
|
2008-12-17 04:29:00 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
// bind data
|
|
|
|
osg::Matrix _invBindInSkeletonSpace;
|
|
|
|
|
|
|
|
// bone updated
|
|
|
|
osg::Matrix _boneInSkeletonSpace;
|
2008-11-22 20:14:19 +08:00
|
|
|
};
|
|
|
|
|
2010-01-27 20:24:55 +08:00
|
|
|
typedef std::map<std::string, osg::ref_ptr<Bone> > BoneMap;
|
2008-11-22 20:14:19 +08:00
|
|
|
}
|
|
|
|
#endif
|