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

其他游戏

开发平台:

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. int hkaRagdollInstance::getNumBones () const
  9. {
  10. return m_skeleton->m_numBones;
  11. }
  12. hkpRigidBody* hkaRagdollInstance::getRigidBodyOfBone (int i) const
  13. {
  14. const int rbIdx = m_boneToRigidBodyMap[i];
  15. return (rbIdx<0) ? HK_NULL : m_rigidBodies[rbIdx];
  16. }
  17. int hkaRagdollInstance::getBoneIndexOfRigidBody (hkpRigidBody* rb) const
  18. {
  19. int rbIndex = m_rigidBodies.indexOf( rb );
  20. if(rbIndex == -1)
  21. {
  22. return -1;
  23. }
  24. return m_boneToRigidBodyMap.indexOf( rbIndex );
  25. }
  26. hkpConstraintInstance* hkaRagdollInstance::getConstraintOfBone (int i) const
  27. {
  28. const int ctIdx = m_boneToRigidBodyMap[i]-1;
  29. return (ctIdx<0) ? HK_NULL : m_constraints[ctIdx];
  30. }
  31. int hkaRagdollInstance::getParentOfBone (int i) const
  32. {
  33. return (m_skeleton->m_parentIndices[i]);
  34. }
  35. const hkaSkeleton* hkaRagdollInstance::getSkeleton() const
  36. {
  37. return m_skeleton;
  38. }
  39. const hkArray<hkpRigidBody*>& hkaRagdollInstance::getRigidBodyArray() const
  40. {
  41. return m_rigidBodies;
  42. }
  43. const hkArray<hkpConstraintInstance*>& hkaRagdollInstance::getConstraintArray() const
  44. {
  45. return m_constraints;
  46. }
  47. hkBool hkaRagdollInstance::hasNonRigidBodyBones () const
  48. {
  49. return m_rigidBodies.getSize() != m_skeleton->m_numBones;
  50. }
  51. hkpWorld* hkaRagdollInstance::getWorld() const
  52. {
  53. hkpRigidBody* root = m_rigidBodies[0];
  54. if (root)
  55. {
  56. return root->getWorld();
  57. }
  58. else
  59. {
  60. return HK_NULL;
  61. }
  62. }
  63. /*
  64. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  65. * Confidential Information of Havok.  (C) Copyright 1999-2009
  66. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  67. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  68. * rights, and intellectual property rights in the Havok software remain in
  69. * Havok and/or its suppliers.
  70. * Use of this software for evaluation purposes is subject to and indicates
  71. * acceptance of the End User licence Agreement for this product. A copy of
  72. * the license is included with this software and is also available at www.havok.com/tryhavok.
  73. */