9.3.2 osg骨骼动画osgAnimation::Bone类

#include <osgViewer/Viewer>
#include <osg/Node>
#include <osg/Geometry>
#include <osg/Geode>
#include <osg/Group>
#include <osg/AutoTransform>
#include <osg/ProxyNode>
#include <osgDB/ReadFile>
#include <osgDB/WriteFile>
#include <osgText/Text>
#include <osgUtil/Optimizer>
#include<osg/Camera>
#include<osgViewer/Viewer>
#include <osgManipulator/Dragger>
#include <osgManipulator/Selection>
#include <osgManipulator/Constraint>
#include <osgManipulator/TranslateAxisDragger>
#include <osgManipulator/CommandManager>
#include<osgFX/Scribe>
#include<osg/MatrixTransform>
#include<osgAnimation/Animation>
#include<osgAnimation/Bone>
#include<osgAnimation/Skeleton>
#include<osgAnimation/UpdateMatrixTransform>
#include<osgAnimation/BasicAnimationManager>
#include <iostream>
#include <thread>
#include <future>
#include <string>
#include<map>
#include<vector>
#include<list>
using std::vector;
using std::string;
using std::list;
using namespace std;

osgAnimation::Bone* createBone(const char* name, const osg::Vec3& trans)
{
	osg::ref_ptr<osgAnimation::Bone> bone = new osgAnimation::Bone;
	bone->setMatrixInSkeletonSpace(osg::Matrix::translate(trans));
	bone->setName(name);
	bone->setDefaultUpdateCallback();

	osg::ref_ptr<osg::Box> box = new osg::Box(trans*0.5, trans.length(), 0.2, 0.2);

	osg::Quat quat;
	quat.makeRotate(osg::Vec3(1.0, 0.0, 0.0), trans);
	box->setRotation(quat);

	osg::ref_ptr<osg::Geode>geode = new osg::Geode;
	geode->addDrawable(new osg::ShapeDrawable(box.get()));
	bone->addChild(geode.get());

	return bone.release();
}

osgAnimation::Channel* createChannel(const char* name, float rad)
{
	osg::ref_ptr<osgAnimation::QuatSphericalLinearChannel> channel = new osgAnimation::QuatSphericalLinearChannel;
	channel->setName("quaternion");
	channel->setTargetName(name);

	osgAnimation::QuatKeyframeContainer* ks = channel->getOrCreateSampler()->getOrCreateKeyframeContainer();
	ks->push_back(osgAnimation::QuatKeyframe(0.0, osg::Quat(0.0, osg::Y_AXIS)));
	ks->push_back(osgAnimation::QuatKeyframe(8.0, osg::Quat(rad, osg::Y_AXIS)));

	return channel.release();
}
int main()
{
	
	osgAnimation::Bone* bone0 = createBone("bone0", osg::Vec3(0.0, 0.0, 0.0));
	osgAnimation::Bone* bone1 = createBone("bone1", osg::Vec3(1.0, 0.0, 0.0));
	osgAnimation::Bone* bone2 = createBone("bone2", osg::Vec3(1.0, 0.0, 0.0));

	osg::ref_ptr < osgAnimation::Skeleton> skelroot = new osgAnimation::Skeleton;
	skelroot->setDefaultUpdateCallback();
	skelroot->addChild(bone0);
	bone0->addChild(bone1);
	bone1->addChild(bone2);

	osg::ref_ptr<osgAnimation::Animation>anim = new osgAnimation::Animation;
	anim->setPlayMode(osgAnimation::Animation::PPONG);
	anim->addChannel(createChannel("bone1", osg::PI_2));
	anim->addChannel(createChannel("bone2", osg::PI_2));

	osg::ref_ptr<osgAnimation::BasicAnimationManager> manager = new osgAnimation::BasicAnimationManager;
	manager->registerAnimation(anim.get());
	manager->playAnimation(anim.get());

	osg::ref_ptr<osg::Group> root = new osg::Group;
	root->addChild(skelroot.get());
	root->setUpdateCallback(manager.get());

	osgViewer::Viewer viewer;
	viewer.setSceneData(root.get());
	return viewer.run();
}

在osg 3.6.2版本下动画失败,会弹出如下提示:

Warning: a Bone was found after a non-Bone child within a Skeleton. Children of a Bone must be ordered with all child Bones first for correct update order.

原因是骨骼的孩子节点不能是非骨骼节点,即上面代码第53行插入box作为骨骼节点的孩子导致的,那不能插入box就看不见骨骼了啊。

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
本人主要从事图形图象工作,空闲之余接触了一些游戏编程,特写一些编程心得,本文 适合没有接触过人物动画编程的初学者,希望游戏制作的大虾们指点,交流。 在以前还有没接触人物动画编程的时候,觉得通过编程让人物动起来一定是一件很麻烦 的事情,尤其是初学者,大都会摸不着头脑,碰到诸如骨骼动画,似乎无从下手。但是 当你了解了它们的格式,就会发现其实真正的人物动画的制作并不是在编程阶段,而是在模 型构建阶段,程序员主要做工作的是掌握模型文件的格式,将存储在人物模型中的各种信息, 如顶点,面片,材质,骨骼或顶点运动的关键帧序列等信息读入内存然后用你熟悉的 SDK 绘制出来,再根据时间采用线性或者球形插值对动作序列的关键帧进行插值,不断变换顶点 坐标,从而得到了一系列连续的人物动画,听起来确实不难吧!当然你也可以在程序里自己 控制人物每一帧每一个关节的运动,我想做游戏的很少有人这么做吧。下面我向大家介绍一 下自己是如何编写人物动画程序的。本人从事的图形图象开发主要是基于 OpenGL 和 OSG 因此范例程序将采用 OpenGL 或 OSG。先声明一下,本人的语言表达能力很差,请大家多 多谅解指正。 考虑到没有接触过人物模型的朋友,我首先从人物模型的结构讲起,游戏人物编程主要 采用的人物模型格式有 Quake 里的md2,md3,Half Life 里的 mdl,Doom里的 md5,还有 典型的骨骼动画模型 ms3d…,至于3dmax 的模型,本人觉得太麻烦!在此我说两个有代表 性的 Md3,和 ms3d,其它的模型都大同小异,只要你了解了它们的格式,程序实现都不难。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值