mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-27 07:34:00 +08:00
implemented 'ampV' animations as archives of frames.
This commit is contained in:
parent
0a606433f4
commit
e0406e983a
@ -86,6 +86,7 @@
|
||||
<Compile Include="Astronauts\ArcGXP.cs" />
|
||||
<Compile Include="Banana\ImageGEC.cs" />
|
||||
<Compile Include="BlackRainbow\ArcPAK.cs" />
|
||||
<Compile Include="BlueGale\VideoAMV.cs" />
|
||||
<Compile Include="CaramelBox\ArcARC4.cs" />
|
||||
<Compile Include="CaramelBox\ImageFCB.cs" />
|
||||
<Compile Include="Cmvs\ArcPBZ.cs" />
|
||||
|
@ -63,6 +63,7 @@ namespace GameRes.Formats.BlueGale
|
||||
var header = new byte[0x20];
|
||||
stream.Position = data_offset;
|
||||
Unpack (stream, header);
|
||||
Decrypt (header);
|
||||
if ('B' != header[0] || 'M' != header[1])
|
||||
return null;
|
||||
return new ZbmMetaData
|
||||
@ -82,8 +83,9 @@ namespace GameRes.Formats.BlueGale
|
||||
var data = new byte[meta.UnpackedSize];
|
||||
stream.Position = meta.DataOffset;
|
||||
Unpack (stream, data);
|
||||
Decrypt (data);
|
||||
using (var bmp = new MemoryStream (data))
|
||||
return ImageFormat.Bmp.Read (bmp, info);
|
||||
return Bmp.Read (bmp, info);
|
||||
}
|
||||
|
||||
public override void Write (Stream file, ImageData image)
|
||||
@ -91,20 +93,18 @@ namespace GameRes.Formats.BlueGale
|
||||
throw new System.NotImplementedException ("ZbmFormat.Write not implemented");
|
||||
}
|
||||
|
||||
static void Unpack (Stream input, byte[] output)
|
||||
internal static void Unpack (Stream input, byte[] output, int dst = 0)
|
||||
{
|
||||
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();
|
||||
break;
|
||||
if (count > 0x7F)
|
||||
{
|
||||
count &= 0x7F;
|
||||
int offset = bits.GetBits (10);
|
||||
if (-1 == offset)
|
||||
throw new EndOfStreamException();
|
||||
@ -114,6 +114,8 @@ namespace GameRes.Formats.BlueGale
|
||||
}
|
||||
else
|
||||
{
|
||||
if (0 == count)
|
||||
break;
|
||||
for (int i = 0 ; i < count && dst < output.Length; i++)
|
||||
{
|
||||
int v = bits.GetBits (8);
|
||||
@ -124,7 +126,6 @@ namespace GameRes.Formats.BlueGale
|
||||
}
|
||||
}
|
||||
}
|
||||
Decrypt (output);
|
||||
}
|
||||
|
||||
static void Decrypt (byte[] data)
|
||||
|
96
ArcFormats/BlueGale/VideoAMV.cs
Normal file
96
ArcFormats/BlueGale/VideoAMV.cs
Normal file
@ -0,0 +1,96 @@
|
||||
//! \file VideoAMV.cs
|
||||
//! \date Sat Aug 13 08:31:51 2016
|
||||
//! \brief Blue Gale animation 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 System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.Composition;
|
||||
using System.IO;
|
||||
using GameRes.Utility;
|
||||
|
||||
namespace GameRes.Formats.BlueGale
|
||||
{
|
||||
[Export(typeof(ArchiveFormat))]
|
||||
public class AmvOpener : ArchiveFormat
|
||||
{
|
||||
public override string Tag { get { return "AMPV"; } }
|
||||
public override string Description { get { return "BlueGale animation format"; } }
|
||||
public override uint Signature { get { return 0x56706D61; } } // 'ampV'
|
||||
public override bool IsHierarchic { get { return false; } }
|
||||
public override bool CanCreate { get { return false; } }
|
||||
|
||||
public AmvOpener ()
|
||||
{
|
||||
Extensions = new string[] { "amv" };
|
||||
}
|
||||
|
||||
public override ArcFile TryOpen (ArcView file)
|
||||
{
|
||||
if (file.View.ReadInt16 (4) != 1)
|
||||
return null;
|
||||
uint unpacked_size = file.View.ReadUInt32 (0x16);
|
||||
uint width = file.View.ReadUInt32 (0x1A);
|
||||
uint height = file.View.ReadUInt32 (0x1E);
|
||||
int count = file.View.ReadInt32 (0x2A);
|
||||
if (!IsSaneCount (count))
|
||||
return null;
|
||||
var base_name = Path.GetFileNameWithoutExtension (file.Name);
|
||||
uint offset = 0x32;
|
||||
var dir = new List<Entry> (count);
|
||||
for (int i = 0; i < count; ++i)
|
||||
{
|
||||
uint size = file.View.ReadUInt32 (offset);
|
||||
var entry = new PackedEntry
|
||||
{
|
||||
Name = string.Format ("{0}#{1:D4}.bmp", base_name, i),
|
||||
Type = "image",
|
||||
Offset = offset + 4,
|
||||
Size = size,
|
||||
IsPacked = true,
|
||||
UnpackedSize = unpacked_size + 0x36,
|
||||
};
|
||||
if (!entry.CheckPlacement (file.MaxOffset))
|
||||
return null;
|
||||
dir.Add (entry);
|
||||
offset += 4 + size;
|
||||
}
|
||||
return new ArcFile (file, this, dir);
|
||||
}
|
||||
|
||||
public override Stream OpenEntry (ArcFile arc, Entry entry)
|
||||
{
|
||||
var pent = (PackedEntry)entry;
|
||||
var output = new byte[pent.UnpackedSize];
|
||||
using (var input = arc.File.CreateStream (entry.Offset, entry.Size))
|
||||
ZbmFormat.Unpack (input, output, 0xE);
|
||||
|
||||
output[0] = (byte)'B';
|
||||
output[1] = (byte)'M';
|
||||
LittleEndian.Pack (pent.UnpackedSize, output, 2);
|
||||
int header_size = LittleEndian.ToInt32 (output, 0xE);
|
||||
LittleEndian.Pack (header_size+0xE, output, 0xA);
|
||||
return new MemoryStream (output);
|
||||
}
|
||||
}
|
||||
}
|
@ -829,13 +829,15 @@ Hitozuma Sakunyuu Hyakkaten<br/>
|
||||
Mai Miko Moe<br/>
|
||||
Paimega<br/>
|
||||
</td></tr>
|
||||
<tr class="odd"><td>*.snn+*.inx</td><td>-</td><td>No</td><td rowspan="2">BlueGale</td><td rowspan="2">
|
||||
<tr class="odd"><td>*.snn+*.inx</td><td>-</td><td>No</td><td rowspan="3">BlueGale</td><td rowspan="3">
|
||||
Bifronte ~Kugaitou Kitan~<br/>
|
||||
Cafe Junkie<br/>
|
||||
Immoral<br/>
|
||||
Majidashi! Royale ~Finish wa Watashi no Naka de~<br/>
|
||||
MILK Junkies<br/>
|
||||
</td></tr>
|
||||
<tr class="odd"><td>*.zbm</td><td><tt>amp_</tt></td><td>No</td></tr>
|
||||
<tr class="odd"><td>*.amv</td><td><tt>ampV</tt></td><td>No</td></tr>
|
||||
<tr><td>*.vfs</td><td><tt>VF</tt></td><td>No</td><td rowspan="5">Aoi</td><td rowspan="5">
|
||||
Alfred Gakuen Mamono Daitai<br/>
|
||||
Brown Doori Sanbanme<br/>
|
||||
@ -987,12 +989,14 @@ Kara no Shoujo 2<br/>
|
||||
<tr><td>data.NN<br/>ArcNN.dat</td><td>-</td><td>No</td><td>Cyberworks</td><td>
|
||||
Aniyome Kyouka-san to Sono Haha Chikako-san<br/>
|
||||
Aru Kazoku no Kankeizu<br/>
|
||||
Chou no Yume ~Futari no Chou~<br/>
|
||||
Cosplay Ecchi ~Layer Kana no Yuuutsu~<br/>
|
||||
Gakkou Yarashii Kaidan<br/>
|
||||
Hanamaru! 2<br/>
|
||||
Hime Kami 1/2<br/>
|
||||
In'youchuu Goku ~Ryoujoku Jigoku Taimaroku~<br/>
|
||||
In'youchuu Rei ~Ryoujoku Shiro Taima Emaki~<br/>
|
||||
Koitsuma Biyori ~Yukino-san wa Hitozuma Kanrinin~<br/>
|
||||
Kuraibito<br/>
|
||||
Naze ka Kanojo ga Boku ni Ecchi o Sematte Kuru Ken<br/>
|
||||
Onna Kyoushi Suzune<br/>
|
||||
|
Loading…
Reference in New Issue
Block a user