hkpMalleableConstraintData.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_MALLEABLE_CONSTRAINT_H
  9. #define HK_MALLEABLE_CONSTRAINT_H
  10. #include <Physics/Dynamics/Constraint/hkpConstraintData.h>
  11. #include <Physics/ConstraintSolver/Constraint/Atom/hkpConstraintAtom.h>
  12. #include <Physics/Dynamics/World/hkpWorld.h>
  13. extern const hkClass hkpMalleableConstraintDataClass;
  14. /// This is a wrapper class around constraints intended to allow
  15. /// the user to make a constraint softer.
  16. /// Important: This malleable constraint does not affect the angular limit
  17. /// and angular motor components of a constraint.
  18. class hkpMalleableConstraintData : public hkpConstraintData
  19. {
  20. public:
  21. HK_DECLARE_REFLECTION();
  22. /// The constraint to be 'softened' should be passed in - its ref count will be incremented.
  23. ///
  24. /// The malleable constraint essentially wraps another constraint.  A reference 
  25. /// is added to the constraint passed in (and removed upon destruction).
  26. /// NOTE: Instead of adding the original constraint to the world, you should 
  27. /// add this malleable constraint. Do not add both constraints.
  28. hkpMalleableConstraintData(hkpConstraintData* constraintData);
  29. /// The reference to the original constraint is removed.
  30. ~hkpMalleableConstraintData();
  31. /// Set the strength of the contained constraint.
  32. /// The value should be in the range 0 (disabled) to 1 (full strength).
  33. void setStrength(const hkReal s);
  34. /// Get the strength value for this constraint
  35.         hkReal getStrength() const;
  36. /// Checks consistency of constraint members
  37. virtual hkBool isValid() const;
  38. // hkpConstraintData interface implementation
  39. virtual int getType() const;
  40. // hkpConstraintData interface implementation
  41. virtual void getConstraintInfo( hkpConstraintData::ConstraintInfo& infoOut ) const;
  42. /// Gets the wrapped constraint
  43. hkpConstraintData* getWrappedConstraintData();
  44. /// Gets the wrapped constraint
  45. const hkpConstraintData* getWrappedConstraintData() const;
  46. protected:
  47. /// The wrapped constraint (referenced, so protected)
  48. hkpConstraintData* m_constraintData;
  49. public:
  50. struct hkpBridgeAtoms m_atoms;
  51. hkReal m_strength;
  52. // Internal functions
  53. virtual void buildJacobian( const hkpConstraintQueryIn &in, hkpConstraintQueryOut &out );
  54. // hkpConstraintData interface implementation
  55. virtual void getRuntimeInfo( hkBool wantRuntime, hkpConstraintData::RuntimeInfo& infoOut ) const;
  56. public:
  57. hkpMalleableConstraintData(hkFinishLoadedObjectFlag f);
  58. };
  59. #endif 
  60. /*
  61. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  62. * Confidential Information of Havok.  (C) Copyright 1999-2009
  63. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  64. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  65. * rights, and intellectual property rights in the Havok software remain in
  66. * Havok and/or its suppliers.
  67. * Use of this software for evaluation purposes is subject to and indicates
  68. * acceptance of the End User licence Agreement for this product. A copy of
  69. * the license is included with this software and is also available at www.havok.com/tryhavok.
  70. */