hkpConstraintProjector.h
上传用户: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. #ifndef HK_CONSTRAINT_PROJECTOR_H
  9. #define HK_CONSTRAINT_PROJECTOR_H
  10. /// This is an utility class that can be used to project constraints pivots and limits in order to correct large positional and angular errors.
  11. class hkpConstraintProjector
  12. {
  13. public:
  14. /// Projection presets
  15. enum Preset
  16. {
  17. HK_DEFAULT, ///
  18. HK_PROJECT_PIVOTS, ///
  19. HK_HIERARCHY, ///
  20. };
  21. /// Constraint sort type
  22. enum Sort
  23. {
  24. HK_SORT_NONE, ///
  25. HK_SORT_PER_ERROR, ///
  26. HK_SORT_PER_MASS, ///
  27. };
  28. public:
  29. Sort m_sortMode; ///
  30. int m_numPositionIterations;///
  31. int m_numVelocityIterations;///
  32. hkReal m_globalTau; ///
  33. hkReal m_finalTau; ///
  34. hkReal m_linearTau; ///
  35. hkReal m_angularTau; ///
  36. hkReal m_maxLinearError; ///
  37. hkReal m_maxAngularError; ///
  38. hkReal m_maxLinearVelocity; ///
  39. hkReal m_maxAngularVelocity; ///
  40. hkReal m_warmupT0; ///
  41. hkReal m_warmupT1; ///
  42. hkReal m_linearDamping; ///
  43. hkReal m_angularDamping; ///
  44. hkBool m_finalProject; ///
  45. hkBool m_projectOnly; ///
  46. public:
  47. /// The constructor initialize projection parameters with the given preset
  48. hkpConstraintProjector(Preset preset=HK_DEFAULT) { setPreset(preset); }
  49. public:
  50. /// Set the preset used for constraints projection
  51. /// Notes: Projection parameters can be manually tuned by directly settings their values.
  52. void setPreset(Preset preset);
  53. /// Project constraints by moving rigid bodies referenced by constraints.
  54. void project(const hkArray<hkpConstraintInstance*>& constraints,hkpRigidBody* root=HK_NULL,hkReal timestep=0) const;
  55. };
  56. #endif
  57. /*
  58. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  59. * Confidential Information of Havok.  (C) Copyright 1999-2009
  60. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  61. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  62. * rights, and intellectual property rights in the Havok software remain in
  63. * Havok and/or its suppliers.
  64. * Use of this software for evaluation purposes is subject to and indicates
  65. * acceptance of the End User licence Agreement for this product. A copy of
  66. * the license is included with this software and is also available at www.havok.com/tryhavok.
  67. */