GARbro-mirror/ArcFormats/Seraphim/ArcSCN.cs

145 lines
5.5 KiB
C#
Raw Normal View History

//! \file ArcSCN.cs
//! \date 2017 Nov 25
//! \brief Seraphim engine scripts archive.
//
// Copyright (C) 2017 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.Collections.Generic;
using System.ComponentModel.Composition;
using System.IO;
2018-09-09 21:27:38 +08:00
using GameRes.Compression;
using GameRes.Utility;
namespace GameRes.Formats.Seraphim
{
[Export(typeof(ArchiveFormat))]
public class ScnOpener : ArchiveFormat
{
public override string Tag { get { return "SERAPH/SCN"; } }
public override string Description { get { return "Seraphim engine scripts archive"; } }
public override uint Signature { get { return 0; } }
public override bool IsHierarchic { get { return false; } }
public override bool CanWrite { get { return false; } }
public ScnOpener ()
{
Extensions = new string[] { "dat" };
}
public override ArcFile TryOpen (ArcView file)
{
if (!VFS.IsPathEqualsToFileName (file.Name, "SCNPAC.DAT"))
return null;
int count = file.View.ReadInt32 (0);
if (!IsSaneCount (count))
return null;
uint index_size = 4 * (uint)count;
if (index_size > file.View.Reserve (4, index_size))
return null;
int index_offset = 4;
uint next_offset = file.View.ReadUInt32 (index_offset);
if (next_offset < index_offset + index_size)
return null;
var dir = new List<Entry> (count);
for (int i = 0; i < count; ++i)
{
index_offset += 4;
var entry = new Entry { Name = i.ToString ("D5"), Type = "script" };
entry.Offset = next_offset;
next_offset = file.View.ReadUInt32 (index_offset);
if (next_offset < entry.Offset || next_offset > file.MaxOffset)
return null;
entry.Size = next_offset - (uint)entry.Offset;
dir.Add (entry);
}
return new ArcFile (file, this, dir);
}
public override Stream OpenEntry (ArcFile arc, Entry entry)
{
if (0 == entry.Size)
return Stream.Null;
2018-09-09 21:27:38 +08:00
uint signature = arc.File.View.ReadUInt32 (entry.Offset);
2019-02-25 16:57:23 +08:00
IBinaryStream input;
2018-09-09 21:27:38 +08:00
if (1 == signature && 0x78 == arc.File.View.ReadByte (entry.Offset+4))
{
input = arc.File.CreateStream (entry.Offset+4, entry.Size-4);
2019-02-25 16:57:23 +08:00
return new ZLibStream (input.AsStream, CompressionMode.Decompress);
2018-09-09 21:27:38 +08:00
}
input = arc.File.CreateStream (entry.Offset, entry.Size);
if (signature < 4 || 0 != (signature & 0xFF000000))
2019-02-25 16:57:23 +08:00
{
if (0x78 == (signature & 0xFF))
{
var compr = new ZLibStream (input.AsStream, CompressionMode.Decompress);
input = new BinaryStream (compr, entry.Name);
}
else
return input.AsStream;
}
try
{
var data = LzDecompress (input);
return new BinMemoryStream (data, entry.Name);
}
catch
{
2019-02-25 16:57:23 +08:00
return arc.File.CreateStream (entry.Offset, entry.Size);
}
finally
{
input.Dispose();
}
}
internal byte[] LzDecompress (IBinaryStream input)
{
int unpacked_size = input.ReadInt32();
var data = new byte[unpacked_size];
int dst = 0;
while (dst < unpacked_size)
{
int ctl = input.ReadByte();
if (-1 == ctl)
throw new EndOfStreamException();
if (0 != (ctl & 0x80))
{
byte lo = input.ReadUInt8();
int offset = ((ctl << 3 | lo >> 5) & 0x3FF) + 1;
int count = (lo & 0x1F) + 1;
Binary.CopyOverlapped (data, dst-offset, dst, count);
dst += count;
}
else
{
int count = ctl + 1;
if (input.Read (data, dst, count) != count)
throw new EndOfStreamException();
dst += count;
}
}
return data;
}
}
}