hkpCollideTriangleUtil.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_COLLIDE_TRIANGLEUTIL_H
  9. #define HK_COLLIDE2_COLLIDE_TRIANGLEUTIL_H
  10. /// Triangle utilities, including ray intersection, normal calculation, and point-in-triangle tests. 
  11. /// These methods are used internally by the engine. You should use the hkpShape, and hkpCollisionAgent interfaces instead
  12. class hkpCollideTriangleUtil
  13. {
  14. public:
  15. /// calculate the barycentric coordinates of a point projected onto a triangle.
  16. /// Note: result 0 and 2 are always sign correct, result 1 is calculated as 1.0f - p0 - p2, this function is not epsilon safe.
  17. static void HK_CALL calcBarycentricCoordinates(hkVector4Parameter pos, hkVector4Parameter t0, hkVector4Parameter t1, hkVector4Parameter t2, hkPadSpu<hkReal> result[3]);
  18. //
  19. // POINT TRIANGLE 
  20. //
  21. /// Fast way to repeatedly get the closest point between a triangle and a vertex
  22. struct ClosestPointTriangleCache
  23. {
  24. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_CDINFO, hkpCollideTriangleUtil::ClosestPointTriangleCache );
  25. hkReal m_QQ;
  26. hkReal m_RR;
  27. hkReal m_QR;
  28. hkReal m_invTriNormal;
  29. };
  30. struct ClosestPointTriangleResult
  31. {
  32. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_CDINFO, hkpCollideTriangleUtil::ClosestPointTriangleResult );
  33. hkVector4 hitDirection;
  34. hkPadSpu<hkReal> distance;
  35. void calcClosestPoint( hkVector4Parameter point, hkVector4& closestPoint )
  36. {
  37. closestPoint.setAddMul4( point, hitDirection, distance.val() );
  38. }
  39. };
  40. static void HK_CALL setupClosestPointTriangleCache( const hkVector4* triangle, ClosestPointTriangleCache& cache );
  41. enum ClosestPointTriangleStatus
  42. {
  43. HIT_TRIANGLE_FACE = 0,
  44. HIT_TRIANGLE_EDGE
  45. };
  46. static ClosestPointTriangleStatus HK_CALL closestPointTriangle( hkVector4Parameter position, const hkVector4* tri, const ClosestPointTriangleCache& cache, ClosestPointTriangleResult& result );
  47. //
  48. // for fast triangle distance calculation
  49. //
  50. struct PointTriangleDistanceCache
  51. {
  52. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_CDINFO, hkpCollideTriangleUtil::PointTriangleDistanceCache );
  53. hkReal m_invEdgeLen[3];
  54. hkReal m_invNormalLen;
  55. hkReal m_normalLen;
  56. };
  57. static void HK_CALL setupPointTriangleDistanceCache( const hkVector4* triangle, PointTriangleDistanceCache& cache );
  58. /// Calculate the distances to the triangle planes (edge0 = x ... edge2 = z, dist to triangle = w
  59. static void HK_CALL calcTrianglePlaneDirections( const hkVector4* tri, const PointTriangleDistanceCache& cache, hkTransform& planeEquationsOut, hkVector4& normalOut );
  60. //
  61. // MASKS
  62. //
  63. /// returns the index of the bit set if passed in a compare mask or a index-8 of the only bit not set, works only on XYZ
  64. /// returns -1 for invalid input
  65. static const hkInt8 maskToIndex[];
  66. static const hkInt8 vertexToEdgeLut[];
  67. static inline int HK_CALL getNextModulo3( int i ) { return vertexToEdgeLut[i+2]; }
  68. static inline int HK_CALL getPrevModulo3( int i ) { return vertexToEdgeLut[i]; }
  69. protected:
  70. hkpCollideTriangleUtil();
  71. };
  72. //#include <hkinternal/collide/util/hkpCollideTriangleUtil.inl>
  73. #endif // HK_GEOMETRY2_TRIANGLEUTIL_H
  74. /*
  75. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  76. * Confidential Information of Havok.  (C) Copyright 1999-2009
  77. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  78. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  79. * rights, and intellectual property rights in the Havok software remain in
  80. * Havok and/or its suppliers.
  81. * Use of this software for evaluation purposes is subject to and indicates
  82. * acceptance of the End User licence Agreement for this product. A copy of
  83. * the license is included with this software and is also available at www.havok.com/tryhavok.
  84. */