hkXmlObjectWriter.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_SERIALIZE_XML_OBJECT_WRITER_H
  9. #define HK_SERIALIZE_XML_OBJECT_WRITER_H
  10. #include <Common/Serialize/Serialize/hkObjectWriter.h>
  11. #include <Common/Base/Container/PointerMap/hkPointerMap.h>
  12. class hkStreamWriter;
  13. class hkClass;
  14. /// Writes a single object to an XML stream.
  15. class hkXmlObjectWriter : public hkObjectWriter
  16. {
  17. public:
  18. /// Callback for naming pointers.
  19. struct NameFromAddress
  20. {
  21. virtual ~NameFromAddress() { }
  22. virtual int nameFromAddress( const void* addr, char* buf, int bufSize ) = 0;
  23. };
  24. /// Numbers each pointer sequentially from 1.
  25. struct SequentialNameFromAddress : public NameFromAddress
  26. {
  27. virtual int nameFromAddress( const void* addr, char* buf, int bufSize );
  28. hkPointerMap<const void*, int> m_map;
  29. };
  30. /// Create an xml object writer.
  31. /// The nameFromAddress object must remain valid for the lifetime
  32. /// of this writer.
  33. hkXmlObjectWriter(NameFromAddress& nameFromAddress);
  34. /// Opens a new element with optional attributes.
  35. /// "attributes" is a optional null-terminated array of attribute name value pairs.
  36. /// The indentation is increased by one.
  37. /// Optionally write a newline before the tag if prefixNewline is true.
  38. void beginElement(hkStreamWriter* writer, const char* name, const char*const* attributes=HK_NULL, hkBool prefixNewline=true);
  39. /// End an element. Optionally write a newline before the tag if prefixNewline is true.
  40. void endElement(hkStreamWriter* writer, const char* name, hkBool prefixNewline=true);
  41. /// Convenience wrapper for beginElement, writeObject, endElement.
  42. /// "attributes" is a optional null-terminated array of attribute name value pairs.
  43. virtual hkResult writeObjectWithElement(hkStreamWriter* writer, const void* data, const hkClass& klass, const char* name, const char*const* attributes=HK_NULL);
  44. /// Save object data, using class information klass.
  45. /// Note that this writer does not supply relocations, since
  46. /// these must be computed at load time on the host.
  47. virtual hkResult writeObject(hkStreamWriter* writer, const void* data, const hkClass& klass, hkRelocationInfo& reloc);
  48. /// Write a raw binary chunk.
  49. virtual hkResult writeRaw(hkStreamWriter* writer, const void* buf, int len );
  50. /// Change the indentation level by delta tabstops.
  51. void adjustIndent( int delta );
  52. /// Forwards to m_nameFromAddress.
  53. int nameFromAddress( const void* addr, char* buf, int bufSize ) { return m_nameFromAddress.nameFromAddress(addr,buf,bufSize); }
  54. public:
  55. static hkResult HK_CALL base64write( hkStreamWriter* w, const void* buf, int len );
  56. private:
  57. hkInplaceArray<char,16> m_indent;
  58. NameFromAddress& m_nameFromAddress;
  59. };
  60. #endif //HK_SERIALIZE_XML_OBJECT_WRITER_H
  61. /*
  62. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  63. * Confidential Information of Havok.  (C) Copyright 1999-2009
  64. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  65. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  66. * rights, and intellectual property rights in the Havok software remain in
  67. * Havok and/or its suppliers.
  68. * Use of this software for evaluation purposes is subject to and indicates
  69. * acceptance of the End User licence Agreement for this product. A copy of
  70. * the license is included with this software and is also available at www.havok.com/tryhavok.
  71. */