mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-27 07:34:00 +08:00
implemented DNS archives and 'YP' images.
This commit is contained in:
parent
bde8615513
commit
982d6fb2b1
@ -135,6 +135,8 @@
|
|||||||
<Compile Include="Malie\ArcLIBU.cs" />
|
<Compile Include="Malie\ArcLIBU.cs" />
|
||||||
<Compile Include="Malie\LibScheme.cs" />
|
<Compile Include="Malie\LibScheme.cs" />
|
||||||
<Compile Include="Malie\MalieEncryption.cs" />
|
<Compile Include="Malie\MalieEncryption.cs" />
|
||||||
|
<Compile Include="Marble\ArcDNS.cs" />
|
||||||
|
<Compile Include="Marble\ImageYP.cs" />
|
||||||
<Compile Include="Masys\ArcMGS.cs" />
|
<Compile Include="Masys\ArcMGS.cs" />
|
||||||
<Compile Include="Masys\ImageALP.cs" />
|
<Compile Include="Masys\ImageALP.cs" />
|
||||||
<Compile Include="MicroVision\ArcARC.cs" />
|
<Compile Include="MicroVision\ArcARC.cs" />
|
||||||
|
82
ArcFormats/Marble/ArcDNS.cs
Normal file
82
ArcFormats/Marble/ArcDNS.cs
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
//! \file ArcDNS.cs
|
||||||
|
//! \date 2017 Dec 10
|
||||||
|
//! \brief DarkNiteSystem resource 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;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.ComponentModel.Composition;
|
||||||
|
using System.IO;
|
||||||
|
|
||||||
|
namespace GameRes.Formats.DarkNiteSystem
|
||||||
|
{
|
||||||
|
[Export(typeof(ArchiveFormat))]
|
||||||
|
public class DnsOpener : ArchiveFormat
|
||||||
|
{
|
||||||
|
public override string Tag { get { return "DNS"; } }
|
||||||
|
public override string Description { get { return "DarkNiteSystem resource archive"; } }
|
||||||
|
public override uint Signature { get { return 0; } }
|
||||||
|
public override bool IsHierarchic { get { return false; } }
|
||||||
|
public override bool CanWrite { get { return false; } }
|
||||||
|
|
||||||
|
public override ArcFile TryOpen (ArcView file)
|
||||||
|
{
|
||||||
|
if (!file.Name.EndsWith ("data.dns", StringComparison.InvariantCultureIgnoreCase))
|
||||||
|
return null;
|
||||||
|
if (file.View.ReadUInt32 (8) != 0x8000) // first file offset
|
||||||
|
return null;
|
||||||
|
|
||||||
|
var dir = new List<Entry>();
|
||||||
|
uint index_offset = 0;
|
||||||
|
while (index_offset < 0x8000)
|
||||||
|
{
|
||||||
|
var name = file.View.ReadString (index_offset, 8);
|
||||||
|
if (0 == name.Length)
|
||||||
|
break;
|
||||||
|
var entry = new Entry {
|
||||||
|
Name = Path.ChangeExtension (name, "S"),
|
||||||
|
Type = "script",
|
||||||
|
Offset = file.View.ReadUInt32 (index_offset+8),
|
||||||
|
Size = file.View.ReadUInt32 (index_offset+12),
|
||||||
|
};
|
||||||
|
if (!entry.CheckPlacement (file.MaxOffset))
|
||||||
|
return null;
|
||||||
|
dir.Add (entry);
|
||||||
|
index_offset += 0x10;
|
||||||
|
}
|
||||||
|
if (0 == dir.Count)
|
||||||
|
return null;
|
||||||
|
return new ArcFile (file, this, dir);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override Stream OpenEntry (ArcFile arc, Entry entry)
|
||||||
|
{
|
||||||
|
var data = arc.File.View.ReadBytes (entry.Offset, entry.Size);
|
||||||
|
for (int i = 0; i < data.Length; ++i)
|
||||||
|
{
|
||||||
|
data[i] = (byte)-data[i];
|
||||||
|
}
|
||||||
|
return new BinMemoryStream (data, entry.Name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -65,6 +65,11 @@ namespace GameRes.Formats.Marble
|
|||||||
public override bool IsHierarchic { get { return false; } }
|
public override bool IsHierarchic { get { return false; } }
|
||||||
public override bool CanWrite { get { return false; } }
|
public override bool CanWrite { get { return false; } }
|
||||||
|
|
||||||
|
public MblOpener ()
|
||||||
|
{
|
||||||
|
Extensions = new string[] { "mbl", "dns" };
|
||||||
|
}
|
||||||
|
|
||||||
public override ArcFile TryOpen (ArcView file)
|
public override ArcFile TryOpen (ArcView file)
|
||||||
{
|
{
|
||||||
int count = file.View.ReadInt32 (0);
|
int count = file.View.ReadInt32 (0);
|
||||||
@ -81,7 +86,8 @@ namespace GameRes.Formats.Marble
|
|||||||
return arc;
|
return arc;
|
||||||
}
|
}
|
||||||
|
|
||||||
static readonly Lazy<ImageFormat> PrsFormat = new Lazy<ImageFormat> (() => ImageFormat.FindByTag ("PRS"));
|
static readonly ResourceInstance<ImageFormat> PrsFormat = new ResourceInstance<ImageFormat> ("PRS");
|
||||||
|
static readonly ResourceInstance<ImageFormat> YpFormat = new ResourceInstance<ImageFormat> ("PRS/YP");
|
||||||
|
|
||||||
private ArcFile ReadIndex (ArcView file, int count, uint filename_len, uint index_offset)
|
private ArcFile ReadIndex (ArcView file, int count, uint filename_len, uint index_offset)
|
||||||
{
|
{
|
||||||
@ -121,8 +127,10 @@ namespace GameRes.Formats.Marble
|
|||||||
{
|
{
|
||||||
entry = new AutoEntry (name, () => {
|
entry = new AutoEntry (name, () => {
|
||||||
uint signature = file.View.ReadUInt32 (offset);
|
uint signature = file.View.ReadUInt32 (offset);
|
||||||
if (0x4259 == (0xffff & signature))
|
if (0x4259 == (0xFFFF & signature))
|
||||||
return PrsFormat.Value;
|
return PrsFormat.Value;
|
||||||
|
else if (0x5059 == (0xFFFF & signature))
|
||||||
|
return YpFormat.Value;
|
||||||
else if (0 != signature)
|
else if (0 != signature)
|
||||||
return FormatCatalog.Instance.LookupSignature (signature).FirstOrDefault();
|
return FormatCatalog.Instance.LookupSignature (signature).FirstOrDefault();
|
||||||
else
|
else
|
||||||
|
128
ArcFormats/Marble/ImageYP.cs
Normal file
128
ArcFormats/Marble/ImageYP.cs
Normal file
@ -0,0 +1,128 @@
|
|||||||
|
//! \file ImageYP.cs
|
||||||
|
//! \date 2017 Dec 10
|
||||||
|
//! \brief DarkNiteSystem image format.
|
||||||
|
//
|
||||||
|
// 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;
|
||||||
|
using System.ComponentModel.Composition;
|
||||||
|
using System.IO;
|
||||||
|
using GameRes.Utility;
|
||||||
|
|
||||||
|
namespace GameRes.Formats.DarkNiteSystem
|
||||||
|
{
|
||||||
|
internal class YpMetaData : ImageMetaData
|
||||||
|
{
|
||||||
|
public int UnpackedSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Marble YB image format predecessor.
|
||||||
|
/// </summary>
|
||||||
|
[Export(typeof(ImageFormat))]
|
||||||
|
public class YpFormat : ImageFormat
|
||||||
|
{
|
||||||
|
public override string Tag { get { return "PRS/YP"; } }
|
||||||
|
public override string Description { get { return "DarkNiteSystem image format"; } }
|
||||||
|
public override uint Signature { get { return 0; } }
|
||||||
|
|
||||||
|
public override ImageMetaData ReadMetaData (IBinaryStream file)
|
||||||
|
{
|
||||||
|
var header = file.ReadHeader (8);
|
||||||
|
if (!header.AsciiEqual ("YP"))
|
||||||
|
return null;
|
||||||
|
int unpacked_size = header.ToInt24 (2);
|
||||||
|
int packed_size = header.ToInt24 (5);
|
||||||
|
var data = LzUnpack (file, 0x36);
|
||||||
|
using (var bmp = new BinMemoryStream (data, file.Name))
|
||||||
|
{
|
||||||
|
var info = Bmp.ReadMetaData (bmp);
|
||||||
|
if (null == info)
|
||||||
|
return info;
|
||||||
|
return new YpMetaData {
|
||||||
|
Width = info.Width,
|
||||||
|
Height = info.Height,
|
||||||
|
BPP = info.BPP,
|
||||||
|
UnpackedSize = unpacked_size,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public override ImageData Read (IBinaryStream file, ImageMetaData info)
|
||||||
|
{
|
||||||
|
var meta = (YpMetaData)info;
|
||||||
|
file.Position = 8;
|
||||||
|
var data = LzUnpack (file, meta.UnpackedSize);
|
||||||
|
using (var bmp = new BinMemoryStream (data, file.Name))
|
||||||
|
return Bmp.Read (bmp, info);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Write (Stream file, ImageData image)
|
||||||
|
{
|
||||||
|
throw new System.NotImplementedException ("YpFormat.Write not implemented");
|
||||||
|
}
|
||||||
|
|
||||||
|
byte[] LzUnpack (IBinaryStream input, int unpacked_size)
|
||||||
|
{
|
||||||
|
var output = new byte[unpacked_size];
|
||||||
|
var frame = new byte[0x4000];
|
||||||
|
int dst = 0;
|
||||||
|
int ctl_bits = 0;
|
||||||
|
byte ctl_mask = 0;
|
||||||
|
int frame_pos = 0;
|
||||||
|
while (dst < unpacked_size)
|
||||||
|
{
|
||||||
|
if (0 == ctl_mask)
|
||||||
|
{
|
||||||
|
ctl_bits = input.ReadByte();
|
||||||
|
if (-1 == ctl_bits)
|
||||||
|
break;
|
||||||
|
ctl_mask = 0x80;
|
||||||
|
}
|
||||||
|
if (0 != (ctl_bits & ctl_mask))
|
||||||
|
{
|
||||||
|
byte lo = input.ReadUInt8();
|
||||||
|
byte hi = input.ReadUInt8();
|
||||||
|
int count = Math.Min (CountTable[lo & 0xF], unpacked_size - dst);
|
||||||
|
int offset = hi << 4 | lo >> 4;
|
||||||
|
int src = frame_pos - offset;
|
||||||
|
for (int i = 0; i < count; ++i)
|
||||||
|
{
|
||||||
|
byte v = frame[src++ & 0x3FFF];
|
||||||
|
output[dst++] = v;
|
||||||
|
frame[frame_pos++ & 0x3FFF] = v;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
byte v = input.ReadUInt8();
|
||||||
|
output[dst++] = v;
|
||||||
|
frame[frame_pos++ & 0x3FFF] = v;
|
||||||
|
}
|
||||||
|
ctl_mask >>= 1;
|
||||||
|
}
|
||||||
|
return output;
|
||||||
|
}
|
||||||
|
|
||||||
|
static readonly byte[] CountTable = { 3, 4, 5, 6, 7, 8, 9, 0xA, 0xB, 0xC, 0xE, 0x10, 0x18, 0x20, 0x40, 0x80 };
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user