hkPackfileSectionHeader.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 HKSERIALIZE_SERIALIZE_BINARY_HKPACKFILESECTIONHEADER_XML_H
  9. #define HKSERIALIZE_SERIALIZE_BINARY_HKPACKFILESECTIONHEADER_XML_H
  10. #include <Common/Serialize/Resource/hkResource.h>
  11. /// hkPackfileSectionHeader meta information
  12. extern const class hkClass hkPackfileSectionHeaderClass;
  13. /// Packfiles are composed of several sections.
  14. /// A section contains several areas
  15. /// | data | local | global | finish | exports | imports |
  16. /// data: the user usable data.
  17. /// local: pointer patches within this section (src,dst).
  18. /// global: pointer patches to locations within this packfile (src,(section,dst)).
  19. /// finish: offset and typename of all objects for finish functions (src, typename).
  20. /// exports: named objects (src,name).
  21. /// imports: named pointer patches outside this packfile (src,name).
  22. class hkPackfileSectionHeader
  23. {
  24. public:
  25. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_SERIALIZE, hkPackfileSectionHeader);
  26. HK_DECLARE_REFLECTION();
  27. /// Default constructor
  28. hkPackfileSectionHeader()
  29. {
  30. hkString::memSet(this,0,sizeof(this));
  31. }
  32. void* getStart( void* absoluteStart )
  33. {
  34. return hkAddByteOffset(absoluteStart, m_absoluteDataStart);
  35. }
  36. /// Size in bytes of data part
  37. int getDataSize() const
  38. {
  39. return m_localFixupsOffset;
  40. }
  41. /// Size in bytes of intra section pointer patches
  42. int getLocalSize() const
  43. {
  44. return m_globalFixupsOffset - m_localFixupsOffset;
  45. }
  46. /// Size in bytes of inter section pointer patches
  47. int getGlobalSize() const
  48. {
  49. return m_virtualFixupsOffset - m_globalFixupsOffset;
  50. }
  51. /// Size in bytes of finishing table.
  52. int getFinishSize() const
  53. {
  54. return m_exportsOffset - m_virtualFixupsOffset;
  55. }
  56. /// Size in bytes of exports table.
  57. int getExportsSize() const
  58. {
  59. return m_importsOffset - m_exportsOffset;
  60. }
  61. /// Size in bytes of imports table.
  62. int getImportsSize() const
  63. {
  64. return m_endOffset - m_importsOffset;
  65. }
  66. /// Extract exports from the given section.
  67. void getExports( void* sectionBegin, hkArray<hkResource::Export>& exports );
  68. /// Extract imports from the given section.
  69. void getImports( void* sectionBegin, hkArray<hkResource::Import>& imports );
  70. public:
  71. /// 
  72. char m_sectionTag[19];
  73. /// 
  74. char m_nullByte;
  75. /// Absolute file offset of where this sections data begins.
  76. hkInt32 m_absoluteDataStart;
  77. /// Offset of local fixups from absoluteDataStart.
  78. hkInt32 m_localFixupsOffset;
  79. /// Offset of global fixups from absoluteDataStart.
  80. hkInt32 m_globalFixupsOffset;
  81. /// Offset of virtual fixups from absoluteDataStart.
  82. hkInt32 m_virtualFixupsOffset;
  83. /// Offset of exports from absoluteDataStart.
  84. hkInt32 m_exportsOffset;
  85. /// Offset of imports from absoluteDataStart.
  86. hkInt32 m_importsOffset;
  87. /// Offset of the end of section. Also the section size.
  88. hkInt32 m_endOffset;
  89. };
  90. #endif // HKSERIALIZE_SERIALIZE_BINARY_HKPACKFILESECTIONHEADER_XML_H
  91. /*
  92. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  93. * Confidential Information of Havok.  (C) Copyright 1999-2009
  94. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  95. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  96. * rights, and intellectual property rights in the Havok software remain in
  97. * Havok and/or its suppliers.
  98. * Use of this software for evaluation purposes is subject to and indicates
  99. * acceptance of the End User licence Agreement for this product. A copy of
  100. * the license is included with this software and is also available at www.havok.com/tryhavok.
  101. */