implemented SNN+INX archives and ZBM images.

This commit is contained in:
morkt
2016-01-10 02:39:55 +04:00
parent 0e17348a7d
commit bc737cd19d
4 changed files with 228 additions and 1 deletions

View File

@@ -66,6 +66,8 @@
<Compile Include="Amaterasu\ImageGRP.cs" />
<Compile Include="AnimeGameSystem\ArcDAT.cs" />
<Compile Include="AnimeGameSystem\AudioPCM.cs" />
<Compile Include="BlueGale\ArcSNN.cs" />
<Compile Include="BlueGale\ImageZBM.cs" />
<Compile Include="Cmvs\ArcCPZ.cs" />
<Compile Include="ArcPBX.cs" />
<Compile Include="Banana\ArcPK.cs" />

View File

@@ -0,0 +1,74 @@
//! \file ArcSNN.cs
//! \date Sun Jan 10 01:51:27 2016
//! \brief BlueGale 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;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.IO;
namespace GameRes.Formats.BlueGale
{
[Export(typeof(ArchiveFormat))]
public class SnnOpener : ArchiveFormat
{
public override string Tag { get { return "SNN"; } }
public override string Description { get { return "BlueGale resource archive"; } }
public override uint Signature { get { return 0; } }
public override bool IsHierarchic { get { return false; } }
public override bool CanCreate { get { return false; } }
public override ArcFile TryOpen (ArcView file)
{
if (!file.Name.EndsWith (".snn", StringComparison.InvariantCultureIgnoreCase))
return null;
var inx_name = Path.ChangeExtension (file.Name, "Inx");
if (!VFS.FileExists (inx_name))
return null;
using (var inx = VFS.OpenView (inx_name))
{
int count = inx.View.ReadInt32 (0);
if (!IsSaneCount (count))
return null;
int inx_offset = 4;
if (inx_offset + count * 0x48 > inx.MaxOffset)
return null;
var dir = new List<Entry> (count);
for (int i = 0; i < count; ++i)
{
var name = inx.View.ReadString (inx_offset, 0x40);
var entry = FormatCatalog.Instance.Create<Entry> (name);
entry.Offset = inx.View.ReadUInt32 (inx_offset+0x40);
entry.Size = inx.View.ReadUInt32 (inx_offset+0x44);
if (!entry.CheckPlacement (file.MaxOffset))
return null;
dir.Add (entry);
inx_offset += 0x48;
}
return new ArcFile (file, this, dir);
}
}
}
}

View File

@@ -0,0 +1,140 @@
//! \file ImageZBM.cs
//! \date Sun Jan 10 00:41:42 2016
//! \brief BlueGale image format.
//
// 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 GameRes.Utility;
using System;
using System.ComponentModel.Composition;
using System.IO;
namespace GameRes.Formats.BlueGale
{
internal class ZbmMetaData : ImageMetaData
{
public int UnpackedSize;
public int DataOffset;
}
[Export(typeof(ImageFormat))]
public class ZbmFormat : ImageFormat
{
public override string Tag { get { return "ZBM/BLUEGALE"; } }
public override string Description { get { return "BlueGale compressed image format"; } }
public override uint Signature { get { return 0x5F706D61; } } // 'amp_'
public ZbmFormat ()
{
Extensions = new string[] { "zbm" };
}
public override ImageMetaData ReadMetaData (Stream stream)
{
stream.Position = 4;
using (var reader = new ArcView.Reader (stream))
{
int version = reader.ReadInt16();
if (version != 1)
return null;
int unpacked_size = reader.ReadInt32();
int data_offset = reader.ReadInt32();
if (unpacked_size < 0x36 || data_offset < stream.Position)
return null;
var header = new byte[0x20];
stream.Position = data_offset;
Unpack (stream, header);
if ('B' != header[0] || 'M' != header[1])
return null;
return new ZbmMetaData
{
Width = LittleEndian.ToUInt32 (header, 0x12),
Height = LittleEndian.ToUInt32 (header, 0x16),
BPP = LittleEndian.ToInt16 (header, 0x1C),
UnpackedSize = unpacked_size,
DataOffset = data_offset,
};
}
}
public override ImageData Read (Stream stream, ImageMetaData info)
{
var meta = (ZbmMetaData)info;
var data = new byte[meta.UnpackedSize];
stream.Position = meta.DataOffset;
Unpack (stream, data);
using (var bmp = new MemoryStream (data))
return ImageFormat.Bmp.Read (bmp, info);
}
public override void Write (Stream file, ImageData image)
{
throw new System.NotImplementedException ("ZbmFormat.Write not implemented");
}
static void Unpack (Stream input, byte[] output)
{
using (var bits = new MsbBitStream (input, true))
{
bits.GetNextBit();
int dst = 0;
while (dst < output.Length)
{
int count = bits.GetBits (8);
if (-1 == count)
throw new EndOfStreamException();
if (count > 0x7F)
{
count &= 0x7F;
int offset = bits.GetBits (10);
if (-1 == offset)
throw new EndOfStreamException();
count = Math.Min (count & 0x7F, output.Length-dst);
Binary.CopyOverlapped (output, dst-offset, dst, count);
dst += count;
}
else
{
for (int i = 0 ; i < count && dst < output.Length; i++)
{
int v = bits.GetBits (8);
if (-1 == v)
throw new EndOfStreamException();
output[dst++] = (byte)v;
}
}
}
}
Decrypt (output);
}
static void Decrypt (byte[] data)
{
if (('B'^0xFF) == data[0] && ('M'^0xFF) == data[1])
{
int encrypted = Math.Min (100, data.Length);
for (int i = 0; i < encrypted; ++i)
data[i] ^= 0xFF;
}
}
}
}