mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-05 22:01:33 +00:00
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
86 lines
3.1 KiB
C#
86 lines
3.1 KiB
C#
#pragma warning disable IDE0017 // Simplify object initialization
|
|
namespace SabreTools.Serialization.Readers
|
|
{
|
|
public partial class XeMID : IStringReader<Data.Models.Xbox.XeMID>
|
|
{
|
|
/// <inheritdoc/>
|
|
public bool Debug { get; set; } = false;
|
|
|
|
/// <inheritdoc cref="IStringReader.Deserialize(string?)"/>
|
|
public static Data.Models.Xbox.XeMID? DeserializeString(string? str)
|
|
{
|
|
var deserializer = new XeMID();
|
|
return deserializer.Deserialize(str);
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public Data.Models.Xbox.XeMID? Deserialize(string? str)
|
|
{
|
|
if (string.IsNullOrEmpty(str))
|
|
return null;
|
|
|
|
string xemid = str!.TrimEnd('\0');
|
|
if (string.IsNullOrEmpty(xemid))
|
|
return null;
|
|
|
|
return ParseXeMID(xemid);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Parse an XGD2/3 XeMID string
|
|
/// </summary>
|
|
/// <param name="xemidString">XeMID string to attempt to parse</param>
|
|
/// <returns>Filled XeMID on success, null on error</returns>
|
|
private static Data.Models.Xbox.XeMID? ParseXeMID(string? xemidString)
|
|
{
|
|
if (xemidString is null)
|
|
return null;
|
|
if (!(xemidString.Length == 13 || xemidString.Length == 14 || xemidString.Length == 21 || xemidString.Length == 22))
|
|
return null;
|
|
|
|
var xemid = new Data.Models.Xbox.XeMID();
|
|
|
|
#if NETCOREAPP || NETSTANDARD2_1_OR_GREATER
|
|
xemid.PublisherIdentifier = xemidString[..2];
|
|
#else
|
|
xemid.PublisherIdentifier = xemidString.Substring(0, 2);
|
|
#endif
|
|
xemid.PlatformIdentifier = xemidString[2];
|
|
if (xemid.PlatformIdentifier != '2')
|
|
return null;
|
|
|
|
xemid.GameID = xemidString.Substring(3, 3);
|
|
xemid.SKU = xemidString.Substring(6, 2);
|
|
xemid.RegionIdentifier = xemidString[8];
|
|
|
|
if (xemidString.Length == 13 || xemidString.Length == 21)
|
|
{
|
|
xemid.BaseVersion = xemidString.Substring(9, 1);
|
|
xemid.MediaSubtypeIdentifier = xemidString[10];
|
|
xemid.DiscNumberIdentifier = xemidString.Substring(11, 2);
|
|
}
|
|
else if (xemidString.Length == 14 || xemidString.Length == 22)
|
|
{
|
|
xemid.BaseVersion = xemidString.Substring(9, 2);
|
|
xemid.MediaSubtypeIdentifier = xemidString[11];
|
|
xemid.DiscNumberIdentifier = xemidString.Substring(12, 2);
|
|
}
|
|
|
|
if (xemidString.Length == 21)
|
|
#if NETCOREAPP || NETSTANDARD2_1_OR_GREATER
|
|
xemid.CertificationSubmissionIdentifier = xemidString[13..];
|
|
#else
|
|
xemid.CertificationSubmissionIdentifier = xemidString.Substring(13);
|
|
#endif
|
|
else if (xemidString.Length == 22)
|
|
#if NETCOREAPP || NETSTANDARD2_1_OR_GREATER
|
|
xemid.CertificationSubmissionIdentifier = xemidString[14..];
|
|
#else
|
|
xemid.CertificationSubmissionIdentifier = xemidString.Substring(14);
|
|
#endif
|
|
|
|
return xemid;
|
|
}
|
|
}
|
|
}
|