hkDisplaySerializeIStream.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:2k
源码类别:

其他游戏

开发平台:

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_DISPLAY_SERIALIZE_I_STREAM_H
  9. #define HK_VISUALIZE_DISPLAY_SERIALIZE_I_STREAM_H
  10. #include <Common/Base/System/Io/IArchive/hkIArchive.h>
  11. #include <Common/Base/Types/Geometry/hkGeometry.h>
  12. // non primitive datatypes which are streamable
  13. class hkVector4;
  14. class hkRotation;
  15. class hkTransform;
  16. class hkTriangleIndices;
  17. class hkDisplayGeometry;
  18. /// This utility class extends the hkIArchive to provide a endian
  19. /// safe stream interface for deserializing all of the basic data 
  20. /// types associated with the visual debugger.
  21. class hkDisplaySerializeIStream : public hkIArchive
  22. {
  23. //+vtable(true)
  24. public:
  25. HK_DECLARE_CLASS_ALLOCATOR( HK_MEMORY_CLASS_UTILITIES );
  26. /// Create a hkDisplaySerializeIStream from a basic hkStreamWriter which
  27. /// must be readable.
  28. hkDisplaySerializeIStream(hkStreamReader* reader);
  29. /// Deserialize a hkVector4.
  30. void readQuadVector4(hkVector4& v);
  31. /// Deserialize a hkTransform.
  32. void readTransform(hkTransform& t);
  33. /// Deserialize a hkTriangleIndices.
  34. void readTriangle(hkGeometry::Triangle& ti);
  35. /// Deserialize a hkGeometry.
  36. void readGeometry(hkGeometry& g);
  37. /// Deserialize a hkDisplayGeometry.
  38. void readDisplayGeometry(hkDisplayGeometry*& dg);
  39. };
  40. #endif //  HK_VISUALIZE_DISPLAY_SERIALIZE_I_STREAM_H
  41. /*
  42. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  43. * Confidential Information of Havok.  (C) Copyright 1999-2009
  44. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  45. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  46. * rights, and intellectual property rights in the Havok software remain in
  47. * Havok and/or its suppliers.
  48. * Use of this software for evaluation purposes is subject to and indicates
  49. * acceptance of the End User licence Agreement for this product. A copy of
  50. * the license is included with this software and is also available at www.havok.com/tryhavok.
  51. */