hkSeekableStreamReader.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 HKBASE_SEEKABLE_STREAMREADER_H
  9. #define HKBASE_SEEKABLE_STREAMREADER_H
  10. #include <Common/Base/hkBase.h>
  11. #include <Common/Base/System/Io/Reader/hkStreamReader.h>
  12. /// Utility class for readers which implement seek.
  13. /// Derived classes must implement seek and tell. The mark
  14. /// interface is implemented with calls to these methods.
  15. /// Note that while this always works, it may be quite slow
  16. /// if the streams underlying seek and tell are slow. In this
  17. /// case it may be a better solution to wrap the stream in an
  18. /// hkBufferedStreamReader instead which is guaranteed to be fast.
  19. class hkSeekableStreamReader : public hkStreamReader
  20. {
  21. public:
  22. hkSeekableStreamReader()
  23. : m_markPos(-1)
  24. {
  25. }
  26. virtual hkBool markSupported() const
  27. {
  28. return true;
  29. }
  30. virtual hkResult setMark(int markLimit)
  31. {
  32. m_markPos = tell();
  33. return (m_markPos != -1) ? HK_SUCCESS : HK_FAILURE;
  34. }
  35. virtual hkResult rewindToMark()
  36. {
  37. return seek(m_markPos, STREAM_SET);
  38. }
  39. virtual hkBool seekTellSupported() const
  40. {
  41. return true;
  42. }
  43. // must implement seek
  44. // must implement tell
  45. protected:
  46. int m_markPos;
  47. };
  48. #endif //HKBASE_SEEKABLE_STREAMREADER_H
  49. /*
  50. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  51. * Confidential Information of Havok.  (C) Copyright 1999-2009
  52. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  53. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  54. * rights, and intellectual property rights in the Havok software remain in
  55. * Havok and/or its suppliers.
  56. * Use of this software for evaluation purposes is subject to and indicates
  57. * acceptance of the End User licence Agreement for this product. A copy of
  58. * the license is included with this software and is also available at www.havok.com/tryhavok.
  59. */