hkaSimdSkinningDeformer.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:5k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * 
  3.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  4.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  5.  * Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2009 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.
  6.  * 
  7.  */
  8. #ifndef HKA_SIMD_SKINNING_DEFORMER_H
  9. #define HKA_SIMD_SKINNING_DEFORMER_H
  10. #include <Animation/Animation/Deform/Skinning/hkaSkinningDeformer.h>
  11. /// The derived reference counted class for a SIMD based implementation of weighted vertex deformation.
  12. /// Applies to both indexed and non indexed skinning.
  13. /// This deformer requires that the input buffers' deformable
  14. /// members (pos, normals) be aligned as a hkVector4 (16byte aligned as it is 128bit)
  15. /// and for faster operation make sure that the outputs are aligned as well.
  16. /// N.B. It is important to note that these deformers are here to be used by Havok's demos but are not production quality.
  17. /// It is assumed that deforming will be done most commonly by your graphics engine, usually in hardware on GPUs or VUs.
  18. /// That hardware deformation is usually performed at the same time as per vertex lighting operations, so Havok cannot
  19. /// provide optimized deformers for all such game specific usage.
  20. class hkaSimdSkinningDeformer : public hkReferencedObject, public hkaSkinningDeformer
  21. {
  22. public:
  23. /// Constructs an unbound deformer
  24. hkaSimdSkinningDeformer();
  25. /// Bind this deformer to input and output buffers.
  26. /// The input format is assumed to have (at least) vertex weights.
  27. /// The output buffer should be preallocated.
  28. /// Returns false if the deformer does not support the input or output buffer format.
  29. hkBool bind( const hkaVertexDeformerInput& input, const hkxVertexBuffer* inputBuffer,  hkxVertexBuffer* outputBuffer );
  30. /// Deform the input buffer into the output buffer using the array of matrices specified.
  31. /// The deformer must first be bound and the output buffer locked before deforming.
  32. virtual void deform(  const hkTransform* m_worldCompositeMatrices );
  33. struct hkaSimdBinding
  34. {
  35. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_ANIM_RUNTIME, hkaSimdSkinningDeformer::hkaSimdBinding );
  36. // Input buffer
  37. const hkVector4* m_iPosBase;
  38. const hkVector4* m_iNormBase;
  39. const hkVector4* m_iBinormBase;
  40. const hkVector4* m_iTangentBase;
  41. const hkUint8*   m_iWeightBase;
  42. const hkUint8*   m_iIndexBase;
  43. hkUint8 m_iPosVectorStride; // STRIDE IN VECTOR4s
  44. hkUint8 m_iNormVectorStride;
  45. hkUint8 m_iBinormVectorStride;
  46. hkUint8 m_iTangentVectorStride;
  47. hkUint8 m_iIndexByteStride; // STRIDE IN BYTES
  48. hkUint8 m_iWeightByteStride; // STRIDE IN BYTES
  49. hkUint8 m_bonesPerVertex;
  50. // Output buffer
  51. hkReal* m_oPosBase;
  52. hkReal* m_oNormBase;
  53. hkReal* m_oBinormBase;
  54. hkReal* m_oTangentBase;
  55. hkUint8 m_oPosFloatStride;
  56. hkUint8 m_oNormFloatStride;
  57. hkUint8 m_oBinormFloatStride;
  58. hkUint8 m_oTangentFloatStride;
  59. hkUint32 m_numVerts;
  60. hkBool m_outputAligned;
  61. };
  62. /// Will call either one of the aligned static funcs, depending on m_outputAligned in binding.
  63. static void HK_CALL deform( const hkTransform* m_worldCompositeMatrices, const hkaSimdBinding& binding  );
  64. /// Input and Output are both 16 byte aligned
  65. static void HK_CALL deformAligned( const hkTransform* m_worldCompositeMatrices, const hkaSimdBinding& binding  );
  66. /// Only Input is 16 byte aligned, requires internal loop copy to unaligned float output buffers so slower
  67. static void HK_CALL deformAlignedInput( const hkTransform* m_worldCompositeMatrices, const hkaSimdBinding& binding );
  68. protected:
  69. struct hkaSimdBinding m_binding;
  70. };
  71. #endif // HKA_SIMD_SKINNING_DEFORMER_H
  72. /*
  73. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  74. * Confidential Information of Havok.  (C) Copyright 1999-2009
  75. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  76. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  77. * rights, and intellectual property rights in the Havok software remain in
  78. * Havok and/or its suppliers.
  79. * Use of this software for evaluation purposes is subject to and indicates
  80. * acceptance of the End User licence Agreement for this product. A copy of
  81. * the license is included with this software and is also available at www.havok.com/tryhavok.
  82. */