GARbro-mirror/ArcFormats/ArcLST.cs

171 lines
6.5 KiB
C#
Raw Normal View History

//! \file ArcLST.cs
//! \date Fri Feb 06 05:47:09 2015
2015-04-21 07:39:55 +08:00
//! \brief Nexton LikeC Script Engine archive 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.Collections.Generic;
using System.ComponentModel.Composition;
using System.IO;
using System.Text;
2015-04-21 07:39:55 +08:00
namespace GameRes.Formats.Nexton
{
2015-04-21 07:39:55 +08:00
internal class NextonEntry : Entry
{
public byte Key;
}
[Export(typeof(ArchiveFormat))]
public class LstOpener : ArchiveFormat
{
public override string Tag { get { return "LST"; } }
2015-04-21 07:39:55 +08:00
public override string Description { get { return "Nexton LikeC engine resource archive"; } }
public override uint Signature { get { return 0; } }
public override bool IsHierarchic { get { return false; } }
public override bool CanWrite { get { return false; } }
public LstOpener ()
{
Extensions = new string[] { "" };
}
public override ArcFile TryOpen (ArcView file)
{
string lstname = file.Name + ".lst";
2015-09-01 18:20:18 +08:00
if (!VFS.FileExists (lstname))
return null;
2015-09-01 18:20:18 +08:00
using (var lst = VFS.OpenView (lstname))
{
2015-04-21 07:39:55 +08:00
List<Entry> dir = null;
try
{
2015-04-21 07:39:55 +08:00
dir = OpenMoon (lst, file.MaxOffset);
}
2015-04-21 07:39:55 +08:00
catch { /* ignore parse errors */ }
if (null == dir)
dir = OpenNexton (lst, file.MaxOffset);
if (null == dir)
return null;
return new ArcFile (file, this, dir);
}
}
2015-04-21 07:39:55 +08:00
private List<Entry> OpenMoon (ArcView lst, long max_offset)
{
int count = (int)(lst.View.ReadUInt32 (0) ^ 0xcccccccc);
if (count <= 0 || (4 + count*0x2c) > lst.MaxOffset)
return null;
var cp932 = Encodings.cp932.WithFatalFallback();
var dir = new List<Entry> (count);
uint index_offset = 4;
for (int i = 0; i < count; ++i)
{
string name = ReadName (lst, index_offset+8, 0x24, 0xcccccccc, cp932);
if (0 == name.Length)
return null;
var entry = FormatCatalog.Instance.Create<Entry> (name);
2015-04-21 07:39:55 +08:00
entry.Offset = lst.View.ReadUInt32 (index_offset) ^ 0xcccccccc;
entry.Size = lst.View.ReadUInt32 (index_offset+4) ^ 0xcccccccc;
if (!entry.CheckPlacement (max_offset))
return null;
dir.Add (entry);
index_offset += 0x2c;
}
return dir;
}
static string[] TypeExt = new string[] { "LST", "SNX", "BMP", "PNG", "WAV", "OGG" };
private List<Entry> OpenNexton (ArcView lst, long max_offset)
{
uint key = lst.View.ReadByte (3); // guess xor key
if (0 == key)
return null;
key |= key << 8;
key |= key << 16;
int count = (int)(lst.View.ReadUInt32 (0) ^ key);
if (count <= 0 || (4 + count*0x4c) > lst.MaxOffset)
return null;
var cp932 = Encodings.cp932.WithFatalFallback();
var dir = new List<Entry> (count);
uint index_offset = 4;
for (int i = 0; i < count; ++i)
{
string name = ReadName (lst, index_offset+8, 0x40, key, cp932);
if (0 == name.Length)
return null;
var entry = new NextonEntry {
Name = name,
Offset = lst.View.ReadUInt32 (index_offset) ^ key,
Size = lst.View.ReadUInt32 (index_offset+4) ^ key,
};
if (!entry.CheckPlacement (max_offset))
return null;
int type = lst.View.ReadInt32 (index_offset+0x48);
if (type >= 0 && type < TypeExt.Length)
{
entry.Name = Path.ChangeExtension (name, TypeExt[type]);
if (2 == type || 3 == type)
entry.Type = "image";
else if (4 == type || 5 == type)
entry.Type = "audio";
else if (1 == type)
{
entry.Type = "script";
entry.Key = (byte)(key + 1);
}
}
dir.Add (entry);
index_offset += 0x4c;
}
return dir;
}
public override Stream OpenEntry (ArcFile arc, Entry entry)
{
var nxent = entry as NextonEntry;
if (null == nxent || 0 == nxent.Key)
return arc.File.CreateStream (entry.Offset, entry.Size);
var data = arc.File.View.ReadBytes (entry.Offset, entry.Size);
2015-04-21 07:39:55 +08:00
for (int i = 0; i != data.Length; ++i)
data[i] ^= nxent.Key;
return new MemoryStream (data);
}
private static string ReadName (ArcView view, long offset, uint size, uint key, Encoding enc)
{
byte[] buffer = new byte[size];
uint n;
for (n = 0; n < size; ++n)
{
byte b = view.View.ReadByte (offset+n);
if (0 == b)
break;
2015-04-21 07:39:55 +08:00
buffer[n] = (byte)(b^key);
}
return enc.GetString (buffer, 0, (int)n);
}
}
}