hkDisplaySerializeOStream.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_DISPLAY_SERIALIZE_O_STREAM_H
  9. #define HK_VISUALIZE_DISPLAY_SERIALIZE_O_STREAM_H
  10. #include <Common/Base/System/Io/OArchive/hkOArchive.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 hkOArchive to provide a endian
  19. /// safe stream interface for serializing all of the basic data 
  20. /// types associated with the visual debugger.
  21. class hkDisplaySerializeOStream : public hkOArchive
  22. {
  23. //+vtable(true)
  24. public:
  25. HK_DECLARE_CLASS_ALLOCATOR( HK_MEMORY_CLASS_UTILITIES );
  26. /// Create a hkDisplaySerializeOStream from a basic hkStreamWriter.
  27. hkDisplaySerializeOStream(hkStreamWriter* sw);
  28. /// Create a hkDisplaySerializeOStream which writes to the buffer 'buf'.
  29. hkDisplaySerializeOStream(hkArray<char>& buf);
  30. /// Serialize a hkVector4.
  31. void writeQuadVector4(const hkVector4& v);
  32. /// Serialize a hkTransform.
  33. void writeTransform(const hkTransform& t);
  34. /// Serialize a hkTriangleIndices.
  35. void writeTriangle(const hkGeometry::Triangle& ti);
  36. /// Serialize a hkGeometry.
  37. void writeGeometry(const hkGeometry& g);
  38. /// Serialize a hkDisplayGeometry.
  39. void writeDisplayGeometry(hkDisplayGeometry* dg);
  40. /// Before serializing an arbitrary display geom, compute the bytes it will take
  41. /// up so that we don't have to buffer it on the Server before making a packet out of it.
  42. static hkUint32 computeBytesRequired( const hkGeometry& g );
  43. static hkUint32 computeBytesRequired( hkDisplayGeometry* dg );
  44. };
  45. #endif //  HK_VISUALIZE_DISPLAY_SERIALIZE_O_STREAM_H
  46. /*
  47. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  48. * Confidential Information of Havok.  (C) Copyright 1999-2009
  49. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  50. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  51. * rights, and intellectual property rights in the Havok software remain in
  52. * Havok and/or its suppliers.
  53. * Use of this software for evaluation purposes is subject to and indicates
  54. * acceptance of the End User licence Agreement for this product. A copy of
  55. * the license is included with this software and is also available at www.havok.com/tryhavok.
  56. */