mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-27 15:44:00 +08:00
implemented variation of CPB image format.
This commit is contained in:
parent
0daf668703
commit
c75cd84b42
@ -2,7 +2,7 @@
|
|||||||
//! \date Wed Apr 22 11:08:13 2015
|
//! \date Wed Apr 22 11:08:13 2015
|
||||||
//! \brief AZ system image format implementation.
|
//! \brief AZ system image format implementation.
|
||||||
//
|
//
|
||||||
// Copyright (C) 2015 by morkt
|
// Copyright (C) 2015-2016 by morkt
|
||||||
//
|
//
|
||||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
// of this software and associated documentation files (the "Software"), to
|
// of this software and associated documentation files (the "Software"), to
|
||||||
@ -30,12 +30,16 @@ using System.Windows;
|
|||||||
using System.Windows.Media;
|
using System.Windows.Media;
|
||||||
using System.Windows.Media.Imaging;
|
using System.Windows.Media.Imaging;
|
||||||
using GameRes.Compression;
|
using GameRes.Compression;
|
||||||
|
using GameRes.Utility;
|
||||||
|
|
||||||
namespace GameRes.Formats.AZSys
|
namespace GameRes.Formats.AZSys
|
||||||
{
|
{
|
||||||
internal class CpbMetaData : ImageMetaData
|
internal class CpbMetaData : ImageMetaData
|
||||||
{
|
{
|
||||||
public uint[] Channel = new uint[4];
|
public int Type;
|
||||||
|
public int Version;
|
||||||
|
public uint[] Channel = new uint[4];
|
||||||
|
public uint DataOffset;
|
||||||
}
|
}
|
||||||
|
|
||||||
[Export(typeof(ImageFormat))]
|
[Export(typeof(ImageFormat))]
|
||||||
@ -52,38 +56,51 @@ namespace GameRes.Formats.AZSys
|
|||||||
|
|
||||||
public override ImageMetaData ReadMetaData (Stream stream)
|
public override ImageMetaData ReadMetaData (Stream stream)
|
||||||
{
|
{
|
||||||
stream.Seek (5, SeekOrigin.Current);
|
stream.Seek (4, SeekOrigin.Current);
|
||||||
|
int type = stream.ReadByte();
|
||||||
int bpp = stream.ReadByte();
|
int bpp = stream.ReadByte();
|
||||||
if (24 != bpp && 32 != bpp)
|
if (24 != bpp && 32 != bpp)
|
||||||
throw new NotSupportedException ("Not supported CPB image format");
|
throw new NotSupportedException ("Not supported CPB image format");
|
||||||
using (var input = new ArcView.Reader (stream))
|
using (var input = new ArcView.Reader (stream))
|
||||||
{
|
{
|
||||||
int version = input.ReadInt16 ();
|
int version = input.ReadInt16 ();
|
||||||
if (1 != version)
|
if (1 != version && 0 != version)
|
||||||
throw new NotSupportedException ("Not supported CPB image version");
|
throw new NotSupportedException ("Not supported CPB image version");
|
||||||
var info = new CpbMetaData ();
|
var info = new CpbMetaData {
|
||||||
info.BPP = bpp;
|
Type = type,
|
||||||
input.ReadUInt32();
|
Version = version,
|
||||||
info.Width = input.ReadUInt16();
|
BPP = bpp,
|
||||||
info.Height = input.ReadUInt16();
|
};
|
||||||
info.Channel[0] = input.ReadUInt32(); // Alpha
|
if (1 == version)
|
||||||
info.Channel[1] = input.ReadUInt32();
|
{
|
||||||
info.Channel[2] = input.ReadUInt32();
|
input.ReadUInt32();
|
||||||
info.Channel[3] = input.ReadUInt32();
|
info.Width = input.ReadUInt16();
|
||||||
|
info.Height = input.ReadUInt16();
|
||||||
|
info.Channel[0] = input.ReadUInt32();
|
||||||
|
info.Channel[1] = input.ReadUInt32();
|
||||||
|
info.Channel[2] = input.ReadUInt32();
|
||||||
|
info.Channel[3] = input.ReadUInt32();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
info.Width = input.ReadUInt16();
|
||||||
|
info.Height = input.ReadUInt16();
|
||||||
|
input.ReadUInt32();
|
||||||
|
info.Channel[0] = input.ReadUInt32();
|
||||||
|
info.Channel[1] = input.ReadUInt32();
|
||||||
|
info.Channel[2] = input.ReadUInt32();
|
||||||
|
info.Channel[3] = input.ReadUInt32();
|
||||||
|
}
|
||||||
|
info.DataOffset = (uint)stream.Position;
|
||||||
return info;
|
return info;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public override ImageData Read (Stream stream, ImageMetaData info)
|
public override ImageData Read (Stream stream, ImageMetaData info)
|
||||||
{
|
{
|
||||||
var meta = info as CpbMetaData;
|
var reader = new Reader (stream, (CpbMetaData)info);
|
||||||
if (null == meta)
|
|
||||||
throw new ArgumentException ("CpbFormat.Read should be supplied with CpbMetaData", "info");
|
|
||||||
|
|
||||||
stream.Position = 0x20;
|
|
||||||
var reader = new Reader (stream, meta);
|
|
||||||
reader.Unpack();
|
reader.Unpack();
|
||||||
return ImageData.Create (meta, reader.Format, reader.Palette, reader.Data);
|
return ImageData.Create (info, reader.Format, reader.Palette, reader.Data);
|
||||||
}
|
}
|
||||||
|
|
||||||
internal class Reader
|
internal class Reader
|
||||||
@ -94,6 +111,7 @@ namespace GameRes.Formats.AZSys
|
|||||||
Stream m_input;
|
Stream m_input;
|
||||||
byte[] m_output;
|
byte[] m_output;
|
||||||
uint[] m_channel;
|
uint[] m_channel;
|
||||||
|
CpbMetaData m_info;
|
||||||
|
|
||||||
public PixelFormat Format { get; private set; }
|
public PixelFormat Format { get; private set; }
|
||||||
public BitmapPalette Palette { get; private set; }
|
public BitmapPalette Palette { get; private set; }
|
||||||
@ -103,6 +121,7 @@ namespace GameRes.Formats.AZSys
|
|||||||
{
|
{
|
||||||
m_width = (int)info.Width;
|
m_width = (int)info.Width;
|
||||||
m_height = (int)info.Height;
|
m_height = (int)info.Height;
|
||||||
|
m_info = info;
|
||||||
m_bpp = info.BPP;
|
m_bpp = info.BPP;
|
||||||
m_channel = info.Channel;
|
m_channel = info.Channel;
|
||||||
m_output = new byte[m_width * m_height * 4];
|
m_output = new byte[m_width * m_height * 4];
|
||||||
@ -113,12 +132,32 @@ namespace GameRes.Formats.AZSys
|
|||||||
else
|
else
|
||||||
Format = PixelFormats.Bgra32;
|
Format = PixelFormats.Bgra32;
|
||||||
m_input = input;
|
m_input = input;
|
||||||
|
m_input.Position = info.DataOffset;
|
||||||
|
|
||||||
|
if (1 == m_info.Version)
|
||||||
|
{
|
||||||
|
StreamMap = new byte[] { 0, 3, 1, 2 };
|
||||||
|
ChannelMap = new byte[] { 3, 0, 1, 2 };
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
StreamMap = new byte[] { 0, 1, 2, 3 };
|
||||||
|
ChannelMap = new byte[] { 2, 1, 0, 3 };
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static byte[] StreamMap = new byte[] { 0, 3, 1, 2 };
|
byte[] StreamMap;
|
||||||
static byte[] ChannelMap = new byte[] { 3, 0, 1, 2 };
|
byte[] ChannelMap;
|
||||||
|
|
||||||
public void Unpack ()
|
public void Unpack ()
|
||||||
|
{
|
||||||
|
if (0 == m_info.Version && 3 == m_info.Type)
|
||||||
|
UnpackV3();
|
||||||
|
else
|
||||||
|
UnpackV0();
|
||||||
|
}
|
||||||
|
|
||||||
|
void UnpackV0 ()
|
||||||
{
|
{
|
||||||
byte[] channel = new byte[m_width*m_height];
|
byte[] channel = new byte[m_width*m_height];
|
||||||
long start_pos = m_input.Position;
|
long start_pos = m_input.Position;
|
||||||
@ -140,6 +179,67 @@ namespace GameRes.Formats.AZSys
|
|||||||
start_pos += m_channel[StreamMap[i]];
|
start_pos += m_channel[StreamMap[i]];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void UnpackV3 ()
|
||||||
|
{
|
||||||
|
byte[] channel = new byte[m_width*m_height];
|
||||||
|
long start_pos = m_input.Position;
|
||||||
|
for (int i = 0; i < 4; ++i)
|
||||||
|
{
|
||||||
|
int packed_size = (int)m_channel[StreamMap[i]];
|
||||||
|
if (0 == packed_size)
|
||||||
|
continue;
|
||||||
|
m_input.Position = start_pos;
|
||||||
|
int channel_size = Decompress (packed_size, channel);
|
||||||
|
int dst = ChannelMap[i];
|
||||||
|
for (int j = 0; j < channel_size; ++j)
|
||||||
|
{
|
||||||
|
m_output[dst] = channel[j];
|
||||||
|
dst += 4;
|
||||||
|
}
|
||||||
|
start_pos += packed_size;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int Decompress (int input_size, byte[] output)
|
||||||
|
{
|
||||||
|
var input = new byte[input_size];
|
||||||
|
if (input_size != m_input.Read (input, 0, input_size))
|
||||||
|
throw new EndOfStreamException();
|
||||||
|
int src1 = 0x14;
|
||||||
|
int src2 = src1 + LittleEndian.ToInt32 (input, 4);
|
||||||
|
int src3 = src2 + LittleEndian.ToInt32 (input, 8);
|
||||||
|
int remaining = LittleEndian.ToInt32 (input, 0x10);
|
||||||
|
int dst = 0;
|
||||||
|
int mask = 0x80;
|
||||||
|
while (remaining > 0)
|
||||||
|
{
|
||||||
|
int count;
|
||||||
|
if (0 != (mask & input[src1]))
|
||||||
|
{
|
||||||
|
int offset = LittleEndian.ToUInt16 (input, src2);
|
||||||
|
src2 += 2;
|
||||||
|
count = (offset >> 13) + 3;
|
||||||
|
offset = (offset & 0x1FFF) + 1;
|
||||||
|
Binary.CopyOverlapped (output, dst-offset, dst, count);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
count = input[src3++] + 1;
|
||||||
|
Buffer.BlockCopy (input, src3, output, dst, count);
|
||||||
|
src3 += count;
|
||||||
|
}
|
||||||
|
dst += count;
|
||||||
|
remaining -= count;
|
||||||
|
mask >>= 1;
|
||||||
|
if (0 == mask)
|
||||||
|
{
|
||||||
|
++src1;
|
||||||
|
mask = 0x80;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return dst;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -358,6 +358,7 @@ Shuffle! Essence+<br/>
|
|||||||
</td></tr>
|
</td></tr>
|
||||||
<tr class="odd"><td>*.elg</td><td><tt>ELG</tt></td><td>No</td></tr>
|
<tr class="odd"><td>*.elg</td><td><tt>ELG</tt></td><td>No</td></tr>
|
||||||
<tr><td>*.arc</td><td><tt>ARC\x1a</tt><br><tt>ARC</tt></td><td>No</td><td rowspan="2">AZ System</td><td rowspan="2">
|
<tr><td>*.arc</td><td><tt>ARC\x1a</tt><br><tt>ARC</tt></td><td>No</td><td rowspan="2">AZ System</td><td rowspan="2">
|
||||||
|
Clover Heart's<br/>
|
||||||
Triptych<br/>
|
Triptych<br/>
|
||||||
Tsurugi Otome Noah<br/>
|
Tsurugi Otome Noah<br/>
|
||||||
</td></tr>
|
</td></tr>
|
||||||
@ -784,6 +785,7 @@ Angenehm Platz -Kleiner Garten Sie Erstellen-<br/>
|
|||||||
Sweet ~Hanjuku na Tenshi-tachi~<br/>
|
Sweet ~Hanjuku na Tenshi-tachi~<br/>
|
||||||
</td></tr>
|
</td></tr>
|
||||||
<tr class="odd"><td>*.ovk</td><td>-</td><td>No</td><td rowspan="4">RealLive</td><td rowspan="4">
|
<tr class="odd"><td>*.ovk</td><td>-</td><td>No</td><td rowspan="4">RealLive</td><td rowspan="4">
|
||||||
|
Joi-san no Iitsuke!!<br/>
|
||||||
Shiawase na Ohime-sama<br/>
|
Shiawase na Ohime-sama<br/>
|
||||||
</td></tr>
|
</td></tr>
|
||||||
<tr class="odd"><td>*.nwa</td><td>-</td><td>No</td></tr>
|
<tr class="odd"><td>*.nwa</td><td>-</td><td>No</td></tr>
|
||||||
|
Loading…
Reference in New Issue
Block a user