2023-09-15 23:31:51 -04:00
|
|
|
using System.IO;
|
2025-09-26 13:06:18 -04:00
|
|
|
using SabreTools.Data.Models.BSP;
|
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-12 09:02:03 -04:00
|
|
|
public partial class VBSP : WrapperBase<VbspFile>
|
2023-09-15 23:31:51 -04:00
|
|
|
{
|
|
|
|
|
#region Descriptive Properties
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
|
public override string DescriptionString => "Half-Life 2 Level (VBSP)";
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2025-07-31 08:57:35 -04:00
|
|
|
#region Extension Properties
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc cref="VbspHeader.Lumps"/>
|
2025-10-30 21:21:56 -04:00
|
|
|
public VbspLumpEntry[] Lumps => Model.Header.Lumps;
|
2025-07-31 08:57:35 -04:00
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2023-09-15 23:31:51 -04:00
|
|
|
#region Constructors
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
2025-09-16 21:54:26 -04:00
|
|
|
public VBSP(VbspFile model, byte[] data) : base(model, data) { }
|
2023-09-15 23:31:51 -04:00
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
2025-09-16 21:54:26 -04:00
|
|
|
public VBSP(VbspFile model, byte[] data, int offset) : base(model, data, offset) { }
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
|
public VBSP(VbspFile model, byte[] data, int offset, int length) : base(model, data, offset, length) { }
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
|
public VBSP(VbspFile model, Stream data) : base(model, data) { }
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
|
public VBSP(VbspFile model, Stream data, long offset) : base(model, data, offset) { }
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
|
public VBSP(VbspFile model, Stream data, long offset, long length) : base(model, data, offset, length) { }
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Static Constructors
|
2023-09-15 23:31:51 -04:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Create a VBSP from a byte array and offset
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="data">Byte array representing the VBSP</param>
|
|
|
|
|
/// <param name="offset">Offset within the array to parse</param>
|
|
|
|
|
/// <returns>A VBSP wrapper on success, null on failure</returns>
|
|
|
|
|
public static VBSP? 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 VBSP from a Stream
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="data">Stream representing the VBSP</param>
|
|
|
|
|
/// <returns>An VBSP wrapper on success, null on failure</returns>
|
|
|
|
|
public static VBSP? 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.VBSP().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 VBSP(model, data, currentOffset);
|
2023-09-15 23:31:51 -04:00
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
2025-07-24 09:31:28 -04:00
|
|
|
}
|