Files
Matt Nadareski 7689c6dd07 Libraries
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
2026-03-21 16:26:56 -04:00

242 lines
7.1 KiB
C#

using System;
using System.IO;
using SabreTools.Data.Models.SGA;
namespace SabreTools.Wrappers
{
public partial class SGA : WrapperBase<Archive>
{
#region Descriptive Properties
/// <inheritdoc/>
public override string DescriptionString => "SGA";
#endregion
#region Extension Properties
/// <summary>
/// Directory data
/// </summary>
public Data.Models.SGA.Directory Directory => Model.Directory;
/// <summary>
/// Number of files in the directory
/// </summary>
public int FileCount
{
get
{
return Directory switch
{
Directory4 d4 => d4.Files.Length,
Directory5 d5 => d5.Files.Length,
Directory6 d6 => d6.Files.Length,
Directory7 d7 => d7.Files.Length,
_ => 0,
};
}
}
/// <summary>
/// Offset to the file data
/// </summary>
public long FileDataOffset
{
get
{
return Model.Header switch
{
Header4 h4 => h4.FileDataOffset,
Header6 h6 => h6.FileDataOffset,
_ => -1,
};
}
}
#endregion
#region Constructors
/// <inheritdoc/>
public SGA(Archive model, byte[] data) : base(model, data) { }
/// <inheritdoc/>
public SGA(Archive model, byte[] data, int offset) : base(model, data, offset) { }
/// <inheritdoc/>
public SGA(Archive model, byte[] data, int offset, int length) : base(model, data, offset, length) { }
/// <inheritdoc/>
public SGA(Archive model, Stream data) : base(model, data) { }
/// <inheritdoc/>
public SGA(Archive model, Stream data, long offset) : base(model, data, offset) { }
/// <inheritdoc/>
public SGA(Archive model, Stream data, long offset, long length) : base(model, data, offset, length) { }
#endregion
#region Static Constructors
/// <summary>
/// Create an SGA from a byte array and offset
/// </summary>
/// <param name="data">Byte array representing the SGA</param>
/// <param name="offset">Offset within the array to parse</param>
/// <returns>An SGA wrapper on success, null on failure</returns>
public static SGA? Create(byte[]? data, int offset)
{
// If the data is invalid
if (data is null || data.Length == 0)
return null;
// If the offset is out of bounds
if (offset < 0 || offset >= data.Length)
return null;
// Create a memory stream and use that
var dataStream = new MemoryStream(data, offset, data.Length - offset);
return Create(dataStream);
}
/// <summary>
/// Create a SGA from a Stream
/// </summary>
/// <param name="data">Stream representing the SGA</param>
/// <returns>An SGA wrapper on success, null on failure</returns>
public static SGA? Create(Stream? data)
{
// If the data is invalid
if (data is null || !data.CanRead)
return null;
try
{
// Cache the current offset
long currentOffset = data.Position;
var model = new Serialization.Readers.SGA().Deserialize(data);
if (model is null)
return null;
return new SGA(model, data, currentOffset);
}
catch
{
return null;
}
}
#endregion
#region File
/// <summary>
/// Get the compressed size of a file
/// </summary>
public long GetCompressedSize(int index)
{
// If the index is invalid
if (index < 0 || index >= FileCount)
return -1;
// Get the file and return the name
var file = GetFile(index);
return file?.Size ?? -1L;
}
/// <summary>
/// Get the uncompressed size of a file
/// </summary>
public long GetUncompressedSize(int index)
{
// If the index is invalid
if (index < 0 || index >= FileCount)
return -1;
// Get the file and return the name
var file = GetFile(index);
return file?.SizeOnDisk ?? -1L;
}
/// <summary>
/// Get a file header from the archive
/// </summary>
public Data.Models.SGA.File? GetFile(int index)
{
// If the index is invalid
if (index < 0 || index >= FileCount)
return null;
return Directory switch
{
Directory4 d4 => d4.Files![index],
Directory5 d5 => d5.Files![index],
Directory6 d6 => d6.Files![index],
Directory7 d7 => d7.Files![index],
_ => null,
};
}
/// <summary>
/// Get a file name from the archive
/// </summary>
public string? GetFileName(int index)
{
// If the index is invalid
if (index < 0 || index >= FileCount)
return null;
// Get the file and return the name
var file = GetFile(index);
return file?.Name;
}
/// <summary>
/// Get a file offset from the archive
/// </summary>
public long GetFileOffset(int index)
{
// If the index is invalid
if (index < 0 || index >= FileCount)
return -1;
// Get the file and return the name
var file = GetFile(index);
return file?.Offset ?? -1L;
}
/// <summary>
/// Get the parent name for a file
/// </summary>
public string? GetParentName(int index)
{
// If the index is invalid
if (index < 0 || index >= FileCount)
return null;
// Get the folder
Folder? folder = Directory switch
{
Directory4 d4 => Array.Find(d4.Folders, f => f is not null && index >= f.FileStartIndex && index <= f.FileEndIndex),
Directory5 d5 => Array.Find(d5.Folders, f => f is not null && index >= f.FileStartIndex && index <= f.FileEndIndex),
Directory6 d6 => Array.Find(d6.Folders, f => f is not null && index >= f.FileStartIndex && index <= f.FileEndIndex),
Directory7 d7 => Array.Find(d7.Folders, f => f is not null && index >= f.FileStartIndex && index <= f.FileEndIndex),
_ => default,
};
// Get the folder name
return folder switch
{
Folder4 f4 => f4.Name,
Folder5 f5 => f5.Name,
_ => null,
};
}
#endregion
}
}