mirror of
https://github.com/JuniorDark/RustyHearts-Launcher.git
synced 2026-05-07 13:31:45 -04:00
84 lines
4.7 KiB
C#
84 lines
4.7 KiB
C#
using RHLauncher.Helper;
|
|
using RHLauncher.RHLauncher.Helper;
|
|
using System.Text;
|
|
|
|
namespace RHLauncher.PCK
|
|
{
|
|
public static class PCKReader
|
|
{
|
|
|
|
public static readonly byte[] BufferTable = new byte[]
|
|
{
|
|
0x30, 0x22, 0x41, 0xA8, 0x5B, 0xA6, 0x6A, 0x49, 0xBF, 0x53, 0x35, 0xE5, 0x9E, 0x0E, 0xEC, 0xB8, 0x5E, 0x15, 0x1F, 0xC1, 0x4F, 0xEC, 0x77, 0xE8, 0xB7, 0x4E, 0x87, 0xE6, 0xF5, 0x3C, 0xB3, 0x43
|
|
, 0xCC, 0x53, 0x36, 0xAC, 0x5A, 0x77, 0xB8, 0xDD, 0x30, 0x74, 0x8C, 0x4A, 0x9A, 0x9B, 0xBC, 0x0A, 0xA4, 0xAD, 0xBB, 0x13, 0x4B, 0x8C, 0xD4, 0x80, 0xCE, 0x65, 0x1D, 0x08, 0x5A, 0x6A, 0x6F, 0x25
|
|
, 0xF9, 0x3F, 0xEF, 0x1B, 0xA4, 0x72, 0x14, 0xED, 0x97, 0x22, 0x4A, 0x2E, 0xB8, 0x96, 0x4B, 0x8E, 0x96, 0x93, 0xF1, 0x28, 0xB2, 0x0B, 0x3C, 0xF8, 0x5D, 0xAA, 0xA9, 0x82, 0x13, 0x6E, 0xC1, 0xA9
|
|
, 0x20, 0x57, 0xB2, 0x5B, 0x16, 0xCF, 0x9E, 0x5F, 0xD4, 0xCC, 0x2E, 0xF5, 0xC9, 0x4C, 0x1C, 0xEE, 0xE3, 0x3F, 0x29, 0xB3, 0x06, 0x70, 0x43, 0x3D, 0xF5, 0x90, 0xA2, 0x42, 0x02, 0x98, 0x50, 0xFD
|
|
, 0x5D, 0x4E, 0x92, 0xAD, 0xAD, 0x7F, 0xAB, 0x60, 0x2C, 0xB8, 0x43, 0x76, 0x8F, 0x5F, 0xE6, 0xA7, 0x19, 0xE0, 0xB9, 0xB5, 0x62, 0x6B, 0xD4, 0x47, 0x69, 0x34, 0x0E, 0x6D, 0xA4, 0x52, 0xE3, 0x64
|
|
, 0x4A, 0x65, 0x47, 0xF5, 0x3F, 0x53, 0x5E, 0x8B, 0x1B, 0xFD, 0x21, 0xF7, 0xBA, 0x68, 0xF9, 0xDF, 0x68, 0xA8, 0x96, 0x0F, 0x8B, 0x01, 0x97, 0x58, 0x8C, 0x1E, 0xEF, 0xB3, 0x41, 0x44, 0x21, 0xDA
|
|
, 0xE0, 0xF4, 0xE0, 0x2D, 0xCD, 0x0B, 0xF0, 0x5C, 0x59, 0xD6, 0x99, 0xE7, 0x01, 0x15, 0x67, 0x32, 0xE0, 0x12, 0x2F, 0xCD, 0xA2, 0xDE, 0x52, 0xCE, 0xEC, 0xEF, 0x77, 0x0E, 0xBC, 0x38, 0x64, 0x8D
|
|
, 0xB4, 0xDB, 0x67, 0xFF, 0xC8, 0x66, 0x0C, 0x8A, 0x60, 0xE1, 0x2E, 0x00, 0x43, 0xA9, 0x37, 0x9C, 0x11, 0xAA, 0xB9, 0x98, 0xED, 0x21, 0x35, 0xD4, 0xC3, 0xDE, 0x65, 0x54, 0x9D, 0x1C, 0xB0, 0xA9
|
|
};
|
|
|
|
public static List<PCKFile> GetPCKFileList()
|
|
{
|
|
string installDirectory = new RegistryHandler().GetInstallDirectory();
|
|
string fileF00XDAT = Path.Combine(installDirectory, "f00X.dat");
|
|
|
|
byte[] compressedBytes = File.ReadAllBytes(fileF00XDAT);
|
|
|
|
if (compressedBytes.Length == 0) return new List<PCKFile>();
|
|
|
|
compressedBytes = compressedBytes.Select((b, i) => (byte)(b ^ BufferTable[i & 0xFF])).ToArray();
|
|
|
|
int decompressedSize = (compressedBytes.Length << 4) - compressedBytes.Length;
|
|
byte[] decompressedBytes = new byte[decompressedSize];
|
|
|
|
int result = ZLibDll.Decompress(compressedBytes, compressedBytes.Length, decompressedBytes, ref decompressedSize);
|
|
if (result != 0) throw new Exception("Error decoding f00x.dat");
|
|
|
|
List<PCKFile> pckFileList = new(100000);
|
|
using (MemoryStream memoryStream = new(decompressedBytes, 0, decompressedSize, false))
|
|
{
|
|
using BinaryReader binaryReader = new(memoryStream);
|
|
while (binaryReader.BaseStream.Position < binaryReader.BaseStream.Length)
|
|
{
|
|
string fileName = string.Empty;
|
|
try
|
|
{
|
|
ushort nameLength = binaryReader.ReadUInt16();
|
|
byte[] byteName = binaryReader.ReadBytes(nameLength * 2);
|
|
|
|
fileName = Encoding.Unicode.GetString(byteName);
|
|
byte archive = binaryReader.ReadByte(); // Which archive is it in
|
|
int size = binaryReader.ReadInt32(); // Size of the file
|
|
uint hash = binaryReader.ReadUInt32(); // Guessing the hash of the data
|
|
long offset = binaryReader.ReadInt64(); // Offset in the file
|
|
|
|
if (fileName.Length > 0 && !new[] { '/', ':', '*', '?', '<', '>' }.Any(fileName.Contains))
|
|
{
|
|
PCKFile file = new(fileName, archive, size, hash, offset);
|
|
pckFileList.Add(file);
|
|
}
|
|
else
|
|
{
|
|
Logger.WriteLog($"Invalid file name: {fileName}");
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
string errorMessage = $"Error parsing PCK file data {fileName}: {ex.Message}";
|
|
string errorLog = $"Error parsing PCK file data {fileName}: {ex.Message}|{ex.StackTrace}";
|
|
Exception newEx = new(errorMessage, ex);
|
|
Exception newLogEx = new(errorLog, ex);
|
|
ExceptionHandler.HandleException(newEx, newLogEx);
|
|
}
|
|
}
|
|
}
|
|
|
|
return pckFileList;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
}
|