mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-27 15:44:00 +08:00
(EPA): implemented 8bpp images with alpha channel.
This commit is contained in:
parent
5202988b48
commit
eafe023de9
@ -82,26 +82,26 @@ namespace GameRes.Formats.Pajamas
|
|||||||
|
|
||||||
public override ImageData Read (IBinaryStream file, ImageMetaData info)
|
public override ImageData Read (IBinaryStream file, ImageMetaData info)
|
||||||
{
|
{
|
||||||
var meta = (EpaMetaData)info;
|
var reader = new Reader (file, (EpaMetaData)info);
|
||||||
file.Position = 2 == meta.Mode ? 0x18 : 0x10;
|
|
||||||
var reader = new Reader (file.AsStream, 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
|
||||||
{
|
{
|
||||||
private Stream m_input;
|
private IBinaryStream m_input;
|
||||||
|
private int m_start_pos;
|
||||||
private int m_width;
|
private int m_width;
|
||||||
private int m_height;
|
private int m_height;
|
||||||
private int m_pixel_size;
|
private int m_pixel_size;
|
||||||
private byte[] m_output;
|
private byte[] m_output;
|
||||||
|
private bool m_has_alpha;
|
||||||
|
|
||||||
public PixelFormat Format { get; private set; }
|
public PixelFormat Format { get; private set; }
|
||||||
public BitmapPalette Palette { get; private set; }
|
public BitmapPalette Palette { get; private set; }
|
||||||
public byte[] Data { get { return m_output; } }
|
public byte[] Data { get { return m_output; } }
|
||||||
|
|
||||||
public Reader (Stream stream, EpaMetaData info)
|
public Reader (IBinaryStream stream, EpaMetaData info)
|
||||||
{
|
{
|
||||||
m_input = stream;
|
m_input = stream;
|
||||||
switch (info.ColorType)
|
switch (info.ColorType)
|
||||||
@ -110,70 +110,55 @@ namespace GameRes.Formats.Pajamas
|
|||||||
case 1: m_pixel_size = 3; Format = PixelFormats.Bgr24; break;
|
case 1: m_pixel_size = 3; Format = PixelFormats.Bgr24; break;
|
||||||
case 2: m_pixel_size = 4; Format = PixelFormats.Bgra32; break;
|
case 2: m_pixel_size = 4; Format = PixelFormats.Bgra32; break;
|
||||||
case 3: m_pixel_size = 2; Format = PixelFormats.Bgr555; break;
|
case 3: m_pixel_size = 2; Format = PixelFormats.Bgr555; break;
|
||||||
case 4: m_pixel_size = 1; Format = PixelFormats.Indexed8; break;
|
case 4: m_pixel_size = 1; Format = PixelFormats.Bgra32; m_has_alpha = true; break;
|
||||||
default: throw new NotSupportedException ("Not supported EPA color depth");
|
default: throw new NotSupportedException ("Not supported EPA color depth");
|
||||||
}
|
}
|
||||||
m_width = (int)info.Width;
|
m_width = (int)info.Width;
|
||||||
m_height = (int)info.Height;
|
m_height = (int)info.Height;
|
||||||
m_output = new byte[info.Width*info.Height*m_pixel_size];
|
m_output = new byte[info.Width*info.Height*m_pixel_size];
|
||||||
if (8 == info.BPP)
|
m_start_pos = 2 == info.Mode ? 0x18 : 0x10;
|
||||||
Palette = ImageFormat.ReadPalette (m_input, 0x100, PaletteFormat.Bgr);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int[] m_offset_table = new int[16];
|
||||||
|
|
||||||
public void Unpack ()
|
public void Unpack ()
|
||||||
{
|
{
|
||||||
int dst = 0;
|
m_input.Position = m_start_pos;
|
||||||
var offset_table = new int[16];
|
if (1 == m_pixel_size)
|
||||||
|
Palette = ImageFormat.ReadPalette (m_input.AsStream, 0x100, PaletteFormat.Bgr);
|
||||||
|
m_offset_table[0] = 0;
|
||||||
|
m_offset_table[1] = 1;
|
||||||
|
m_offset_table[2] = m_width;
|
||||||
|
m_offset_table[3] = m_width + 1;
|
||||||
|
m_offset_table[4] = 2;
|
||||||
|
m_offset_table[5] = m_width - 1;
|
||||||
|
m_offset_table[6] = m_width * 2;
|
||||||
|
m_offset_table[7] = 3;
|
||||||
|
m_offset_table[8] = (m_width + 1) * 2;
|
||||||
|
m_offset_table[9] = m_width + 2;
|
||||||
|
m_offset_table[10] = m_width * 2 + 1;
|
||||||
|
m_offset_table[11] = m_width * 2 - 1;
|
||||||
|
m_offset_table[12] = (m_width - 1) * 2;
|
||||||
|
m_offset_table[13] = m_width - 2;
|
||||||
|
m_offset_table[14] = m_width * 3;
|
||||||
|
m_offset_table[15] = 4;
|
||||||
|
|
||||||
offset_table[0] = 0;
|
UnpackChannel (m_output);
|
||||||
offset_table[1] = 1;
|
if (m_has_alpha)
|
||||||
offset_table[2] = m_width;
|
|
||||||
offset_table[3] = m_width + 1;
|
|
||||||
offset_table[4] = 2;
|
|
||||||
offset_table[5] = m_width - 1;
|
|
||||||
offset_table[6] = m_width * 2;
|
|
||||||
offset_table[7] = 3;
|
|
||||||
offset_table[8] = (m_width + 1) * 2;
|
|
||||||
offset_table[9] = m_width + 2;
|
|
||||||
offset_table[10] = m_width * 2 + 1;
|
|
||||||
offset_table[11] = m_width * 2 - 1;
|
|
||||||
offset_table[12] = (m_width - 1) * 2;
|
|
||||||
offset_table[13] = m_width - 2;
|
|
||||||
offset_table[14] = m_width * 3;
|
|
||||||
offset_table[15] = 4;
|
|
||||||
|
|
||||||
while (dst < m_output.Length)
|
|
||||||
{
|
{
|
||||||
int flag = m_input.ReadByte();
|
var alpha = new byte[m_output.Length];
|
||||||
if (-1 == flag)
|
UnpackChannel (alpha);
|
||||||
throw new InvalidFormatException ("Unexpected end of file");
|
var bitmap = new byte[m_width * m_height * 4];
|
||||||
|
int dst = 0;
|
||||||
if (0 == (flag & 0xf0))
|
for (int src = 0; src < m_output.Length; ++src)
|
||||||
{
|
{
|
||||||
int count = flag;
|
var color = Palette.Colors[m_output[src]];
|
||||||
if (dst + count > m_output.Length)
|
bitmap[dst++] = color.B;
|
||||||
count = m_output.Length - dst;
|
bitmap[dst++] = color.G;
|
||||||
if (count != m_input.Read (m_output, dst, count))
|
bitmap[dst++] = color.R;
|
||||||
throw new InvalidFormatException ("Unexpected end of file");
|
bitmap[dst++] = alpha[src];
|
||||||
dst += count;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
int count;
|
|
||||||
if (0 != (flag & 8))
|
|
||||||
{
|
|
||||||
count = m_input.ReadByte();
|
|
||||||
if (-1 == count)
|
|
||||||
throw new InvalidFormatException ("Unexpected end of file");
|
|
||||||
count += (flag & 7) << 8;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
count = flag & 7;
|
|
||||||
if (dst + count > m_output.Length)
|
|
||||||
break;
|
|
||||||
Binary.CopyOverlapped (m_output, dst-offset_table[flag >> 4], dst, count);
|
|
||||||
dst += count;
|
|
||||||
}
|
}
|
||||||
|
m_output = bitmap;
|
||||||
}
|
}
|
||||||
if (m_pixel_size > 1)
|
if (m_pixel_size > 1)
|
||||||
{
|
{
|
||||||
@ -195,6 +180,38 @@ namespace GameRes.Formats.Pajamas
|
|||||||
m_output = bitmap;
|
m_output = bitmap;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void UnpackChannel (byte[] output)
|
||||||
|
{
|
||||||
|
int dst = 0;
|
||||||
|
while (dst < output.Length)
|
||||||
|
{
|
||||||
|
int count;
|
||||||
|
int flag = m_input.ReadUInt8();
|
||||||
|
if (0 == (flag & 0xF0))
|
||||||
|
{
|
||||||
|
count = flag;
|
||||||
|
if (dst + count > output.Length)
|
||||||
|
count = output.Length - dst;
|
||||||
|
if (count != m_input.Read (output, dst, count))
|
||||||
|
throw new InvalidFormatException ("Unexpected end of file");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (0 != (flag & 8))
|
||||||
|
{
|
||||||
|
count = m_input.ReadUInt8();
|
||||||
|
count += (flag & 7) << 8;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
count = flag & 7;
|
||||||
|
if (dst + count > output.Length)
|
||||||
|
break;
|
||||||
|
Binary.CopyOverlapped (output, dst-m_offset_table[flag >> 4], dst, count);
|
||||||
|
}
|
||||||
|
dst += count;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user