hkObjectSerializeRegistry.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_REG_H
  9. #define HK_VISUALIZE_OBJECT_SERIALIZE_REG_H
  10. #include <Common/Base/Container/PointerMap/hkPointerMap.h>
  11. /// A utility class that can serialize in and out classes
  12. /// from a stream, and store the created 
  13. class hkObjectSerializeRegistry : public hkReferencedObject
  14. {
  15. public:
  16. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_VDB);
  17. hkObjectSerializeRegistry() {}
  18. /// dtor will destruct all owned data (will call clear())
  19. virtual ~hkObjectSerializeRegistry();
  20. /// Add an object to the map or refresh
  21. /// the old object data with this new data
  22. /// (would dealloc old data and replace in that case)
  23. /// Takes ownership of data. Assumes it was from hkAllocated<char> 
  24. void addObject( hkUint64 id, void* data, hkUint32 dataSize );
  25. /// Deallocate the storage used by the data and 
  26. /// remove from map.
  27. void deleteObject( hkUint64 id);
  28. /// Get the data that has been read in for object id.
  29. /// May return null, in which case you should request the data from 
  30. /// the host and get readObject to interpret it.
  31. void* getObjectData( hkUint64 id );
  32. hkUint32 getObjectSize( hkUint64 id );
  33. /// deallocate and clear records of all owned data
  34. void clear();
  35. /// reverse lookup 
  36. hkUint64 findObjectID( const void* data );
  37. protected:
  38. /// Not actually 64 bits stored as hkPointerMap uses ulong internally. XX Fixme.
  39. hkPointerMap< hkUint64, void* > m_idToObjectMap;
  40. hkPointerMap< hkUint64, hkUint32 > m_idToObjectSizeMap;
  41. };
  42. #endif //  HK_VISUALIZE_OBJECT_SERIALIZE_REG_H
  43. /*
  44. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  45. * Confidential Information of Havok.  (C) Copyright 1999-2009
  46. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  47. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  48. * rights, and intellectual property rights in the Havok software remain in
  49. * Havok and/or its suppliers.
  50. * Use of this software for evaluation purposes is subject to and indicates
  51. * acceptance of the End User licence Agreement for this product. A copy of
  52. * the license is included with this software and is also available at www.havok.com/tryhavok.
  53. */