From cb83b35a67b447a53785e258b1bdcd0081f3aace Mon Sep 17 00:00:00 2001 From: morkt Date: Wed, 6 Jun 2018 00:44:46 +0400 Subject: [PATCH] (Legacy): PAN archives and NSF audio. --- Legacy/Pan/ArcPAN.cs | 80 ++++++++++++++++++++++++++++++++++++++++++ Legacy/Pan/AudioNSF.cs | 65 ++++++++++++++++++++++++++++++++++ Legacy/Pan/ImageTBL.cs | 61 ++++++++++++++++++++++++++++++++ 3 files changed, 206 insertions(+) create mode 100644 Legacy/Pan/ArcPAN.cs create mode 100644 Legacy/Pan/AudioNSF.cs create mode 100644 Legacy/Pan/ImageTBL.cs diff --git a/Legacy/Pan/ArcPAN.cs b/Legacy/Pan/ArcPAN.cs new file mode 100644 index 00000000..b3be5d59 --- /dev/null +++ b/Legacy/Pan/ArcPAN.cs @@ -0,0 +1,80 @@ +//! \file ArcPAN.cs +//! \date 2018 Jun 05 +//! \brief Pan engine resource archive. +// +// Copyright (C) 2018 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.Collections.Generic; +using System.ComponentModel.Composition; +using System.IO; +using GameRes.Compression; + +// [001006][Orange Mina] Judge August + +namespace GameRes.Formats.Pan +{ + [Export(typeof(ArchiveFormat))] + public class PanOpener : ArchiveFormat + { + public override string Tag { get { return "PAN"; } } + public override string Description { get { return "Pan engine resource archive"; } } + public override uint Signature { get { return 0x206E6150; } } // 'Pan ver 1.00' + public override bool IsHierarchic { get { return false; } } + public override bool CanWrite { get { return false; } } + + public override ArcFile TryOpen (ArcView file) + { + if (!file.View.AsciiEqual (4, "ver 1.00")) + return null; + int count = file.View.ReadInt32 (0x10); + if (!IsSaneCount (count)) + return null; + uint index_size = (uint)count * 0x2C; + using (var index = file.CreateStream (file.MaxOffset - index_size, index_size)) + { + var dir = new List (count); + for (int i = 0; i < count; ++i) + { + var name = index.ReadCString (0x20); + var entry = FormatCatalog.Instance.Create (name); + entry.UnpackedSize = index.ReadUInt32(); + entry.Offset = index.ReadUInt32(); + entry.Size = index.ReadUInt32(); + entry.IsPacked = true; + if (!entry.CheckPlacement (file.MaxOffset)) + return null; + dir.Add (entry); + } + return new ArcFile (file, this, dir); + } + } + + public override Stream OpenEntry (ArcFile arc, Entry entry) + { + var pent = entry as PackedEntry; + var input = arc.File.CreateStream (entry.Offset, entry.Size); + if (null == pent || !pent.IsPacked) + return input; + return new LzssStream (input); + } + } +} diff --git a/Legacy/Pan/AudioNSF.cs b/Legacy/Pan/AudioNSF.cs new file mode 100644 index 00000000..e866d00e --- /dev/null +++ b/Legacy/Pan/AudioNSF.cs @@ -0,0 +1,65 @@ +//! \file AudioNSF.cs +//! \date 2018 Jun 05 +//! \brief Pan engine PCM audio format. +// +// Copyright (C) 2018 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.ComponentModel.Composition; +using System.IO; + +namespace GameRes.Formats.Pan +{ + [Export(typeof(AudioFormat))] + public class NsfAudio : AudioFormat + { + public override string Tag { get { return "NSF"; } } + public override string Description { get { return "Pan engine PCM audio"; } } + public override uint Signature { get { return 0; } } + public override bool CanWrite { get { return false; } } + + public NsfAudio () + { + Signatures = new uint[] { 0x010001, 0x020001, 0 }; + } + + public override SoundInput TryOpen (IBinaryStream file) + { + if (!file.Name.HasExtension ("NSF")) + return null; + var header = file.ReadHeader (0x10); + var format = new WaveFormat { + FormatTag = header.ToUInt16 (0), + Channels = header.ToUInt16 (2), + SamplesPerSecond = header.ToUInt32 (4), + AverageBytesPerSecond = header.ToUInt16 (8), + BlockAlign = header.ToUInt16 (12), + BitsPerSample = header.ToUInt16 (14), + }; + if (format.FormatTag != 1 || + format.SamplesPerSecond * format.Channels * format.BitsPerSample / 8 != format.AverageBytesPerSecond) + return null; + var pcm = new StreamRegion (file.AsStream, 0x10); + return new RawPcmInput (pcm, format); + } + } +} diff --git a/Legacy/Pan/ImageTBL.cs b/Legacy/Pan/ImageTBL.cs new file mode 100644 index 00000000..cb523441 --- /dev/null +++ b/Legacy/Pan/ImageTBL.cs @@ -0,0 +1,61 @@ +//! \file ImageTBL.cs +//! \date 2018 Jun 05 +//! \brief Pan engine bitmap mask format. +// +// Copyright (C) 2018 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.ComponentModel.Composition; +using System.IO; +using System.Windows.Media; + +namespace GameRes.Formats.Pan +{ + [Export(typeof(ImageFormat))] + public class TblFormat : ImageFormat + { + public override string Tag { get { return "TBL/PAN"; } } + public override string Description { get { return "Pan engine bitmap mask"; } } + public override uint Signature { get { return 0x6C6274; } } // 'tbl' + + public override ImageMetaData ReadMetaData (IBinaryStream file) + { + var header = file.ReadHeader (0x14); + return new ImageMetaData { + Width = header.ToUInt32 (0x0C), + Height = header.ToUInt32 (0x10), + BPP = 8, + }; + } + + public override ImageData Read (IBinaryStream file, ImageMetaData info) + { + file.Position = 0x14; + var pixels = file.ReadBytes ((int)info.Width * (int)info.Height); + return ImageData.Create (info, PixelFormats.Gray8, null, pixels); + } + + public override void Write (Stream file, ImageData image) + { + throw new System.NotImplementedException ("TblFormat.Write not implemented"); + } + } +}