GARbro-mirror/ArcFormats/Lilim/ArcAOS.cs
morkt 1b585ea30e updated formats.
(PICT): fixed 16bpp images.
(GDT): added image format.
(DXR): tweaks to recognizing DXR inside exe files.
(NSA): recognize mp3 files named as nsa.
(TLZ): added ContainedFormats.
(WrapSingleFileAchive): class that represents single file as an archive.
(DesertCgOPener): Software House Parsley archive.
(Triangle.RleReader): utilize UnpackV2, replaced BinaryReader with IBinaryStream.
2023-10-11 18:38:23 +04:00

168 lines
6.9 KiB
C#

//! \file ArcAOS.cs
//! \date Tue Aug 04 06:00:39 2015
//! \brief LiLiM resource archive 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.Collections.Generic;
using System.ComponentModel.Composition;
using System.IO;
using System.Linq;
using GameRes.Compression;
namespace GameRes.Formats.Lilim
{
[Export(typeof(ArchiveFormat))]
public class AosOpener : ArchiveFormat
{
public override string Tag { get { return "AOS"; } }
public override string Description { get { return "LiLiM/Le.Chocolat engine resource archive"; } }
public override uint Signature { get { return 0; } }
public override bool IsHierarchic { get { return false; } }
public override bool CanWrite { get { return false; } }
public AosOpener ()
{
ContainedFormats = new[] { "BMP", "ABM", "IMG/BMP", "DAT/GENERIC", "OGG" };
}
static readonly byte[] IndexLink = Enumerable.Repeat<byte> (0xff, 0x10).ToArray();
static readonly byte[] IndexEnd = Enumerable.Repeat<byte> (0, 0x10).ToArray();
public override ArcFile TryOpen (ArcView file)
{
if (0 == file.View.ReadByte (0))
return null;
uint first_offset = file.View.ReadUInt32 (0x10);
if (first_offset >= file.MaxOffset || 0 != (first_offset & 0x1F))
return null;
var name_buf = file.View.ReadBytes (first_offset, 0x10);
if (!name_buf.SequenceEqual (IndexLink) && !name_buf.SequenceEqual (IndexEnd))
return null;
string last_name = null;
long current_offset = 0;
var dir = new List<Entry> (0x3E);
while (current_offset < file.MaxOffset)
{
if (0x10 != file.View.Read (current_offset, name_buf, 0, 0x10))
break;
if (name_buf.SequenceEqual (IndexLink))
{
uint next_offset = file.View.ReadUInt32 (current_offset+0x10);
current_offset += 0x20 + next_offset;
}
else
{
int name_length = Array.IndexOf<byte> (name_buf, 0);
if (0 == name_length)
break;
if (-1 == name_length)
name_length = name_buf.Length;
var name = Encodings.cp932.GetString (name_buf, 0, name_length);
if (last_name == name || string.IsNullOrWhiteSpace (name))
return null;
last_name = name;
var entry = FormatCatalog.Instance.Create<PackedEntry> (name);
entry.Offset = file.View.ReadUInt32 (current_offset+0x10);
entry.Size = file.View.ReadUInt32 (current_offset+0x14);
current_offset += 0x20;
entry.Offset += current_offset;
if (!entry.CheckPlacement (file.MaxOffset))
return null;
entry.IsPacked = name.HasExtension (".scr");
dir.Add (entry);
}
}
return new ArcFile (file, this, dir);
}
public override Stream OpenEntry (ArcFile arc, Entry entry)
{
var aent = entry as PackedEntry;
if (null == aent || !aent.IsPacked)
return base.OpenEntry (arc, entry);
aent.UnpackedSize = arc.File.View.ReadUInt32 (entry.Offset);
var packed = arc.File.CreateStream (entry.Offset+4, entry.Size-4);
var unpacked = new HuffmanStream (packed);
return new LimitStream (unpacked, aent.UnpackedSize);
}
}
[Export(typeof(ArchiveFormat))]
public class Aos2Opener : AosOpener
{
public override string Tag { get { return "AOSv2"; } }
public override string Description { get { return "LiLiM resource archive version 2"; } }
public override uint Signature { get { return 0; } }
public override bool IsHierarchic { get { return false; } }
public override bool CanWrite { get { return false; } }
public Aos2Opener ()
{
Extensions = new string[] { "aos" };
}
public override ArcFile TryOpen (ArcView file)
{
if (0 != file.View.ReadInt32 (0))
return null;
long base_offset = file.View.ReadUInt32 (4);
uint index_offset = 0x111;
int index_size = file.View.ReadInt32 (8);
if (base_offset >= file.MaxOffset || index_offset+index_size >= file.MaxOffset
|| base_offset < index_offset+index_size)
return null;
int count = index_size / 0x28;
if (!IsSaneCount (count))
return null;
var dir = new List<Entry> (count);
for (int i = 0; i < count; ++i)
{
var name = file.View.ReadString (index_offset, 0x20);
if (0 == name.Length)
return null;
var entry = FormatCatalog.Instance.Create<PackedEntry> (name);
entry.Offset = base_offset + file.View.ReadUInt32 (index_offset+0x20);
entry.Size = file.View.ReadUInt32 (index_offset+0x24);
if (!entry.CheckPlacement (file.MaxOffset))
return null;
if (name.HasExtension (".scr"))
entry.IsPacked = true;
else if (name.HasExtension (".cmp"))
{
entry.IsPacked = true;
entry.Name = Path.ChangeExtension (entry.Name, ".abm");
entry.Type = "image";
}
dir.Add (entry);
index_offset += 0x28;
}
return new ArcFile (file, this, dir);
}
}
}