2023-09-15 23:31:51 -04:00
|
|
|
using System.IO;
|
2025-09-26 13:06:18 -04:00
|
|
|
using SabreTools.Data.Models.PAK;
|
2023-09-15 23:31:51 -04:00
|
|
|
|
2026-03-18 16:37:59 -04:00
|
|
|
namespace SabreTools.Wrappers
|
2023-09-15 23:31:51 -04:00
|
|
|
{
|
2025-09-26 13:06:18 -04:00
|
|
|
public partial class PAK : WrapperBase<Data.Models.PAK.File>
|
2023-09-15 23:31:51 -04:00
|
|
|
{
|
|
|
|
|
#region Descriptive Properties
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
|
public override string DescriptionString => "Half-Life Package File (PAK)";
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2024-11-28 20:50:43 -05:00
|
|
|
#region Extension Properties
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc cref="Models.PAK.File.DirectoryItems"/>
|
2025-10-30 22:54:37 -04:00
|
|
|
public DirectoryItem[] DirectoryItems => Model.DirectoryItems;
|
2024-11-28 20:50:43 -05:00
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2023-09-15 23:31:51 -04:00
|
|
|
#region Constructors
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
2025-09-26 13:06:18 -04:00
|
|
|
public PAK(Data.Models.PAK.File model, byte[] data) : base(model, data) { }
|
2023-09-15 23:31:51 -04:00
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
2025-09-26 13:06:18 -04:00
|
|
|
public PAK(Data.Models.PAK.File model, byte[] data, int offset) : base(model, data, offset) { }
|
2025-09-16 21:54:26 -04:00
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
2025-09-26 13:06:18 -04:00
|
|
|
public PAK(Data.Models.PAK.File model, byte[] data, int offset, int length) : base(model, data, offset, length) { }
|
2025-09-16 21:54:26 -04:00
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
2025-09-26 13:06:18 -04:00
|
|
|
public PAK(Data.Models.PAK.File model, Stream data) : base(model, data) { }
|
2025-09-16 21:54:26 -04:00
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
2025-09-26 13:06:18 -04:00
|
|
|
public PAK(Data.Models.PAK.File model, Stream data, long offset) : base(model, data, offset) { }
|
2025-09-16 21:54:26 -04:00
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
2025-09-26 13:06:18 -04:00
|
|
|
public PAK(Data.Models.PAK.File model, Stream data, long offset, long length) : base(model, data, offset, length) { }
|
2025-09-16 21:54:26 -04:00
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Static Constructors
|
2023-09-15 23:31:51 -04:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Create a PAK from a byte array and offset
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="data">Byte array representing the PAK</param>
|
|
|
|
|
/// <param name="offset">Offset within the array to parse</param>
|
|
|
|
|
/// <returns>A PAK wrapper on success, null on failure</returns>
|
|
|
|
|
public static PAK? Create(byte[]? data, int offset)
|
|
|
|
|
{
|
|
|
|
|
// If the data is invalid
|
2026-01-25 14:30:18 -05:00
|
|
|
if (data is null || data.Length == 0)
|
2023-09-15 23:31:51 -04:00
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
// If the offset is out of bounds
|
|
|
|
|
if (offset < 0 || offset >= data.Length)
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
// Create a memory stream and use that
|
2024-04-03 14:06:23 -04:00
|
|
|
var dataStream = new MemoryStream(data, offset, data.Length - offset);
|
2023-09-15 23:31:51 -04:00
|
|
|
return Create(dataStream);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Create a PAK from a Stream
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="data">Stream representing the PAK</param>
|
|
|
|
|
/// <returns>A PAK wrapper on success, null on failure</returns>
|
|
|
|
|
public static PAK? Create(Stream? data)
|
|
|
|
|
{
|
|
|
|
|
// If the data is invalid
|
2026-01-25 14:30:18 -05:00
|
|
|
if (data is null || !data.CanRead)
|
2023-09-15 23:31:51 -04:00
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2025-08-28 14:10:08 -04:00
|
|
|
// Cache the current offset
|
|
|
|
|
long currentOffset = data.Position;
|
|
|
|
|
|
2026-03-18 16:37:59 -04:00
|
|
|
var model = new Serialization.Readers.PAK().Deserialize(data);
|
2026-01-25 14:30:18 -05:00
|
|
|
if (model is null)
|
2024-11-28 21:58:49 -05:00
|
|
|
return null;
|
|
|
|
|
|
2025-09-16 21:54:26 -04:00
|
|
|
return new PAK(model, data, currentOffset);
|
2023-09-15 23:31:51 -04:00
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
2025-07-24 09:31:28 -04:00
|
|
|
}
|