hkPackfileHeader.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 HKSERIALIZE_SERIALIZE_BINARY_HKPACKFILEHEADER_XML_H
  9. #define HKSERIALIZE_SERIALIZE_BINARY_HKPACKFILEHEADER_XML_H
  10. /// hkPackfileHeader meta information
  11. extern const class hkClass hkPackfileHeaderClass;
  12. /// The header of a binary packfile.
  13. class hkPackfileHeader
  14. {
  15. public:
  16. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_SERIALIZE, hkPackfileHeader);
  17. HK_DECLARE_REFLECTION();
  18. /// Default constructor
  19. hkPackfileHeader()
  20. {
  21. hkString::memSet(this, -1, sizeof(*this));
  22. m_magic[0] = 0x57e0e057; // both endian agnostic (byte symmetric)
  23. m_magic[1] = 0x10c0c010;
  24. m_contentsVersion[0] = 0;
  25. }
  26. public:
  27. /// Magic file identifier. See constructor for values.
  28. hkInt32 m_magic[2];
  29. /// This is a user settable tag.
  30. hkInt32 m_userTag;
  31. /// Binary file version. Currently 6.
  32. hkInt32 m_fileVersion;
  33. /// The structure layout rules used by this file.
  34. hkUint8 m_layoutRules[4];
  35. /// Number of packfilesections following this header.
  36. hkInt32 m_numSections;
  37. /// Where the content's data structure is (section and offset within that section).
  38. hkInt32 m_contentsSectionIndex;
  39. hkInt32 m_contentsSectionOffset;
  40. /// Where the content's class name is (section and offset within that section).
  41. hkInt32 m_contentsClassNameSectionIndex;
  42. hkInt32 m_contentsClassNameSectionOffset;
  43. /// Future expansion
  44. char m_contentsVersion[16];
  45. ///
  46. hkInt32 m_pad[2];
  47. };
  48. #endif // HKSERIALIZE_SERIALIZE_BINARY_HKPACKFILEHEADER_XML_H
  49. /*
  50. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  51. * Confidential Information of Havok.  (C) Copyright 1999-2009
  52. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  53. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  54. * rights, and intellectual property rights in the Havok software remain in
  55. * Havok and/or its suppliers.
  56. * Use of this software for evaluation purposes is subject to and indicates
  57. * acceptance of the End User licence Agreement for this product. A copy of
  58. * the license is included with this software and is also available at www.havok.com/tryhavok.
  59. */