2016-07-06 08:14:42 +08:00
|
|
|
//! \file ArcDAT.cs
|
|
|
|
//! \date Thu Jun 16 13:48:04 2016
|
|
|
|
//! \brief Tinker Bell resource archive.
|
|
|
|
//
|
|
|
|
// 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;
|
2017-01-06 09:11:45 +08:00
|
|
|
using System.Linq;
|
2016-07-06 08:14:42 +08:00
|
|
|
using System.Text;
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
using GameRes.Compression;
|
|
|
|
using GameRes.Formats.Properties;
|
|
|
|
using GameRes.Formats.Strings;
|
|
|
|
using GameRes.Utility;
|
|
|
|
|
|
|
|
namespace GameRes.Formats.Cyberworks
|
|
|
|
{
|
|
|
|
internal class BellArchive : ArcFile
|
|
|
|
{
|
|
|
|
public readonly AImageScheme Scheme;
|
|
|
|
|
|
|
|
public BellArchive (ArcView arc, ArchiveFormat impl, ICollection<Entry> dir, AImageScheme scheme)
|
|
|
|
: base (arc, impl, dir)
|
|
|
|
{
|
|
|
|
Scheme = scheme;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-06 09:11:45 +08:00
|
|
|
internal abstract class ArchiveNameParser
|
|
|
|
{
|
2017-01-08 10:18:13 +08:00
|
|
|
readonly Regex m_regex;
|
2017-01-06 09:11:45 +08:00
|
|
|
|
|
|
|
protected ArchiveNameParser (string pattern)
|
|
|
|
{
|
|
|
|
m_regex = new Regex (pattern, RegexOptions.IgnoreCase);
|
|
|
|
}
|
|
|
|
|
2017-01-08 10:18:13 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Returns toc filename and archive index corresponding to <paramref name="arc_name"/>.
|
|
|
|
/// </summary>
|
2017-01-06 09:11:45 +08:00
|
|
|
public Tuple<string, int> ParseName (string arc_name)
|
|
|
|
{
|
|
|
|
var match = m_regex.Match (arc_name);
|
|
|
|
if (!match.Success)
|
|
|
|
return null;
|
|
|
|
int arc_idx;
|
|
|
|
var toc_name = ParseMatch (match, out arc_idx);
|
|
|
|
if (null == toc_name)
|
|
|
|
return null;
|
|
|
|
return Tuple.Create (toc_name, arc_idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected abstract string ParseMatch (Match match, out int arc_idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal class ArcNameParser : ArchiveNameParser
|
|
|
|
{
|
|
|
|
public ArcNameParser () : base (@"^.+0(?<id>(?<num>\d)(?<idx>[a-z])?)(?:|\..*)$") { }
|
|
|
|
|
|
|
|
protected override string ParseMatch (Match match, out int arc_idx)
|
|
|
|
{
|
|
|
|
arc_idx = 0;
|
|
|
|
char num = match.Groups["num"].Value[0];
|
|
|
|
if (num < '4' || num > '6')
|
|
|
|
return null;
|
|
|
|
if (match.Groups["idx"].Success)
|
|
|
|
arc_idx = char.ToUpper (match.Groups["idx"].Value[0]) - '@';
|
|
|
|
|
|
|
|
var toc_name_builder = new StringBuilder (match.Value);
|
|
|
|
var num_pos = match.Groups["id"].Index;
|
|
|
|
toc_name_builder.Remove (num_pos, match.Groups["id"].Length);
|
|
|
|
toc_name_builder.Insert (num_pos, num-'3');
|
|
|
|
return toc_name_builder.ToString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
internal class DatNameParser : ArchiveNameParser
|
|
|
|
{
|
|
|
|
public DatNameParser () : base (@"^(?<name>d[a-z]+?)(?<idx>[ah])?\.dat$") { }
|
|
|
|
|
|
|
|
protected override string ParseMatch (Match match, out int arc_idx)
|
|
|
|
{
|
|
|
|
var toc_name_builder = new StringBuilder (match.Groups["name"].Value);
|
|
|
|
arc_idx = 0;
|
|
|
|
if (match.Groups["idx"].Success)
|
|
|
|
{
|
|
|
|
if ('a' == match.Groups["idx"].Value[0])
|
|
|
|
{
|
|
|
|
arc_idx = 1;
|
|
|
|
toc_name_builder.Append ('h');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
toc_name_builder.Append ('h');
|
|
|
|
toc_name_builder.Append (".dat");
|
|
|
|
return toc_name_builder.ToString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-06 08:14:42 +08:00
|
|
|
[Export(typeof(ArchiveFormat))]
|
|
|
|
public class DatOpener : ArchiveFormat
|
|
|
|
{
|
|
|
|
public override string Tag { get { return "ARC/Cyberworks"; } }
|
|
|
|
public override string Description { get { return "Cyberworks/TinkerBell 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; } }
|
2016-07-06 08:14:42 +08:00
|
|
|
|
|
|
|
public DatOpener ()
|
|
|
|
{
|
|
|
|
Extensions = new string[] { "dat", "04", "05", "06" };
|
|
|
|
}
|
|
|
|
|
2017-01-06 09:11:45 +08:00
|
|
|
static readonly ArchiveNameParser[] s_name_parsers = { new ArcNameParser(), new DatNameParser() };
|
2016-07-06 08:14:42 +08:00
|
|
|
|
|
|
|
public override ArcFile TryOpen (ArcView file)
|
|
|
|
{
|
|
|
|
var arc_name = Path.GetFileName (file.Name);
|
2017-01-06 09:11:45 +08:00
|
|
|
var result = s_name_parsers.Select (p => p.ParseName (arc_name)).FirstOrDefault (p => p != null);
|
|
|
|
if (null == result)
|
2016-07-31 22:57:25 +08:00
|
|
|
return null;
|
2017-01-06 09:11:45 +08:00
|
|
|
string toc_name = result.Item1;
|
|
|
|
int arc_idx = result.Item2;
|
2016-07-31 22:57:25 +08:00
|
|
|
|
|
|
|
toc_name = VFS.CombinePath (VFS.GetDirectoryName (file.Name), toc_name);
|
2016-11-13 20:18:23 +08:00
|
|
|
if (!VFS.FileExists (toc_name))
|
|
|
|
return null;
|
2016-07-31 22:57:25 +08:00
|
|
|
var toc = ReadToc (toc_name);
|
|
|
|
if (null == toc)
|
|
|
|
return null;
|
|
|
|
|
2016-07-06 08:14:42 +08:00
|
|
|
int entry_size = LittleEndian.ToInt32 (toc, 0) + 4;
|
|
|
|
if (entry_size < 0x16)
|
|
|
|
return null;
|
|
|
|
int count = toc.Length / entry_size;
|
|
|
|
if (!IsSaneCount (count))
|
|
|
|
return null;
|
|
|
|
var type = new char[2];
|
|
|
|
var dir = new List<Entry> (count);
|
|
|
|
bool has_images = false;
|
2016-10-16 22:29:54 +08:00
|
|
|
using (var index = new BinMemoryStream (toc, file.Name))
|
2016-07-06 08:14:42 +08:00
|
|
|
{
|
2016-10-16 22:29:54 +08:00
|
|
|
while (index.Position < index.Length)
|
2016-07-06 08:14:42 +08:00
|
|
|
{
|
|
|
|
entry_size = index.ReadInt32();
|
|
|
|
if (entry_size <= 0)
|
|
|
|
return null;
|
2016-10-16 22:29:54 +08:00
|
|
|
var next_pos = index.Position + entry_size;
|
2016-07-06 08:14:42 +08:00
|
|
|
uint id = index.ReadUInt32();
|
|
|
|
var entry = new PackedEntry { Name = id.ToString ("D6") };
|
|
|
|
entry.UnpackedSize = index.ReadUInt32();
|
|
|
|
entry.Size = index.ReadUInt32();
|
|
|
|
entry.IsPacked = entry.UnpackedSize != entry.Size;
|
|
|
|
entry.Offset = index.ReadUInt32();
|
|
|
|
type[0] = (char)index.ReadByte();
|
|
|
|
type[1] = (char)index.ReadByte();
|
|
|
|
int entry_idx = 0;
|
|
|
|
if (entry_size >= 0x17)
|
|
|
|
{
|
|
|
|
index.ReadInt32();
|
|
|
|
entry_idx = index.ReadByte();
|
|
|
|
}
|
|
|
|
if (entry_idx == arc_idx)
|
|
|
|
{
|
|
|
|
if (type[0] > 0x20 && type[0] < 0x7F)
|
|
|
|
{
|
|
|
|
string ext;
|
|
|
|
if (type[1] > 0x20 && type[1] < 0x7F)
|
|
|
|
ext = new string (type);
|
|
|
|
else
|
|
|
|
ext = new string (type[0], 1);
|
|
|
|
if ("b0" == ext || "n0" == ext || "o0" == ext)
|
|
|
|
{
|
|
|
|
entry.Type = "image";
|
|
|
|
has_images = true;
|
|
|
|
}
|
|
|
|
else if ("j0" == ext || "k0" == ext || "u0" == ext)
|
|
|
|
entry.Type = "audio";
|
|
|
|
entry.Name = Path.ChangeExtension (entry.Name, ext);
|
|
|
|
}
|
|
|
|
dir.Add (entry);
|
|
|
|
}
|
2016-10-16 22:29:54 +08:00
|
|
|
index.Position = next_pos;
|
2016-07-06 08:14:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (0 == dir.Count)
|
|
|
|
return null;
|
|
|
|
if (!has_images)
|
|
|
|
return new ArcFile (file, this, dir);
|
2016-10-09 14:10:12 +08:00
|
|
|
var scheme = QueryScheme (file.Name);
|
|
|
|
return new BellArchive (file, this, dir, scheme);
|
2016-07-06 08:14:42 +08:00
|
|
|
}
|
|
|
|
|
2016-07-31 22:57:25 +08:00
|
|
|
byte[] ReadToc (string toc_name)
|
|
|
|
{
|
|
|
|
using (var toc_view = VFS.OpenView (toc_name))
|
|
|
|
{
|
|
|
|
if (toc_view.MaxOffset <= 0x10)
|
|
|
|
return null;
|
|
|
|
uint unpacked_size = DecodeDecimal (toc_view, 0);
|
|
|
|
if (unpacked_size <= 4 || unpacked_size > 0x1000000)
|
|
|
|
return null;
|
|
|
|
uint packed_size = DecodeDecimal (toc_view, 8);
|
|
|
|
if (packed_size > toc_view.MaxOffset - 0x10)
|
|
|
|
return null;
|
|
|
|
using (var toc_s = toc_view.CreateStream (0x10, packed_size))
|
|
|
|
using (var lzss = new LzssStream (toc_s))
|
|
|
|
{
|
|
|
|
var toc = new byte[unpacked_size];
|
|
|
|
if (toc.Length != lzss.Read (toc, 0, toc.Length))
|
|
|
|
return null;
|
|
|
|
return toc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-06 08:14:42 +08:00
|
|
|
public override Stream OpenEntry (ArcFile arc, Entry entry)
|
|
|
|
{
|
2016-10-26 00:57:04 +08:00
|
|
|
Stream input = arc.File.CreateStream (entry.Offset, entry.Size);
|
2016-07-06 08:14:42 +08:00
|
|
|
var pent = entry as PackedEntry;
|
|
|
|
if (null != pent && pent.IsPacked)
|
|
|
|
{
|
|
|
|
input = new LzssStream (input);
|
|
|
|
}
|
2016-10-26 00:57:04 +08:00
|
|
|
return input;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override IImageDecoder OpenImage (ArcFile arc, Entry entry)
|
|
|
|
{
|
2016-07-06 08:14:42 +08:00
|
|
|
var barc = arc as BellArchive;
|
2016-10-26 00:57:04 +08:00
|
|
|
if (null == barc || entry.Size < 5)
|
|
|
|
return base.OpenImage (arc, entry);
|
|
|
|
var input = arc.OpenBinaryEntry (entry);
|
2016-07-06 08:14:42 +08:00
|
|
|
try
|
|
|
|
{
|
2016-10-26 00:57:04 +08:00
|
|
|
return DecryptImage (input, barc.Scheme);
|
2016-07-06 08:14:42 +08:00
|
|
|
}
|
|
|
|
catch
|
|
|
|
{
|
|
|
|
input.Dispose();
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-26 00:57:04 +08:00
|
|
|
protected virtual IImageDecoder DecryptImage (IBinaryStream input, AImageScheme scheme)
|
2016-07-06 08:14:42 +08:00
|
|
|
{
|
2016-10-26 00:57:04 +08:00
|
|
|
int type = input.ReadByte();
|
2016-07-06 08:14:42 +08:00
|
|
|
if ('c' == type || 'b' == type)
|
|
|
|
{
|
2016-10-26 00:57:04 +08:00
|
|
|
uint img_size = Binary.BigEndian (input.ReadUInt32());
|
|
|
|
if (input.Length - 5 == img_size)
|
2016-07-06 08:14:42 +08:00
|
|
|
{
|
2016-10-26 00:57:04 +08:00
|
|
|
input = BinaryStream.FromStream (new StreamRegion (input.AsStream, 5, img_size), input.Name);
|
2016-07-06 08:14:42 +08:00
|
|
|
}
|
|
|
|
}
|
2016-10-26 00:57:04 +08:00
|
|
|
else if (scheme != null && 'a' == type && input.Length > 21)
|
2016-07-06 08:14:42 +08:00
|
|
|
{
|
|
|
|
int id = input.ReadByte();
|
|
|
|
if (id == scheme.Value2)
|
|
|
|
{
|
2016-10-26 00:57:04 +08:00
|
|
|
return new AImageReader (input, scheme);
|
2016-07-06 08:14:42 +08:00
|
|
|
}
|
|
|
|
}
|
2016-10-26 00:57:04 +08:00
|
|
|
input.Position = 0;
|
2016-10-26 19:42:27 +08:00
|
|
|
return new ImageFormatDecoder (input);
|
2016-07-06 08:14:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
uint DecodeDecimal (ArcView file, long offset)
|
|
|
|
{
|
|
|
|
uint v = 0;
|
|
|
|
uint rank = 1;
|
|
|
|
for (int i = 7; i >= 0; --i, rank *= 10)
|
|
|
|
{
|
|
|
|
uint b = file.View.ReadByte (offset+i);
|
|
|
|
if (b != 0xFF)
|
|
|
|
v += (b ^ 0x7F) * rank;
|
|
|
|
}
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
2016-10-24 09:01:01 +08:00
|
|
|
internal AImageScheme QueryScheme (string arc_name)
|
2016-10-09 14:10:12 +08:00
|
|
|
{
|
|
|
|
var title = FormatCatalog.Instance.LookupGame (arc_name);
|
|
|
|
if (!string.IsNullOrEmpty (title) && KnownSchemes.ContainsKey (title))
|
|
|
|
return KnownSchemes[title];
|
|
|
|
var options = Query<BellOptions> (arcStrings.ArcEncryptedNotice);
|
|
|
|
return options.Scheme;
|
|
|
|
}
|
|
|
|
|
2016-07-06 08:14:42 +08:00
|
|
|
public override ResourceOptions GetDefaultOptions ()
|
|
|
|
{
|
|
|
|
return new BellOptions { Scheme = GetScheme (Settings.Default.BELLTitle) };
|
|
|
|
}
|
|
|
|
|
|
|
|
public override object GetAccessWidget ()
|
|
|
|
{
|
|
|
|
return new GUI.WidgetBELL();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static AImageScheme GetScheme (string title)
|
|
|
|
{
|
|
|
|
AImageScheme scheme = null;
|
|
|
|
if (string.IsNullOrEmpty (title) || !KnownSchemes.TryGetValue (title, out scheme))
|
|
|
|
return null;
|
|
|
|
return scheme;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Dictionary<string, AImageScheme> KnownSchemes = new Dictionary<string, AImageScheme>();
|
|
|
|
|
|
|
|
public override ResourceScheme Scheme
|
|
|
|
{
|
|
|
|
get { return new SchemeMap { KnownSchemes = KnownSchemes }; }
|
|
|
|
set { KnownSchemes = ((SchemeMap)value).KnownSchemes; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
[Serializable]
|
|
|
|
public class AImageScheme
|
|
|
|
{
|
|
|
|
public byte Value1;
|
|
|
|
public byte Value2;
|
|
|
|
public byte Value3;
|
|
|
|
public byte[] HeaderOrder;
|
|
|
|
public bool Flipped;
|
|
|
|
|
|
|
|
public AImageScheme ()
|
|
|
|
{
|
|
|
|
Flipped = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
[Serializable]
|
|
|
|
public class SchemeMap : ResourceScheme
|
|
|
|
{
|
|
|
|
public Dictionary<string, AImageScheme> KnownSchemes;
|
|
|
|
}
|
|
|
|
|
|
|
|
public class BellOptions : ResourceOptions
|
|
|
|
{
|
|
|
|
public AImageScheme Scheme;
|
|
|
|
}
|
2016-10-24 09:01:01 +08:00
|
|
|
|
|
|
|
[Export(typeof(ArchiveFormat))]
|
|
|
|
public class OldDatOpener : DatOpener
|
|
|
|
{
|
|
|
|
public override string Tag { get { return "ARC/Csystem"; } }
|
|
|
|
public override string Description { get { return "TinkerBell resource archive"; } }
|
|
|
|
public override uint Signature { get { return 0; } }
|
|
|
|
public override bool IsHierarchic { get { return false; } }
|
|
|
|
public override bool CanWrite { get { return false; } }
|
|
|
|
|
|
|
|
public OldDatOpener ()
|
|
|
|
{
|
|
|
|
Extensions = new string[] { "dat" };
|
|
|
|
}
|
|
|
|
|
|
|
|
static readonly Regex s_arcname_re = new Regex (@"^Arc0(?<num>\d)\..*$", RegexOptions.IgnoreCase);
|
|
|
|
|
|
|
|
static readonly IDictionary<int, int> s_arcmap = new Dictionary<int, int>
|
|
|
|
{
|
|
|
|
{ 2, 0 }, { 3, 1 }, { 5, 4 }
|
|
|
|
};
|
|
|
|
|
|
|
|
public override ArcFile TryOpen (ArcView file)
|
|
|
|
{
|
|
|
|
var arc_name = Path.GetFileName (file.Name);
|
|
|
|
var match = s_arcname_re.Match (arc_name);
|
|
|
|
if (!match.Success)
|
|
|
|
return null;
|
|
|
|
int num = match.Groups["num"].Value[0] - '0';
|
|
|
|
int index_num;
|
|
|
|
if (!s_arcmap.TryGetValue (num, out index_num))
|
|
|
|
return null;
|
|
|
|
|
|
|
|
var toc_name_builder = new StringBuilder (arc_name);
|
|
|
|
var num_pos = match.Groups["num"].Index;
|
|
|
|
toc_name_builder.Remove (num_pos, match.Groups["num"].Length);
|
|
|
|
toc_name_builder.Insert (num_pos, index_num);
|
|
|
|
|
|
|
|
var toc_name = toc_name_builder.ToString();
|
|
|
|
toc_name = VFS.CombinePath (VFS.GetDirectoryName (file.Name), toc_name);
|
|
|
|
var toc = ReadToc (toc_name);
|
|
|
|
if (null == toc)
|
|
|
|
return null;
|
|
|
|
|
|
|
|
bool has_images = false;
|
|
|
|
var dir = new List<Entry>();
|
|
|
|
using (var toc_stream = new MemoryStream (toc))
|
|
|
|
using (var index = new StreamReader (toc_stream))
|
|
|
|
{
|
|
|
|
string line;
|
|
|
|
while ((line = index.ReadLine()) != null)
|
|
|
|
{
|
|
|
|
var fields = line.Split (',');
|
|
|
|
if (fields.Length != 5)
|
|
|
|
return null;
|
|
|
|
var name = Path.ChangeExtension (fields[0], fields[4]);
|
|
|
|
string type = "";
|
|
|
|
if ("b" == fields[4])
|
|
|
|
{
|
|
|
|
type = "image";
|
|
|
|
has_images = true;
|
|
|
|
}
|
|
|
|
else if ("k" == fields[4] || "j" == fields[4])
|
|
|
|
type = "audio";
|
|
|
|
var entry = new PackedEntry
|
|
|
|
{
|
|
|
|
Name = name,
|
|
|
|
Type = type,
|
|
|
|
Offset = UInt32.Parse (fields[3]),
|
|
|
|
Size = UInt32.Parse (fields[2]),
|
|
|
|
UnpackedSize = UInt32.Parse (fields[1]),
|
|
|
|
};
|
|
|
|
if (!entry.CheckPlacement (file.MaxOffset))
|
|
|
|
return null;
|
|
|
|
entry.IsPacked = entry.UnpackedSize != entry.Size;
|
|
|
|
dir.Add (entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (0 == dir.Count)
|
|
|
|
return null;
|
|
|
|
if (!has_images)
|
|
|
|
return new ArcFile (file, this, dir);
|
|
|
|
var scheme = QueryScheme (file.Name);
|
|
|
|
return new BellArchive (file, this, dir, scheme);
|
|
|
|
}
|
|
|
|
|
2016-10-26 00:57:04 +08:00
|
|
|
protected override IImageDecoder DecryptImage (IBinaryStream input, AImageScheme scheme)
|
2016-10-24 09:01:01 +08:00
|
|
|
{
|
|
|
|
int id = input.ReadByte();
|
|
|
|
if (id == scheme.Value2)
|
2016-10-26 00:57:04 +08:00
|
|
|
return new AImageReader (input, scheme);
|
|
|
|
input.Position = 0;
|
2016-10-26 19:42:27 +08:00
|
|
|
return new ImageFormatDecoder (input);
|
2016-10-24 09:01:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
byte[] ReadToc (string toc_name)
|
|
|
|
{
|
|
|
|
using (var toc_view = VFS.OpenView (toc_name))
|
|
|
|
{
|
|
|
|
if (toc_view.MaxOffset <= 8)
|
|
|
|
return null;
|
|
|
|
int unpacked_size = DecodeDecimal (toc_view, 0);
|
|
|
|
if (unpacked_size <= 4 || unpacked_size > 0x1000000)
|
|
|
|
return null;
|
|
|
|
int packed_size = DecodeDecimal (toc_view, 4);
|
|
|
|
if (packed_size > toc_view.MaxOffset - 8)
|
|
|
|
return null;
|
|
|
|
using (var toc_s = toc_view.CreateStream (8, (uint)packed_size))
|
|
|
|
using (var lzss = new LzssStream (toc_s))
|
|
|
|
{
|
|
|
|
var toc = new byte[unpacked_size];
|
|
|
|
if (toc.Length != lzss.Read (toc, 0, toc.Length))
|
|
|
|
return null;
|
|
|
|
return toc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int DecodeDecimal (ArcView file, long offset)
|
|
|
|
{
|
|
|
|
int v = 0;
|
|
|
|
for (int rank = 1000; rank != 0; rank /= 10)
|
|
|
|
{
|
|
|
|
int b = file.View.ReadByte (offset++);
|
|
|
|
if (b != 0xFF)
|
|
|
|
v += (b ^ 0x7F) * rank;
|
|
|
|
}
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
}
|
2016-07-06 08:14:42 +08:00
|
|
|
}
|