-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathPFSCDecompressStream.cs
159 lines (146 loc) · 4.04 KB
/
PFSCDecompressStream.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
using GameArchives.Common;
using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Text;
namespace GameArchives.PFS
{
public class PFSCDecompressStream : Stream
{
/// <summary>
/// Wraps a PFSC file to create a decompressed stream.
/// </summary>
/// <param name="s"></param>
/// <param name="sectorSize"></param>
/// <param name="sectorOffsets"></param>
public PFSCDecompressStream(Stream pfsc)
{
s = pfsc;
s.Position = 0x10;
sectorSize = s.ReadInt64LE();
var offsetsStart = s.ReadInt64LE();
dataStart = s.ReadInt64LE();
length = s.ReadInt64LE();
sectorBuffer = new byte[sectorSize];
var num_blocks = length / sectorSize;
sectorMap = new long[num_blocks + 1];
s.Position = offsetsStart;
for(var i = 0; i < sectorMap.Length; i++)
{
sectorMap[i] = s.ReadInt64LE();
}
currentSector = 0;
ReadSectorBuffer();
}
private Stream s;
private long length;
private long sectorSize;
private long dataStart;
private byte[] sectorBuffer;
private long currentSector;
private long[] sectorMap;
/// <summary>
/// Offset within the sector for Read()s
/// Should always be == position % sectorSize
/// </summary>
private int offsetIntoSector;
/// <summary>
/// Position within logical stream.
/// </summary>
private long position;
public override bool CanRead => true;
public override bool CanSeek => true;
public override bool CanWrite => false;
public override long Length => length;
public override long Position
{
get => position;
set
{
var newSector = (value / sectorSize);
if (newSector != currentSector)
{
currentSector = newSector;
ReadSectorBuffer();
offsetIntoSector = (int)(value - position);
position = value;
}
else
{
offsetIntoSector = (int)(value - (sectorSize * currentSector));
position = value;
}
}
}
private void ReadSectorBuffer()
{
var start = sectorMap[currentSector];
var compressedLength = (int)(sectorMap[currentSector + 1] - start);
s.Position = start;
if (compressedLength == sectorSize)
{
s.Read(sectorBuffer, 0, (int)sectorSize);
}
else
{
using (var os = new OffsetStream(s, start + 2, compressedLength - 2))
using (var ds = new DeflateStream(os, CompressionMode.Decompress, true))
{
ds.Read(sectorBuffer, 0, (int)sectorSize);
}
}
position = sectorSize * currentSector;
offsetIntoSector = 0;
}
public override int Read(byte[] buffer, int offset, int count)
{
int totalRead = 0;
while (count > 0 && position < length)
{
if (offsetIntoSector >= sectorSize)
{
currentSector++;
ReadSectorBuffer();
}
int bufferedRead = Math.Min((int)sectorSize - offsetIntoSector, count);
Buffer.BlockCopy(sectorBuffer, offsetIntoSector, buffer, offset, bufferedRead);
count -= bufferedRead;
offset += bufferedRead;
totalRead += bufferedRead;
offsetIntoSector += bufferedRead;
position += bufferedRead;
}
return totalRead;
}
public override long Seek(long offset, SeekOrigin origin)
{
switch (origin)
{
case SeekOrigin.Begin:
Position = offset;
break;
case SeekOrigin.Current:
Position += offset;
break;
case SeekOrigin.End:
Position = Length + offset;
break;
}
return position;
}
public override void Flush()
{
throw new NotImplementedException();
}
public override void SetLength(long value)
{
throw new NotImplementedException();
}
public override void Write(byte[] buffer, int offset, int count)
{
throw new NotImplementedException();
}
}
}