cocos2d的armature绑定到其他armature骨骼上的bug

前端之家收集整理的这篇文章主要介绍了cocos2d的armature绑定到其他armature骨骼上的bug前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. cocos2dx中,rmature的骨骼上可以绑定另外的armature,在我的项目中使用了该功能来完成骑乘功能,但是在使用过程发现了如下的bug,特写在这里做一下记录。</span>

首先说说cocos2dx的代码。在cocos2dx的骨骼的update函数中有如下代码用于骨骼的矩阵更新。

  1. if (_boneTransformDirty)
  2. {
  3. if (_dataVersion >= VERSION_COMBINED)
  4. {
  5. TransformHelp::nodeConcat(*_tweenData,*_boneData);
  6. _tweenData->scaleX -= 1;
  7. _tweenData->scaleY -= 1;
  8. }
  9. <span style="white-space:pre"> </span>//(1)
  10. _worldInfo->copy(_tweenData);
  11.  
  12. _worldInfo->x = _tweenData->x + _position.x;
  13. _worldInfo->y = _tweenData->y + _position.y;
  14. _worldInfo->scaleX = _tweenData->scaleX * _scaleX;
  15. _worldInfo->scaleY = _tweenData->scaleY * _scaleY;
  16. _worldInfo->skewX = _tweenData->skewX + _skewX + CC_DEGREES_TO_RADIANS(_rotationZ_X);
  17. _worldInfo->skewY = _tweenData->skewY + _skewY - CC_DEGREES_TO_RADIANS(_rotationZ_Y);
  18. <span style="white-space:pre"> </span>//(2)
  19. if(_parentBone)
  20. {
  21. applyParentTransform(_parentBone);
  22. }
  23. else
  24. {
  25. if (_armatureParentBone) //(3)
  26. {
  27. applyParentTransform(_armatureParentBone);
  28. }
  29. }
  30. <span style="white-space:pre"> </span>//(4)
  31. TransformHelp::nodeToMatrix(*_worldInfo,_worldTransform);
  32. <span style="white-space:pre"> </span>//(5)
  33. if (_armatureParentBone)
  34. {
  35. _worldTransform = TransformConcat(_worldTransform,_armature->getNodeToParentTransform());
  36. }
  37. }

在上面的代码中,

1、程序首先计算了bone本身的变换信息,

2、然后在第二步,如果骨骼有父骨骼,则乘以父骨骼的变换信息。如果没有父骨骼但是该骨骼所在的armature有父骨骼(即armayure被作为了其他armature的bone的display,这时就先乘以armature的父骨骼的变换信息。

3、第四步将worldinfo转换为矩阵。

4、第五步计算再将bone所在的armature的变换信息应用于变换矩阵上,得到最终的骨骼的矩阵信息。

问题就出在上面代码标号为3的地方,我们都知道矩阵变换是不满足交换定律的(当然少数情况除外)。但是骨骼矩阵之间的关系应该如下:

parentArmature-------armatureParentBone------------armature------------bone

或者是armature-----------。。。。------parentBone-----bone 中间省略一些parentBone。

因此在上面的代码中,如果不包含armatureParentBone,那么矩阵变换关系是bone * parentBone *...*parentBone,结果正确,即没有armature作为bone的render。

但是如果有armature作为bone的render,那么关系是bone*armatureParentBone*armature,那么在矩阵变换的顺序上就出现了问题。因此我将代码做了一些修改如下:


  1. //if it is a armature display render node,apply transform to armature.
  2. BaseData worldInfo;
  3. if (!_parentBone && _armatureParentBone)
  4. { //bone * armature
  5. TransformHelp::nodeToMatrix(*_worldInfo,_worldTransform);
  6. _worldTransform = TransformConcat( _armature->getNodeToParentTransform(),_worldTransform);
  7. TransformHelp::matrixToNode(_worldTransform,worldInfo);
  8. } else {
  9. worldInfo = *_worldInfo;
  10. }
  11.  
  12. BaseData cache = *_worldInfo;
  13. *_worldInfo = worldInfo;
  14. //apply to parent bone.
  15. if(_parentBone) //bone * parentbone
  16. {
  17. applyParentTransform(_parentBone);
  18. } else { // * armatureParentBone
  19. if (_armatureParentBone)
  20. {
  21. applyParentTransform(_armatureParentBone);
  22. }
  23. }
  24. TransformHelp::nodeToMatrix(*_worldInfo,_worldTransform);

上面的代码中,如果bone没有parentBone并且有armatureParentBone,则先乘以armature的矩阵。

如果没有 则直接乘以parentBone的变换。

最后如果有armatureparentBone,还的乘以parenBone的变换。

猜你在找的Cocos2d-x相关文章