mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 21:55:34 +08:00
117 lines
4.9 KiB
C#
117 lines
4.9 KiB
C#
//! \file ArcARC.cs
|
|
//! \date Sat Feb 20 13:02:18 2016
|
|
//! \brief Archive format used by Abel subsidiaries.
|
|
//
|
|
// Copyright (C) 2016 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.Collections.Generic;
|
|
using System.ComponentModel.Composition;
|
|
using System.IO;
|
|
using GameRes.Compression;
|
|
using GameRes.Utility;
|
|
|
|
namespace GameRes.Formats.Abel
|
|
{
|
|
[Export(typeof(ArchiveFormat))]
|
|
public class ArcOpener : ArchiveFormat
|
|
{
|
|
public override string Tag { get { return "ARC/ADVENGINE"; } }
|
|
public override string Description { get { return "ADVEngine resource archive"; } }
|
|
public override uint Signature { get { return 0x00637261; } } // 'arc'
|
|
public override bool IsHierarchic { get { return false; } }
|
|
public override bool CanCreate { get { return false; } }
|
|
|
|
public ArcOpener ()
|
|
{
|
|
Extensions = new string[] { "" };
|
|
}
|
|
|
|
const int IndexEntrySize = 0x26;
|
|
|
|
public override ArcFile TryOpen (ArcView file)
|
|
{
|
|
int count = file.View.ReadInt32 (8);
|
|
if (!IsSaneCount (count))
|
|
return null;
|
|
uint base_offset = file.View.ReadUInt32 (0xC);
|
|
if (base_offset <= 0x18 || base_offset >= file.MaxOffset)
|
|
return null;
|
|
uint packed_size = file.View.ReadUInt32 (0x10);
|
|
int index_size = file.View.ReadInt32 (0x14);
|
|
if (packed_size > file.MaxOffset || index_size / IndexEntrySize != count)
|
|
return null;
|
|
var name_buffer = new byte[30];
|
|
using (var packed = file.CreateStream (0x18, packed_size))
|
|
using (var lzss = new LzssStream (packed))
|
|
using (var index = new ArcView.Reader (lzss))
|
|
{
|
|
var dir = new List<Entry> (count);
|
|
for (int i = 0; i < count; ++i)
|
|
{
|
|
if (name_buffer.Length != index.Read (name_buffer, 0, name_buffer.Length))
|
|
return null;
|
|
var name = Binary.GetCString (name_buffer, 0, name_buffer.Length);
|
|
var entry = FormatCatalog.Instance.Create<Entry> (name);
|
|
if (name.EndsWith (".acd", StringComparison.InvariantCultureIgnoreCase))
|
|
entry.Type = "script";
|
|
entry.Offset = index.ReadUInt32() + base_offset;
|
|
entry.Size = index.ReadUInt32();
|
|
if (!entry.CheckPlacement (file.MaxOffset))
|
|
return null;
|
|
dir.Add (entry);
|
|
}
|
|
return new ArcFile (file, this, dir);
|
|
}
|
|
}
|
|
|
|
public override Stream OpenEntry (ArcFile arc, Entry entry)
|
|
{
|
|
if (entry.Size > 12 && entry.Name.EndsWith (".cmp", StringComparison.InvariantCultureIgnoreCase)
|
|
&& arc.File.View.AsciiEqual (entry.Offset, "CMP\0"))
|
|
return OpenCmpEntry (arc, entry);
|
|
if (entry.Size > 8 && entry.Name.EndsWith (".acd", StringComparison.InvariantCultureIgnoreCase)
|
|
&& arc.File.View.AsciiEqual (entry.Offset, "ACD\0"))
|
|
return OpenAcdEntry (arc, entry);
|
|
return base.OpenEntry (arc, entry);
|
|
}
|
|
|
|
Stream OpenAcdEntry (ArcFile arc, Entry entry)
|
|
{
|
|
var data = arc.File.View.ReadBytes (entry.Offset, entry.Size);
|
|
for (int i = 8; i < data.Length; ++i)
|
|
{
|
|
data[i] = (byte)(0xFF - data[i]);
|
|
}
|
|
return new MemoryStream (data);
|
|
}
|
|
|
|
Stream OpenCmpEntry (ArcFile arc, Entry entry)
|
|
{
|
|
uint offset = arc.File.View.ReadUInt32 (entry.Offset+8);
|
|
if (offset >= entry.Size)
|
|
return base.OpenEntry (arc, entry);
|
|
return arc.File.CreateStream (entry.Offset+offset, entry.Size-offset);
|
|
}
|
|
}
|
|
}
|