Files
BinaryObjectScanner/BurnOutSharp.Wrappers/MSDOS.cs
2022-12-02 15:29:10 -08:00

109 lines
4.0 KiB
C#

using System.IO;
namespace BurnOutSharp.Wrappers
{
public class MSDOS
{
#region Pass-Through Properties
#region Header
/// <inheritdoc cref="Models.MSDOS.ExecutableHeader.Magic"/>
public byte[] Magic => _executable.Header.Magic;
/// <inheritdoc cref="Models.MSDOS.ExecutableHeader.LastPageBytes"/>
public ushort LastPageBytes => _executable.Header.LastPageBytes;
/// <inheritdoc cref="Models.MSDOS.ExecutableHeader.Pages"/>
public ushort Pages => _executable.Header.Pages;
/// <inheritdoc cref="Models.MSDOS.ExecutableHeader.RelocationItems"/>
public ushort RelocationItems => _executable.Header.RelocationItems;
/// <inheritdoc cref="Models.MSDOS.ExecutableHeader.HeaderParagraphSize"/>
public ushort HeaderParagraphSize => _executable.Header.HeaderParagraphSize;
/// <inheritdoc cref="Models.MSDOS.ExecutableHeader.MinimumExtraParagraphs"/>
public ushort MinimumExtraParagraphs => _executable.Header.MinimumExtraParagraphs;
/// <inheritdoc cref="Models.MSDOS.ExecutableHeader.MaximumExtraParagraphs"/>
public ushort MaximumExtraParagraphs => _executable.Header.MaximumExtraParagraphs;
/// <inheritdoc cref="Models.MSDOS.ExecutableHeader.InitialSSValue"/>
public ushort InitialSSValue => _executable.Header.InitialSSValue;
/// <inheritdoc cref="Models.MSDOS.ExecutableHeader.InitialSPValue"/>
public ushort InitialSPValue => _executable.Header.InitialSPValue;
/// <inheritdoc cref="Models.MSDOS.ExecutableHeader.Checksum"/>
public ushort Checksum => _executable.Header.Checksum;
/// <inheritdoc cref="Models.MSDOS.ExecutableHeader.InitialIPValue"/>
public ushort InitialIPValue => _executable.Header.InitialIPValue;
/// <inheritdoc cref="Models.MSDOS.ExecutableHeader.InitialCSValue"/>
public ushort InitialCSValue => _executable.Header.InitialCSValue;
/// <inheritdoc cref="Models.MSDOS.ExecutableHeader.RelocationTableAddr"/>
public ushort RelocationTableAddr => _executable.Header.RelocationTableAddr;
/// <inheritdoc cref="Models.MSDOS.ExecutableHeader.OverlayNumber"/>
public ushort OverlayNumber => _executable.Header.OverlayNumber;
#endregion
#region Relocation Table
/// <inheritdoc cref="Models.MSDOS.Executable.RelocationTable"/>
public Models.MSDOS.RelocationEntry[] RelocationTable => _executable.RelocationTable;
#endregion
#endregion
#region Instance Variables
/// <summary>
/// Internal representation of the executable
/// </summary>
private Models.MSDOS.Executable _executable;
#endregion
/// <summary>
/// Private constructor
/// </summary>
private MSDOS() { }
/// <summary>
/// Create an MS-DOS executable from a byte array and offset
/// </summary>
/// <param name="data">Byte array representing the executable</param>
/// <param name="offset">Offset within the array to parse</param>
/// <returns>An MS-DOS executable wrapper on success, null on failure</returns>
public static MSDOS Create(byte[] data, int offset)
{
var executable = Builder.MSDOS.ParseExecutable(data, offset);
if (executable == null)
return null;
var wrapper = new MSDOS { _executable = executable };
return wrapper;
}
/// <summary>
/// Create an MS-DOS executable from a Stream
/// </summary>
/// <param name="data">Stream representing the executable</param>
/// <returns>An MS-DOS executable wrapper on success, null on failure</returns>
public static MSDOS Create(Stream data)
{
var executable = Builder.MSDOS.ParseExecutable(data);
if (executable == null)
return null;
var wrapper = new MSDOS { _executable = executable };
return wrapper;
}
}
}