PKHeX/PKHeX.Core/Saves/Substructures/Gen4/PoffinCase4.cs
Kurt fc754b346b
File scoped namespaces (#3529)
[Language Reference](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-10.0/file-scoped-namespaces)

Updates all the files, one less level of indentation.

Some small changes were made to API surfaces, renaming `PKM pkm` -> `PKM pk`, and `LegalityAnalysis.pkm` -> `LegalityAnalysis.Entity`
2022-06-18 11:04:24 -07:00

53 lines
1.3 KiB
C#

using System.Collections.Generic;
using System.Diagnostics;
namespace PKHeX.Core;
/// <summary>
/// Storage for all <see cref="Poffin4"/> the trainer has.
/// </summary>
public sealed class PoffinCase4
{
private readonly SAV4Sinnoh SAV;
private readonly int Offset;
public readonly Poffin4[] Poffins;
private const int Count = 100;
public PoffinCase4(SAV4Sinnoh sav)
{
SAV = sav;
Offset = sav.OFS_PoffinCase;
Poffins = ReadPoffins(SAV, Offset);
}
public void Save() => WritePoffins(SAV, Offset, Poffins);
private static Poffin4[] ReadPoffins(SAV4Sinnoh sav, int offset)
{
var Poffins = new Poffin4[Count];
for (int i = 0; i < Poffins.Length; i++)
Poffins[i] = new Poffin4(sav.General, offset + (i * Poffin4.SIZE));
return Poffins;
}
private static void WritePoffins(SAV4Sinnoh sav, int offset, IReadOnlyList<Poffin4> poffins)
{
Debug.Assert(poffins.Count == Count);
for (int i = 0; i < poffins.Count; i++)
sav.SetData(sav.General, poffins[i].Data, offset + (i * Poffin4.SIZE));
}
public void FillCase()
{
foreach (var p in Poffins)
p.SetAll();
}
public void DeleteAll()
{
foreach (var p in Poffins)
p.Delete();
}
}