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

其他游戏

开发平台:

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. //
  9. // Methods to set and get angle limits and friction
  10. //
  11. inline void hkpRagdollConstraintData::setTwistMinAngularLimit(hkReal rad)
  12. {
  13. m_atoms.m_twistLimit.m_minAngle = rad;
  14. }
  15. inline void hkpRagdollConstraintData::setTwistMaxAngularLimit(hkReal rad)
  16. {
  17. m_atoms.m_twistLimit.m_maxAngle = rad;
  18. }
  19. inline void hkpRagdollConstraintData::setPlaneMinAngularLimit(hkReal rad)
  20. {
  21. m_atoms.m_planesLimit.m_minAngle = rad;
  22. }
  23. inline void hkpRagdollConstraintData::setPlaneMaxAngularLimit(hkReal rad)
  24. {
  25. m_atoms.m_planesLimit.m_maxAngle = rad;
  26. }
  27. inline void hkpRagdollConstraintData::setConeAngularLimit(hkReal rad)
  28. {
  29. m_atoms.m_coneLimit.m_maxAngle = rad;
  30. }
  31. inline hkReal hkpRagdollConstraintData::getTwistMinAngularLimit() const
  32. {
  33. return m_atoms.m_twistLimit.m_minAngle;
  34. }
  35. inline hkReal hkpRagdollConstraintData::getTwistMaxAngularLimit() const
  36. {
  37. return m_atoms.m_twistLimit.m_maxAngle;
  38. }
  39. inline hkReal hkpRagdollConstraintData::getPlaneMinAngularLimit() const
  40. {
  41. return m_atoms.m_planesLimit.m_minAngle;
  42. }
  43. inline hkReal hkpRagdollConstraintData::getPlaneMaxAngularLimit() const
  44. {
  45. return m_atoms.m_planesLimit.m_maxAngle;
  46. }
  47. inline hkReal hkpRagdollConstraintData::getConeAngularLimit() const
  48. {
  49. return m_atoms.m_coneLimit.m_maxAngle;
  50. }
  51. inline hkBool hkpRagdollConstraintData::getConeLimitStabilization() const
  52. {
  53. return 0 != m_atoms.m_coneLimit.m_memOffsetToAngleOffset;
  54. }
  55. inline hkReal hkpRagdollConstraintData::getMaxFrictionTorque() const
  56. {
  57. return m_atoms.m_angFriction.m_maxFrictionTorque;
  58. }
  59. inline void hkpRagdollConstraintData::setAngularLimitsTauFactor( hkReal mag )
  60. {
  61. m_atoms.m_twistLimit.m_angularLimitsTauFactor  = mag;
  62. m_atoms.m_coneLimit.m_angularLimitsTauFactor   = mag;
  63. m_atoms.m_planesLimit.m_angularLimitsTauFactor = mag;
  64. }
  65. inline hkReal hkpRagdollConstraintData::getAngularLimitsTauFactor() const
  66. {
  67. if (m_atoms.m_twistLimit.m_angularLimitsTauFactor != m_atoms.m_coneLimit.m_angularLimitsTauFactor
  68.  || m_atoms.m_twistLimit.m_angularLimitsTauFactor != m_atoms.m_planesLimit.m_angularLimitsTauFactor)
  69. {
  70. HK_WARN(0xad6ddbbd, "TauFactor for varies for individual limits of a hkpRagdollConstraintData");
  71. }
  72. return m_atoms.m_twistLimit.m_angularLimitsTauFactor;
  73. }
  74. hkpRagdollConstraintData::hkpRagdollConstraintData(hkFinishLoadedObjectFlag f) : hkpConstraintData(f), m_atoms(f) 
  75. {
  76. if (f.m_finishing && getConeLimitStabilization())
  77. {
  78. // Ensure the offset is correct
  79. setConeLimitStabilization(true);
  80. }
  81. }
  82. /*
  83. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  84. * Confidential Information of Havok.  (C) Copyright 1999-2009
  85. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  86. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  87. * rights, and intellectual property rights in the Havok software remain in
  88. * Havok and/or its suppliers.
  89. * Use of this software for evaluation purposes is subject to and indicates
  90. * acceptance of the End User licence Agreement for this product. A copy of
  91. * the license is included with this software and is also available at www.havok.com/tryhavok.
  92. */