mirror of
https://github.com/crskycode/GARbro.git
synced 2024-12-24 20:04:13 +08:00
separated "CHERRY PACK 2.0" archives implementation.
support archives with encrypted index.
This commit is contained in:
parent
6c6c6be7a0
commit
00f8965a9d
@ -29,6 +29,7 @@ using System.ComponentModel.Composition;
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using GameRes.Utility;
|
using GameRes.Utility;
|
||||||
|
using GameRes.Compression;
|
||||||
|
|
||||||
namespace GameRes.Formats.Cherry
|
namespace GameRes.Formats.Cherry
|
||||||
{
|
{
|
||||||
@ -37,38 +38,41 @@ namespace GameRes.Formats.Cherry
|
|||||||
{
|
{
|
||||||
public override string Tag { get { return "PAK/CHERRY"; } }
|
public override string Tag { get { return "PAK/CHERRY"; } }
|
||||||
public override string Description { get { return "Cherry Soft PACK resource archive"; } }
|
public override string Description { get { return "Cherry Soft PACK resource archive"; } }
|
||||||
public override uint Signature { get { return 0x52454843; } } // 'CHER'
|
public override uint Signature { get { return 0; } }
|
||||||
public override bool IsHierarchic { get { return false; } }
|
public override bool IsHierarchic { get { return false; } }
|
||||||
public override bool CanCreate { get { return false; } }
|
public override bool CanCreate { get { return false; } }
|
||||||
|
|
||||||
public PakOpener ()
|
public PakOpener ()
|
||||||
{
|
{
|
||||||
Extensions = new string[] { "pak" };
|
Extensions = new string[] { "pak" };
|
||||||
Signatures = new uint[] { 0x52454843, 0 };
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public override ArcFile TryOpen (ArcView file)
|
public override ArcFile TryOpen (ArcView file)
|
||||||
{
|
{
|
||||||
int index_offset = 0;
|
int count = file.View.ReadInt32 (0);
|
||||||
if (file.View.AsciiEqual (0, "CHERRY PACK 2.0"))
|
if (!IsSaneCount (count))
|
||||||
index_offset = 0x14;
|
|
||||||
int count = file.View.ReadInt32 (index_offset);
|
|
||||||
if (count <= 0 || count > 0xfffff)
|
|
||||||
return null;
|
return null;
|
||||||
long base_offset = file.View.ReadUInt32 (index_offset+4);
|
long base_offset = file.View.ReadUInt32 (4);
|
||||||
index_offset += 8;
|
if (base_offset >= file.MaxOffset || base_offset != (8 + count*0x18))
|
||||||
|
return null;
|
||||||
|
var dir = ReadIndex (file, 8, count, base_offset, file);
|
||||||
|
return dir != null ? new ArcFile (file, this, dir) : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected List<Entry> ReadIndex (ArcView index, int index_offset, int count, long base_offset, ArcView file)
|
||||||
|
{
|
||||||
uint index_size = (uint)count * 0x18u;
|
uint index_size = (uint)count * 0x18u;
|
||||||
if (index_size > file.View.Reserve (index_offset, index_size))
|
if (index_size > index.View.Reserve (index_offset, index_size))
|
||||||
return null;
|
return null;
|
||||||
string arc_name = Path.GetFileNameWithoutExtension (file.Name);
|
string arc_name = Path.GetFileNameWithoutExtension (file.Name);
|
||||||
bool is_grp = arc_name.EndsWith ("GRP", StringComparison.InvariantCultureIgnoreCase);
|
bool is_grp = arc_name.EndsWith ("GRP", StringComparison.InvariantCultureIgnoreCase);
|
||||||
var dir = new List<Entry> (count);
|
var dir = new List<Entry> (count);
|
||||||
for (int i = 0; i < count; ++i)
|
for (int i = 0; i < count; ++i)
|
||||||
{
|
{
|
||||||
string name = file.View.ReadString (index_offset, 0x10);
|
string name = index.View.ReadString (index_offset, 0x10);
|
||||||
if (0 == name.Length)
|
if (0 == name.Length)
|
||||||
return null;
|
return null;
|
||||||
var offset = base_offset + file.View.ReadUInt32 (index_offset+0x10);
|
var offset = base_offset + index.View.ReadUInt32 (index_offset+0x10);
|
||||||
Entry entry;
|
Entry entry;
|
||||||
if (is_grp)
|
if (is_grp)
|
||||||
{
|
{
|
||||||
@ -82,13 +86,13 @@ namespace GameRes.Formats.Cherry
|
|||||||
{
|
{
|
||||||
entry = AutoEntry.Create (file, offset, name);
|
entry = AutoEntry.Create (file, offset, name);
|
||||||
}
|
}
|
||||||
entry.Size = file.View.ReadUInt32 (index_offset+0x14);
|
entry.Size = index.View.ReadUInt32 (index_offset+0x14);
|
||||||
if (!entry.CheckPlacement (file.MaxOffset))
|
if (!entry.CheckPlacement (file.MaxOffset))
|
||||||
return null;
|
return null;
|
||||||
dir.Add (entry);
|
dir.Add (entry);
|
||||||
index_offset += 0x18;
|
index_offset += 0x18;
|
||||||
}
|
}
|
||||||
return new ArcFile (file, this, dir);
|
return dir;
|
||||||
}
|
}
|
||||||
|
|
||||||
public override Stream OpenEntry (ArcFile arc, Entry entry)
|
public override Stream OpenEntry (ArcFile arc, Entry entry)
|
||||||
@ -109,4 +113,101 @@ namespace GameRes.Formats.Cherry
|
|||||||
return new MemoryStream (data);
|
return new MemoryStream (data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal class CherryPak : ArcFile
|
||||||
|
{
|
||||||
|
public CherryPak (ArcView arc, ArchiveFormat impl, ICollection<Entry> dir)
|
||||||
|
: base (arc, impl, dir)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[Export(typeof(ArchiveFormat))]
|
||||||
|
public class Pak2Opener : PakOpener
|
||||||
|
{
|
||||||
|
public override string Tag { get { return "PAK/CHERRY2"; } }
|
||||||
|
public override string Description { get { return "Cherry Soft PACK resource archive v2"; } }
|
||||||
|
public override uint Signature { get { return 0x52454843; } } // 'CHER'
|
||||||
|
public override bool IsHierarchic { get { return false; } }
|
||||||
|
public override bool CanCreate { get { return false; } }
|
||||||
|
|
||||||
|
public Pak2Opener ()
|
||||||
|
{
|
||||||
|
Extensions = new string[] { "pak" };
|
||||||
|
}
|
||||||
|
|
||||||
|
public override ArcFile TryOpen (ArcView file)
|
||||||
|
{
|
||||||
|
if (!file.View.AsciiEqual (0, "CHERRY PACK 2.0\0"))
|
||||||
|
return null;
|
||||||
|
bool is_compressed = file.View.ReadInt32 (0x10) != 0;
|
||||||
|
int count = file.View.ReadInt32 (0x14);
|
||||||
|
long base_offset = file.View.ReadUInt32 (0x18);
|
||||||
|
bool is_encrypted = false;
|
||||||
|
while (!IsSaneCount (count) || base_offset >= file.MaxOffset || (!is_compressed && base_offset != (0x1C + count*0x18)))
|
||||||
|
{
|
||||||
|
if (is_encrypted)
|
||||||
|
return null;
|
||||||
|
// these keys seem to be constant across different games
|
||||||
|
count ^= unchecked((int)0xBC138744);
|
||||||
|
base_offset ^= 0x64E0BA23;
|
||||||
|
is_encrypted = true;
|
||||||
|
}
|
||||||
|
List<Entry> dir;
|
||||||
|
if (is_compressed)
|
||||||
|
{
|
||||||
|
var packed = file.View.ReadBytes (0x1C, (uint)base_offset-0x1C);
|
||||||
|
Decrypt (packed, 0, packed.Length);
|
||||||
|
using (var mem = new MemoryStream (packed))
|
||||||
|
using (var lzss = new LzssStream (mem))
|
||||||
|
using (var index = new ArcView (lzss, file.Name, (uint)count * 0x18))
|
||||||
|
dir = ReadIndex (index, 0, count, base_offset, file);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
dir = ReadIndex (file, 0x1C, count, base_offset, file);
|
||||||
|
}
|
||||||
|
if (null == dir)
|
||||||
|
return null;
|
||||||
|
if (is_encrypted && is_compressed)
|
||||||
|
return new CherryPak (file, this, dir);
|
||||||
|
else
|
||||||
|
return new ArcFile (file, this, dir);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Decrypt (byte[] data, int index, int length) // Exile ~Blood Royal 2~
|
||||||
|
{
|
||||||
|
for (int i = 0; i+1 < length; i += 2)
|
||||||
|
{
|
||||||
|
byte lo = (byte)(data[index+i ] ^ 0x33);
|
||||||
|
byte hi = (byte)(data[index+i+1] ^ 0xCC);
|
||||||
|
data[index+i ] = hi;
|
||||||
|
data[index+i+1] = lo;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public override Stream OpenEntry (ArcFile arc, Entry entry)
|
||||||
|
{
|
||||||
|
if (!(arc is CherryPak) || entry.Size < 0x18)
|
||||||
|
return base.OpenEntry (arc, entry);
|
||||||
|
var data = arc.File.View.ReadBytes (entry.Offset, entry.Size);
|
||||||
|
if (data.Length >= 0x18)
|
||||||
|
{
|
||||||
|
uint encrypted_size;
|
||||||
|
unsafe
|
||||||
|
{
|
||||||
|
fixed (byte* raw = data)
|
||||||
|
{
|
||||||
|
uint* raw32 = (uint*)raw;
|
||||||
|
raw32[0] ^= 0xA53CC35Au;
|
||||||
|
raw32[1] ^= 0x35421005u;
|
||||||
|
raw32[4] ^= 0xCF42355Du;
|
||||||
|
encrypted_size = raw32[5];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Decrypt (data, 0x18, (int)(data.Length - 0x18));
|
||||||
|
}
|
||||||
|
return new MemoryStream (data);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user