2015-08-05 02:30:36 +08:00
|
|
|
//! \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.Utility;
|
|
|
|
|
|
|
|
namespace GameRes.Formats.Lilim
|
|
|
|
{
|
2015-11-07 07:05:35 +08:00
|
|
|
internal class AosEntry : Entry
|
|
|
|
{
|
|
|
|
public bool IsCompressed;
|
|
|
|
}
|
|
|
|
|
2015-08-05 02:30:36 +08:00
|
|
|
[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; } }
|
2016-10-11 04:05:22 +08:00
|
|
|
public override bool CanWrite { get { return false; } }
|
2015-08-05 02:30:36 +08:00
|
|
|
|
|
|
|
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 = new byte[0x10];
|
|
|
|
if (0x10 != file.View.Read (first_offset, name_buf, 0, 0x10))
|
|
|
|
return null;
|
|
|
|
if (!name_buf.SequenceEqual (IndexLink) && !name_buf.SequenceEqual (IndexEnd))
|
|
|
|
return null;
|
|
|
|
|
2015-11-02 09:43:45 +08:00
|
|
|
long current_offset = 0;
|
2015-08-05 02:30:36 +08:00
|
|
|
var dir = new List<Entry> (0x3E);
|
2015-11-02 09:43:45 +08:00
|
|
|
while (current_offset < file.MaxOffset)
|
2015-08-05 02:30:36 +08:00
|
|
|
{
|
|
|
|
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);
|
2015-11-07 07:05:35 +08:00
|
|
|
var entry = FormatCatalog.Instance.Create<AosEntry> (name);
|
2015-08-05 02:30:36 +08:00
|
|
|
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;
|
2017-04-11 03:15:13 +08:00
|
|
|
if (name.HasExtension (".scr"))
|
2015-11-07 07:05:35 +08:00
|
|
|
entry.IsCompressed = true;
|
2015-08-05 02:30:36 +08:00
|
|
|
dir.Add (entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return new ArcFile (file, this, dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override Stream OpenEntry (ArcFile arc, Entry entry)
|
|
|
|
{
|
2015-11-07 07:05:35 +08:00
|
|
|
var aent = entry as AosEntry;
|
|
|
|
if (null == aent || !aent.IsCompressed)
|
|
|
|
return base.OpenEntry (arc, entry);
|
2015-08-05 02:30:36 +08:00
|
|
|
|
|
|
|
uint unpacked_size = arc.File.View.ReadUInt32 (entry.Offset);
|
|
|
|
var packed = new byte[entry.Size-4];
|
|
|
|
arc.File.View.Read (entry.Offset+4, packed, 0, (uint)packed.Length);
|
|
|
|
var unpacked = new byte[unpacked_size];
|
|
|
|
|
|
|
|
var decoder = new HuffmanDecoder (packed, unpacked);
|
|
|
|
decoder.Unpack();
|
2016-10-16 13:22:53 +08:00
|
|
|
return new BinMemoryStream (unpacked, entry.Name);
|
2015-08-05 02:30:36 +08:00
|
|
|
}
|
|
|
|
}
|
2015-11-02 09:43:45 +08:00
|
|
|
|
|
|
|
[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; } }
|
2016-10-11 04:05:22 +08:00
|
|
|
public override bool CanWrite { get { return false; } }
|
2015-11-02 09:43:45 +08:00
|
|
|
|
|
|
|
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;
|
2015-11-07 07:05:35 +08:00
|
|
|
var entry = FormatCatalog.Instance.Create<AosEntry> (name);
|
2015-11-02 09:43:45 +08:00
|
|
|
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;
|
2017-04-11 03:15:13 +08:00
|
|
|
if (name.HasExtension (".scr"))
|
2015-11-07 07:05:35 +08:00
|
|
|
entry.IsCompressed = true;
|
2017-04-11 03:15:13 +08:00
|
|
|
else if (name.HasExtension (".cmp"))
|
2015-11-07 07:05:35 +08:00
|
|
|
{
|
|
|
|
entry.IsCompressed = true;
|
|
|
|
entry.Name = Path.ChangeExtension (entry.Name, ".abm");
|
|
|
|
entry.Type = "image";
|
|
|
|
}
|
2015-11-02 09:43:45 +08:00
|
|
|
dir.Add (entry);
|
|
|
|
index_offset += 0x28;
|
|
|
|
}
|
|
|
|
return new ArcFile (file, this, dir);
|
|
|
|
}
|
|
|
|
}
|
2015-08-05 02:30:36 +08:00
|
|
|
}
|