hkpMoppCode.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_MOPP_CODE_H
  9. #define HK_COLLIDE2_MOPP_CODE_H
  10. typedef hkUint32 hkpPrimitiveProperty;
  11. extern const hkClass hkpMoppCodeClass;
  12. class hkStatisticsCollector;
  13. /// Defines the size of each mopp chunk (512 bytes)
  14. #define HK_MOPP_CHUNK_SIZE 512
  15. #define HK_MOPP_CHUNK_MASK (HK_MOPP_CHUNK_SIZE - 1)
  16. #define HK_MOPP_LOG_CHUNK_SIZE 9
  17. class hkpMoppChunk
  18. {
  19. public:
  20. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_MOPP, hkpMoppChunk );
  21. unsigned char data[HK_MOPP_CHUNK_SIZE];
  22. };
  23. /// Struct mapping old shape keys to new terminal ids
  24. struct hkpMoppCodeReindexedTerminal
  25. {
  26. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_MOPP, hkpMoppCodeReindexedTerminal );
  27. HK_DECLARE_REFLECTION();
  28. hkUint32 m_origShapeKey;
  29. hkUint32 m_reindexedShapeKey;
  30. };
  31. /// The MOPP code simulates a hierarchical bounding volume tree. Note that hkMoppCodes are reference counted.
  32. class hkpMoppCode : public hkReferencedObject
  33. {
  34. public:
  35. HK_DECLARE_CLASS_ALLOCATOR( HK_MEMORY_CLASS_MOPP );
  36. HK_DECLARE_REFLECTION();
  37. // range of property values
  38. enum
  39. {
  40. MIN_PROPERTY_VALUE = 0,
  41. MAX_PROPERTY_VALUE = 0xffffffff
  42. };
  43. // number of property values
  44. enum
  45. {
  46. MAX_PRIMITIVE_PROPERTIES = 1
  47. };
  48. enum BuildType
  49. {
  50. BUILT_WITH_CHUNK_SUBDIVISION,
  51. BUILT_WITHOUT_CHUNK_SUBDIVISION,
  52. };
  53. struct CodeInfo
  54. {
  55. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_MOPP, hkpMoppCode::CodeInfo );
  56. HK_DECLARE_REFLECTION();
  57. inline hkReal getScale() const;
  58. inline void setScale(hkReal inVal);
  59. hkVector4 m_offset;
  60. };
  61. public:
  62. /// Create empty mopp code.
  63. hkpMoppCode( ) { m_info.m_offset.setZero4(); }
  64. // Used for serialization.
  65. hkpMoppCode( hkFinishLoadedObjectFlag f ) : hkReferencedObject(f), m_data(f) { }
  66. /// Create from existing data. "moppData" is used inplace.
  67. inline hkpMoppCode( const CodeInfo& info, const hkUint8* moppData, int moppBytes );
  68. virtual ~hkpMoppCode() {} // so that the serialization knows it is virtual.
  69. inline hkInt32 getCodeSize() const;
  70. /// Create from existing data. "moppData" is used inplace.
  71. void initialize( const CodeInfo& info, const hkUint8* moppData, int moppBytes );
  72. public:
  73. struct CodeInfo m_info;
  74. hkArray<hkUint8> m_data;
  75. hkEnum<BuildType, hkInt8> m_buildType;
  76. };
  77. #include <Physics/Internal/Collide/Mopp/Code/hkpMoppCode.inl>
  78. #endif // HK_COLLIDE2_MOPP_CODE_H
  79. /*
  80. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  81. * Confidential Information of Havok.  (C) Copyright 1999-2009
  82. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  83. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  84. * rights, and intellectual property rights in the Havok software remain in
  85. * Havok and/or its suppliers.
  86. * Use of this software for evaluation purposes is subject to and indicates
  87. * acceptance of the End User licence Agreement for this product. A copy of
  88. * the license is included with this software and is also available at www.havok.com/tryhavok.
  89. */