using System.IO; using SabreTools.Data.Models.Nitro; namespace SabreTools.Wrappers { public partial class Nitro : WrapperBase { #region Descriptive Properties /// public override string DescriptionString => "Nintendo DS/DSi Cart Image"; #endregion #region Extension Methods /// public CommonHeader CommonHeader => Model.CommonHeader; /// public uint GameCode => Model.CommonHeader.GameCode; /// public byte[] SecureArea => Model.SecureArea; #endregion #region Constructors /// public Nitro(Cart model, byte[] data) : base(model, data) { } /// public Nitro(Cart model, byte[] data, int offset) : base(model, data, offset) { } /// public Nitro(Cart model, byte[] data, int offset, int length) : base(model, data, offset, length) { } /// public Nitro(Cart model, Stream data) : base(model, data) { } /// public Nitro(Cart model, Stream data, long offset) : base(model, data, offset) { } /// public Nitro(Cart model, Stream data, long offset, long length) : base(model, data, offset, length) { } #endregion #region Static Constructors /// /// Create a NDS cart image from a byte array and offset /// /// Byte array representing the archive /// Offset within the array to parse /// A NDS cart image wrapper on success, null on failure public static Nitro? 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); } /// /// Create a NDS cart image from a Stream /// /// Stream representing the archive /// A NDS cart image wrapper on success, null on failure public static Nitro? 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.Nitro().Deserialize(data); if (model is null) return null; return new Nitro(model, data, currentOffset); } catch { return null; } } #endregion } }