hkpGskManifold.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_COLLIDE2_GSK_MANIFOLD_H
  9. #define HK_COLLIDE2_GSK_MANIFOLD_H
  10. #include <Common/Base/Types/Physics/ContactPoint/hkContactPoint.h>
  11. /// This is class to hold a feature based manifold.
  12. /// Note: the class only occupies it's first getTotalSizeInBytes.
  13. /// 
  14. struct hkpGskManifold
  15. {
  16. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_MANIFOLD, hkpGskManifold );
  17. //
  18. // public structures 
  19. //
  20. struct ContactPoint
  21. {
  22. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_MANIFOLD, hkpGskManifold::ContactPoint );
  23. hkUchar m_dimA;
  24. hkUchar m_dimB;
  25. hkContactPointId m_id;
  26. union
  27. {
  28. hkUchar m_vert[4]; // these are the vertex indices pointing into the shared vertex array * sizeof(hkVector4)
  29. hkUint32 m_allVerts;
  30. };
  31. void zeroVerts(){ m_allVerts = 0; }
  32. };
  33. typedef hkUint16 VertexId;
  34. enum { MAX_POINTS = 4 };
  35. enum { MAX_VERTICES = MAX_POINTS * 4  };
  36. HK_FORCE_INLINE VertexId getVertexId( const ContactPoint& cp, int vertNr ) const;
  37. HK_FORCE_INLINE void init();
  38. HK_FORCE_INLINE hkpGskManifold();
  39. HK_FORCE_INLINE int getTotalSizeInBytes() const;
  40. HK_FORCE_INLINE VertexId* getVertexIds();
  41. HK_FORCE_INLINE const VertexId* getVertexIds() const;
  42. //
  43. // Members
  44. //
  45. /// Total number of vertices used of object A for all contact points
  46. hkUchar  m_numVertsA;
  47. hkUchar  m_numVertsB;
  48. hkUchar  m_numContactPoints;
  49. ContactPoint m_contactPoints[ MAX_POINTS ];
  50. // followed the the array of vertexIds
  51. // add padding so at least we can fit MAX_POINTS and MAX_VERTICES in this structure
  52. hkUchar m_padding[ MAX_VERTICES * sizeof(VertexId) ];
  53. };
  54. void hkpGskManifold::init()
  55. {
  56. *((hkUint32*)this) = 0; 
  57. }
  58. hkpGskManifold::hkpGskManifold()
  59. init(); 
  60. }
  61. int hkpGskManifold::getTotalSizeInBytes() const
  62. {
  63. return 4 //  m_numVertsA + m_numVertsB + m_numContactPoints // header
  64. + m_numContactPoints           * hkSizeOf(ContactPoint) // contact points
  65. + (m_numVertsA + m_numVertsB ) * hkSizeOf(VertexId); // vertices
  66. }
  67. hkpGskManifold::VertexId* hkpGskManifold::getVertexIds()
  68. {
  69. // return (VertexId*)( &m_contactPoints[m_numContactPoints] );
  70. return reinterpret_cast<VertexId*>( reinterpret_cast<char*>(&m_contactPoints) + m_numContactPoints*sizeof(ContactPoint) );
  71. }
  72. const hkpGskManifold::VertexId* hkpGskManifold::getVertexIds() const
  73. {
  74. // return (const VertexId*)( &m_contactPoints[m_numContactPoints] );
  75. return reinterpret_cast<const VertexId*>( reinterpret_cast<const char*>(&m_contactPoints) + m_numContactPoints*sizeof(ContactPoint) );
  76. }
  77. hkUint16 hkpGskManifold::getVertexId( const ContactPoint& cp, int vertNr ) const
  78. {
  79. return *hkAddByteOffsetConst(getVertexIds(), (hkUint8)(cp.m_vert[vertNr] >> 3) ); // sizeof(VertexId)/sizeof(hkVector4)
  80. }
  81. #endif //HK_COLLIDE2_GSK_MANIFOLD_H
  82. /*
  83. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  84. * Confidential Information of Havok.  (C) Copyright 1999-2009
  85. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  86. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  87. * rights, and intellectual property rights in the Havok software remain in
  88. * Havok and/or its suppliers.
  89. * Use of this software for evaluation purposes is subject to and indicates
  90. * acceptance of the End User licence Agreement for this product. A copy of
  91. * the license is included with this software and is also available at www.havok.com/tryhavok.
  92. */