hkpContactPointProperties.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:5k
源码类别:

其他游戏

开发平台:

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_CONTACT_POINT_PROPERTIES_H
  9. #define HK_CONSTRAINTSOLVER2_CONTACT_POINT_PROPERTIES_H
  10. #include <Common/Base/hkBase.h>
  11. #include <Physics/ConstraintSolver/Solve/hkpSolverResults.h>
  12. #include <Common/Base/Types/Physics/ContactPoint/hkContactPointMaterial.h>
  13. #define HK_NUM_EXTENDED_USER_DATAS_IN_TOI_EVENT 7
  14. struct hkpSimpleContactConstraintAtom; 
  15. /// This class is used to get and set the friction for a contact point. You can also use it to attach your own user data
  16. /// to a contact point.  This can be used for example to set a friction map value in when a contact point is added
  17. /// so that the same data can be used when the contact point is being updated (from a processContactCallback() for example)
  18. class hkpContactPointProperties : public hkpSolverResults, public hkContactPointMaterial
  19. {
  20. public:
  21. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_CONSTRAINT_SOLVER, hkpContactPointProperties );
  22. /// returns true if this contact point was really used by the solver
  23. /// and an impulse was applied
  24. inline hkBool wasUsed()
  25. {
  26. return !isPotential() && ( m_impulseApplied > 0.f );
  27. }
  28. public:
  29. // internal data, not for client use
  30. hkReal m_internalDataA;
  31. typedef hkUint32 UserData;
  32. static inline int getNumExtendedUserDatas(const hkpSimpleContactConstraintAtom* atom, int bodyIdx);
  33. inline hkpContactPointProperties::UserData& getExtendedUserData(const hkpSimpleContactConstraintAtom* atom, int bodyIdx, int i);
  34. };
  35. HK_CLASSALIGN16(class) hkContactPointPropertiesWithExtendedUserData16 : public hkpContactPointProperties
  36. {
  37. public:
  38. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_CONSTRAINT_SOLVER, hkContactPointPropertiesWithExtendedUserData16 );
  39. void set(const hkContactPointPropertiesWithExtendedUserData16& other)
  40. {
  41. # if defined(HK_PLATFORM_PS3_SPU) || defined(HK_PLATFORM_PS3_PPU)
  42. vec_int4* d = (vec_int4*)this;
  43. d[0] = ((const vec_int4*)&other)[0];
  44. d[1] = ((const vec_int4*)&other)[1];
  45. d[2] = ((const vec_int4*)&other)[2];
  46. # else
  47. *this = other;
  48. # endif 
  49. }
  50. hkpContactPointProperties::UserData m_extendedUserDatas[HK_NUM_EXTENDED_USER_DATAS_IN_TOI_EVENT];
  51. };
  52. class hkpContactPointPropertiesStream
  53. {
  54. public:
  55. HK_FORCE_INLINE hkpContactPointProperties* asProperties() { return reinterpret_cast<hkpContactPointProperties*>(this); }
  56. HK_FORCE_INLINE const hkpContactPointProperties* asProperties() const { return reinterpret_cast<const hkpContactPointProperties*>(this); }
  57. #if defined HK_DEBUG
  58. HK_FORCE_INLINE void operator[](int i) { HK_ASSERT2(0xad7655aa, false, "Array-element access operator not allowed. Offset the pointer by proper striding and then conver to (non-Ex) hkpContactPointProperties."); }
  59. #endif
  60. };
  61. // Only include that after the hkpContactPointProperties are defined
  62. #include <Physics/ConstraintSolver/Constraint/Atom/hkpConstraintAtom.h>
  63. inline int hkpContactPointProperties::getNumExtendedUserDatas(const hkpSimpleContactConstraintAtom* atom, int bodyIdx)
  64. {
  65. HK_ASSERT2(0xad7854aa, (&atom->m_numUserDatasForBodyA)+1 == (&atom->m_numUserDatasForBodyB), "Member variables incorrectly ordered.");
  66. return (&atom->m_numUserDatasForBodyA)[bodyIdx];
  67. }
  68. inline hkpContactPointProperties::UserData& hkpContactPointProperties::getExtendedUserData(const hkpSimpleContactConstraintAtom* atom, int bodyIdx, int i) 
  69. {
  70. // Assert this is the right atom.. This dosn't work for Toi's...
  71. // This assert is disabled for Toi's
  72. HK_ASSERT2(0xad765512, m_internalDataA == 321.0f || ((hkUlong)atom < (hkUlong)this && (hkUlong)this < (hkUlong)hkAddByteOffset((void*)atom, atom->m_sizeOfAllAtoms)), "The properties doesn't belong to that atom.");
  73. HK_ASSERT2(0xad8755aa, i < getNumExtendedUserDatas(atom, bodyIdx) && 0 <= bodyIdx && bodyIdx <= 1, "Index out of range.");
  74. return *(hkpContactPointProperties::UserData*)hkAddByteOffset((this+1), sizeof(hkpContactPointProperties::UserData) * (bodyIdx * getNumExtendedUserDatas(atom, 0) + i));
  75. }
  76. #endif // HK_CONSTRAINTSOLVER2_CONTACT_POINT_PROPERTIES_H
  77. /*
  78. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  79. * Confidential Information of Havok.  (C) Copyright 1999-2009
  80. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  81. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  82. * rights, and intellectual property rights in the Havok software remain in
  83. * Havok and/or its suppliers.
  84. * Use of this software for evaluation purposes is subject to and indicates
  85. * acceptance of the End User licence Agreement for this product. A copy of
  86. * the license is included with this software and is also available at www.havok.com/tryhavok.
  87. */