hkBufferedStreamReader.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_STREAMREADER_H
  9. #define HKBASE_BUFFERED_STREAMREADER_H
  10. #include <Common/Base/System/Io/Reader/hkStreamReader.h>
  11. /// Wraps and buffers an existing unbuffered stream.
  12. class hkBufferedStreamReader : public hkStreamReader
  13. {
  14. public:
  15. /// Create a buffered stream from stream 's' with size 'bufSize'.
  16. /// Adds a reference to 's'.
  17. hkBufferedStreamReader(hkStreamReader* s, int bufSize=4096);
  18. /// Removes reference to the reader in the constructor if applicable.
  19. ~hkBufferedStreamReader();
  20. virtual int read(void* buf, int nbytes);
  21. virtual int skip(int nbytes);
  22. virtual hkBool isOk() const;
  23. /// Marks up to buffer size are supported.
  24. virtual hkBool markSupported() const;
  25. /// Marks up to buffer size are supported.
  26. virtual hkResult setMark(int markLimit);
  27. /// Marks up to buffer size are supported.
  28. virtual hkResult rewindToMark();
  29. virtual hkBool seekTellSupported() const;
  30. virtual hkResult seek( int offset, SeekWhence whence);
  31. virtual int tell() const;
  32. protected:
  33. hkStreamReader* m_stream; // child stream
  34. struct Buffer
  35. {
  36. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_BASE_CLASS, hkBufferedStreamReader::Buffer );
  37. Buffer(int cap);
  38. ~Buffer();
  39. char* begin;
  40. int current; // current byte index
  41. int size; // end of usable buffer size - only less than capacity on short read
  42. int capacity; // buffer region is begin,begin+m_capacity
  43. int markPos; // start of marked region
  44. int markLimit; // end of marked region
  45. };
  46. Buffer m_buf;
  47. protected:
  48. /// Move marked area to start of buffer if necessary.
  49. void prepareBufferForRefill();
  50. /// Actually fill the available area of the buffer.
  51. virtual hkResult refillBuffer();
  52. };
  53. #endif //HKBASE_BUFFERED_STREAMREADER_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. */