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

其他游戏

开发平台:

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_MESH_TO_SCENE_DATA_CONVERTER_H
  9. #define HK_MESH_TO_SCENE_DATA_CONVERTER_H
  10. #include <Common/Base/Math/Util/hkMathUtil.h>
  11. #include <Common/GeometryUtilities/Mesh/hkMeshShape.h>
  12. #include <Common/GeometryUtilities/Mesh/hkMeshVertexBuffer.h>
  13. #include <Common/SceneData/Mesh/hkxVertexDescription.h>
  14. class hkxScene;
  15. class hkxNode;
  16. class hkxMeshSection;
  17. class hkxVertexBuffer;
  18. class hkxIndexBuffer;
  19. class hkxMesh;
  20. class hkMeshSystem;
  21. class hkMeshMaterial;
  22. /// A converter from the Havok hkMeshShape interface to hkx scene data format
  23. class hkMeshToSceneDataConverter
  24. {
  25.     public:
  26.        
  27.             /// Converts a hkMeshBody into a hkxNode 
  28.         static hkxNode* HK_CALL convert(const hkMeshBody* body);
  29. /// Converts a hkMeshShape into a hkxMesh
  30. static hkxMesh* HK_CALL convert(const hkMeshShape* shape);
  31.             /// Converts a hkVertexBufferto a hkxVertexBuffer
  32.         static hkxVertexBuffer* HK_CALL convertVertexBuffer( hkMeshVertexBuffer* buf );
  33. /// Converts the prim data in a hkMeshSection into a hkxIndexBuffer
  34. static hkxIndexBuffer* HK_CALL convertIndexBuffer(const hkMeshSection* section );
  35.             /// Convert usage value to hkVertexFormat usage type
  36.         static hkxVertexDescription::DataUsage HK_CALL convertUsage(hkVertexFormat::DataUsage usage);
  37. /// Convert a hkVertexFormat Element desc to hkxVertexDescription::Decl
  38.         static void HK_CALL convertToDecl(const hkVertexFormat::Element& elem, hkUint32 byteOffset, hkxVertexDescription::ElementDecl& decl );
  39. };
  40. #endif // HK_MESH_TO_SCENE_DATA_CONVERTER_H
  41. /*
  42. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  43. * Confidential Information of Havok.  (C) Copyright 1999-2009
  44. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  45. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  46. * rights, and intellectual property rights in the Havok software remain in
  47. * Havok and/or its suppliers.
  48. * Use of this software for evaluation purposes is subject to and indicates
  49. * acceptance of the End User licence Agreement for this product. A copy of
  50. * the license is included with this software and is also available at www.havok.com/tryhavok.
  51. */