BOS.* -> BOS.*

This commit is contained in:
Matt Nadareski
2023-03-07 16:59:14 -05:00
parent e32b24c9f6
commit 473cbc5694
591 changed files with 1214 additions and 1214 deletions

View File

@@ -0,0 +1,26 @@
namespace BinaryObjectScanner.Models.VBSP
{
public static class Constants
{
public static readonly byte[] SignatureBytes = new byte[] { 0x56, 0x42, 0x53, 0x50 };
public const string SignatureString = "VBSP";
public const uint SignatureUInt32 = 0x50534256;
/// <summary>
/// Total number of lumps in the package
/// </summary>
public const int HL_VBSP_LUMP_COUNT = 64;
/// <summary>
/// Index for the entities lump
/// </summary>
public const int HL_VBSP_LUMP_ENTITIES = 0;
/// <summary>
/// Index for the pakfile lump
/// </summary>
public const int HL_VBSP_LUMP_PAKFILE = 40;
}
}

View File

@@ -0,0 +1,14 @@
namespace BinaryObjectScanner.Models.VBSP
{
/// <summary>
/// Half-Life 2 Level
/// </summary>
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/VBSPFile.h"/>
public sealed class File
{
/// <summary>
/// Directory header data
/// </summary>
public Header Header { get; set; }
}
}

View File

@@ -0,0 +1,31 @@
namespace BinaryObjectScanner.Models.VBSP
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/VBSPFile.h"/>
public sealed class Header
{
/// <summary>
/// BSP file signature.
/// </summary>
public string Signature;
/// <summary>
/// BSP file version.
/// </summary>
/// <remarks>
/// 19-20: Source
/// 21: Source - The lump version property was moved to the start of the struct.
/// 0x00040014: Dark Messiah - Looks like the 32 bit version has been split into two 16 bit fields.
/// </remarks>
public int Version;
/// <summary>
/// Lumps.
/// </summary>
public Lump[] Lumps;
/// <summary>
/// The map's revision (iteration, version) number.
/// </summary>
public int MapRevision;
}
}

View File

@@ -0,0 +1,20 @@
namespace BinaryObjectScanner.Models.VBSP
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/VBSPFile.h"/>
public sealed class Lump
{
public uint Offset;
public uint Length;
/// <summary>
/// Default to zero.
/// </summary>
public uint Version;
/// <summary>
/// Default to (char)0, (char)0, (char)0, (char)0.
/// </summary>
public char[] FourCC;
}
}

View File

@@ -0,0 +1,16 @@
namespace BinaryObjectScanner.Models.VBSP
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/VBSPFile.h"/>
public sealed class LumpHeader
{
public int LumpOffset;
public int LumpID;
public int LumpVersion;
public int LumpLength;
public int MapRevision;
}
}