PKHeX/PKHeX.Core/Saves/Substructures/Gen6/MysteryBlock6.cs
Kurt 88830e0d00
Update from .NET Framework 4.6 to .NET 7 (#3729)
Updates from net46->net7, dropping support for mono in favor of using the latest runtime (along with the performance/API improvements). Releases will be posted as 64bit only for now.

Refactors a good amount of internal API methods to be more performant and more customizable for future updates & fixes.

Adds functionality for Batch Editor commands to `>`, `<` and <=/>=

TID/SID properties renamed to TID16/SID16 for clarity; other properties exposed for Gen7 / display variants.

Main window has a new layout to account for DPI scaling (8 point grid)

Fixed: Tatsugiri and Paldean Tauros now output Showdown form names as Showdown expects
Changed: Gen9 species now interact based on the confirmed National Dex IDs (closes #3724)
Fixed: Pokedex set all no longer clears species with unavailable non-base forms (closes #3720)
Changed: Hyper Training suggestions now apply for level 50 in SV. (closes #3714)
Fixed: B2/W2 hatched egg met locations exclusive to specific versions are now explicitly checked (closes #3691)
Added: Properties for ribbon/mark count (closes #3659)
Fixed: Traded SV eggs are now checked correctly (closes #3692)
2023-01-21 20:02:33 -08:00

74 lines
2.4 KiB
C#

using System;
namespace PKHeX.Core;
public sealed class MysteryBlock6 : SaveBlock<SAV6>
{
private const int FlagStart = 0;
private const int MaxReceivedFlag = 2048;
private const int MaxCardsPresent = 24;
// private const int FlagRegionSize = (MaxReceivedFlag / 8); // 0x100
private const int CardStart = FlagStart + (MaxReceivedFlag / 8);
public MysteryBlock6(SAV6XY sav, int offset) : base(sav) => Offset = offset;
public MysteryBlock6(SAV6AO sav, int offset) : base(sav) => Offset = offset;
public bool[] GetReceivedFlags() => FlagUtil.GitBitFlagArray(Data.AsSpan(Offset + FlagStart), MaxReceivedFlag);
public void SetReceivedFlags(ReadOnlySpan<bool> value)
{
if (value.Length != MaxReceivedFlag)
return;
FlagUtil.SetBitFlagArray(Data.AsSpan(Offset + FlagStart), value);
SAV.State.Edited = true;
}
public DataMysteryGift[] GetGifts()
{
var cards = new DataMysteryGift[MaxCardsPresent];
for (int i = 0; i < cards.Length; i++)
cards[i] = GetGift(i);
return cards;
}
public void SetGifts(DataMysteryGift[] value)
{
int count = Math.Min(MaxCardsPresent, value.Length);
for (int i = 0; i < count; i++)
SetGift(value[i], i);
for (int i = value.Length; i < MaxCardsPresent; i++)
SetGift(new WC6(), i);
}
public DataMysteryGift GetGift(int index)
{
if ((uint)index > MaxCardsPresent)
throw new ArgumentOutOfRangeException(nameof(index));
var offset = GetGiftOffset(index);
var data = SAV.GetData(offset, WC6.Size);
return new WC6(data);
}
private int GetGiftOffset(int index) => Offset + CardStart + (index * WC6.Size);
public void SetGift(DataMysteryGift wc6, int index)
{
if ((uint)index > MaxCardsPresent)
throw new ArgumentOutOfRangeException(nameof(index));
if (wc6.Data.Length != WC6.Size)
throw new InvalidCastException(nameof(wc6));
if (wc6 is { CardID: 2048, ItemID: 726 }) // Eon Ticket (OR/AS)
{
if (SAV is not SAV6AO ao)
return;
// Set the special received data
var info = ao.Blocks.Sango;
info.ReceiveEon();
info.EnableSendEon();
}
SAV.SetData(wc6.Data, GetGiftOffset(index));
}
}