mirror of
https://github.com/crskycode/GARbro.git
synced 2024-12-24 20:04:13 +08:00
(arc): recognize LZSS compression.
This commit is contained in:
parent
51191ba1fd
commit
ae7db58c11
@ -110,6 +110,16 @@ namespace GameRes.Formats.Abel
|
|||||||
uint offset = arc.File.View.ReadUInt32 (entry.Offset+8);
|
uint offset = arc.File.View.ReadUInt32 (entry.Offset+8);
|
||||||
if (offset >= entry.Size)
|
if (offset >= entry.Size)
|
||||||
return base.OpenEntry (arc, entry);
|
return base.OpenEntry (arc, entry);
|
||||||
|
long cmp_offset = entry.Offset + offset;
|
||||||
|
if (arc.File.View.ReadByte (cmp_offset) == 0)
|
||||||
|
{
|
||||||
|
uint packed_size = arc.File.View.ReadUInt32 (cmp_offset+5);
|
||||||
|
if (packed_size == entry.Size - (offset+0x11))
|
||||||
|
{
|
||||||
|
var input = arc.File.CreateStream (cmp_offset+0x11, packed_size);
|
||||||
|
return new LzssStream (input);
|
||||||
|
}
|
||||||
|
}
|
||||||
return arc.File.CreateStream (entry.Offset+offset, entry.Size-offset);
|
return arc.File.CreateStream (entry.Offset+offset, entry.Size-offset);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user