hkpPointToPlaneConstraintData.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_DYNAMICS2_POINT_TO_PLANE_CONSTRAINT_H
  9. #define HK_DYNAMICS2_POINT_TO_PLANE_CONSTRAINT_H
  10. #include <Physics/ConstraintSolver/Solve/hkpSolverResults.h>
  11. #include <Physics/Dynamics/Constraint/hkpConstraintData.h>
  12. #include <Physics/ConstraintSolver/Constraint/Atom/hkpConstraintAtom.h>
  13. extern const hkClass hkpPointToPlaneConstraintDataClass;
  14. /// A stiff spring constraint. It holds the constrained bodies apart at a specified distance, 
  15. /// as if they were attached at each end of an invisible rod.
  16. class hkpPointToPlaneConstraintData : public hkpConstraintData
  17. {
  18. public:
  19. HK_DECLARE_REFLECTION();
  20. hkpPointToPlaneConstraintData();
  21. /// Sets the point-to-plane up with world space information.
  22. /// param pivotW Specifies both the origin point for the constraining plane, and bodyB's pivot point, specified in world space.
  23. /// param planeNormalW Specifies the normal direction of the constraining plane, specified in world space.
  24. void setInWorldSpace(const hkTransform& bodyATransform, const hkTransform& bodyBTransform, 
  25. const hkVector4& pivotW, const hkVector4& planeNormalW);
  26. /// Sets the point-to-plane up with body space information.
  27. /// param pivotA Specifies the origin point for the constraining plane, specified in bodyA's space.
  28. /// param pivotB BodyB's pivot point, specified in bodyB's space.
  29. /// param planeNormalB Specifies the normal direction of the constraining plane, specified in bodyB's space.
  30. void setInBodySpace( const hkVector4& pivotA, const hkVector4& pivotB, const hkVector4& planeNormalB);
  31. /// Check consistency of constraint
  32. hkBool isValid() const;
  33. /// Get type from this constraint
  34.   virtual int getType() const;
  35. public:
  36. enum 
  37. {
  38. SOLVER_RESULT_LIN_0 = 0, // linear constraint 
  39. SOLVER_RESULT_MAX = 1
  40. };
  41. struct Runtime
  42. {
  43. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_DYNAMICS, hkpPointToPlaneConstraintData::Runtime );
  44. class hkpSolverResults m_solverResults[1/*VC6 doesn't like the scoping for SOLVER_RESULT_MAX*/];
  45. };
  46. inline const Runtime* getRuntime( hkpConstraintRuntime* runtime ){ return reinterpret_cast<Runtime*>(runtime); }
  47. struct Atoms
  48. {
  49. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_DYNAMICS, hkpPointToPlaneConstraintData::Atoms );
  50. HK_DECLARE_REFLECTION();
  51. struct hkpSetLocalTransformsConstraintAtom m_transforms;
  52. struct hkpLinConstraintAtom m_lin;
  53. Atoms(){}
  54. // get a pointer to the first atom
  55. const hkpConstraintAtom* getAtoms() const { return &m_transforms; }
  56. // get the size of all atoms (we can't use sizeof(*this) because of align16 padding)
  57. int getSizeOfAllAtoms() const               { return hkGetByteOffsetInt(this, &m_lin+1); }
  58. Atoms(hkFinishLoadedObjectFlag f) : m_transforms(f), m_lin(f) {}
  59. };
  60. HK_ALIGN16( struct Atoms m_atoms );
  61. public:
  62. // Internal functions
  63. // hkpConstraintData interface implementations
  64. virtual void getConstraintInfo( ConstraintInfo& infoOut ) const ;
  65. // hkpConstraintData interface implementations
  66. virtual void getRuntimeInfo( hkBool wantRuntime, hkpConstraintData::RuntimeInfo& infoOut ) const;
  67. public:
  68. hkpPointToPlaneConstraintData(hkFinishLoadedObjectFlag f) : hkpConstraintData(f), m_atoms(f) {}
  69. };
  70. #endif // HK_DYNAMICS2_POINT_TO_PLANE_CONSTRAINT_H
  71. /*
  72. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  73. * Confidential Information of Havok.  (C) Copyright 1999-2009
  74. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  75. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  76. * rights, and intellectual property rights in the Havok software remain in
  77. * Havok and/or its suppliers.
  78. * Use of this software for evaluation purposes is subject to and indicates
  79. * acceptance of the End User licence Agreement for this product. A copy of
  80. * the license is included with this software and is also available at www.havok.com/tryhavok.
  81. */