GARbro-mirror/ArcFormats/Abel/ArcARC.cs

117 lines
4.8 KiB
C#
Raw Normal View History

//! \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 CanWrite { 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.HasExtension (".acd"))
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.HasExtension (".cmp")
&& arc.File.View.AsciiEqual (entry.Offset, "CMP\0"))
return OpenCmpEntry (arc, entry);
if (entry.Size > 8 && entry.Name.HasExtension (".acd")
&& 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]);
}
2016-10-16 13:22:53 +08:00
return new BinMemoryStream (data, entry.Name);
}
Stream OpenCmpEntry (ArcFile arc, Entry entry)
{
uint offset = arc.File.View.ReadUInt32 (entry.Offset+8);
if (offset >= entry.Size)
2016-10-16 20:13:57 +08:00
return base.OpenEntry (arc, entry);
return arc.File.CreateStream (entry.Offset+offset, entry.Size-offset);
}
}
}