mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 21:55:34 +08:00
bfd81f9ec4
(HG3): attempt to recognize swapped Red/Blue channels. Fairytale BDT archives. (XP3, VF): add 'exe' to extensions list. (DXR): consolidated Macromedia Director archives. (SND): support mp3 streams. (QPK): PSP resource archive. (GRC): support encrypted images.
360 lines
12 KiB
C#
360 lines
12 KiB
C#
//! \file ArcCommon.cs
|
|
//! \date Tue Aug 19 09:45:38 2014
|
|
//! \brief Classes and functions common for various resource files.
|
|
//
|
|
// Copyright (C) 2014-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 GameRes.Utility;
|
|
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.ComponentModel.Composition;
|
|
|
|
namespace GameRes.Formats
|
|
{
|
|
public class AutoEntry : Entry
|
|
{
|
|
private Lazy<IResource> m_res;
|
|
private Lazy<string> m_name;
|
|
private Lazy<string> m_type;
|
|
|
|
public override string Name
|
|
{
|
|
get { return m_name.Value; }
|
|
set { m_name = new Lazy<string> (() => value); }
|
|
}
|
|
public override string Type
|
|
{
|
|
get { return m_type.Value; }
|
|
set { m_type = new Lazy<string> (() => value); }
|
|
}
|
|
|
|
public AutoEntry (string name, Func<IResource> type_checker)
|
|
{
|
|
m_res = new Lazy<IResource> (type_checker);
|
|
m_name = new Lazy<string> (() => GetName (name));
|
|
m_type = new Lazy<string> (GetEntryType);
|
|
}
|
|
|
|
public static AutoEntry Create (ArcView file, long offset, string base_name)
|
|
{
|
|
return new AutoEntry (base_name, () => DetectFileType (file.View.ReadUInt32 (offset))) { Offset = offset };
|
|
}
|
|
|
|
public static IResource DetectFileType (uint signature)
|
|
{
|
|
if (0 == signature) return null;
|
|
// resolve some special cases first
|
|
if (OggAudio.Instance.Signature == signature)
|
|
return OggAudio.Instance;
|
|
if (AudioFormat.Wav.Signature == signature)
|
|
return AudioFormat.Wav;
|
|
if (0x4D42 == (signature & 0xFFFF)) // 'BM'
|
|
return ImageFormat.Bmp;
|
|
var res = FormatCatalog.Instance.LookupSignature (signature);
|
|
if (!res.Any())
|
|
return null;
|
|
if (res.Skip (1).Any()) // type is ambiguous
|
|
return null;
|
|
return res.First();
|
|
}
|
|
|
|
private string GetName (string name)
|
|
{
|
|
if (null == m_res.Value)
|
|
return name;
|
|
var ext = m_res.Value.Extensions.FirstOrDefault();
|
|
if (string.IsNullOrEmpty (ext))
|
|
return name;
|
|
return Path.ChangeExtension (name, ext);
|
|
}
|
|
|
|
private string GetEntryType ()
|
|
{
|
|
return null == m_res.Value ? "" : m_res.Value.Type;
|
|
}
|
|
}
|
|
|
|
public static class StringExtensions
|
|
{
|
|
/// <summary>
|
|
/// Check if <paramref name="filename"/> has specified extension <param name="ext"/>.
|
|
/// </summary>
|
|
public static bool HasExtension (this string filename, string ext)
|
|
{
|
|
bool ext_is_empty = string.IsNullOrEmpty (ext);
|
|
if (!ext_is_empty && '.' == ext[0])
|
|
return filename.EndsWith (ext, StringComparison.OrdinalIgnoreCase);
|
|
int ext_start = GetExtensionIndex (filename);
|
|
// filename extension length
|
|
int l_ext_length = filename.Length - ext_start;
|
|
if (ext_is_empty)
|
|
return 0 == l_ext_length;
|
|
return (l_ext_length == ext.Length
|
|
&& filename.EndsWith (ext, StringComparison.OrdinalIgnoreCase));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Check if filename ends with any of the extensions from the <paramref name="ext_list"/>.
|
|
/// </summary>
|
|
public static bool HasAnyOfExtensions (this string filename, params string[] ext_list)
|
|
{
|
|
int ext_start = GetExtensionIndex (filename);
|
|
int l_ext_length = filename.Length - ext_start;
|
|
foreach (string ext in ext_list)
|
|
{
|
|
if (string.IsNullOrEmpty (ext) || "." == ext)
|
|
{
|
|
if (0 == l_ext_length)
|
|
return true;
|
|
}
|
|
else if ('.' == ext[0] || l_ext_length == ext.Length)
|
|
{
|
|
if (filename.EndsWith (ext, StringComparison.OrdinalIgnoreCase))
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
internal static int GetExtensionIndex (string filename)
|
|
{
|
|
int name_start = filename.LastIndexOfAny (VFS.PathSeparatorChars);
|
|
if (-1 == name_start)
|
|
name_start = 0;
|
|
else
|
|
name_start++;
|
|
if (filename.Length == name_start) // path ends with '\'
|
|
return name_start;
|
|
|
|
int ext_start = filename.LastIndexOf ('.', filename.Length-1, filename.Length - name_start);
|
|
if (-1 == ext_start)
|
|
return filename.Length;
|
|
else
|
|
return ext_start + 1;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns copy of this string with ASCII characters converted to lower case.
|
|
/// </summary>
|
|
public static string ToLowerAscii (this string str)
|
|
{
|
|
int i;
|
|
for (i = 0; i < str.Length; ++i)
|
|
{
|
|
if (str[i] >= 'A' && str[i] <= 'Z')
|
|
break;
|
|
}
|
|
if (i == str.Length)
|
|
return str;
|
|
var builder = new System.Text.StringBuilder (str, 0, i, str.Length);
|
|
builder.Append ((char)(str[i++] | 0x20));
|
|
while (i < str.Length)
|
|
{
|
|
char c = str[i];
|
|
if (c >= 'A' && c <= 'Z')
|
|
c = (char)(c | 0x20);
|
|
builder.Append (c);
|
|
++i;
|
|
}
|
|
return builder.ToString();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns string in Shift-JIS encoding with ASCII characters converted to lower case.
|
|
/// </summary>
|
|
public static byte[] ToLowerShiftJis (this string text)
|
|
{
|
|
var text_bytes = Encodings.cp932.GetBytes (text);
|
|
text_bytes.ToLowerShiftJis();
|
|
return text_bytes;
|
|
}
|
|
|
|
public static void ToLowerShiftJis (this byte[] text_bytes)
|
|
{
|
|
for (int i = 0; i < text_bytes.Length; ++i)
|
|
{
|
|
byte c = text_bytes[i];
|
|
if (c >= 'A' && c <= 'Z')
|
|
text_bytes[i] += 0x20;
|
|
else if (c > 0x7F && c < 0xA1 || c > 0xDF)
|
|
++i;
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create stream in TGA format from the given image pixels.
|
|
/// </summary>
|
|
[Obsolete]
|
|
public static class TgaStream
|
|
{
|
|
public static Stream Create (ImageMetaData info, byte[] pixels, bool flipped = false)
|
|
{
|
|
var header = new byte[0x12];
|
|
header[2] = (byte)(info.BPP > 8 ? 2 : 3);
|
|
LittleEndian.Pack ((short)info.OffsetX, header, 8);
|
|
LittleEndian.Pack ((short)info.OffsetY, header, 0xa);
|
|
LittleEndian.Pack ((ushort)info.Width, header, 0xc);
|
|
LittleEndian.Pack ((ushort)info.Height, header, 0xe);
|
|
header[0x10] = (byte)info.BPP;
|
|
if (!flipped)
|
|
header[0x11] = 0x20;
|
|
return new PrefixStream (header, new MemoryStream (pixels));
|
|
}
|
|
|
|
public static Stream Create (ImageMetaData info, int stride, byte[] pixels, bool flipped = false)
|
|
{
|
|
int tga_stride = (int)info.Width * info.BPP / 8;
|
|
if (stride != tga_stride)
|
|
{
|
|
var adjusted = new byte[tga_stride * (int)info.Height];
|
|
int src = 0;
|
|
int dst = 0;
|
|
for (uint y = 0; y < info.Height; ++y)
|
|
{
|
|
Buffer.BlockCopy (pixels, src, adjusted, dst, tga_stride);
|
|
src += stride;
|
|
dst += tga_stride;
|
|
}
|
|
pixels = adjusted;
|
|
}
|
|
return Create (info, pixels, flipped);
|
|
}
|
|
}
|
|
|
|
public static class MMX
|
|
{
|
|
public static ulong PAddB (ulong x, ulong y)
|
|
{
|
|
ulong r = 0;
|
|
for (ulong mask = 0xFF; mask != 0; mask <<= 8)
|
|
{
|
|
r |= ((x & mask) + (y & mask)) & mask;
|
|
}
|
|
return r;
|
|
}
|
|
|
|
public static uint PAddB (uint x, uint y)
|
|
{
|
|
uint r13 = (x & 0xFF00FF00u) + (y & 0xFF00FF00u);
|
|
uint r02 = (x & 0x00FF00FFu) + (y & 0x00FF00FFu);
|
|
return (r13 & 0xFF00FF00u) | (r02 & 0x00FF00FFu);
|
|
}
|
|
|
|
public static ulong PAddW (ulong x, ulong y)
|
|
{
|
|
ulong mask = 0xffff;
|
|
ulong r = ((x & mask) + (y & mask)) & mask;
|
|
mask <<= 16;
|
|
r |= ((x & mask) + (y & mask)) & mask;
|
|
mask <<= 16;
|
|
r |= ((x & mask) + (y & mask)) & mask;
|
|
mask <<= 16;
|
|
r |= ((x & mask) + (y & mask)) & mask;
|
|
return r;
|
|
}
|
|
|
|
public static ulong PAddD (ulong x, ulong y)
|
|
{
|
|
ulong mask = 0xffffffff;
|
|
ulong r = ((x & mask) + (y & mask)) & mask;
|
|
mask <<= 32;
|
|
return r | ((x & mask) + (y & mask)) & mask;
|
|
}
|
|
|
|
public static ulong PSubB (ulong x, ulong y)
|
|
{
|
|
ulong r = 0;
|
|
for (ulong mask = 0xFF; mask != 0; mask <<= 8)
|
|
{
|
|
r |= ((x & mask) - (y & mask)) & mask;
|
|
}
|
|
return r;
|
|
}
|
|
|
|
public static ulong PSubW (ulong x, ulong y)
|
|
{
|
|
ulong mask = 0xffff;
|
|
ulong r = ((x & mask) - (y & mask)) & mask;
|
|
mask <<= 16;
|
|
r |= ((x & mask) - (y & mask)) & mask;
|
|
mask <<= 16;
|
|
r |= ((x & mask) - (y & mask)) & mask;
|
|
mask <<= 16;
|
|
r |= ((x & mask) - (y & mask)) & mask;
|
|
return r;
|
|
}
|
|
|
|
public static ulong PSubD (ulong x, ulong y)
|
|
{
|
|
ulong mask = 0xffffffff;
|
|
ulong r = ((x & mask) - (y & mask)) & mask;
|
|
mask <<= 32;
|
|
return r | ((x & mask) - (y & mask)) & mask;
|
|
}
|
|
|
|
public static ulong PSllD (ulong x, int count)
|
|
{
|
|
count &= 0x1F;
|
|
ulong mask = 0xFFFFFFFFu << count;
|
|
mask |= mask << 32;
|
|
return (x << count) & mask;
|
|
}
|
|
|
|
public static ulong PSrlD (ulong x, int count)
|
|
{
|
|
count &= 0x1F;
|
|
ulong mask = 0xFFFFFFFFu >> count;
|
|
mask |= mask << 32;
|
|
return (x >> count) & mask;
|
|
}
|
|
}
|
|
|
|
public static class Dump
|
|
{
|
|
public static string DirectoryName = Environment.GetFolderPath (Environment.SpecialFolder.UserProfile);
|
|
|
|
[System.Diagnostics.Conditional("DEBUG")]
|
|
public static void Write (byte[] mem, string filename = "index.dat")
|
|
{
|
|
using (var dump = File.Create (Path.Combine (DirectoryName, filename)))
|
|
dump.Write (mem, 0, mem.Length);
|
|
}
|
|
}
|
|
|
|
[Export(typeof(ScriptFormat))]
|
|
public class DataFileFormat : GenericScriptFormat
|
|
{
|
|
public override string Type { get { return ""; } }
|
|
public override string Tag { get { return "DAT/GENERIC"; } }
|
|
public override string Description { get { return "Unidentified data file"; } }
|
|
public override uint Signature { get { return 0; } }
|
|
}
|
|
|
|
// [970725][Guilty] Onii-chan e
|
|
[Export(typeof(ResourceAlias))]
|
|
[ExportMetadata("Extension", "GLT")]
|
|
[ExportMetadata("Target", "BMP")]
|
|
public class GltFormat : ResourceAlias { }
|
|
}
|