mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 22:54:14 +00:00
d47bb1d297
With the new version of Visual Studio bringing C# 12, we can revise our logic for better readability as well as use new methods/APIs introduced in the .NET 8.0 BCL.
37 lines
1,000 B
C#
37 lines
1,000 B
C#
using System;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Mystery Gift backed by serialized fields from ROM/SAV data, rather than observed specifications.
|
|
/// </summary>
|
|
public abstract class DataMysteryGift(byte[] Data) : MysteryGift
|
|
{
|
|
public readonly byte[] Data = Data;
|
|
|
|
/// <summary>
|
|
/// Returns an array for exporting outside the program (to disk, etc.).
|
|
/// </summary>
|
|
public virtual byte[] Write() => Data;
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
int hash = 17;
|
|
foreach (var b in Data)
|
|
hash = (hash * 31) + b;
|
|
return hash;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a deep copy of the <see cref="MysteryGift"/> object data.
|
|
/// </summary>
|
|
public override MysteryGift Clone()
|
|
{
|
|
byte[] data = (byte[])Data.Clone();
|
|
var result = GetMysteryGift(data);
|
|
ArgumentNullException.ThrowIfNull(result);
|
|
return result;
|
|
}
|
|
|
|
public override bool Empty => !Data.AsSpan().ContainsAnyExcept<byte>(0);
|
|
}
|