mirror of
https://github.com/crskycode/GARbro.git
synced 2024-12-24 03:44:13 +08:00
moved common stream classes to separate file.
This commit is contained in:
parent
b569c81c50
commit
834409f2a4
@ -95,220 +95,6 @@ namespace GameRes.Formats
|
||||
static readonly Lazy<AudioFormat> s_OggFormat = new Lazy<AudioFormat> (() => FormatCatalog.Instance.AudioFormats.FirstOrDefault (x => x.Tag == "OGG"));
|
||||
}
|
||||
|
||||
public class PrefixStream : Stream
|
||||
{
|
||||
byte[] m_header;
|
||||
Stream m_stream;
|
||||
long m_position = 0;
|
||||
bool m_should_dispose;
|
||||
|
||||
public PrefixStream (byte[] header, Stream main, bool leave_open = false)
|
||||
{
|
||||
m_header = header;
|
||||
m_stream = main;
|
||||
m_should_dispose = !leave_open;
|
||||
}
|
||||
|
||||
public override bool CanRead { get { return m_stream.CanRead; } }
|
||||
public override bool CanSeek { get { return m_stream.CanSeek; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
public override long Length { get { return m_stream.Length + m_header.Length; } }
|
||||
public override long Position
|
||||
{
|
||||
get { return m_position; }
|
||||
set
|
||||
{
|
||||
if (!m_stream.CanSeek)
|
||||
throw new NotSupportedException ("Underlying stream does not support Stream.Position property");
|
||||
m_position = Math.Max (value, 0);
|
||||
if (m_position > m_header.Length)
|
||||
{
|
||||
long stream_pos = m_stream.Seek (m_position - m_header.Length, SeekOrigin.Begin);
|
||||
m_position = m_header.Length + stream_pos;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public override void Flush()
|
||||
{
|
||||
m_stream.Flush();
|
||||
}
|
||||
|
||||
public override long Seek (long offset, SeekOrigin origin)
|
||||
{
|
||||
if (SeekOrigin.Begin == origin)
|
||||
Position = offset;
|
||||
else if (SeekOrigin.Current == origin)
|
||||
Position = m_position + offset;
|
||||
else
|
||||
Position = Length + offset;
|
||||
|
||||
return m_position;
|
||||
}
|
||||
|
||||
public override int Read (byte[] buffer, int offset, int count)
|
||||
{
|
||||
int read = 0;
|
||||
if (m_position < m_header.Length)
|
||||
{
|
||||
int header_count = Math.Min (count, m_header.Length - (int)m_position);
|
||||
Buffer.BlockCopy (m_header, (int)m_position, buffer, offset, header_count);
|
||||
m_position += header_count;
|
||||
read += header_count;
|
||||
offset += header_count;
|
||||
count -= header_count;
|
||||
}
|
||||
if (count > 0)
|
||||
{
|
||||
if (m_header.Length == m_position && m_stream.CanSeek)
|
||||
m_stream.Position = 0;
|
||||
int stream_read = m_stream.Read (buffer, offset, count);
|
||||
m_position += stream_read;
|
||||
read += stream_read;
|
||||
}
|
||||
return read;
|
||||
}
|
||||
|
||||
public override int ReadByte ()
|
||||
{
|
||||
if (m_position < m_header.Length)
|
||||
return m_header[m_position++];
|
||||
if (m_position == m_header.Length && m_stream.CanSeek)
|
||||
m_stream.Position = 0;
|
||||
int b = m_stream.ReadByte();
|
||||
if (-1 != b)
|
||||
m_position++;
|
||||
return b;
|
||||
}
|
||||
|
||||
public override void SetLength (long length)
|
||||
{
|
||||
throw new NotSupportedException ("PrefixStream.SetLength method is not supported");
|
||||
}
|
||||
|
||||
public override void Write (byte[] buffer, int offset, int count)
|
||||
{
|
||||
throw new NotSupportedException ("PrefixStream.Write method is not supported");
|
||||
}
|
||||
|
||||
public override void WriteByte (byte value)
|
||||
{
|
||||
throw new NotSupportedException ("PrefixStream.WriteByte method is not supported");
|
||||
}
|
||||
|
||||
bool disposed = false;
|
||||
protected override void Dispose (bool disposing)
|
||||
{
|
||||
if (!disposed)
|
||||
{
|
||||
if (m_should_dispose && disposing)
|
||||
m_stream.Dispose();
|
||||
disposed = true;
|
||||
base.Dispose (disposing);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Represents a region within existing stream.
|
||||
/// Underlying stream should allow seeking (CanSeek == true).
|
||||
/// </summary>
|
||||
public class StreamRegion : Stream
|
||||
{
|
||||
private Stream m_stream;
|
||||
private long m_begin;
|
||||
private long m_end;
|
||||
private bool m_should_dispose;
|
||||
|
||||
public StreamRegion (Stream main, long offset, long length, bool leave_open = false)
|
||||
{
|
||||
m_stream = main;
|
||||
m_begin = offset;
|
||||
m_end = Math.Min (offset + length, m_stream.Length);
|
||||
m_stream.Position = m_begin;
|
||||
m_should_dispose = !leave_open;
|
||||
}
|
||||
|
||||
public StreamRegion (Stream main, long offset, bool leave_open = false)
|
||||
: this (main, offset, main.Length-offset, leave_open)
|
||||
{
|
||||
}
|
||||
|
||||
public override bool CanRead { get { return m_stream.CanRead; } }
|
||||
public override bool CanSeek { get { return true; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
public override long Length { get { return m_end - m_begin; } }
|
||||
public override long Position
|
||||
{
|
||||
get { return m_stream.Position - m_begin; }
|
||||
set { m_stream.Position = Math.Max (m_begin + value, m_begin); }
|
||||
}
|
||||
|
||||
public override void Flush()
|
||||
{
|
||||
m_stream.Flush();
|
||||
}
|
||||
|
||||
public override long Seek (long offset, SeekOrigin origin)
|
||||
{
|
||||
if (SeekOrigin.Begin == origin)
|
||||
offset += m_begin;
|
||||
else if (SeekOrigin.Current == origin)
|
||||
offset += m_stream.Position;
|
||||
else
|
||||
offset += m_end;
|
||||
offset = Math.Max (offset, m_begin);
|
||||
m_stream.Position = offset;
|
||||
return offset - m_begin;
|
||||
}
|
||||
|
||||
public override int Read (byte[] buffer, int offset, int count)
|
||||
{
|
||||
int read = 0;
|
||||
long available = m_end - m_stream.Position;
|
||||
if (available > 0)
|
||||
{
|
||||
read = m_stream.Read (buffer, offset, (int)Math.Min (count, available));
|
||||
}
|
||||
return read;
|
||||
}
|
||||
|
||||
public override int ReadByte ()
|
||||
{
|
||||
if (m_stream.Position < m_end)
|
||||
return m_stream.ReadByte();
|
||||
else
|
||||
return -1;
|
||||
}
|
||||
|
||||
public override void SetLength (long length)
|
||||
{
|
||||
throw new NotSupportedException ("StreamRegion.SetLength method is not supported");
|
||||
}
|
||||
|
||||
public override void Write (byte[] buffer, int offset, int count)
|
||||
{
|
||||
throw new NotSupportedException ("StreamRegion.Write method is not supported");
|
||||
}
|
||||
|
||||
public override void WriteByte (byte value)
|
||||
{
|
||||
throw new NotSupportedException ("StreamRegion.WriteByte method is not supported");
|
||||
}
|
||||
|
||||
bool m_disposed = false;
|
||||
protected override void Dispose (bool disposing)
|
||||
{
|
||||
if (!m_disposed)
|
||||
{
|
||||
if (m_should_dispose && disposing)
|
||||
m_stream.Dispose();
|
||||
m_disposed = true;
|
||||
base.Dispose (disposing);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public class HuffmanDecoder
|
||||
{
|
||||
byte[] m_src;
|
||||
|
@ -67,6 +67,7 @@
|
||||
<Compile Include="Actgs\ArcDAT.cs" />
|
||||
<Compile Include="ArcCG.cs" />
|
||||
<Compile Include="ArcZIP.cs" />
|
||||
<Compile Include="CommonStreams.cs" />
|
||||
<Compile Include="Cri\ArcCPK.cs" />
|
||||
<Compile Include="Cri\ArcSPC.cs" />
|
||||
<Compile Include="Cri\AudioADX.cs" />
|
||||
|
388
ArcFormats/CommonStreams.cs
Normal file
388
ArcFormats/CommonStreams.cs
Normal file
@ -0,0 +1,388 @@
|
||||
//! \file CommonStreams.cs
|
||||
//! \date Sun Mar 13 00:01:47 2016
|
||||
//! \brief Commonly used stream implementations.
|
||||
//
|
||||
// Copyright (C) 2016 by morkt
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
using System;
|
||||
using System.IO;
|
||||
namespace GameRes.Formats
|
||||
{
|
||||
public class PrefixStream : Stream
|
||||
{
|
||||
byte[] m_header;
|
||||
Stream m_stream;
|
||||
long m_position = 0;
|
||||
bool m_should_dispose;
|
||||
|
||||
public PrefixStream (byte[] header, Stream main, bool leave_open = false)
|
||||
{
|
||||
m_header = header;
|
||||
m_stream = main;
|
||||
m_should_dispose = !leave_open;
|
||||
}
|
||||
|
||||
public override bool CanRead { get { return m_stream.CanRead; } }
|
||||
public override bool CanSeek { get { return m_stream.CanSeek; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
public override long Length { get { return m_stream.Length + m_header.Length; } }
|
||||
public override long Position
|
||||
{
|
||||
get { return m_position; }
|
||||
set
|
||||
{
|
||||
if (!m_stream.CanSeek)
|
||||
throw new NotSupportedException ("Underlying stream does not support Stream.Position property");
|
||||
m_position = Math.Max (value, 0);
|
||||
if (m_position > m_header.Length)
|
||||
{
|
||||
long stream_pos = m_stream.Seek (m_position - m_header.Length, SeekOrigin.Begin);
|
||||
m_position = m_header.Length + stream_pos;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public override void Flush()
|
||||
{
|
||||
m_stream.Flush();
|
||||
}
|
||||
|
||||
public override long Seek (long offset, SeekOrigin origin)
|
||||
{
|
||||
if (SeekOrigin.Begin == origin)
|
||||
Position = offset;
|
||||
else if (SeekOrigin.Current == origin)
|
||||
Position = m_position + offset;
|
||||
else
|
||||
Position = Length + offset;
|
||||
|
||||
return m_position;
|
||||
}
|
||||
|
||||
public override int Read (byte[] buffer, int offset, int count)
|
||||
{
|
||||
int read = 0;
|
||||
if (m_position < m_header.Length)
|
||||
{
|
||||
int header_count = Math.Min (count, m_header.Length - (int)m_position);
|
||||
Buffer.BlockCopy (m_header, (int)m_position, buffer, offset, header_count);
|
||||
m_position += header_count;
|
||||
read += header_count;
|
||||
offset += header_count;
|
||||
count -= header_count;
|
||||
}
|
||||
if (count > 0)
|
||||
{
|
||||
if (m_header.Length == m_position && m_stream.CanSeek)
|
||||
m_stream.Position = 0;
|
||||
int stream_read = m_stream.Read (buffer, offset, count);
|
||||
m_position += stream_read;
|
||||
read += stream_read;
|
||||
}
|
||||
return read;
|
||||
}
|
||||
|
||||
public override int ReadByte ()
|
||||
{
|
||||
if (m_position < m_header.Length)
|
||||
return m_header[m_position++];
|
||||
if (m_position == m_header.Length && m_stream.CanSeek)
|
||||
m_stream.Position = 0;
|
||||
int b = m_stream.ReadByte();
|
||||
if (-1 != b)
|
||||
m_position++;
|
||||
return b;
|
||||
}
|
||||
|
||||
public override void SetLength (long length)
|
||||
{
|
||||
throw new NotSupportedException ("PrefixStream.SetLength method is not supported");
|
||||
}
|
||||
|
||||
public override void Write (byte[] buffer, int offset, int count)
|
||||
{
|
||||
throw new NotSupportedException ("PrefixStream.Write method is not supported");
|
||||
}
|
||||
|
||||
public override void WriteByte (byte value)
|
||||
{
|
||||
throw new NotSupportedException ("PrefixStream.WriteByte method is not supported");
|
||||
}
|
||||
|
||||
bool disposed = false;
|
||||
protected override void Dispose (bool disposing)
|
||||
{
|
||||
if (!disposed)
|
||||
{
|
||||
if (m_should_dispose && disposing)
|
||||
m_stream.Dispose();
|
||||
disposed = true;
|
||||
base.Dispose (disposing);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Represents a region within existing stream.
|
||||
/// Underlying stream should allow seeking (CanSeek == true).
|
||||
/// </summary>
|
||||
public class StreamRegion : Stream
|
||||
{
|
||||
private Stream m_stream;
|
||||
private long m_begin;
|
||||
private long m_end;
|
||||
private bool m_should_dispose;
|
||||
|
||||
public StreamRegion (Stream main, long offset, long length, bool leave_open = false)
|
||||
{
|
||||
m_stream = main;
|
||||
m_begin = offset;
|
||||
m_end = Math.Min (offset + length, m_stream.Length);
|
||||
m_stream.Position = m_begin;
|
||||
m_should_dispose = !leave_open;
|
||||
}
|
||||
|
||||
public StreamRegion (Stream main, long offset, bool leave_open = false)
|
||||
: this (main, offset, main.Length-offset, leave_open)
|
||||
{
|
||||
}
|
||||
|
||||
public override bool CanRead { get { return m_stream.CanRead; } }
|
||||
public override bool CanSeek { get { return true; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
public override long Length { get { return m_end - m_begin; } }
|
||||
public override long Position
|
||||
{
|
||||
get { return m_stream.Position - m_begin; }
|
||||
set { m_stream.Position = Math.Max (m_begin + value, m_begin); }
|
||||
}
|
||||
|
||||
public override void Flush()
|
||||
{
|
||||
m_stream.Flush();
|
||||
}
|
||||
|
||||
public override long Seek (long offset, SeekOrigin origin)
|
||||
{
|
||||
if (SeekOrigin.Begin == origin)
|
||||
offset += m_begin;
|
||||
else if (SeekOrigin.Current == origin)
|
||||
offset += m_stream.Position;
|
||||
else
|
||||
offset += m_end;
|
||||
offset = Math.Max (offset, m_begin);
|
||||
m_stream.Position = offset;
|
||||
return offset - m_begin;
|
||||
}
|
||||
|
||||
public override int Read (byte[] buffer, int offset, int count)
|
||||
{
|
||||
int read = 0;
|
||||
long available = m_end - m_stream.Position;
|
||||
if (available > 0)
|
||||
{
|
||||
read = m_stream.Read (buffer, offset, (int)Math.Min (count, available));
|
||||
}
|
||||
return read;
|
||||
}
|
||||
|
||||
public override int ReadByte ()
|
||||
{
|
||||
if (m_stream.Position < m_end)
|
||||
return m_stream.ReadByte();
|
||||
else
|
||||
return -1;
|
||||
}
|
||||
|
||||
public override void SetLength (long length)
|
||||
{
|
||||
throw new NotSupportedException ("StreamRegion.SetLength method is not supported");
|
||||
}
|
||||
|
||||
public override void Write (byte[] buffer, int offset, int count)
|
||||
{
|
||||
throw new NotSupportedException ("StreamRegion.Write method is not supported");
|
||||
}
|
||||
|
||||
public override void WriteByte (byte value)
|
||||
{
|
||||
throw new NotSupportedException ("StreamRegion.WriteByte method is not supported");
|
||||
}
|
||||
|
||||
bool m_disposed = false;
|
||||
protected override void Dispose (bool disposing)
|
||||
{
|
||||
if (!m_disposed)
|
||||
{
|
||||
if (m_should_dispose && disposing)
|
||||
m_stream.Dispose();
|
||||
m_disposed = true;
|
||||
base.Dispose (disposing);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Lazily evaluated wrapper around non-seekable stream.
|
||||
/// </summary>
|
||||
public class SeekableStream : Stream
|
||||
{
|
||||
Stream m_source;
|
||||
Stream m_buffer;
|
||||
bool m_should_dispose;
|
||||
bool m_source_depleted;
|
||||
long m_read_pos;
|
||||
|
||||
public SeekableStream (Stream input, bool leave_open = false)
|
||||
{
|
||||
m_source = input;
|
||||
m_should_dispose = !leave_open;
|
||||
m_read_pos = 0;
|
||||
if (m_source.CanSeek)
|
||||
{
|
||||
m_buffer = m_source;
|
||||
m_source_depleted = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
m_buffer = new MemoryStream();
|
||||
m_source_depleted = false;
|
||||
}
|
||||
}
|
||||
|
||||
#region IO.Stream Members
|
||||
public override bool CanRead { get { return m_buffer.CanRead; } }
|
||||
public override bool CanSeek { get { return true; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
public override long Length
|
||||
{
|
||||
get
|
||||
{
|
||||
if (!m_source_depleted)
|
||||
{
|
||||
m_buffer.Seek (0, SeekOrigin.End);
|
||||
m_source.CopyTo (m_buffer);
|
||||
m_source_depleted = true;
|
||||
}
|
||||
return m_buffer.Length;
|
||||
}
|
||||
}
|
||||
public override long Position
|
||||
{
|
||||
get { return m_read_pos; }
|
||||
set { m_read_pos = value; }
|
||||
}
|
||||
|
||||
public override int Read (byte[] buffer, int offset, int count)
|
||||
{
|
||||
int read, total_read = 0;
|
||||
if (m_source_depleted)
|
||||
{
|
||||
m_buffer.Position = m_read_pos;
|
||||
total_read = m_buffer.Read (buffer, offset, count);
|
||||
m_read_pos += total_read;
|
||||
return total_read;
|
||||
}
|
||||
if (m_read_pos < m_buffer.Length)
|
||||
{
|
||||
int available = (int)Math.Min (m_buffer.Length-m_read_pos, count);
|
||||
m_buffer.Position = m_read_pos;
|
||||
total_read = m_buffer.Read (buffer, offset, available);
|
||||
m_read_pos += total_read;
|
||||
count -= total_read;
|
||||
if (0 == count)
|
||||
return total_read;
|
||||
offset += total_read;
|
||||
}
|
||||
else if (count > 0)
|
||||
{
|
||||
m_buffer.Seek (0, SeekOrigin.End);
|
||||
while (m_read_pos > m_buffer.Length)
|
||||
{
|
||||
int available = (int)Math.Min (m_read_pos - m_buffer.Length, count);
|
||||
read = m_source.Read (buffer, offset, available);
|
||||
if (0 == read)
|
||||
{
|
||||
m_source_depleted = true;
|
||||
return 0;
|
||||
}
|
||||
m_buffer.Write (buffer, offset, read);
|
||||
}
|
||||
}
|
||||
read = m_source.Read (buffer, offset, count);
|
||||
m_read_pos += read;
|
||||
m_buffer.Write (buffer, offset, read);
|
||||
return total_read + read;
|
||||
}
|
||||
|
||||
public override void Flush()
|
||||
{
|
||||
}
|
||||
|
||||
public override long Seek (long offset, SeekOrigin origin)
|
||||
{
|
||||
if (SeekOrigin.Begin == origin)
|
||||
m_read_pos = offset;
|
||||
else if (SeekOrigin.Current == origin)
|
||||
m_read_pos += offset;
|
||||
else
|
||||
m_read_pos = Length + offset;
|
||||
|
||||
return m_read_pos;
|
||||
}
|
||||
|
||||
public override void SetLength (long length)
|
||||
{
|
||||
throw new NotSupportedException ("SeekableStream.SetLength method is not supported");
|
||||
}
|
||||
|
||||
public override void Write (byte[] buffer, int offset, int count)
|
||||
{
|
||||
throw new NotSupportedException ("SeekableStream.Write method is not supported");
|
||||
}
|
||||
|
||||
public override void WriteByte (byte value)
|
||||
{
|
||||
throw new NotSupportedException ("SeekableStream.WriteByte method is not supported");
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region IDisposable Members
|
||||
bool _disposed = false;
|
||||
protected override void Dispose (bool disposing)
|
||||
{
|
||||
if (_disposed)
|
||||
return;
|
||||
|
||||
if (disposing)
|
||||
{
|
||||
if (m_should_dispose)
|
||||
m_source.Dispose();
|
||||
if (m_buffer != m_source)
|
||||
m_buffer.Dispose();
|
||||
}
|
||||
_disposed = true;
|
||||
base.Dispose (disposing);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
@ -65,146 +65,4 @@ namespace GameRes.Formats.Cri
|
||||
throw new System.NotImplementedException ("SpcFormat.Write not implemented");
|
||||
}
|
||||
}
|
||||
|
||||
public class SeekableStream : Stream
|
||||
{
|
||||
Stream m_source;
|
||||
Stream m_buffer;
|
||||
bool m_should_dispose;
|
||||
bool m_source_depleted;
|
||||
long m_read_pos;
|
||||
|
||||
public SeekableStream (Stream input, bool leave_open = false)
|
||||
{
|
||||
m_source = input;
|
||||
m_should_dispose = !leave_open;
|
||||
m_read_pos = 0;
|
||||
if (m_source.CanSeek)
|
||||
{
|
||||
m_buffer = m_source;
|
||||
m_source_depleted = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
m_buffer = new MemoryStream();
|
||||
m_source_depleted = false;
|
||||
}
|
||||
}
|
||||
|
||||
#region IO.Stream Members
|
||||
public override bool CanRead { get { return m_buffer.CanRead; } }
|
||||
public override bool CanSeek { get { return true; } }
|
||||
public override bool CanWrite { get { return false; } }
|
||||
public override long Length
|
||||
{
|
||||
get
|
||||
{
|
||||
if (!m_source_depleted)
|
||||
{
|
||||
m_buffer.Seek (0, SeekOrigin.End);
|
||||
m_source.CopyTo (m_buffer);
|
||||
m_source_depleted = true;
|
||||
}
|
||||
return m_buffer.Length;
|
||||
}
|
||||
}
|
||||
public override long Position
|
||||
{
|
||||
get { return m_read_pos; }
|
||||
set { m_read_pos = value; }
|
||||
}
|
||||
|
||||
public override int Read (byte[] buffer, int offset, int count)
|
||||
{
|
||||
int read, total_read = 0;
|
||||
if (m_source_depleted)
|
||||
{
|
||||
m_buffer.Position = m_read_pos;
|
||||
total_read = m_buffer.Read (buffer, offset, count);
|
||||
m_read_pos += total_read;
|
||||
return total_read;
|
||||
}
|
||||
if (m_read_pos < m_buffer.Length)
|
||||
{
|
||||
int available = (int)Math.Min (m_buffer.Length-m_read_pos, count);
|
||||
m_buffer.Position = m_read_pos;
|
||||
total_read = m_buffer.Read (buffer, offset, available);
|
||||
m_read_pos += total_read;
|
||||
count -= total_read;
|
||||
if (0 == count)
|
||||
return total_read;
|
||||
offset += total_read;
|
||||
}
|
||||
else if (count > 0)
|
||||
{
|
||||
m_buffer.Seek (0, SeekOrigin.End);
|
||||
while (m_read_pos > m_buffer.Length)
|
||||
{
|
||||
int available = (int)Math.Min (m_read_pos - m_buffer.Length, count);
|
||||
read = m_source.Read (buffer, offset, available);
|
||||
if (0 == read)
|
||||
{
|
||||
m_source_depleted = true;
|
||||
return 0;
|
||||
}
|
||||
m_buffer.Write (buffer, offset, read);
|
||||
}
|
||||
}
|
||||
read = m_source.Read (buffer, offset, count);
|
||||
m_read_pos += read;
|
||||
m_buffer.Write (buffer, offset, read);
|
||||
return total_read + read;
|
||||
}
|
||||
|
||||
public override void Flush()
|
||||
{
|
||||
}
|
||||
|
||||
public override long Seek (long offset, SeekOrigin origin)
|
||||
{
|
||||
if (SeekOrigin.Begin == origin)
|
||||
m_read_pos = offset;
|
||||
else if (SeekOrigin.Current == origin)
|
||||
m_read_pos += offset;
|
||||
else
|
||||
m_read_pos = Length + offset;
|
||||
|
||||
return m_read_pos;
|
||||
}
|
||||
|
||||
public override void SetLength (long length)
|
||||
{
|
||||
throw new NotSupportedException ("SeekableStream.SetLength method is not supported");
|
||||
}
|
||||
|
||||
public override void Write (byte[] buffer, int offset, int count)
|
||||
{
|
||||
throw new NotSupportedException ("SeekableStream.Write method is not supported");
|
||||
}
|
||||
|
||||
public override void WriteByte (byte value)
|
||||
{
|
||||
throw new NotSupportedException ("SeekableStream.WriteByte method is not supported");
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region IDisposable Members
|
||||
bool _disposed = false;
|
||||
protected override void Dispose (bool disposing)
|
||||
{
|
||||
if (_disposed)
|
||||
return;
|
||||
|
||||
if (disposing)
|
||||
{
|
||||
if (m_should_dispose)
|
||||
m_source.Dispose();
|
||||
if (m_buffer != m_source)
|
||||
m_buffer.Dispose();
|
||||
}
|
||||
_disposed = true;
|
||||
base.Dispose (disposing);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
@ -27,7 +27,6 @@ using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.Composition;
|
||||
using System.IO;
|
||||
using GameRes.Formats.Cri;
|
||||
using GameRes.Utility;
|
||||
|
||||
namespace GameRes.Formats.Slg
|
||||
|
Loading…
x
Reference in New Issue
Block a user