Add and convert BD+

This commit is contained in:
Matt Nadareski
2023-09-08 21:12:19 -04:00
parent 139e5e6366
commit fa29917156
4 changed files with 112 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
using System.IO;
using SabreTools.Models.BDPlus;
namespace SabreTools.Serialization.Bytes
{
public partial class BDPlus : IByteSerializer<SVM>
{
/// <inheritdoc/>
#if NET48
public SVM Deserialize(byte[] data, int offset)
#else
public SVM? Deserialize(byte[]? data, int offset)
#endif
{
// If the data is invalid
if (data == null)
return null;
// If the offset is out of bounds
if (offset < 0 || offset >= data.Length)
return null;
// Create a memory stream and parse that
MemoryStream dataStream = new MemoryStream(data, offset, data.Length - offset);
return new Streams.BDPlus().Deserialize(dataStream);
}
}
}

View File

@@ -17,5 +17,7 @@ namespace SabreTools.Serialization
#else
T? Deserialize(byte[]? data, int offset);
#endif
// TODO: Add serialization method
}
}

View File

@@ -0,0 +1,66 @@
using System.IO;
using System.Text;
using SabreTools.IO;
using SabreTools.Models.BDPlus;
using static SabreTools.Models.BDPlus.Constants;
namespace SabreTools.Serialization.Streams
{
public partial class BDPlus : IStreamSerializer<SVM>
{
/// <inheritdoc/>
#if NET48
public SVM Deserialize(Stream data)
#else
public SVM? Deserialize(Stream? data)
#endif
{
// If the data is invalid
if (data == null || data.Length == 0 || !data.CanSeek || !data.CanRead)
return null;
// If the offset is out of bounds
if (data.Position < 0 || data.Position >= data.Length)
return null;
// Cache the current offset
int initialOffset = (int)data.Position;
// Try to parse the SVM
return ParseSVMData(data);
}
/// <summary>
/// Parse a Stream into an SVM
/// </summary>
/// <param name="data">Stream to parse</param>
/// <returns>Filled SVM on success, null on error</returns>
private static SVM ParseSVMData(Stream data)
{
// TODO: Use marshalling here instead of building
var svm = new SVM();
byte[] signature = data.ReadBytes(8);
svm.Signature = Encoding.ASCII.GetString(signature);
if (svm.Signature != SignatureString)
return null;
svm.Unknown1 = data.ReadBytes(5);
svm.Year = data.ReadUInt16BigEndian();
svm.Month = data.ReadByteValue();
if (svm.Month < 1 || svm.Month > 12)
return null;
svm.Day = data.ReadByteValue();
if (svm.Day < 1 || svm.Day > 31)
return null;
svm.Unknown2 = data.ReadBytes(4);
svm.Length = data.ReadUInt32();
// if (svm.Length > 0)
// svm.Data = data.ReadBytes((int)svm.Length);
return svm;
}
}
}

View File

@@ -0,0 +1,16 @@
using System;
using System.IO;
using SabreTools.Models.BDPlus;
namespace SabreTools.Serialization.Streams
{
public partial class BDPlus : IStreamSerializer<SVM>
{
/// <inheritdoc/>
#if NET48
public Stream Serialize(SVM obj) => throw new NotImplementedException();
#else
public Stream? Serialize(SVM? obj) => throw new NotImplementedException();
#endif
}
}