GARbro-mirror/ArcFormats/Nexas/ImageGRP.cs

136 lines
4.6 KiB
C#
Raw Normal View History

2016-05-21 01:53:09 +08:00
//! \file ImageGRP.cs
//! \date Fri May 20 20:30:01 2016
//! \brief NeXAS GRP 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 System;
using System.ComponentModel.Composition;
using System.IO;
using System.Windows.Media;
using GameRes.Utility;
namespace GameRes.Formats.NeXAS
{
internal class GrpMetaData : ImageMetaData
{
public int UnpackedSize;
}
[Export(typeof(ImageFormat))]
public class GrpFormat : ImageFormat
{
public override string Tag { get { return "GR3"; } }
public override string Description { get { return "NeXAS engine image format"; } }
public override uint Signature { get { return 0x18335247; } }
public GrpFormat ()
{
Extensions = new string[] { "grp" };
}
2016-10-16 13:22:53 +08:00
public override ImageMetaData ReadMetaData (IBinaryStream stream)
2016-05-21 01:53:09 +08:00
{
2016-10-16 13:22:53 +08:00
var header = stream.ReadHeader (0x11);
2016-05-21 01:53:09 +08:00
return new GrpMetaData
{
2016-10-16 13:22:53 +08:00
Width = header.ToUInt32 (5),
Height = header.ToUInt32 (9),
BPP = header.ToUInt16 (3),
UnpackedSize = header.ToInt32 (0xD),
2016-05-21 01:53:09 +08:00
};
}
2016-10-16 13:22:53 +08:00
public override ImageData Read (IBinaryStream stream, ImageMetaData info)
2016-05-21 01:53:09 +08:00
{
using (var reader = new GrpReader (stream, (GrpMetaData)info))
{
reader.Unpack();
return ImageData.Create (info, reader.Format, null, reader.Data);
}
}
public override void Write (Stream file, ImageData image)
{
throw new System.NotImplementedException ("GrpFormat.Write not implemented");
}
}
internal sealed class GrpReader : IDisposable
{
2016-10-16 13:22:53 +08:00
IBinaryStream m_input;
2016-05-21 01:53:09 +08:00
byte[] m_output;
public byte[] Data { get { return m_output; } }
public PixelFormat Format { get; private set; }
2016-10-16 13:22:53 +08:00
public GrpReader (IBinaryStream input, GrpMetaData info)
2016-05-21 01:53:09 +08:00
{
2016-10-16 13:22:53 +08:00
m_input = input;
2016-05-21 01:53:09 +08:00
m_output = new byte[info.UnpackedSize];
if (24 == info.BPP)
Format = PixelFormats.Bgr24;
else if (32 == info.BPP)
Format = PixelFormats.Bgr32;
else
throw new NotSupportedException ("Not supported GRP image color depth");
}
public void Unpack ()
{
2016-10-16 13:22:53 +08:00
m_input.Position = 0x11;
2016-05-21 01:53:09 +08:00
int ctl_length = (m_input.ReadInt32() + 7) / 8;
var ctl_bytes = m_input.ReadBytes (ctl_length);
m_input.ReadInt32();
using (var ctl_mem = new MemoryStream (ctl_bytes))
using (var bits = new LsbBitStream (ctl_mem))
{
int dst = 0;
while (dst < m_output.Length)
{
int bit = bits.GetNextBit();
if (-1 == bit)
break;
if (0 == bit)
{
2016-10-16 13:22:53 +08:00
m_output[dst++] = m_input.ReadUInt8();
2016-05-21 01:53:09 +08:00
}
else
{
int offset = m_input.ReadUInt16();
int count = (offset & 7) + 1;
offset = (offset >> 3) + 1;
Binary.CopyOverlapped (m_output, dst - offset, dst, count);
dst += count;
}
}
}
}
#region IDisposable Members
public void Dispose ()
{
}
#endregion
}
}