hkObjectSerialize.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 HK_VISUALIZE_OBJECT_SERIALIZE_H
  9. #define HK_VISUALIZE_OBJECT_SERIALIZE_H
  10. #include <Common/Serialize/Util/hkStructureLayout.h>
  11. class hkStreamReader;
  12. class hkStreamWriter;
  13. /// A utility class that can serialize in and out classes
  14. /// from a stream, and store the created 
  15. class hkObjectSerialize 
  16. {
  17. public:
  18. struct LocalFixup
  19. {
  20. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_UTILITIES, hkObjectSerialize::LocalFixup );
  21. int fromOffset;
  22. int toOffset;
  23. };
  24. struct GlobalFixup
  25. {
  26. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_UTILITIES, hkObjectSerialize::GlobalFixup );
  27. int fromOffset;
  28. hkUint64 toID; 
  29. hkUint64 toClassID;
  30. };
  31. public:
  32. /// Will stream the object to the writer, in the form
  33. /// Retrurns the total number of bytes written (-1 for error)
  34. /// Write object does not add to the held mappings in anyway, 
  35. /// and is a static utility class. DataID is the ptr value on
  36. /// the server side usually.
  37. /// If you want to inspect or store the global fixups that where sent 
  38. /// (ie: items (both classes and objects) that are querieable 
  39. /// by the client you have writen to). When a VDB requests an object by
  40. /// ID the only place it can meaningfully come from is a data ptr that 
  41. /// has been sent in this global fixup list.
  42. static int HK_CALL writeObject( hkStreamWriter* s, const hkStructureLayout& destLayout, hkUint64 dataID, const void* data, const hkClass& klass, hkArray<GlobalFixup>& globalFixups );
  43. /// It assumes the form is the same as writeObject produces.
  44. /// It will allocate and return a 64bit id for the data
  45. /// which is the same as the ptr on the server platform
  46. /// Returns the id of the object read in.
  47. /// 0 is not a valid id, and is returned on error.
  48. /// klassID is set to the exact klassID of the data read in.
  49. static hkUint64 HK_CALL readObject( hkStreamReader* s, void*& data, hkUint32& dataSize, hkArray<GlobalFixup>& globalFixups, hkUint64& klassID );
  50. protected: // a static class / namespace
  51. hkObjectSerialize() {} 
  52. };
  53. #endif //  HK_VISUALIZE_OBJECT_SERIALIZE_H
  54. /*
  55. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  56. * Confidential Information of Havok.  (C) Copyright 1999-2009
  57. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  58. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  59. * rights, and intellectual property rights in the Havok software remain in
  60. * Havok and/or its suppliers.
  61. * Use of this software for evaluation purposes is subject to and indicates
  62. * acceptance of the End User licence Agreement for this product. A copy of
  63. * the license is included with this software and is also available at www.havok.com/tryhavok.
  64. */