Files
2026-03-24 19:42:36 -04:00

126 lines
4.7 KiB
C#

using System.Text;
using SabreTools.Data.Models.XZP;
using SabreTools.Text.Extensions;
namespace SabreTools.Wrappers
{
public partial class XZP : IPrintable
{
#if NETCOREAPP
/// <inheritdoc/>
public string ExportJSON() => System.Text.Json.JsonSerializer.Serialize(Model, _jsonSerializerOptions);
#endif
/// <inheritdoc/>
public void PrintInformation(StringBuilder builder)
{
builder.AppendLine("XZP Information:");
builder.AppendLine("-------------------------");
builder.AppendLine();
Print(builder, Model.Header);
Print(builder, Model.DirectoryEntries, "Directory");
Print(builder, Model.PreloadDirectoryEntries, "Preload Directory");
Print(builder, Model.PreloadDirectoryMappings);
Print(builder, Model.DirectoryItems);
Print(builder, Model.Footer);
}
private static void Print(StringBuilder builder, Header header)
{
builder.AppendLine(" Header Information:");
builder.AppendLine(" -------------------------");
builder.AppendLine(header.Signature, " Signature");
builder.AppendLine(header.Version, " Version");
builder.AppendLine(header.PreloadDirectoryEntryCount, " Preload directory entry count");
builder.AppendLine(header.DirectoryEntryCount, " Directory entry count");
builder.AppendLine(header.PreloadBytes, " Preload bytes");
builder.AppendLine(header.HeaderLength, " Header length");
builder.AppendLine(header.DirectoryItemCount, " Directory item count");
builder.AppendLine(header.DirectoryItemOffset, " Directory item offset");
builder.AppendLine(header.DirectoryItemLength, " Directory item length");
builder.AppendLine();
}
private static void Print(StringBuilder builder, DirectoryEntry[] entries, string prefix)
{
builder.AppendLine($" {prefix} Entries Information:");
builder.AppendLine(" -------------------------");
if (entries.Length == 0)
{
builder.AppendLine(" No directory entries");
builder.AppendLine();
return;
}
for (int i = 0; i < entries.Length; i++)
{
var entry = entries[i];
builder.AppendLine($" Directory Entry {i}");
builder.AppendLine(entry.FileNameCRC, " File name CRC");
builder.AppendLine(entry.EntryLength, " Entry length");
builder.AppendLine(entry.EntryOffset, " Entry offset");
}
builder.AppendLine();
}
private static void Print(StringBuilder builder, DirectoryMapping[] entries)
{
builder.AppendLine(" Preload Directory Mappings Information:");
builder.AppendLine(" -------------------------");
if (entries.Length == 0)
{
builder.AppendLine(" No preload directory mappings");
builder.AppendLine();
return;
}
for (int i = 0; i < entries.Length; i++)
{
var entry = entries[i];
builder.AppendLine($" Directory Mapping {i}");
builder.AppendLine(entry.PreloadDirectoryEntryIndex, " Preload directory entry index");
}
builder.AppendLine();
}
private static void Print(StringBuilder builder, DirectoryItem[] entries)
{
builder.AppendLine(" Directory Items Information:");
builder.AppendLine(" -------------------------");
if (entries.Length == 0)
{
builder.AppendLine(" No directory items");
builder.AppendLine();
return;
}
for (int i = 0; i < entries.Length; i++)
{
var entry = entries[i];
builder.AppendLine($" Directory Item {i}");
builder.AppendLine(entry.FileNameCRC, " File name CRC");
builder.AppendLine(entry.NameOffset, " Name offset");
builder.AppendLine(entry.Name, " Name");
builder.AppendLine(entry.TimeCreated, " Time created");
}
builder.AppendLine();
}
private static void Print(StringBuilder builder, Footer footer)
{
builder.AppendLine(" Footer Information:");
builder.AppendLine(" -------------------------");
builder.AppendLine(footer.FileLength, " File length");
builder.AppendLine(footer.Signature, " Signature");
builder.AppendLine();
}
}
}