//! \file ArcSeraph.cs //! \date Fri Jul 17 13:47:34 2015 //! \brief Seraphim 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 System.Linq; using System.Windows.Media; using GameRes.Compression; namespace GameRes.Formats.Seraphim { internal class ArchEntry : PackedEntry { public short DirIndex; public short FileIndex; } [Serializable] public class SeraphScheme : ResourceScheme { public IDictionary KnownSchemes; } [Serializable] public class ArchPacScheme { public long IndexOffset; public short EventDir; public IDictionary EventMap; } internal class SeraphArchive : ArcFile { public readonly short EventDir; public readonly IDictionary EventMap; public SeraphArchive (ArcView arc, ArchiveFormat impl, ICollection dir, ArchPacScheme scheme) : base (arc, impl, dir) { EventDir = scheme.EventDir; EventMap = scheme.EventMap; } } /// /// this archive format has different index offsets hardcoded into game executable. /// [Export(typeof(ArchiveFormat))] public class ArchPacOpener : ArchiveFormat { public override string Tag { get { return "SERAPH/ARCH"; } } public override string Description { get { return "Seraphim 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 bool IsAmbiguous { get { return true; } } public ArchPacOpener () { Extensions = new string[] { "dat" }; } public override ArcFile TryOpen (ArcView file) { if (file.MaxOffset > uint.MaxValue) return null; string name = Path.GetFileName (file.Name); if (!name.Equals ("ArchPac.dat", StringComparison.InvariantCultureIgnoreCase)) return null; foreach (var scheme in KnownSchemes.Values.Where (s => s.IndexOffset < file.MaxOffset)) { var dir = ReadIndex (file, scheme); if (dir != null) { if (scheme.EventMap != null) return new SeraphArchive (file, this, dir, scheme); else return new ArcFile (file, this, dir); } } return null; } List ReadIndex (ArcView file, ArchPacScheme scheme) { long index_offset = scheme.IndexOffset; int base_count = file.View.ReadInt32 (index_offset); int file_count = file.View.ReadInt32 (index_offset + 4); index_offset += 8; if (base_count <= 0 || base_count > 0x100 || !IsSaneCount (file_count)) return null; var base_offsets = new List> (base_count); int total_count = 0; for (int i = 0; i < base_count; ++i) { uint offset = file.View.ReadUInt32 (index_offset); int count = file.View.ReadInt32 (index_offset+4); if (count <= 0 || count > file_count || offset > file.MaxOffset) return null; total_count += count; if (total_count > file_count) return null; base_offsets.Add (Tuple.Create (offset, count)); index_offset += 8; } if (total_count != file_count) return null; var dir = new List (file_count); for (int j = base_count-1; j >= 0; --j) { uint next_offset = file.View.ReadUInt32 (index_offset); index_offset += 4; for (int i = 0; i < base_offsets[j].Item2; ++i) { var entry = new ArchEntry { Name = FormatEntryName (j, i), Type = "image", DirIndex = (short)j, FileIndex = (short)i, Offset = next_offset, }; next_offset = file.View.ReadUInt32 (index_offset); index_offset += 4; if (next_offset < entry.Offset) return null; entry.Size = (uint)(next_offset - entry.Offset); entry.Offset += base_offsets[j].Item1; if (!entry.CheckPlacement (file.MaxOffset)) return null; if (entry.Size > 0) dir.Add (entry); } } if (0 == dir.Count) return null; return dir; } public override Stream OpenEntry (ArcFile arc, Entry entry) { if (0 == entry.Size) return Stream.Null; var input = arc.File.CreateStream (entry.Offset, entry.Size); if (!(entry is PackedEntry)) return input; int signature = arc.File.View.ReadUInt16 (entry.Offset); if (0x9C78 != signature) return input; return new ZLibStream (input, CompressionMode.Decompress); } public override IImageDecoder OpenImage (ArcFile arc, Entry entry) { var sarc = arc as SeraphArchive; var aent = entry as ArchEntry; if (null == sarc || null == aent || null == sarc.EventMap || aent.DirIndex != sarc.EventDir || !sarc.EventMap.ContainsKey (aent.FileIndex)) return base.OpenImage (arc, entry); var base_index = sarc.EventMap[aent.FileIndex]; var base_entry = sarc.Dir.Cast() .FirstOrDefault (e => e.DirIndex == sarc.EventDir && e.FileIndex == base_index); if (null == base_entry) return base.OpenImage (arc, entry); var base_img = OpenCtImage (arc, base_entry); if (null == base_img) return base.OpenImage (arc, entry); var input = arc.OpenBinaryEntry (entry); return new CtOverlayDecoder (input, base_img); } SeraphReader OpenCtImage (ArcFile arc, Entry entry) { using (var input = arc.OpenBinaryEntry (entry)) { if (input.Signature != CtFormat.Value.Signature) return null; var info = CtFormat.Value.ReadMetaData (input) as SeraphMetaData; if (null == info) return null; var reader = new SeraphReader (input.AsStream, info); reader.UnpackCt(); return reader; } } internal static string FormatEntryName (int dir_index, int file_index) { return string.Format ("{0}-{1:D5}.cts", dir_index, file_index); } internal static ResourceInstance CtFormat = new ResourceInstance ("CT"); SeraphScheme m_scheme = new SeraphScheme { KnownSchemes = new Dictionary() }; public override ResourceScheme Scheme { get { return m_scheme; } set { m_scheme = (SeraphScheme)value; } } public IDictionary KnownSchemes { get { return m_scheme.KnownSchemes; } } } internal class CtOverlayDecoder : BinaryImageDecoder { SeraphReader m_baseline; public CtOverlayDecoder (IBinaryStream input, SeraphReader baseline) : base (input, baseline.Info) { m_baseline = baseline; } protected override ImageData GetImageData () { var info = ArchPacOpener.CtFormat.Value.ReadMetaData (m_input) as SeraphMetaData; if (null == info) return ImageFormat.Read (m_input); var overlay = new SeraphReader (m_input.AsStream, info); overlay.UnpackCt(); var dst = m_baseline.Data; var src = overlay.Data; if (dst.Length != src.Length) return ImageData.Create (overlay.Info, PixelFormats.Bgra32, null, src); for (int i = 0; i < src.Length; i += 4) { if (src[i+3] != 0) { dst[i ] = src[i ]; dst[i+1] = src[i+1]; dst[i+2] = src[i+2]; dst[i+3] = src[i+3]; } else { dst[i+3] = 0xFF; } } return ImageData.Create (Info, PixelFormats.Bgra32, null, dst); } } }