GARbro-mirror/ArcFormats/Abel/ImageGPS.cs

155 lines
5.8 KiB
C#
Raw Normal View History

//! \file ImageGPS.cs
//! \date Sat Feb 20 14:13:10 2016
//! \brief ADVEngine compressed bitmap.
//
// 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.ComponentModel.Composition;
using System.IO;
using GameRes.Compression;
using GameRes.Utility;
namespace GameRes.Formats.Abel
{
internal class GpsMetaData : ImageMetaData
{
public byte Compression;
2019-03-11 14:44:00 +08:00
public int HeaderSize;
public int PackedSize;
public int UnpackedSize;
}
[Export(typeof(ImageFormat))]
public class GpsFormat : ImageFormat
{
public override string Tag { get { return "GPS"; } }
public override string Description { get { return "ADVEngine compressed bitmap"; } }
public override uint Signature { get { return 0x535047; } } // 'GPS'
public override bool CanWrite { get { return false; } }
public GpsFormat ()
{
2023-08-24 05:33:50 +08:00
Extensions = new[] { "gps", "gp2", "cmp" };
Signatures = new[] { 0x535047u, 0x325047u }; // 'GPS', 'GP2'
}
2016-10-16 13:22:53 +08:00
public override ImageMetaData ReadMetaData (IBinaryStream file)
{
2016-10-16 13:22:53 +08:00
var header = file.ReadHeader (0x29);
2023-08-24 05:33:50 +08:00
bool is_gp2 = header.AsciiEqual ("GP2");
2019-03-11 14:44:00 +08:00
var gps = new GpsMetaData();
2023-08-24 05:33:50 +08:00
if (!is_gp2 && header.ToUInt32 (4) == 0xCCCCCCCC)
{
2019-03-11 14:44:00 +08:00
gps.HeaderSize = 0x19;
gps.Compression = 2;
gps.UnpackedSize = header.ToInt32 (0x9);
gps.PackedSize = header.ToInt32 (0xD);
}
else
{
gps.HeaderSize = 0x29;
gps.Compression = header[0x10];
gps.UnpackedSize = header.ToInt32 (0x11);
2023-08-24 05:33:50 +08:00
if (is_gp2)
gps.UnpackedSize = - 1 - gps.UnpackedSize;
2019-03-11 14:44:00 +08:00
gps.PackedSize = header.ToInt32 (0x15);
gps.Width = header.ToUInt32 (0x19);
gps.Height = header.ToUInt32 (0x1D);
}
file.Position = gps.HeaderSize;
// read BMP header
2016-10-16 13:22:53 +08:00
using (var stream = OpenGpsStream (file, gps.Compression, 0x54))
using (var input = BinaryStream.FromStream (stream, file.Name))
{
var bmp_info = Bmp.ReadMetaData (input);
if (null == bmp_info)
return null;
gps.BPP = bmp_info.BPP;
2019-03-11 14:44:00 +08:00
gps.Width = bmp_info.Width;
gps.Height = bmp_info.Height;
return gps;
}
}
2016-10-16 13:22:53 +08:00
public override ImageData Read (IBinaryStream file, ImageMetaData info)
{
var gps = (GpsMetaData)info;
2019-03-11 14:44:00 +08:00
file.Position = gps.HeaderSize;
2016-10-16 13:22:53 +08:00
using (var stream = OpenGpsStream (file, gps.Compression, gps.UnpackedSize))
using (var input = BinaryStream.FromStream (stream, file.Name))
return Bmp.Read (input, info);
}
public override void Write (Stream file, ImageData image)
{
throw new System.NotImplementedException ("GpsFormat.Write not implemented");
}
2016-10-16 13:22:53 +08:00
Stream OpenGpsStream (IBinaryStream input, byte compression, int unpacked_size)
{
if (0 == compression)
2016-10-16 13:22:53 +08:00
return new StreamRegion (input.AsStream, 0x29, true);
else if (1 == compression)
2016-10-16 13:22:53 +08:00
return OpenRLEStream (input.AsStream, unpacked_size);
else if (2 == compression)
2016-10-16 13:22:53 +08:00
return new LzssStream (input.AsStream, LzssMode.Decompress, true);
else if (3 == compression)
{
2016-10-15 16:21:12 +08:00
using (var lzss = new LzssStream (input.AsStream, LzssMode.Decompress, true))
2016-10-16 13:22:53 +08:00
return OpenRLEStream (lzss, unpacked_size);
}
else
throw new InvalidFormatException();
}
Stream OpenRLEStream (Stream input, int output_size)
{
var output = new byte[output_size];
UnpackRLE (input, output);
2016-10-16 13:22:53 +08:00
return new BinMemoryStream (output, "");
}
void UnpackRLE (Stream input, byte[] output)
{
int dst = 0;
while (dst < output.Length)
{
int count = Math.Min (3, output.Length-dst);
count = input.Read (output, dst, count);
if (count < 3)
break;
count = input.ReadByte();
if (-1 == count)
break;
dst += 3;
if (count > 1)
{
count = Math.Min ((count-1) * 3, output.Length-dst);
Binary.CopyOverlapped (output, dst-3, dst, count);
dst += count;
}
}
}
}
}