hkpBreakableConstraintData.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. //
  9. // breakable constraint methods 
  10. //
  11. inline void hkpBreakableConstraintData::setThreshold(hkReal thresh)
  12. {
  13. m_solverResultLimit = thresh;
  14. }
  15. inline hkReal hkpBreakableConstraintData::getThreshold() const
  16. {
  17. return m_solverResultLimit;
  18. }
  19. inline void hkpBreakableConstraintData::setRemoveWhenBroken(hkBool tf)
  20. {
  21. m_removeWhenBroken = tf;
  22. }
  23. inline hkBool hkpBreakableConstraintData::getRemoveWhenBroken() const
  24. {
  25. return m_removeWhenBroken;
  26. }
  27. inline void hkpBreakableConstraintData::setRevertBackVelocityOnBreak( hkBool b )
  28. {
  29. m_revertBackVelocityOnBreak = b;
  30. }
  31. inline hkBool hkpBreakableConstraintData::getRevertBackVelocityOnBreak() const
  32. {
  33. return m_revertBackVelocityOnBreak;
  34. }
  35. inline hkpBreakableConstraintData::Runtime* hkpBreakableConstraintData::getRuntime( hkpConstraintRuntime* runtime )
  36. {
  37. return reinterpret_cast<Runtime*>( hkAddByteOffset(runtime, m_childRuntimeSize)); 
  38. }
  39. inline hkBool hkpBreakableConstraintData::getIsBroken(const hkpConstraintInstance* instance)
  40. {
  41. HK_ASSERT2(0x34322884, instance != HK_NULL, "Null instance pointer passed to getIsBroken");
  42. Runtime* runtime = getRuntime( instance->getRuntime() );
  43. HK_ASSERT2(0x34322883, runtime != HK_NULL, "Runtime must be non-null. This constraint may not be added to the world.");
  44. return runtime->m_isBroken;
  45. }
  46. inline hkpConstraintData* hkpBreakableConstraintData::getWrappedConstraintData()
  47. {
  48. return m_constraintData;
  49. }
  50. inline const hkpConstraintData* hkpBreakableConstraintData::getWrappedConstraintData() const
  51. {
  52. return m_constraintData;
  53. }
  54. /*
  55. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  56. * Confidential Information of Havok.  (C) Copyright 1999-2009
  57. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  58. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  59. * rights, and intellectual property rights in the Havok software remain in
  60. * Havok and/or its suppliers.
  61. * Use of this software for evaluation purposes is subject to and indicates
  62. * acceptance of the End User licence Agreement for this product. A copy of
  63. * the license is included with this software and is also available at www.havok.com/tryhavok.
  64. */