hkSubStreamWriter.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_SUB_STREAMWRITER_H
  9. #define HKBASE_SUB_STREAMWRITER_H
  10. #include <Common/Base/System/Io/Writer/hkStreamWriter.h>
  11. /// Writer which is a "window" into another stream.
  12. /// Write requests are simply forwarded. Seek/tell
  13. /// requests are offset before forwarding so that the
  14. /// start (tell() == 0) of the substream is at a 
  15. /// specified offset in the child stream.
  16. class hkSubStreamWriter : public hkStreamWriter
  17. {
  18. public:
  19. /// Substream starts at the childs current offset.
  20. hkSubStreamWriter( hkStreamWriter* child )
  21. : m_childStream( child )
  22. {
  23. HK_ASSERT( 0xaa36a77f, child );
  24. m_startOffset = m_childStream->tell();
  25. }
  26. /// The zero offset is at the specified offset into child.
  27. hkSubStreamWriter( hkStreamWriter* child, int offset )
  28. : m_childStream( child ), m_startOffset(offset)
  29. {
  30. HK_ASSERT( 0xaa36a77f, child );
  31. }
  32. virtual hkBool isOk() const
  33. return m_childStream->isOk(); 
  34. }
  35. virtual int write(const void* buf, int nbytes) 
  36. return m_childStream->write( buf, nbytes );
  37. }
  38. virtual void flush() 
  39. m_childStream->flush(); 
  40. }
  41. virtual hkBool seekTellSupported() const 
  42. return m_childStream->seekTellSupported(); 
  43. }
  44. virtual hkResult seek(int offset, hkStreamWriter::SeekWhence whence) 
  45. int realOffset = ( whence == STREAM_SET )
  46. ? m_startOffset + offset
  47. : offset;
  48. return m_childStream->seek( realOffset, whence );
  49. }
  50. virtual int tell() const 
  51. return m_childStream->tell() - m_startOffset; 
  52. }
  53. protected: 
  54. hkStreamWriter* m_childStream;
  55. int m_startOffset;
  56. };
  57. #endif // HKBASE_OFFSET_STREAMWRITER_H
  58. /*
  59. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  60. * Confidential Information of Havok.  (C) Copyright 1999-2009
  61. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  62. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  63. * rights, and intellectual property rights in the Havok software remain in
  64. * Havok and/or its suppliers.
  65. * Use of this software for evaluation purposes is subject to and indicates
  66. * acceptance of the End User licence Agreement for this product. A copy of
  67. * the license is included with this software and is also available at www.havok.com/tryhavok.
  68. */