hkpSimpleContactConstraintInfo.h
上传用户: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. #ifndef HK_CONSTRAINTSOLVER2_SIMPLE_CONTACT_CONSTRAINT_INFO_H
  9. #define HK_CONSTRAINTSOLVER2_SIMPLE_CONTACT_CONSTRAINT_INFO_H
  10. #include <Physics/ConstraintSolver/Solve/hkpSolverResults.h>
  11. HK_REFLECTION_CLASSFILE_DESTINATION("../../../Dynamics/Constraint/Contact");
  12. class hkpConstraintQueryIn;
  13. class hkpConstraintQueryOut;
  14. class hkContactPoint;
  15. class hkpContactPointProperties;
  16. struct hkpSimpleContactConstraintAtom; 
  17. class hkpSimpleContactConstraintDataInfo
  18. {
  19. public:
  20. HK_DECLARE_REFLECTION();
  21. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_CONSTRAINT_SOLVER, hkpSimpleContactConstraintDataInfo );
  22. enum { HK_FLAG_OK = 0x00, HK_FLAG_POINT_REMOVED = 0x01, HK_FLAG_AREA_CHANGED = 0x04 };
  23. void init()
  24. {
  25. m_flags = HK_FLAG_OK;
  26. m_index = 3;
  27. #if defined HK_ENABLE_ROLLING_FRICITON_CODE
  28. m_internalData1 = 0.0f;
  29. m_rollingFrictionMultiplier = 0.0f;
  30. for(int i = 0; i < 10; ++i)
  31. {
  32. m_data[i] = 0;
  33. }
  34. #else
  35. for(int i = 0; i < 7; ++i)
  36. {
  37. m_data[i] = 0;
  38. }
  39. #endif
  40. }
  41. hkpSimpleContactConstraintDataInfo() 
  42. {
  43. init();
  44. }
  45. HK_ALIGN16(hkUint16 m_flags);
  46. hkUint16 m_index;
  47. #if defined HK_ENABLE_ROLLING_FRICITON_CODE
  48. //  hkReal m_internalData1;
  49. //  hkReal m_rollingFrictionMultiplier;
  50. //  HK_ALIGN(hkUint32 m_data[10], 8);
  51. #else
  52. hkUint32 m_data[7];
  53. #endif
  54. hkpSimpleContactConstraintDataInfo(hkFinishLoadedObjectFlag f) {}
  55. };
  56. /// This parameter helps to tune penetration recovery of contacts. This is
  57. /// especially useful:
  58. ///   - For non standard sized worlds: set it to how quickly deep penetrating objects should separate 
  59. ///   - Or if you run the solver at a high number of iterations, you should set:
  60. ///         HK_CONTACT_LINEAR_ERROR_RECOVERY_VELOCITY = 10/solverIterations
  61. extern hkReal HK_CONTACT_LINEAR_ERROR_RECOVERY_VELOCITY;
  62. extern hkReal HK_CONTACT_EXPONENTIAL_ERROR_RECOVERY_VELOCITY;
  63. extern "C"
  64. {
  65. /// build the jacobians for a contact constraints, (Note: jitContactPoints are contact points which are externally created just in time
  66. void HK_CALL hkSimpleContactConstraintDataBuildJacobian( hkpSimpleContactConstraintAtom* atom, const hkpConstraintQueryIn& in, hkBool writeHeaderSchema, hkpConstraintQueryOut& out );
  67. void HK_CALL hkSimpleContactConstraintDataAddALittleSurfaceViscosity( hkpSimpleContactConstraintDataInfo* info );
  68. }
  69. #endif // HK_CONSTRAINTSOLVER2_SIMPLE_CONTACT_CONSTRAINT_INFO_H
  70. /*
  71. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  72. * Confidential Information of Havok.  (C) Copyright 1999-2009
  73. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  74. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  75. * rights, and intellectual property rights in the Havok software remain in
  76. * Havok and/or its suppliers.
  77. * Use of this software for evaluation purposes is subject to and indicates
  78. * acceptance of the End User licence Agreement for this product. A copy of
  79. * the license is included with this software and is also available at www.havok.com/tryhavok.
  80. */