hkpMeshWeldingUtility.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_MESHWELDINGUTILITY_H
  9. #define HK_MESHWELDINGUTILITY_H
  10. #include <Common/Base/hkBase.h>
  11. #include <Common/Base/Algorithm/Sort/hkSort.h>
  12. class hkpBvTreeShape;
  13. class hkpTriangleShape;
  14. class hkpExtendedMeshShape;
  15. /// Utility functions for building runtime welding information for triangular meshes
  16. class hkpMeshWeldingUtility
  17. {
  18. public:
  19. /// specify consistency tests
  20. enum WindingConsistency
  21. {
  22. WINDING_IGNORE_CONSISTENCY, ///
  23. WINDING_TEST_CONSISTENCY, ///
  24. };
  25. struct ShapeInfo
  26. {
  27. hkTransform m_transform;
  28. const hkpBvTreeShape* m_shape;
  29. };
  30. static hkResult HK_CALL computeWeldingInfo( const hkTransform& meshTransform, hkpExtendedMeshShape* mesh, hkArray< ShapeInfo >& shapes, bool weldOpenEdges, WindingConsistency testConsistency );
  31. /// A function to generate welding information for a shape in a mesh. This welding should be
  32. /// stored by the mesh and set as the welding information in the triangle returned by getChildShape() with that shape key.
  33. static hkResult HK_CALL calcWeldingInfoForTriangle( hkpShapeKey shapeKey, const hkpBvTreeShape* bvTreeShape, WindingConsistency testConsistency, hkUint16& info );
  34. /// A function to check if winding is consistent between a triangle and its neighbors.
  35. static hkBool HK_CALL isTriangleWindingValid( hkpShapeKey shapeKey, const hkpBvTreeShape* bvTreeShape );
  36. public:
  37. // Helper for calcWeldingInfoForTriangle
  38. static hkResult HK_CALL calcBitcodeForTriangleEdge(const hkpBvTreeShape* bvTreeShape, const hkpTriangleShape* triangleShape, hkpShapeKey triangleShapeKey, int edgeIndex, WindingConsistency testConsistency, hkInt16& combinedBitcodesOut );
  39. // Helper to extract a single bitcode for a specific edge
  40. static int HK_CALL calcSingleEdgeBitcode(hkUint16 triangleEdgesBitcode, int edgeIndex );
  41. // Helper for calcWeldingInfoForTriangle
  42. static int HK_CALL createSingularVertexArray(const hkVector4 *vertices0, const hkVector4 *vertices1, int edgeIndex, hkVector4* vertexArrayOut, int orderedEdgeVerticesOnTriangle1[2]);
  43. // Helper for calcWeldingInfoForTriangle
  44. static hkUint16 HK_CALL modifyCombinedEdgesBitcode(hkUint16 combinedBitcode, int edgeIndex, int bitcode);
  45. // Helper for calcWeldingInfoForTriangle
  46. static int HK_CALL calcEdgeAngleBitcode(const hkVector4* vertices);
  47. // Helper for calcWeldingInfoForTriangle
  48. static int HK_CALL calcEdgeAngleBitcode(hkReal angle);
  49. // Helper for calcWeldingInfoForTriangle
  50. static void HK_CALL calcAntiClockwiseTriangleNormal(const hkVector4& vertex0, const hkVector4& vertex1, const hkVector4& vertex2, hkVector4& normal);
  51. // Helper for calcWeldingInfoForTriangle
  52. static hkReal HK_CALL calcAngleFromVertices(const hkVector4* vertices, hkReal& sinAngleOut, hkReal& cosAngleOut);
  53. // Helper for computeWeldingInfo 
  54. static hkReal HK_CALL calcAngleForEdge(hkVector4Parameter edgeNormal, hkVector4Parameter edgeOrtho, hkVector4Parameter triangleNormal);
  55. };
  56. #endif // HK_MESHWELDINGUTILITY_H
  57. /*
  58. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  59. * Confidential Information of Havok.  (C) Copyright 1999-2009
  60. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  61. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  62. * rights, and intellectual property rights in the Havok software remain in
  63. * Havok and/or its suppliers.
  64. * Use of this software for evaluation purposes is subject to and indicates
  65. * acceptance of the End User licence Agreement for this product. A copy of
  66. * the license is included with this software and is also available at www.havok.com/tryhavok.
  67. */