Files
GARbro-crskycode/ArcFormats/Softpal/ArcVAFS.cs
2016-01-31 06:24:38 +04:00

106 lines
4.5 KiB
C#

//! \file ArcVAFS.cs
//! \date Sun Jan 10 04:19:47 2016
//! \brief Softpal engine resource archive.
//
// 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.Collections.Generic;
using System.ComponentModel.Composition;
using System.IO;
namespace GameRes.Formats.Softpal
{
[Export(typeof(ArchiveFormat))]
public class VafsOpener : ArchiveFormat
{
public override string Tag { get { return "VAFS"; } }
public override string Description { get { return "Softpal engine resource archive"; } }
public override uint Signature { get { return 0x53464156; } } // 'VAFS'
public override bool IsHierarchic { get { return false; } }
public override bool CanCreate { get { return false; } }
public VafsOpener ()
{
Extensions = new string[] { "052", "055" };
}
static readonly Lazy<ImageFormat> s_PicFormat = new Lazy<ImageFormat> (() => ImageFormat.FindByTag ("PIC/SOFTPAL"));
public override ArcFile TryOpen (ArcView file)
{
if ('H' != file.View.ReadByte (4))
return null;
uint index_offset = 0x10;
uint data_offset = file.View.ReadUInt32 (index_offset);
if (data_offset < index_offset || data_offset >= file.MaxOffset)
return null;
int count = (int)(data_offset - index_offset) / 4;
if (!IsSaneCount (count))
return null;
uint next_offset = data_offset;
var base_name = Path.GetFileNameWithoutExtension (file.Name).ToUpperInvariant();
bool is_audio = "BGM" == base_name;
bool is_pic = "PIC" == base_name;
var dir = new List<Entry> (count);
for (int i = 0; next_offset != file.MaxOffset && i < count; ++i)
{
index_offset += 4;
var name = string.Format("{0}#{1:D5}", base_name, i);
var offset = next_offset;
next_offset = index_offset == data_offset ? 0 : file.View.ReadUInt32 (index_offset);
if (uint.MaxValue == next_offset)
break;
else if (0 == next_offset)
next_offset = (uint)file.MaxOffset;
else if (next_offset < offset)
break;
uint size = next_offset - offset;
if (size < 4)
continue;
Entry entry;
if (is_pic)
entry = new Entry { Name = name, Type = "image", Offset = offset };
else if (is_audio)
entry = new Entry { Name = name + ".wav", Type = "audio", Offset = offset };
else
entry = new AutoEntry (name, () => {
uint signature = file.View.ReadUInt32 (offset);
uint s16 = signature & 0xFFFF;
if (1 == s16 || 3 == s16 || 4 == s16)
return s_PicFormat.Value;
return AutoEntry.DetectFileType (signature);
}) { Offset = offset };
entry.Size = size;
if (!entry.CheckPlacement (file.MaxOffset))
return null;
dir.Add (entry);
}
if (0 == dir.Count)
return null;
return new ArcFile (file, this, dir);
}
}
}