GARbro-mirror/ArcFormats/Nexas/ArcPAC.cs

213 lines
7.5 KiB
C#
Raw Normal View History

2015-03-16 09:43:11 +08:00
//! \file ArcNexas.cs
//! \date Sat Mar 14 18:03:04 2015
//! \brief NeXAS enginge resource archives implementation.
//
// Copyright (C) 2015 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;
using System.Linq;
using System.Text;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using GameRes.Compression;
2015-03-16 09:43:11 +08:00
using GameRes.Formats.Strings;
using GameRes.Utility;
namespace GameRes.Formats.NeXAS
{
public enum Compression
{
None,
Lzss,
Huffman,
Deflate,
DeflateOrNone,
}
public class PacArchive : ArcFile
{
public readonly Compression PackType;
public PacArchive (ArcView arc, ArchiveFormat impl, ICollection<Entry> dir, Compression type)
: base (arc, impl, dir)
{
PackType = type;
}
}
[Export(typeof(ArchiveFormat))]
public class PacOpener : ArchiveFormat
{
public override string Tag { get { return "PAC"; } }
public override string Description { get { return "NeXAS engine resource archive"; } }
public override uint Signature { get { return 0x00434150; } } // 'PAC\000'
public override bool IsHierarchic { get { return false; } }
public override bool CanWrite { get { return false; } }
2015-03-16 09:43:11 +08:00
2015-09-03 11:13:12 +08:00
public PacOpener ()
{
Signatures = new uint[] { 0x00434150, 0 };
}
2015-03-16 09:43:11 +08:00
public override ArcFile TryOpen (ArcView file)
{
2015-09-03 11:13:12 +08:00
if (!file.View.AsciiEqual (0, "PAC") || 'K' == file.View.ReadByte (3))
return null;
2016-09-09 17:15:29 +08:00
var reader = new IndexReader (file);
var dir = reader.Read();
if (null == dir)
2015-03-16 09:43:11 +08:00
return null;
2016-09-09 17:15:29 +08:00
if (Compression.None == reader.PackType)
return new ArcFile (file, this, dir);
return new PacArchive (file, this, dir, reader.PackType);
}
internal sealed class IndexReader
{
ArcView m_file;
int m_count;
int m_pack_type;
2015-03-16 09:43:11 +08:00
2016-09-09 17:15:29 +08:00
const int MaxNameLength = 0x40;
public Compression PackType { get { return (Compression)m_pack_type; } }
public IndexReader (ArcView file)
2015-03-16 09:43:11 +08:00
{
2016-09-09 17:15:29 +08:00
m_file = file;
m_count = file.View.ReadInt32 (4);
m_pack_type = file.View.ReadInt32 (8);
}
List<Entry> m_dir;
public List<Entry> Read ()
{
if (!IsSaneCount (m_count))
return null;
m_dir = new List<Entry> (m_count);
bool success = false;
try
2015-03-16 09:43:11 +08:00
{
2016-09-09 17:15:29 +08:00
success = ReadOld();
}
catch { /* ignore parse errors */ }
if (!success && !ReadNew())
2015-03-16 09:43:11 +08:00
return null;
2016-09-09 17:15:29 +08:00
return m_dir;
}
bool ReadNew ()
{
uint index_size = m_file.View.ReadUInt32 (m_file.MaxOffset-4);
int unpacked_size = m_count*0x4C;
if (index_size >= m_file.MaxOffset || index_size > unpacked_size*2)
return false;
var index_packed = m_file.View.ReadBytes (m_file.MaxOffset-4-index_size, index_size);
for (int i = 0; i < index_packed.Length; ++i)
index_packed[i] = (byte)~index_packed[i];
var index = HuffmanDecode (index_packed, unpacked_size);
using (var input = new MemoryStream (index))
if (!ReadFromStream (input, 0x40))
return false;
return true;
}
bool ReadOld ()
{
using (var input = m_file.CreateStream())
{
input.Position = 0xC;
if (!ReadFromStream (input, 0x20))
return false;
}
return true;
}
byte[] m_name_buffer = new byte[MaxNameLength];
bool ReadFromStream (Stream input, int name_length)
{
m_dir.Clear();
using (var index = new ArcView.Reader (input))
{
for (int i = 0; i < m_count; ++i)
{
if (name_length != index.Read (m_name_buffer, 0, name_length))
return false;
var name = Binary.GetCString (m_name_buffer, 0, name_length);
if (string.IsNullOrWhiteSpace (name))
return false;
var entry = FormatCatalog.Instance.Create<PackedEntry> (name);
entry.Offset = index.ReadUInt32();
entry.UnpackedSize = index.ReadUInt32();
entry.Size = index.ReadUInt32();
if (!entry.CheckPlacement (m_file.MaxOffset))
return false;
entry.IsPacked = m_pack_type != 0 && (m_pack_type != 4 || entry.Size != entry.UnpackedSize);
m_dir.Add (entry);
}
return true;
}
2015-03-16 09:43:11 +08:00
}
}
public override Stream OpenEntry (ArcFile arc, Entry entry)
{
var input = arc.File.CreateStream (entry.Offset, entry.Size);
var pac = arc as PacArchive;
var pent = entry as PackedEntry;
if (null == pac || null == pent || !pent.IsPacked)
2015-03-16 09:43:11 +08:00
return input;
switch (pac.PackType)
{
case Compression.Lzss:
2016-09-09 17:15:29 +08:00
return new LzssStream (input);
2015-03-16 09:43:11 +08:00
case Compression.Huffman:
using (input)
{
var packed = new byte[entry.Size];
input.Read (packed, 0, packed.Length);
var unpacked = HuffmanDecode (packed, (int)pent.UnpackedSize);
2016-10-16 13:22:53 +08:00
return new BinMemoryStream (unpacked, 0, (int)pent.UnpackedSize, entry.Name);
2015-03-16 09:43:11 +08:00
}
case Compression.Deflate:
default:
return new ZLibStream (input, CompressionMode.Decompress);
}
}
static private byte[] HuffmanDecode (byte[] packed, int unpacked_size)
{
var dst = new byte[unpacked_size];
var decoder = new HuffmanDecoder (packed, dst);
return decoder.Unpack();
}
}
}