2016-07-06 08:14:42 +08:00
|
|
|
//! \file ArcDAT.cs
|
|
|
|
//! \date Thu Jun 16 13:48:04 2016
|
|
|
|
//! \brief Tinker Bell resource archive.
|
|
|
|
//
|
2017-07-04 11:41:54 +08:00
|
|
|
// Copyright (C) 2016-2017 by morkt
|
2016-07-06 08:14:42 +08:00
|
|
|
//
|
|
|
|
// 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.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
|
|
|
|
{
|
2018-09-08 22:03:39 +08:00
|
|
|
public ArcNameParser () : base (@"^.+0?(?<id>(?<num>\d)(?<idx>[a-z])?)(?:|\..*)$") { }
|
2017-01-06 09:11:45 +08:00
|
|
|
|
|
|
|
protected override string ParseMatch (Match match, out int arc_idx)
|
|
|
|
{
|
|
|
|
arc_idx = 0;
|
|
|
|
char num = match.Groups["num"].Value[0];
|
2017-03-25 02:48:56 +08:00
|
|
|
int index_num;
|
|
|
|
if (num >= '4' && num <= '6')
|
|
|
|
index_num = num - '3';
|
|
|
|
else if ('8' == num)
|
|
|
|
index_num = 7;
|
|
|
|
else
|
2017-01-06 09:11:45 +08:00
|
|
|
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);
|
2017-03-25 02:48:56 +08:00
|
|
|
toc_name_builder.Insert (num_pos, index_num);
|
2017-01-06 09:11:45 +08:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-17 19:58:52 +08:00
|
|
|
internal class OldArcNameParser : ArchiveNameParser
|
|
|
|
{
|
|
|
|
public OldArcNameParser () : base (@"^Arc0(?<num>\d)\..*$") { }
|
|
|
|
|
|
|
|
// matches archive body to its index
|
|
|
|
static readonly IDictionary<char, int> s_arcmap = new Dictionary<char, int> {
|
|
|
|
{ '2', 0 }, { '3', 1 }, { '5', 4 }
|
|
|
|
};
|
|
|
|
|
|
|
|
protected override string ParseMatch (Match match, out int arc_idx)
|
|
|
|
{
|
|
|
|
arc_idx = 0;
|
|
|
|
char num = match.Groups["num"].Value[0];
|
|
|
|
int index_num;
|
|
|
|
if (!s_arcmap.TryGetValue (num, out index_num))
|
|
|
|
return null;
|
|
|
|
|
|
|
|
var toc_name_builder = new StringBuilder (match.Value);
|
|
|
|
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);
|
|
|
|
return toc_name_builder.ToString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-08 22:03:39 +08:00
|
|
|
internal class PatchNameParser : ArchiveNameParser
|
|
|
|
{
|
|
|
|
public PatchNameParser () : base (@"^patch0(?<num>[2468])\.dat$") { }
|
|
|
|
|
|
|
|
protected override string ParseMatch (Match match, out int arc_idx)
|
|
|
|
{
|
|
|
|
arc_idx = 0;
|
|
|
|
int index_num = match.Groups["num"].Value[0] - '0' - 1;
|
|
|
|
var toc_name_builder = new StringBuilder (match.Value);
|
|
|
|
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);
|
|
|
|
return toc_name_builder.ToString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-22 07:02:21 +08:00
|
|
|
internal class InKyouParser : ArchiveNameParser
|
|
|
|
{
|
2019-02-25 16:55:00 +08:00
|
|
|
public InKyouParser () : base (@"^(inyoukyou_kuon|mugen.*)\.app$") { }
|
2017-03-22 07:02:21 +08:00
|
|
|
|
|
|
|
protected override string ParseMatch (Match match, out int arc_idx)
|
|
|
|
{
|
|
|
|
arc_idx = 0;
|
2019-02-25 16:55:00 +08:00
|
|
|
return match.Groups[1].Value + ".dat";
|
2017-03-22 07:02:21 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 ()
|
|
|
|
{
|
2017-03-22 07:02:21 +08:00
|
|
|
Extensions = new string[] { "dat", "04", "05", "06", "app" };
|
2016-07-06 08:14:42 +08:00
|
|
|
}
|
|
|
|
|
2017-03-26 11:27:52 +08:00
|
|
|
public bool BlendOverlayImages = true;
|
|
|
|
|
2017-03-26 08:05:35 +08:00
|
|
|
static readonly ArchiveNameParser[] s_name_parsers = {
|
2018-09-08 22:03:39 +08:00
|
|
|
new ArcNameParser(),
|
|
|
|
new DatNameParser(),
|
|
|
|
new PatchNameParser(),
|
|
|
|
new InKyouParser()
|
2017-03-26 08:05:35 +08:00
|
|
|
};
|
2016-07-06 08:14:42 +08:00
|
|
|
|
|
|
|
public override ArcFile TryOpen (ArcView file)
|
|
|
|
{
|
|
|
|
var arc_name = Path.GetFileName (file.Name);
|
2017-03-17 19:58:52 +08:00
|
|
|
var dir_name = VFS.GetDirectoryName (file.Name);
|
|
|
|
string game_name = arc_name != "Arc06.dat" ? TryParseMeta (VFS.CombinePath (dir_name, "Arc06.dat")) : null;
|
|
|
|
Tuple<string, int> parsed = null;
|
|
|
|
if (string.IsNullOrEmpty (game_name))
|
|
|
|
parsed = s_name_parsers.Select (p => p.ParseName (arc_name)).FirstOrDefault (p => p != null);
|
|
|
|
else // Shukujo no Tsuyagoto special case
|
|
|
|
parsed = OldDatOpener.ArcNameParser.ParseName (arc_name);
|
|
|
|
if (null == parsed)
|
2016-07-31 22:57:25 +08:00
|
|
|
return null;
|
2017-03-17 19:58:52 +08:00
|
|
|
string toc_name = parsed.Item1;
|
|
|
|
int arc_idx = parsed.Item2;
|
2016-07-31 22:57:25 +08:00
|
|
|
|
2017-03-17 19:58:52 +08:00
|
|
|
toc_name = VFS.CombinePath (dir_name, toc_name);
|
|
|
|
var toc = ReadToc (toc_name, 8);
|
2016-07-31 22:57:25 +08:00
|
|
|
if (null == toc)
|
|
|
|
return null;
|
2017-03-26 08:05:35 +08:00
|
|
|
using (var index = new ArcIndexReader (toc, file, arc_idx))
|
2016-07-06 08:14:42 +08:00
|
|
|
{
|
2017-03-26 08:05:35 +08:00
|
|
|
if (!index.Read())
|
|
|
|
return null;
|
|
|
|
return ArchiveFromDir (file, index.Dir, index.HasImages);
|
2016-07-06 08:14:42 +08:00
|
|
|
}
|
2017-03-17 19:58:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
internal ArcFile ArchiveFromDir (ArcView file, List<Entry> dir, bool has_images)
|
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
2017-03-17 19:58:52 +08:00
|
|
|
/// <summary>
|
|
|
|
// Try to parse file containing game meta-information.
|
|
|
|
/// </summary>
|
|
|
|
internal string TryParseMeta (string meta_arc_name)
|
2016-07-31 22:57:25 +08:00
|
|
|
{
|
2017-03-17 19:58:52 +08:00
|
|
|
if (!VFS.FileExists (meta_arc_name))
|
|
|
|
return null;
|
|
|
|
using (var unpacker = new TocUnpacker (meta_arc_name))
|
2016-07-31 22:57:25 +08:00
|
|
|
{
|
2017-03-17 19:58:52 +08:00
|
|
|
if (unpacker.Length > 0x1000)
|
2016-07-31 22:57:25 +08:00
|
|
|
return null;
|
2017-03-17 19:58:52 +08:00
|
|
|
var data = unpacker.Unpack (8);
|
|
|
|
if (null == data)
|
2016-07-31 22:57:25 +08:00
|
|
|
return null;
|
2017-03-17 19:58:52 +08:00
|
|
|
using (var content = new BinMemoryStream (data))
|
2016-07-31 22:57:25 +08:00
|
|
|
{
|
2017-03-17 19:58:52 +08:00
|
|
|
int title_length = content.ReadInt32();
|
|
|
|
if (title_length <= 0 || title_length > content.Length)
|
2016-07-31 22:57:25 +08:00
|
|
|
return null;
|
2017-03-17 19:58:52 +08:00
|
|
|
var title = content.ReadBytes (title_length);
|
|
|
|
if (title.Length != title_length)
|
|
|
|
return null;
|
|
|
|
return Encodings.cp932.GetString (title);
|
2016-07-31 22:57:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-17 19:58:52 +08:00
|
|
|
internal byte[] ReadToc (string toc_name, int num_length)
|
|
|
|
{
|
|
|
|
if (!VFS.FileExists (toc_name))
|
|
|
|
return null;
|
|
|
|
using (var toc_unpacker = new TocUnpacker (toc_name))
|
|
|
|
return toc_unpacker.Unpack (num_length);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
{
|
2017-03-26 11:27:52 +08:00
|
|
|
var reader = DecryptImage (input, barc.Scheme);
|
2017-07-04 11:41:54 +08:00
|
|
|
if (BlendOverlayImages)
|
|
|
|
{
|
|
|
|
var overlay = reader as AImageReader;
|
|
|
|
if (overlay != null)
|
|
|
|
overlay.ReadBaseline (barc, entry);
|
|
|
|
}
|
2017-03-26 11:27:52 +08:00
|
|
|
return reader;
|
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
|
|
|
}
|
|
|
|
}
|
2017-07-04 11:41:54 +08:00
|
|
|
else if (scheme != null && ('a' == type || 'd' == type) && input.Length > 21)
|
2016-07-06 08:14:42 +08:00
|
|
|
{
|
|
|
|
int id = input.ReadByte();
|
|
|
|
if (id == scheme.Value2)
|
|
|
|
{
|
2017-07-04 11:41:54 +08:00
|
|
|
return new AImageReader (input, scheme, type);
|
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
|
|
|
}
|
|
|
|
|
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 ()
|
|
|
|
{
|
2018-01-09 00:04:23 +08:00
|
|
|
return new BellOptions { Scheme = GetScheme (Properties.Settings.Default.BELLTitle) };
|
2016-07-06 08:14:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-09-08 22:03:39 +08:00
|
|
|
static SchemeMap DefaultScheme = new SchemeMap {
|
|
|
|
KnownSchemes = new Dictionary<string, AImageScheme>()
|
|
|
|
};
|
|
|
|
|
|
|
|
public static Dictionary<string, AImageScheme> KnownSchemes { get { return DefaultScheme.KnownSchemes; } }
|
2016-07-06 08:14:42 +08:00
|
|
|
|
|
|
|
public override ResourceScheme Scheme
|
|
|
|
{
|
2018-09-08 22:03:39 +08:00
|
|
|
get { return DefaultScheme; }
|
|
|
|
set { DefaultScheme = (SchemeMap)value; }
|
2016-07-06 08:14:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
[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" };
|
|
|
|
}
|
|
|
|
|
2017-03-17 19:58:52 +08:00
|
|
|
internal static readonly ArchiveNameParser ArcNameParser = new OldArcNameParser();
|
2016-10-24 09:01:01 +08:00
|
|
|
|
|
|
|
public override ArcFile TryOpen (ArcView file)
|
|
|
|
{
|
|
|
|
var arc_name = Path.GetFileName (file.Name);
|
2017-03-17 19:58:52 +08:00
|
|
|
var parsed = ArcNameParser.ParseName (arc_name);
|
|
|
|
if (null == parsed)
|
2016-10-24 09:01:01 +08:00
|
|
|
return null;
|
2017-03-17 19:58:52 +08:00
|
|
|
var toc_name = VFS.CombinePath (VFS.GetDirectoryName (file.Name), parsed.Item1);
|
|
|
|
var toc = ReadToc (toc_name, 4);
|
2016-10-24 09:01:01 +08:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
2017-03-17 19:58:52 +08:00
|
|
|
return ArchiveFromDir (file, dir, has_images);
|
2016-10-24 09:01:01 +08:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
2017-03-17 19:58:52 +08:00
|
|
|
}
|
2016-10-24 09:01:01 +08:00
|
|
|
|
2017-03-17 19:58:52 +08:00
|
|
|
[Export(typeof(ArchiveFormat))]
|
|
|
|
public class OldDatOpener2 : DatOpener
|
|
|
|
{
|
|
|
|
public override string Tag { get { return "ARC/Csystem/2"; } }
|
|
|
|
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 OldDatOpener2 ()
|
2016-10-24 09:01:01 +08:00
|
|
|
{
|
2017-03-17 19:58:52 +08:00
|
|
|
Extensions = new string[] { "dat" };
|
|
|
|
}
|
|
|
|
|
|
|
|
public override ArcFile TryOpen (ArcView file)
|
|
|
|
{
|
|
|
|
var arc_name = Path.GetFileName (file.Name);
|
|
|
|
var parsed = OldDatOpener.ArcNameParser.ParseName (arc_name);
|
|
|
|
if (null == parsed)
|
|
|
|
return null;
|
|
|
|
var toc_name = VFS.CombinePath (VFS.GetDirectoryName (file.Name), parsed.Item1);
|
|
|
|
var toc = ReadToc (toc_name, 4);
|
|
|
|
if (null == toc)
|
|
|
|
return null;
|
2017-03-26 08:05:35 +08:00
|
|
|
using (var index = new DatIndexReader (toc, file))
|
2016-10-24 09:01:01 +08:00
|
|
|
{
|
2017-03-26 08:05:35 +08:00
|
|
|
if (!index.Read())
|
|
|
|
return null;
|
|
|
|
return ArchiveFromDir (file, index.Dir, index.HasImages);
|
2016-10-24 09:01:01 +08:00
|
|
|
}
|
2017-03-17 19:58:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
internal sealed class TocUnpacker : IDisposable
|
|
|
|
{
|
2017-03-26 08:05:35 +08:00
|
|
|
ArcView m_file;
|
|
|
|
bool m_should_dispose;
|
2017-03-17 19:58:52 +08:00
|
|
|
|
2017-03-26 08:05:35 +08:00
|
|
|
public long Length { get { return m_file.MaxOffset; } }
|
|
|
|
public uint PackedSize { get; private set; }
|
|
|
|
public uint UnpackedSize { get; private set; }
|
2017-03-17 19:58:52 +08:00
|
|
|
|
2017-03-26 08:05:35 +08:00
|
|
|
public TocUnpacker (string toc_name) : this (VFS.OpenView (toc_name), true)
|
2017-03-17 19:58:52 +08:00
|
|
|
{
|
2017-03-26 08:05:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public TocUnpacker (ArcView file, bool should_dispose = false)
|
|
|
|
{
|
|
|
|
m_file = file;
|
|
|
|
m_should_dispose = should_dispose;
|
2017-03-17 19:58:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public byte[] Unpack (int num_length)
|
|
|
|
{
|
2017-03-26 08:05:35 +08:00
|
|
|
return Unpack (0, num_length);
|
|
|
|
}
|
|
|
|
|
|
|
|
public byte[] Unpack (long offset, int num_length)
|
|
|
|
{
|
|
|
|
long data_offset = offset + num_length*2;
|
2017-03-17 19:58:52 +08:00
|
|
|
if (m_file.MaxOffset <= data_offset)
|
|
|
|
return null;
|
2017-03-26 08:05:35 +08:00
|
|
|
UnpackedSize = DecodeDecimal (offset, num_length);
|
|
|
|
if (UnpackedSize <= 4 || UnpackedSize > 0x1000000)
|
2017-03-17 19:58:52 +08:00
|
|
|
return null;
|
2017-03-26 08:05:35 +08:00
|
|
|
PackedSize = DecodeDecimal (offset+num_length, num_length);
|
|
|
|
if (PackedSize > m_file.MaxOffset - data_offset || 0 == PackedSize)
|
2017-03-17 19:58:52 +08:00
|
|
|
return null;
|
2017-03-26 08:05:35 +08:00
|
|
|
return UnpackAt (data_offset);
|
2017-03-17 19:58:52 +08:00
|
|
|
}
|
|
|
|
|
2017-03-26 08:05:35 +08:00
|
|
|
byte[] UnpackAt (long offset)
|
2017-03-17 19:58:52 +08:00
|
|
|
{
|
2017-03-26 08:05:35 +08:00
|
|
|
using (var toc_s = m_file.CreateStream (offset, PackedSize))
|
2017-03-17 19:58:52 +08:00
|
|
|
using (var lzss = new LzssStream (toc_s))
|
|
|
|
{
|
2017-03-26 08:05:35 +08:00
|
|
|
var toc = new byte[UnpackedSize];
|
2017-03-17 19:58:52 +08:00
|
|
|
if (toc.Length != lzss.Read (toc, 0, toc.Length))
|
|
|
|
return null;
|
|
|
|
return toc;
|
|
|
|
}
|
2016-10-24 09:01:01 +08:00
|
|
|
}
|
|
|
|
|
2017-03-26 08:05:35 +08:00
|
|
|
internal uint DecodeDecimal (long offset, int num_length)
|
2016-10-24 09:01:01 +08:00
|
|
|
{
|
2017-03-17 19:58:52 +08:00
|
|
|
uint v = 0;
|
|
|
|
uint rank = 1;
|
|
|
|
for (int i = num_length-1; i >= 0; --i, rank *= 10)
|
2016-10-24 09:01:01 +08:00
|
|
|
{
|
2017-03-17 19:58:52 +08:00
|
|
|
uint b = m_file.View.ReadByte (offset+i);
|
2016-10-24 09:01:01 +08:00
|
|
|
if (b != 0xFF)
|
|
|
|
v += (b ^ 0x7F) * rank;
|
|
|
|
}
|
|
|
|
return v;
|
|
|
|
}
|
2017-03-17 19:58:52 +08:00
|
|
|
|
|
|
|
bool _disposed = false;
|
|
|
|
public void Dispose ()
|
|
|
|
{
|
2017-03-26 08:05:35 +08:00
|
|
|
if (m_should_dispose && !_disposed)
|
2017-03-17 19:58:52 +08:00
|
|
|
{
|
|
|
|
m_file.Dispose();
|
|
|
|
_disposed = true;
|
|
|
|
}
|
|
|
|
}
|
2016-10-24 09:01:01 +08:00
|
|
|
}
|
2017-03-26 08:05:35 +08:00
|
|
|
|
|
|
|
internal abstract class IndexReader : IDisposable
|
|
|
|
{
|
|
|
|
protected IBinaryStream m_index;
|
|
|
|
readonly long m_max_offset;
|
|
|
|
private List<Entry> m_dir;
|
|
|
|
|
|
|
|
public List<Entry> Dir { get { return m_dir; } }
|
|
|
|
public long MaxOffset { get { return m_max_offset; } }
|
|
|
|
public bool HasImages { get; protected set; }
|
|
|
|
|
|
|
|
public IndexReader (byte[] toc, ArcView file)
|
|
|
|
{
|
|
|
|
m_index = new BinMemoryStream (toc);
|
|
|
|
m_max_offset = file.MaxOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool Read ()
|
|
|
|
{
|
|
|
|
int entry_size = m_index.ReadInt32();
|
|
|
|
if (entry_size < 0x11)
|
|
|
|
return false;
|
|
|
|
int count = (int)m_index.Length / (entry_size + 4);
|
|
|
|
if (!ArchiveFormat.IsSaneCount (count))
|
|
|
|
return false;
|
2018-09-08 22:03:39 +08:00
|
|
|
long next_pos = 0;
|
2017-03-26 08:05:35 +08:00
|
|
|
m_dir = new List<Entry> (count);
|
2018-09-08 22:03:39 +08:00
|
|
|
while (next_pos < m_index.Length)
|
2017-03-26 08:05:35 +08:00
|
|
|
{
|
2018-09-08 22:03:39 +08:00
|
|
|
m_index.Position = next_pos;
|
2017-03-26 08:05:35 +08:00
|
|
|
entry_size = m_index.ReadInt32();
|
|
|
|
if (entry_size <= 0)
|
|
|
|
return false;
|
2018-09-08 22:03:39 +08:00
|
|
|
next_pos += 4 + entry_size;
|
2017-03-26 08:05:35 +08:00
|
|
|
var entry = ReadEntryInfo();
|
|
|
|
if (ReadEntryType (entry, entry_size))
|
|
|
|
{
|
2017-03-26 11:27:52 +08:00
|
|
|
if (entry.CheckPlacement (MaxOffset))
|
|
|
|
m_dir.Add (entry);
|
2017-03-26 08:05:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
internal PackedEntry ReadEntryInfo ()
|
|
|
|
{
|
|
|
|
uint id = m_index.ReadUInt32();
|
|
|
|
var entry = new PackedEntry { Name = id.ToString ("D6") };
|
|
|
|
entry.UnpackedSize = m_index.ReadUInt32();
|
|
|
|
entry.Size = m_index.ReadUInt32();
|
|
|
|
entry.IsPacked = entry.UnpackedSize != entry.Size;
|
|
|
|
entry.Offset = m_index.ReadUInt32();
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected abstract bool ReadEntryType (Entry entry, int entry_size);
|
|
|
|
|
|
|
|
public void Dispose ()
|
|
|
|
{
|
|
|
|
Dispose (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool _disposed = false;
|
|
|
|
protected virtual void Dispose (bool disposing)
|
|
|
|
{
|
|
|
|
if (disposing && !_disposed)
|
|
|
|
{
|
|
|
|
m_index.Dispose();
|
|
|
|
_disposed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
internal class ArcIndexReader : IndexReader
|
|
|
|
{
|
|
|
|
int m_arc_number;
|
|
|
|
|
|
|
|
public ArcIndexReader (byte[] toc, ArcView file, int arc_number) : base (toc, file)
|
|
|
|
{
|
|
|
|
m_arc_number = arc_number;
|
|
|
|
}
|
|
|
|
|
|
|
|
char[] m_type = new char[2];
|
|
|
|
|
|
|
|
protected override bool ReadEntryType (Entry entry, int entry_size)
|
|
|
|
{
|
|
|
|
m_type[0] = (char)m_index.ReadByte();
|
|
|
|
m_type[1] = (char)m_index.ReadByte();
|
|
|
|
int entry_idx = 0;
|
|
|
|
if (entry_size >= 0x17)
|
|
|
|
{
|
|
|
|
m_index.ReadInt32();
|
|
|
|
entry_idx = m_index.ReadByte();
|
|
|
|
}
|
|
|
|
if (entry_idx != m_arc_number)
|
|
|
|
return false;
|
|
|
|
if (m_type[0] > 0x20 && m_type[0] < 0x7F)
|
|
|
|
{
|
|
|
|
string ext;
|
|
|
|
if (m_type[1] > 0x20 && m_type[1] < 0x7F)
|
|
|
|
ext = new string (m_type);
|
|
|
|
else
|
|
|
|
ext = new string (m_type[0], 1);
|
2019-01-16 16:21:33 +08:00
|
|
|
if ("b0" == ext || "n0" == ext || "o0" == ext || "0b" == ext || "b" == ext)
|
2017-03-26 08:05:35 +08:00
|
|
|
{
|
|
|
|
entry.Type = "image";
|
|
|
|
HasImages = true;
|
|
|
|
}
|
2019-01-16 16:21:33 +08:00
|
|
|
else if ("j0" == ext || "k0" == ext || "u0" == ext || "j" == ext || "k" == ext)
|
2017-03-26 08:05:35 +08:00
|
|
|
entry.Type = "audio";
|
|
|
|
entry.Name = Path.ChangeExtension (entry.Name, ext);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
internal class DatIndexReader : IndexReader
|
|
|
|
{
|
|
|
|
public DatIndexReader (byte[] toc, ArcView file) : base (toc, file)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override bool ReadEntryType (Entry entry, int entry_size)
|
|
|
|
{
|
2017-03-26 11:27:52 +08:00
|
|
|
if (entry_size > 0x11)
|
|
|
|
throw new InvalidFormatException();
|
2017-03-26 08:05:35 +08:00
|
|
|
char type = (char)m_index.ReadByte();
|
|
|
|
if (type > 0x20 && type < 0x7F)
|
|
|
|
{
|
|
|
|
string ext = new string (type, 1);
|
|
|
|
if ('b' == type)
|
|
|
|
{
|
|
|
|
entry.Type = "image";
|
|
|
|
HasImages = true;
|
|
|
|
}
|
|
|
|
else if ('k' == type || 'j' == type)
|
|
|
|
entry.Type = "audio";
|
|
|
|
entry.Name = Path.ChangeExtension (entry.Name, ext);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2016-07-06 08:14:42 +08:00
|
|
|
}
|