hkpExtendedMeshShape.inl
上传用户: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. int hkpExtendedMeshShape::getNumTrianglesSubparts() const
  9. {
  10. return m_numTrianglesSubparts;
  11. }
  12. int hkpExtendedMeshShape::getNumShapesSubparts() const
  13. {
  14. return m_numShapesSubparts;
  15. }
  16. hkpExtendedMeshShape::TrianglesSubpart& hkpExtendedMeshShape::getTrianglesSubpartAt( int i )
  17. {
  18. HK_ASSERT2(0x3031b232,  i < getNumTrianglesSubparts(), "You are trying to access a triangles-subpart which is not in the triangle subpart array");
  19. return m_trianglesSubparts[i];
  20. }
  21. const hkpExtendedMeshShape::TrianglesSubpart& hkpExtendedMeshShape::getTrianglesSubpartAt( int i ) const
  22. {
  23. HK_ASSERT2(0x2bb0d984,  i < getNumTrianglesSubparts(), "You are trying to access a triangles-subpart which is not in the triangle subpart array");
  24. return m_trianglesSubparts[i];
  25. }
  26. hkpExtendedMeshShape::ShapesSubpart& hkpExtendedMeshShape::getShapesSubpartAt( int i )
  27. {
  28. HK_ASSERT2(0x30312232,  i < getNumShapesSubparts(), "You are trying to access a shapes-subpart which is not in the shape subpart array");
  29. return m_shapesSubparts[i];
  30. }
  31. const hkpExtendedMeshShape::ShapesSubpart& hkpExtendedMeshShape::getShapesSubpartAt( int i ) const
  32. {
  33. HK_ASSERT2(0x2bb05984,  i < getNumShapesSubparts(), "You are trying to access a shapes-subpart which is not in the shape subpart array");
  34. return m_shapesSubparts[i];
  35. }
  36. hkInt32 hkpExtendedMeshShape::getSubPartIndex( hkpShapeKey key ) const
  37. {
  38. const hkUint32 subpartIndex = (key & 0x7fffffff) >> ( 32 - m_numBitsForSubpartIndex );
  39. return subpartIndex;
  40. }
  41. hkpExtendedMeshShape::SubpartType hkpExtendedMeshShape::getSubpartType( hkpShapeKey key ) const
  42. {
  43. if ( !((key) & 0x80000000) )
  44. {
  45. return SUBPART_TRIANGLES;
  46. }
  47. else
  48. {
  49. return SUBPART_SHAPE;
  50. }
  51. }
  52. const hkpExtendedMeshShape::Subpart& hkpExtendedMeshShape::getSubPart( hkpShapeKey key ) const
  53. {
  54. hkUint32 subpartIndex = getSubPartIndex(key);
  55. if ( getSubpartType(key) == SUBPART_TRIANGLES )
  56. {
  57. return m_trianglesSubparts[ subpartIndex ];
  58. }
  59. else
  60. {
  61. return m_shapesSubparts[ subpartIndex ];
  62. }
  63. }
  64. HK_FORCE_INLINE hkInt32 hkpExtendedMeshShape::getSubpartShapeKeyBase( int subpartIndex ) const
  65. {
  66. if ( subpartIndex < m_numTrianglesSubparts )
  67. {
  68. return subpartIndex << ( 32 - m_numBitsForSubpartIndex );
  69. }
  70. int h = subpartIndex - m_numTrianglesSubparts;
  71. h =  h << ( 32 - m_numBitsForSubpartIndex );
  72. h |= 1<<31;
  73. return h;
  74. }
  75. hkInt32 hkpExtendedMeshShape::getTerminalIndexInSubPart( hkpShapeKey key ) const
  76. {
  77. hkInt32 terminalIndex = key & ( ~0U >> m_numBitsForSubpartIndex );
  78. return terminalIndex;
  79. }
  80. hkInt32 hkpExtendedMeshShape::getNumBitsForSubpartIndex() const
  81. {
  82. return m_numBitsForSubpartIndex;
  83. }
  84. hkReal hkpExtendedMeshShape::getRadius() const
  85. {
  86. return m_triangleRadius;
  87. }
  88. void hkpExtendedMeshShape::setRadius(hkReal r )
  89. {
  90. m_triangleRadius = r;
  91. }
  92. HK_FORCE_INLINE const hkVector4& hkpExtendedMeshShape::getScaling() const
  93. {
  94. return m_scaling;
  95. }
  96. HK_FORCE_INLINE hkpExtendedMeshShape::Subpart::Subpart(SubpartType type)
  97. {
  98. m_type = type;
  99. // materials (default is fine)
  100. //m_materialIndexStridingType = MATERIAL_INDICES_INVALID;
  101. m_materialIndexStridingType = MATERIAL_INDICES_INT8;
  102. m_materialIndexStriding = 0;
  103. m_materialStriding = 0;
  104. m_numMaterials = 1;
  105. m_materialBase = HK_NULL;
  106. m_materialIndexBase = HK_NULL;
  107. m_materialClass = HK_NULL;
  108. }
  109. HK_FORCE_INLINE hkpExtendedMeshShape::TrianglesSubpart::TrianglesSubpart(): Subpart( SUBPART_TRIANGLES )
  110. {
  111. m_flipAlternateTriangles = 0;
  112. m_extrusion.setZero4();
  113. m_userData = 0;
  114. // 'must set' values, defaults are error flags effectively for HK_ASSERTS in the cpp.
  115. #ifdef HK_DEBUG
  116. m_vertexBase = HK_NULL;
  117. m_vertexStriding = -1;
  118. m_numVertices = -1;
  119. m_indexBase = HK_NULL;
  120. m_stridingType = INDICES_INVALID;
  121. m_indexStriding = -1;
  122. m_numTriangleShapes = -1;
  123. m_triangleOffset = -1;
  124. #endif
  125. }
  126. /*
  127. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  128. * Confidential Information of Havok.  (C) Copyright 1999-2009
  129. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  130. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  131. * rights, and intellectual property rights in the Havok software remain in
  132. * Havok and/or its suppliers.
  133. * Use of this software for evaluation purposes is subject to and indicates
  134. * acceptance of the End User licence Agreement for this product. A copy of
  135. * the license is included with this software and is also available at www.havok.com/tryhavok.
  136. */