mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
8222297da8
Just allocate the parent array and pass it to HashSet; having an ICollection, prevents resizing repeatedly and gc'ing the temp array is cheap. Actually, only create a hashset if we're adding a gift from external DB. Saves on that allocation, and keeps the final result as an array (fastest iterating).
58 lines
No EOL
1.9 KiB
C#
58 lines
No EOL
1.9 KiB
C#
using System;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
public sealed class WC6Full
|
|
{
|
|
public const int Size = 0x310;
|
|
private const int GiftStart = Size - WC6.Size;
|
|
public readonly byte[] Data;
|
|
public readonly WC6 Gift;
|
|
|
|
public byte RestrictVersion { get => Data[0]; set => Data[0] = value; }
|
|
public byte RestrictLanguage { get => Data[0x1FF]; set => Data[0x1FF] = value; }
|
|
|
|
public WC6Full(byte[] data)
|
|
{
|
|
Data = data;
|
|
var wc6 = data.SliceEnd(GiftStart);
|
|
Gift = new WC6(wc6);
|
|
var now = DateTime.Now;
|
|
Gift.RawDate = WC6.SetDate((uint)now.Year, (uint)now.Month, (uint)now.Day);
|
|
|
|
Gift.RestrictVersion = RestrictVersion;
|
|
Gift.RestrictLanguage = RestrictLanguage;
|
|
}
|
|
public static WC6[] GetArray(byte[] WC6Full, byte[] data)
|
|
{
|
|
var countfull = WC6Full.Length / Size;
|
|
var countgift = data.Length / WC6.Size;
|
|
var result = new WC6[countfull + countgift];
|
|
|
|
var now = DateTime.Now;
|
|
for (int i = 0; i < countfull; i++)
|
|
result[i] = ReadWC6(WC6Full, i * Size, now);
|
|
for (int i = 0; i < countgift; i++)
|
|
result[i + countfull] = ReadWC6Only(data, i * WC6.Size);
|
|
|
|
return result;
|
|
}
|
|
|
|
private static WC6 ReadWC6(byte[] data, int ofs, DateTime date)
|
|
{
|
|
var slice = data.Slice(ofs + GiftStart, WC6.Size);
|
|
return new WC6(slice)
|
|
{
|
|
RestrictVersion = data[ofs],
|
|
RestrictLanguage = data[ofs + 0x1FF],
|
|
RawDate = WC6.SetDate((uint)date.Year, (uint)date.Month, (uint)date.Day)
|
|
};
|
|
}
|
|
|
|
private static WC6 ReadWC6Only(byte[] data, int ofs)
|
|
{
|
|
var slice = data.Slice(ofs, WC6.Size);
|
|
return new WC6(slice);
|
|
}
|
|
}
|
|
} |