implemented ARCX archives.

This commit is contained in:
morkt 2016-07-28 14:20:12 +04:00
parent 7f70efdf58
commit 97a70d3fd4
3 changed files with 87 additions and 0 deletions

81
ArcFormats/ArcARCX.cs Normal file
View File

@ -0,0 +1,81 @@
//! \file ArcARCX.cs
//! \date Thu Jul 28 13:26:51 2016
//! \brief ARCX 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.Collections.Generic;
using System.ComponentModel.Composition;
using System.IO;
using GameRes.Compression;
namespace GameRes.Formats.ArcX
{
[Export(typeof(ArchiveFormat))]
public class ArcOpener : ArchiveFormat
{
public override string Tag { get { return "ARCX"; } }
public override string Description { get { return "ARCX resource archive"; } }
public override uint Signature { get { return 0x58435241; } } // 'ARCX'
public override bool IsHierarchic { get { return true; } }
public override bool CanCreate { get { return false; } }
public ArcOpener ()
{
Extensions = new string[] { "arc" };
}
public override ArcFile TryOpen (ArcView file)
{
int count = file.View.ReadInt32 (4);
if (!IsSaneCount (count))
return null;
uint index_offset = 0x10;
var dir = new List<Entry> (count);
for (int i = 0; i < count; ++i)
{
var name = file.View.ReadString (index_offset, 100);
index_offset += 100;
var entry = FormatCatalog.Instance.Create<PackedEntry> (name);
entry.Offset = file.View.ReadUInt32 (index_offset);
entry.Size = file.View.ReadUInt32 (index_offset+4);
entry.UnpackedSize = file.View.ReadUInt32 (index_offset+8);
entry.IsPacked = file.View.ReadByte (index_offset+0x13) != 0;
if (!entry.CheckPlacement (file.MaxOffset))
return null;
dir.Add (entry);
index_offset += 0x1C;
}
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);
}
}
}

View File

@ -81,6 +81,7 @@
</Compile>
<Compile Include="Ankh\ArcGRP.cs" />
<Compile Include="Aoi\ImageAGF.cs" />
<Compile Include="ArcARCX.cs" />
<Compile Include="ArcCG.cs" />
<Compile Include="Astronauts\ArcGXP.cs" />
<Compile Include="Banana\ImageGEC.cs" />

View File

@ -691,6 +691,7 @@ Wizard Links<br/>
Atori no Sora to Shinchuu no Tsuki<br/>
Favorite Sweet!<br/>
Nanapuri<br/>
Soushinjutsu 3<br/>
</td></tr>
<tr class="odd"><td>*.spd</td><td><tt>SPDC</tt></td><td>No</td></tr>
<tr><td>*.dat</td><td><tt>CHE00</tt><br/><tt>MYK00</tt></td><td>No</td><td>Cherry Soft</td><td>
@ -980,6 +981,10 @@ Osananajimi wa Bed Yakuza!<br/>
<tr><td>*.dat</td><td><tt>DDP2</tt><br/><tt>DDP3</tt></td><td>No</td><td>DDSystem</td><td>
Nukiani!! Sweet Home<br/>
</td></tr>
<tr class="odd"><td>*.arc</td><td><tt>ARCX</tt></td><td>No</td><td>Studio Jaren</td><td>
Denpa no Dorei<br/>
Soushinjutsu Plus<br/>
</td></tr>
</table>
<p><a name="note-1" class="footnote">1</a> Non-encrypted only</p>
</body>