//! \file ImageIGF.cs //! \date Sun Jun 28 00:13:01 2015 //! \brief Silky's compressed image format. // // Copyright (C) 2015 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 System.Windows.Media.Imaging; using GameRes.Compression; using GameRes.Utility; namespace GameRes.Formats.Silky { internal class IgfMetaData : ImageMetaData { public int UnpackedSize; public bool IsPacked; } [Export(typeof(ImageFormat))] public class IgfFormat : ImageFormat { public override string Tag { get { return "IGF"; } } public override string Description { get { return "Silky's image format"; } } public override uint Signature { get { return 0x5355455Au; } } // 'ZEUS' public override ImageMetaData ReadMetaData (IBinaryStream stream) { var header = stream.ReadHeader (0x14); uint width = header.ToUInt32 (4); uint height = header.ToUInt32 (8); int unpacked_size = header.ToInt32 (0xC); int flags = header.ToInt32 (0x10); int bpp = flags & 0xff; if (0 == bpp) bpp = 32; return new IgfMetaData { Width = width, Height = height, BPP = bpp, UnpackedSize = unpacked_size, IsPacked = 0 != (flags & 0x80000000), }; } public override ImageData Read (IBinaryStream stream, ImageMetaData info) { var meta = (IgfMetaData)info as IgfMetaData; int stride = (int)info.Width*info.BPP/8; stream.Position = 0x14; byte[] pixels; if (meta.IsPacked) { int in_size = (int)(stream.Length - 0x14); using (var lzss = new LzssReader (stream.AsStream, in_size, meta.UnpackedSize)) { lzss.FrameFill = 0x20; lzss.Unpack(); pixels = lzss.Data; } } else { pixels = new byte[info.Height*stride]; if (pixels.Length != stream.Read (pixels, 0, pixels.Length)) throw new InvalidFormatException ("Unexpected end of file"); } PixelFormat format; if (24 == info.BPP) format = PixelFormats.Bgr24; else if (32 == info.BPP) format = PixelFormats.Bgra32; else format = PixelFormats.Gray8; return ImageData.CreateFlipped (info, format, null, pixels, stride); } public override void Write (Stream file, ImageData image) { throw new NotImplementedException ("IgfFormat.Write not implemented"); } } }