hkBufferedStreamWriter.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 HKBASE_BUFFERED_STREAMWRITER_H
  9. #define HKBASE_BUFFERED_STREAMWRITER_H
  10. #include <Common/Base/System/Io/Writer/hkStreamWriter.h>
  11. /// Wraps and buffers an existing unbuffered stream.
  12. class hkBufferedStreamWriter : public hkStreamWriter
  13. {
  14. public:
  15. /// Create a buffered stream from stream 's' with size 'bufSize'.
  16. /// Adds a reference to 's'.
  17. hkBufferedStreamWriter(hkStreamWriter* s, int bufSize=4096);
  18. /// Create a buffered stream from a piece of memory 'm' with size 'memSize'.
  19. /// The memory is used in place and must be valid for the lifetime of this object.
  20. /// If the memory is to be used to hold a C string, it is zeroed and the final byte
  21. /// will not be written to which ensures the string is always terminated.
  22. hkBufferedStreamWriter(void* mem, int memSize, hkBool memoryIsString);
  23. /// Removes a reference to its sub stream.
  24. ~hkBufferedStreamWriter();
  25. virtual int write(const void* buf, int nbytes);
  26. virtual void flush();
  27. virtual hkBool isOk() const;
  28. virtual hkBool seekTellSupported() const;
  29. virtual hkResult seek(int offset, SeekWhence whence);
  30. virtual int tell() const;
  31. protected:
  32. hkStreamWriter* m_stream; // child stream or HK_NULL for inplace
  33. char* m_buf; // start of buffer area
  34. int m_bufSize; // used buffer area
  35. int m_bufCapacity; // total available buffer area
  36. hkBool m_ownBuffer; // did we allocate the buffer
  37. protected:
  38. int flushBuffer();
  39. };
  40. #endif // HKBASE_BUFFERED_STREAMWRITER_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. */