hkpStorageExtendedMeshShape.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_STORAGEEXTENDEDMESHSHAPE_H
  9. #define HK_STORAGEEXTENDEDMESHSHAPE_H
  10. #include <Physics/Collide/Shape/Compound/Collection/ExtendedMeshShape/hkpExtendedMeshShape.h>
  11. #include <Physics/Collide/Shape/Compound/Collection/Mesh/hkpMeshMaterial.h>
  12. extern const hkClass hkpStorageExtendedMeshShapeClass;
  13. extern const hkClass hkpStorageExtendedMeshShapeMeshSubpartStorageClass;
  14. extern const hkClass hkpStorageExtendedMeshShapeShapeSubpartStorageClass;
  15. /// An extended mesh shape which stores its data.
  16. /// NOTE: it is very error prone to modify the subparts of an
  17. /// hkpStorageExtendedMeshShape directly because the subpart pointers need to
  18. /// be updated if the storage is resized.
  19. /// This class is primarily used internally, for taking snapshots of a world containing hkExtendedMeshShapes.
  20. /// All hkExtendedMeshShapes are converted into hkpStorageExtendedMeshShape for serialization.
  21. class hkpStorageExtendedMeshShape : public hkpExtendedMeshShape
  22. {
  23. public:
  24. HK_DECLARE_REFLECTION();
  25. /// Default constructor.
  26. /// The data for this shape is public, so simply fill in the
  27. /// member data after construction.
  28. hkpStorageExtendedMeshShape( hkReal radius = hkConvexShapeDefaultRadius, int numBitsForSubpartIndex = 12 );
  29. /// Copy the mesh into this mesh.
  30. hkpStorageExtendedMeshShape( const hkpExtendedMeshShape* mesh );
  31. ///
  32. ~hkpStorageExtendedMeshShape();
  33. /// Add the part and copy its data internally.
  34. /// NOTE: it is not recommended to modify a subpart after it
  35. /// has been added.
  36. /// NOTE: materials are not copied.
  37. virtual void addTrianglesSubpart( const TrianglesSubpart& part );
  38. virtual int addShapesSubpart( const ShapesSubpart& part );
  39. public:
  40. hkpStorageExtendedMeshShape( hkFinishLoadedObjectFlag flag );
  41. struct Material : public hkpMeshMaterial
  42. {
  43. HK_DECLARE_REFLECTION();
  44. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_CDINFO, Material);
  45. class hkHalf m_restitution;
  46. class hkHalf m_friction;
  47. hkUlong m_userData;
  48. };
  49. struct MeshSubpartStorage : public hkReferencedObject
  50. {
  51. public:
  52. // +version(2)
  53. HK_DECLARE_REFLECTION();
  54. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_SHAPE);
  55. MeshSubpartStorage() {}
  56. virtual ~MeshSubpartStorage() {}
  57. hkArray<hkVector4> m_vertices;
  58. hkArray<hkUint8> m_indices8;
  59. hkArray<hkUint16> m_indices16;
  60. hkArray<hkUint32> m_indices32;
  61. hkArray<hkUint8> m_materialIndices; //materialIndices8
  62. hkArray<struct Material> m_materials;
  63. hkArray<hkUint16> m_materialIndices16;
  64. public:
  65. MeshSubpartStorage( hkFinishLoadedObjectFlag flag );
  66. };
  67. struct ShapeSubpartStorage : public hkReferencedObject
  68. {
  69. public:
  70. // +version(1)
  71. HK_DECLARE_REFLECTION();
  72. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_SHAPE);
  73. ShapeSubpartStorage() {}
  74. virtual ~ShapeSubpartStorage() {}
  75. hkArray<const hkpConvexShape*> m_shapes;
  76. hkArray<hkUint8> m_materialIndices; //materialIndices8
  77. hkArray<struct Material> m_materials;
  78. hkArray<hkUint16> m_materialIndices16;
  79. public:
  80. ShapeSubpartStorage( hkFinishLoadedObjectFlag flag );
  81. };
  82. protected:
  83. hkArray<struct MeshSubpartStorage*> m_meshstorage;
  84. hkArray<struct ShapeSubpartStorage*> m_shapestorage;
  85. };
  86. #endif //HK_STORAGEEXTENDEDMESHSHAPE_H
  87. /*
  88. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  89. * Confidential Information of Havok.  (C) Copyright 1999-2009
  90. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  91. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  92. * rights, and intellectual property rights in the Havok software remain in
  93. * Havok and/or its suppliers.
  94. * Use of this software for evaluation purposes is subject to and indicates
  95. * acceptance of the End User licence Agreement for this product. A copy of
  96. * the license is included with this software and is also available at www.havok.com/tryhavok.
  97. */