hkMemoryStreamReader.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_MEMORY_STREAMREADER_H
  9. #define HKBASE_MEMORY_STREAMREADER_H
  10. #include <Common/Base/System/Io/Reader/hkStreamReader.h>
  11. /// Wraps a reader around a memory fragment.
  12. class hkMemoryStreamReader : public hkStreamReader
  13. {
  14. public:
  15.             ///
  16.         enum MemoryType
  17.         {
  18.             MEMORY_COPY,
  19.             MEMORY_TAKE,
  20.             MEMORY_INPLACE
  21.         };
  22. /// Create a stream from the specified memory.
  23.             /// If MemoryType is MEMORY_COPY, the memory is copied into
  24.             /// an internal buffer and freed on destruction.
  25.             /// MEMORY_TAKE will take ownership of the memory (which was
  26.             /// allocated with hkAllocate) and hkDeallocate it on destruction.
  27.             /// MEMORY_INPLACE will use the memory in place
  28.             /// and must exist for the lifetime of this object.
  29. hkMemoryStreamReader(const void* mem, int memSize, MemoryType t);
  30. ~hkMemoryStreamReader();
  31. virtual int read(void* buf, int nbytes);
  32. virtual int skip(int nbytes);
  33. virtual hkBool isOk() const;
  34. /// Marks up to buffer size are supported.
  35. virtual hkBool markSupported() const;
  36. /// Marks up to buffer size are supported.
  37. virtual hkResult setMark(int markLimit);
  38. /// Marks up to buffer size are supported.
  39. virtual hkResult rewindToMark();
  40. /// Seek/tell is supported.
  41. virtual hkBool seekTellSupported() const;
  42. virtual hkResult seek(int offset, SeekWhence whence);
  43. virtual int tell() const;
  44. protected:
  45. char* m_buf;
  46. int m_bufCurrent; // current byte index
  47. int m_bufSize; // end of usable buffer size
  48. int m_markPos; // start of marked region
  49.         MemoryType m_memType; // owned or referenced
  50. };
  51. #endif //HKBASE_MEMORY_STREAMREADER_H
  52. /*
  53. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  54. * Confidential Information of Havok.  (C) Copyright 1999-2009
  55. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  56. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  57. * rights, and intellectual property rights in the Havok software remain in
  58. * Havok and/or its suppliers.
  59. * Use of this software for evaluation purposes is subject to and indicates
  60. * acceptance of the End User licence Agreement for this product. A copy of
  61. * the license is included with this software and is also available at www.havok.com/tryhavok.
  62. */