mirror of
https://github.com/lifegpc/GARbro.git
synced 2026-07-08 01:31:41 +08:00
(Legacy): added formats, mostly PC-98.
This commit is contained in:
85
Legacy/Desire/ArcDSV.cs
Normal file
85
Legacy/Desire/ArcDSV.cs
Normal file
@@ -0,0 +1,85 @@
|
||||
//! \file ArcDSV.cs
|
||||
//! \date 2023 Oct 15
|
||||
//! \brief Desire resource archive (PC-98).
|
||||
//
|
||||
// Copyright (C) 2023 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.Desire
|
||||
{
|
||||
[Export(typeof(ArchiveFormat))]
|
||||
public class D000Opener : ArchiveFormat
|
||||
{
|
||||
public override string Tag => "000/DESIRE";
|
||||
public override string Description => "Desire resource archive";
|
||||
public override uint Signature => 0;
|
||||
public override bool IsHierarchic => false;
|
||||
public override bool CanWrite => false;
|
||||
|
||||
public override ArcFile TryOpen (ArcView file)
|
||||
{
|
||||
if (!file.Name.HasAnyOfExtensions (".000", ".001", ".002", ".003"))
|
||||
return null;
|
||||
if (!IsAscii (file.View.ReadByte (0)))
|
||||
return null;
|
||||
uint index_pos = 0;
|
||||
var dir = new List<Entry>();
|
||||
while (index_pos < file.MaxOffset)
|
||||
{
|
||||
byte b = file.View.ReadByte (index_pos);
|
||||
if (0 == b)
|
||||
break;
|
||||
if (!IsAscii (b))
|
||||
return null;
|
||||
var name = file.View.ReadString (index_pos, 0xC);
|
||||
var entry = Create<Entry> (name);
|
||||
entry.Size = file.View.ReadUInt32 (index_pos+0xC);
|
||||
if (entry.Size >= file.MaxOffset || 0 == entry.Size)
|
||||
return null;
|
||||
dir.Add (entry);
|
||||
index_pos += 0x10;
|
||||
}
|
||||
if (index_pos >= file.MaxOffset || file.View.ReadUInt32 (index_pos+0xC) != 0)
|
||||
return null;
|
||||
uint offset = index_pos + 0x10;
|
||||
foreach (var entry in dir)
|
||||
{
|
||||
entry.Offset = offset;
|
||||
if (!entry.CheckPlacement (file.MaxOffset))
|
||||
return null;
|
||||
offset += entry.Size;
|
||||
}
|
||||
if (offset != file.MaxOffset)
|
||||
return null;
|
||||
return new ArcFile (file, this, dir);
|
||||
}
|
||||
|
||||
static internal bool IsAscii (byte b)
|
||||
{
|
||||
return b >= 0x20 && b < 0x7F;
|
||||
}
|
||||
}
|
||||
}
|
||||
74
Legacy/Desire/ImageDES.cs
Normal file
74
Legacy/Desire/ImageDES.cs
Normal file
@@ -0,0 +1,74 @@
|
||||
//! \file ImageDES.cs
|
||||
//! \date 2023 Oct 15
|
||||
//! \brief DES98 engine image format (PC-98).
|
||||
//
|
||||
// Copyright (C) 2023 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.ComponentModel.Composition;
|
||||
using System.IO;
|
||||
using System.Windows.Media;
|
||||
|
||||
// [940720][Desire] H+
|
||||
|
||||
namespace GameRes.Formats.Desire
|
||||
{
|
||||
[Export(typeof(ImageFormat))]
|
||||
public class DesFormat : ImageFormat
|
||||
{
|
||||
public override string Tag => "DES98";
|
||||
public override string Description => "Des98 engine image format";
|
||||
public override uint Signature => 0;
|
||||
|
||||
public DesFormat ()
|
||||
{
|
||||
Extensions = new[] { "" };
|
||||
}
|
||||
|
||||
public override ImageMetaData ReadMetaData (IBinaryStream file)
|
||||
{
|
||||
ushort width = Binary.BigEndian (file.ReadUInt16());
|
||||
ushort height = Binary.BigEndian (file.ReadUInt16());
|
||||
if (0 == width || 0 == height || (width & 7) != 0 || width > 640 || height > 400)
|
||||
return null;
|
||||
return new ImageMetaData {
|
||||
Width = width,
|
||||
Height = height,
|
||||
BPP = 4,
|
||||
};
|
||||
}
|
||||
|
||||
public override ImageData Read (IBinaryStream file, ImageMetaData info)
|
||||
{
|
||||
file.Position = 4;
|
||||
var palette = ReadPalette (file.AsStream, 16, PaletteFormat.Rgb);
|
||||
var reader = new System98.GraBaseReader (file, info);
|
||||
reader.UnpackBits();
|
||||
return ImageData.Create (info, PixelFormats.Indexed4, palette, reader.Pixels, reader.Stride);
|
||||
}
|
||||
|
||||
public override void Write (Stream file, ImageData image)
|
||||
{
|
||||
throw new System.NotImplementedException ("DesFormat.Write not implemented");
|
||||
}
|
||||
}
|
||||
}
|
||||
93
Legacy/Desire/ImageDPC.cs
Normal file
93
Legacy/Desire/ImageDPC.cs
Normal file
@@ -0,0 +1,93 @@
|
||||
//! \file ImageDPC.cs
|
||||
//! \date 2023 Oct 15
|
||||
//! \brief Desire image format (PC-98).
|
||||
//
|
||||
// Copyright (C) 2023 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 System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
|
||||
// [970801][Desire] Yuugiri ~Ningyoushi no Isan~
|
||||
|
||||
namespace GameRes.Formats.Desire
|
||||
{
|
||||
[Export(typeof(ImageFormat))]
|
||||
public class DpcFormat : ImageFormat
|
||||
{
|
||||
public override string Tag => "DPC";
|
||||
public override string Description => "Desire image format";
|
||||
public override uint Signature => 0;
|
||||
|
||||
public override ImageMetaData ReadMetaData (IBinaryStream file)
|
||||
{
|
||||
if (!file.Name.HasExtension (".DPC"))
|
||||
return null;
|
||||
file.Position = 0x20;
|
||||
short left = file.ReadInt16();
|
||||
short top = file.ReadInt16();
|
||||
ushort width = file.ReadUInt16();
|
||||
ushort height = file.ReadUInt16();
|
||||
if (0 == width || 0 == height || left < 0 || left + width > 2048 || top < 0 || top + height > 2048)
|
||||
return null;
|
||||
return new ImageMetaData {
|
||||
Width = width,
|
||||
Height = height,
|
||||
OffsetX = left,
|
||||
OffsetY = top,
|
||||
BPP = 4,
|
||||
};
|
||||
}
|
||||
|
||||
public override ImageData Read (IBinaryStream file, ImageMetaData info)
|
||||
{
|
||||
var palette = ReadPalette (file);
|
||||
file.Position = 0x28;
|
||||
var reader = new System98.GraBaseReader (file, info);
|
||||
reader.UnpackBits();
|
||||
return ImageData.Create (info, PixelFormats.Indexed4, palette, reader.Pixels, reader.Stride);
|
||||
}
|
||||
|
||||
BitmapPalette ReadPalette (IBinaryStream input)
|
||||
{
|
||||
var colors = new Color[16];
|
||||
for (int i = 0; i < 16; ++i)
|
||||
{
|
||||
ushort w = input.ReadUInt16();
|
||||
int alpha = (w & 1) == 0 ? 0xFF : 0;
|
||||
int g = (w >> 12) * 0x11;
|
||||
int r = ((w >> 7) & 0xF) * 0x11;
|
||||
int b = ((w >> 2) & 0xF) * 0x11;
|
||||
|
||||
colors[i] = Color.FromArgb ((byte)alpha, (byte)r, (byte)g, (byte)b);
|
||||
}
|
||||
return new BitmapPalette (colors);
|
||||
}
|
||||
|
||||
public override void Write (Stream file, ImageData image)
|
||||
{
|
||||
throw new System.NotImplementedException ("DpcFormat.Write not implemented");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user