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

121 lines
4.4 KiB
C#

using System.Text;
using SabreTools.Data.Models.VPK;
using SabreTools.Text.Extensions;
namespace SabreTools.Wrappers
{
public partial class VPK : IPrintable
{
#if NETCOREAPP
/// <inheritdoc/>
public string ExportJSON() => System.Text.Json.JsonSerializer.Serialize(Model, _jsonSerializerOptions);
#endif
/// <inheritdoc/>
public void PrintInformation(StringBuilder builder)
{
builder.AppendLine("VPK Information:");
builder.AppendLine("-------------------------");
builder.AppendLine();
Print(builder, Model.Header);
Print(builder, Model.ExtendedHeader);
Print(builder, Model.ArchiveHashes);
Print(builder, Model.DirectoryItems);
}
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.TreeSize, " Tree size");
builder.AppendLine();
}
private static void Print(StringBuilder builder, ExtendedHeader? header)
{
builder.AppendLine(" Extended Header Information:");
builder.AppendLine(" -------------------------");
if (header is null)
{
builder.AppendLine(" No extended header");
builder.AppendLine();
return;
}
builder.AppendLine(header.FileDataSectionSize, " File data section size");
builder.AppendLine(header.ArchiveMD5SectionSize, " Archive MD5 section size");
builder.AppendLine(header.OtherMD5SectionSize, " Other MD5 section size");
builder.AppendLine(header.SignatureSectionSize, " Signature section size");
builder.AppendLine();
}
private static void Print(StringBuilder builder, ArchiveHash[]? entries)
{
builder.AppendLine(" Archive Hashes Information:");
builder.AppendLine(" -------------------------");
if (entries is null || entries.Length == 0)
{
builder.AppendLine(" No archive hashes");
builder.AppendLine();
return;
}
for (int i = 0; i < entries.Length; i++)
{
var entry = entries[i];
builder.AppendLine($" Archive Hash {i}");
builder.AppendLine(entry.ArchiveIndex, " Archive index");
builder.AppendLine(entry.ArchiveOffset, " Archive offset");
builder.AppendLine(entry.Length, " Length");
builder.AppendLine(entry.Hash, " Hash");
}
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.Extension, " Extension");
builder.AppendLine(entry.Path, " Path");
builder.AppendLine(entry.Name, " Name");
builder.AppendLine();
Print(builder, entry.DirectoryEntry);
// TODO: Print out preload data?
}
builder.AppendLine();
}
private static void Print(StringBuilder builder, DirectoryEntry entry)
{
builder.AppendLine(" Directory Entry:");
builder.AppendLine(" -------------------------");
builder.AppendLine(entry.CRC, " CRC");
builder.AppendLine(entry.PreloadBytes, " Preload bytes");
builder.AppendLine(entry.ArchiveIndex, " Archive index");
builder.AppendLine(entry.EntryOffset, " Entry offset");
builder.AppendLine(entry.EntryLength, " Entry length");
builder.AppendLine(entry.Dummy0, " Dummy 0");
}
}
}