From 53501d5bb2c61e925ae766763f362e437f9c353c Mon Sep 17 00:00:00 2001 From: morkt Date: Sun, 17 Jan 2016 15:21:48 +0400 Subject: [PATCH] implemented AOIBX10 script containers. --- ArcFormats/Aoi/ArcBOX.cs | 74 ++++++++++++++++++++++++++++++++++++ ArcFormats/ArcFormats.csproj | 1 + supported.html | 3 +- 3 files changed, 77 insertions(+), 1 deletion(-) create mode 100644 ArcFormats/Aoi/ArcBOX.cs diff --git a/ArcFormats/Aoi/ArcBOX.cs b/ArcFormats/Aoi/ArcBOX.cs new file mode 100644 index 00000000..06d01744 --- /dev/null +++ b/ArcFormats/Aoi/ArcBOX.cs @@ -0,0 +1,74 @@ +//! \file ArcBOX.cs +//! \date Sun Jan 17 14:45:34 2016 +//! \brief Aoi engine event script 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.Collections.Generic; +using System.ComponentModel.Composition; +using System.IO; +using System.Security.Cryptography; + +namespace GameRes.Formats.Aoi +{ + [Export(typeof(ArchiveFormat))] + public class BoxOpener : ArchiveFormat + { + public override string Tag { get { return "BOX"; } } + public override string Description { get { return "Aoi engine resource archive"; } } + public override uint Signature { get { return 0x42494F41; } } // 'AOIB' + public override bool IsHierarchic { get { return false; } } + public override bool CanCreate { get { return false; } } + + public override ArcFile TryOpen (ArcView file) + { + if (!file.View.AsciiEqual (0, "AOIBX10")) + return null; + int count = file.View.ReadInt32 (8); + if (!IsSaneCount (count)) + return null; + + int index_offset = 0x10; + var dir = new List (count); + for (int i = 0; i < count; ++i) + { + var entry = new Entry { + Name = file.View.ReadString (index_offset, 0x10), + Type = "script", + Offset = file.View.ReadUInt32 (index_offset+0x10), + Size = file.View.ReadUInt32 (index_offset+0x14), + }; + if (!entry.CheckPlacement (file.MaxOffset)) + return null; + dir.Add (entry); + index_offset += 0x18; + } + return new ArcFile (file, this, dir); + } + + public override Stream OpenEntry (ArcFile arc, Entry entry) + { + var input = arc.File.CreateStream (entry.Offset, entry.Size); + return new CryptoStream (input, new X.XorTransform (0xB2), CryptoStreamMode.Read); + } + } +} diff --git a/ArcFormats/ArcFormats.csproj b/ArcFormats/ArcFormats.csproj index 21cf97c9..d53a2efb 100644 --- a/ArcFormats/ArcFormats.csproj +++ b/ArcFormats/ArcFormats.csproj @@ -66,6 +66,7 @@ + diff --git a/supported.html b/supported.html index ebcefb39..a54844cb 100644 --- a/supported.html +++ b/supported.html @@ -616,11 +616,12 @@ Majidashi! Royale ~Finish wa Watashi no Naka de~
MILK Junkies
*.zbmamp_No -*.vfsVFNoAoi +*.vfsVFNoAoi Dancing Crazies
*.iphRIFF....IPH fmtNo *.aogAoiOggNo +*.boxAOIBX10No

1 Non-encrypted only