GARbro-mirror/ArcFormats/ArcAST.cs

132 lines
5.3 KiB
C#
Raw Normal View History

//! \file ArcAST.cs
//! \date Tue Apr 21 02:24:20 2015
//! \brief AST script engine resource archives.
//
// Copyright (C) 2015-2017 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.AST
{
internal class AstArchive : ArcFile
{
public AstArchive (ArcView arc, ArchiveFormat impl, ICollection<Entry> dir)
: base (arc, impl, dir)
{
}
}
[Export(typeof(ArchiveFormat))]
public class ArcOpener : ArchiveFormat
{
public override string Tag { get { return "AST"; } }
public override string Description { get { return "AST script engine resource archive"; } }
public override uint Signature { get { return 0x32435241; } } // 'ARC2'
public override bool IsHierarchic { get { return true; } }
public override bool CanWrite { get { return false; } }
public ArcOpener ()
{
Extensions = new string[] { "" };
Signatures = new uint[] { 0x32435241, 0x31435241 }; // 'ARC2', 'ARC1'
}
public override ArcFile TryOpen (ArcView file)
{
int version = file.View.ReadByte (3) - 0x30;
int count = file.View.ReadInt32 (4);
if (!IsSaneCount (count))
return null;
var name_buf = new byte[32];
var dir = new List<Entry> (count);
long index_offset = 8;
uint next_offset = file.View.ReadUInt32 (index_offset);
for (int i = 0; i < count; ++i)
{
uint offset = next_offset;
uint size = file.View.ReadUInt32 (index_offset+4);
int name_length = file.View.ReadByte (index_offset+8);
if (name_length > name_buf.Length)
name_buf = new byte[name_length];
file.View.Read (index_offset+9, name_buf, 0, (uint)name_length);
if (i+1 == count)
next_offset = (uint)file.MaxOffset;
else
next_offset = file.View.ReadUInt32 (index_offset+9+name_length);
if (0 != offset && offset != file.MaxOffset)
{
if (2 == version)
for (int j = 0; j < name_length; ++j)
name_buf[j] ^= 0xff;
uint packed_size;
if (0 == next_offset)
packed_size = size;
else if (next_offset >= offset)
packed_size = next_offset - offset;
else
return null;
string name = Encodings.cp932.GetString (name_buf, 0, name_length);
var entry = new PackedEntry
{
Name = name,
Type = FormatCatalog.Instance.GetTypeFromName (name),
Offset = offset,
Size = packed_size,
UnpackedSize = size,
IsPacked = packed_size != size,
};
if (!entry.CheckPlacement (file.MaxOffset))
return null;
dir.Add (entry);
}
index_offset += 9 + name_length;
}
if (2 == version)
return new AstArchive (file, this, dir);
else
return new ArcFile (file, this, dir);
}
public override Stream OpenEntry (ArcFile arc, Entry entry)
{
var input = arc.File.CreateStream (entry.Offset, entry.Size);
var pent = entry as PackedEntry;
if (null == pent || !(arc is AstArchive))
return input;
if (!pent.IsPacked)
{
if (0xB8B1AF76 == input.Signature) // PNG signature ^ FF
return new XoredStream (input, 0xFF);
return input;
}
2018-06-15 02:59:39 +08:00
var lzss = new LzssStream (input);
lzss.Config.FrameFill = 0xFF;
return new XoredStream (lzss, 0xFF);
}
}
}