GARbro-mirror/ArcFormats/Palette/ArcCHR.cs

136 lines
5.6 KiB
C#

//! \file ArcCHR.cs
//! \date Mon Oct 26 07:26:39 2015
//! \brief Multi-frame PNG archive.
//
// 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.Collections.Generic;
using System.ComponentModel.Composition;
using System.IO;
using System.Linq;
using GameRes.Utility;
using System.Text;
namespace GameRes.Formats.Palette
{
internal class CharEntry : Entry
{
public int OffsetX;
public int OffsetY;
}
[Export(typeof(ArchiveFormat))]
public class ChrOpener : ArchiveFormat
{
public override string Tag { get { return "CHR/Palette"; } }
public override string Description { get { return "Palette multi-frame PNG archive"; } }
public override uint Signature { get { return 0x72616863; } } // 'char'
public override bool IsHierarchic { get { return false; } }
public override bool CanCreate { get { return false; } }
public ChrOpener ()
{
Extensions = new string[] { "chr" };
}
public override ArcFile TryOpen (ArcView file)
{
uint index_offset = file.View.ReadUInt32 (4);
int count = file.View.ReadInt32 (index_offset)+1;
if (!IsSaneCount (count))
return null;
string base_name = Path.GetFileNameWithoutExtension (file.Name);
var dir = new List<Entry> (count);
dir.Add (new Entry {
Name = string.Format ("{0}#0.png", base_name),
Type = "image", Offset = 8, Size = index_offset-8
});
index_offset += 4;
for (int i = 1; i < count; ++i)
{
uint name_length = file.View.ReadByte (index_offset++);
var name = file.View.ReadString (index_offset, name_length);
uint size = file.View.ReadUInt32 (index_offset+name_length);
index_offset += name_length + 4;
if (size > 8)
{
var entry = new CharEntry
{
Name = string.Format ("{0}#{1}.png", base_name, name),
Type = "image",
Offset = index_offset+8,
Size = size-8,
OffsetX = file.View.ReadInt16 (index_offset),
OffsetY = file.View.ReadInt16 (index_offset+2),
//Width = file.View.ReadUInt16 (index_offset+4),
//Height = file.View.ReadUInt16 (index_offset+6),
};
dir.Add (entry);
}
index_offset += size;
}
return new ArcFile (file, this, dir);
}
public override Stream OpenEntry (ArcFile arc, Entry entry)
{
int extra_length = PgaFormat.PngHeader.Length + PgaFormat.PngFooter.Length;
var png = new MemoryStream ((int)entry.Size + extra_length + 17);
var cent = entry as CharEntry;
png.Write (PgaFormat.PngHeader, 0, PgaFormat.PngHeader.Length);
using (var body = arc.File.CreateStream (entry.Offset, entry.Size))
{
if (cent != null && cent != arc.Dir.First()
&& (cent.OffsetX != 0 || cent.OffsetY != 0))
{
// inject oFFs chunk into PNG stream
using (var reader = new BinaryReader (body, Encoding.ASCII, true))
using (var writer = new BinaryWriter (png, Encoding.ASCII, true))
{
var ihdr_size = reader.ReadInt32();
writer.Write (ihdr_size);
ihdr_size = Binary.BigEndian (ihdr_size);
writer.Write (reader.ReadBytes (ihdr_size+8));
writer.Write (Binary.BigEndian ((int)9));
int position = (int)writer.BaseStream.Position;
char[] tag = { 'o', 'F', 'F', 's' };
writer.Write (tag);
writer.Write (Binary.BigEndian (cent.OffsetX));
writer.Write (Binary.BigEndian (cent.OffsetY));
writer.Write ((byte)0);
uint crc = Crc32.Compute (png.GetBuffer(), position, 13);
writer.Write (Binary.BigEndian (crc));
}
}
body.CopyTo (png);
}
png.Write (PgaFormat.PngFooter, 0, PgaFormat.PngFooter.Length);
png.Position = 0;
return png;
}
}
}