hkpRotationalConstraintData.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_RELATIVE_ORIENTATION_CONSTRAINT_H
  9. #define HK_DYNAMICS2_RELATIVE_ORIENTATION_CONSTRAINT_H
  10. #include <Physics/Dynamics/Constraint/hkpConstraintData.h>
  11. #include <Physics/ConstraintSolver/Constraint/Atom/hkpConstraintAtom.h>
  12. extern const hkClass hkpRotationalConstraintDataClass;
  13. /// The ball-and-socket or point-to-point constraint.
  14. class hkpRotationalConstraintData : public hkpConstraintData
  15. {
  16. public:
  17. HK_DECLARE_REFLECTION();
  18. hkpRotationalConstraintData();
  19. /// Sets relative orientation that is to be enforced.
  20. void setInBodySpace(const hkQuaternion& aTb);
  21. /// Will preserve the initial relative orientation of the bodies.
  22. void setInWorldSpace(const hkQuaternion& bodyARotation, const hkQuaternion& bodyBRotation);
  23. /// Check consistency of constraint members.
  24. virtual hkBool isValid() const;
  25. /// Get type from this constraint.
  26. virtual int getType() const;
  27. public:
  28. //
  29. // Solver interface
  30. //
  31. enum 
  32. {
  33. SOLVER_RESULT_ANG_0 = 0, // linear constraint 
  34. SOLVER_RESULT_ANG_1 = 1, // linear constraint 
  35. SOLVER_RESULT_ANG_2 = 2, // linear constraint 
  36. SOLVER_RESULT_MAX = 3
  37. };
  38. struct Runtime
  39. {
  40. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_DYNAMICS, hkpRotationalConstraintData::Runtime );
  41. class hkpSolverResults m_solverResults[3/*VC6 doesn't like the scoping for SOLVER_RESULT_MAX*/];
  42. };
  43. inline const Runtime* getRuntime( hkpConstraintRuntime* runtime ){ return reinterpret_cast<Runtime*>(runtime); }
  44. public:
  45. struct Atoms
  46. {
  47. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_DYNAMICS, hkpRotationalConstraintData::Atoms );
  48. HK_DECLARE_REFLECTION();
  49. /// Desired orientation of the bodyB in the bodyA's space
  50. struct hkpSetLocalRotationsConstraintAtom m_rotations;
  51. struct hkpAngConstraintAtom m_ang;
  52. inline Atoms() {}
  53. // get a pointer to the first atom
  54. const hkpConstraintAtom* getAtoms() const { return &m_rotations; }
  55. // get the size of all atoms (we can't use sizeof(*this) because of align16 padding)
  56. int getSizeOfAllAtoms() const               { return hkGetByteOffsetInt(this, &m_ang+1); }
  57. Atoms(hkFinishLoadedObjectFlag f) : m_rotations(f), m_ang(f) {}
  58. };
  59. HK_ALIGN16( struct Atoms m_atoms );
  60. public:
  61. //
  62. // Internal functions.
  63. //
  64. virtual void getConstraintInfo( hkpConstraintData::ConstraintInfo& info ) const;
  65. virtual void getRuntimeInfo( hkBool wantRuntime, hkpConstraintData::RuntimeInfo& infoOut ) const;
  66. public:
  67. hkpRotationalConstraintData(hkFinishLoadedObjectFlag f) : hkpConstraintData(f), m_atoms(f) {}
  68. };
  69. #endif // HK_DYNAMICS2_RELATIVE_ORIENTATION_CONSTRAINT_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. */