hkpStorageExtendedMeshShape.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:4k
源码类别:
其他游戏
开发平台:
Visual C++
- /*
- *
- * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
- * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
- * 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.
- *
- */
- #ifndef HK_STORAGEEXTENDEDMESHSHAPE_H
- #define HK_STORAGEEXTENDEDMESHSHAPE_H
- #include <Physics/Collide/Shape/Compound/Collection/ExtendedMeshShape/hkpExtendedMeshShape.h>
- #include <Physics/Collide/Shape/Compound/Collection/Mesh/hkpMeshMaterial.h>
- extern const hkClass hkpStorageExtendedMeshShapeClass;
- extern const hkClass hkpStorageExtendedMeshShapeMeshSubpartStorageClass;
- extern const hkClass hkpStorageExtendedMeshShapeShapeSubpartStorageClass;
- /// An extended mesh shape which stores its data.
- /// NOTE: it is very error prone to modify the subparts of an
- /// hkpStorageExtendedMeshShape directly because the subpart pointers need to
- /// be updated if the storage is resized.
- /// This class is primarily used internally, for taking snapshots of a world containing hkExtendedMeshShapes.
- /// All hkExtendedMeshShapes are converted into hkpStorageExtendedMeshShape for serialization.
- class hkpStorageExtendedMeshShape : public hkpExtendedMeshShape
- {
- public:
- HK_DECLARE_REFLECTION();
- /// Default constructor.
- /// The data for this shape is public, so simply fill in the
- /// member data after construction.
- hkpStorageExtendedMeshShape( hkReal radius = hkConvexShapeDefaultRadius, int numBitsForSubpartIndex = 12 );
- /// Copy the mesh into this mesh.
- hkpStorageExtendedMeshShape( const hkpExtendedMeshShape* mesh );
- ///
- ~hkpStorageExtendedMeshShape();
- /// Add the part and copy its data internally.
- /// NOTE: it is not recommended to modify a subpart after it
- /// has been added.
- /// NOTE: materials are not copied.
- virtual void addTrianglesSubpart( const TrianglesSubpart& part );
- virtual int addShapesSubpart( const ShapesSubpart& part );
- public:
- hkpStorageExtendedMeshShape( hkFinishLoadedObjectFlag flag );
- struct Material : public hkpMeshMaterial
- {
- HK_DECLARE_REFLECTION();
- HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_CDINFO, Material);
- class hkHalf m_restitution;
- class hkHalf m_friction;
- hkUlong m_userData;
- };
- struct MeshSubpartStorage : public hkReferencedObject
- {
- public:
- // +version(2)
- HK_DECLARE_REFLECTION();
- HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_SHAPE);
- MeshSubpartStorage() {}
- virtual ~MeshSubpartStorage() {}
- hkArray<hkVector4> m_vertices;
- hkArray<hkUint8> m_indices8;
- hkArray<hkUint16> m_indices16;
- hkArray<hkUint32> m_indices32;
- hkArray<hkUint8> m_materialIndices; //materialIndices8
- hkArray<struct Material> m_materials;
- hkArray<hkUint16> m_materialIndices16;
- public:
- MeshSubpartStorage( hkFinishLoadedObjectFlag flag );
- };
- struct ShapeSubpartStorage : public hkReferencedObject
- {
- public:
- // +version(1)
- HK_DECLARE_REFLECTION();
- HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_SHAPE);
- ShapeSubpartStorage() {}
- virtual ~ShapeSubpartStorage() {}
- hkArray<const hkpConvexShape*> m_shapes;
- hkArray<hkUint8> m_materialIndices; //materialIndices8
- hkArray<struct Material> m_materials;
- hkArray<hkUint16> m_materialIndices16;
- public:
- ShapeSubpartStorage( hkFinishLoadedObjectFlag flag );
- };
- protected:
- hkArray<struct MeshSubpartStorage*> m_meshstorage;
- hkArray<struct ShapeSubpartStorage*> m_shapestorage;
- };
- #endif //HK_STORAGEEXTENDEDMESHSHAPE_H
- /*
- * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
- *
- * Confidential Information of Havok. (C) Copyright 1999-2009
- * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
- * Logo, and the Havok buzzsaw logo are trademarks of Havok. Title, ownership
- * rights, and intellectual property rights in the Havok software remain in
- * Havok and/or its suppliers.
- *
- * Use of this software for evaluation purposes is subject to and indicates
- * acceptance of the End User licence Agreement for this product. A copy of
- * the license is included with this software and is also available at www.havok.com/tryhavok.
- *
- */