mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-30 15:59:13 +00:00
fc754b346b
[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`
47 lines
1.3 KiB
C#
47 lines
1.3 KiB
C#
using System;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
public sealed class BoxLayout5 : SaveBlock<SAV5>
|
|
{
|
|
public BoxLayout5(SAV5BW sav, int offset) : base(sav) => Offset = offset;
|
|
public BoxLayout5(SAV5B2W2 sav, int offset) : base(sav) => Offset = offset;
|
|
|
|
public int CurrentBox { get => Data[Offset]; set => Data[Offset] = (byte)value; }
|
|
public int GetBoxNameOffset(int box) => Offset + (0x28 * box) + 4;
|
|
public int GetBoxWallpaperOffset(int box) => Offset + 0x3C4 + box;
|
|
|
|
public int GetBoxWallpaper(int box)
|
|
{
|
|
if ((uint)box > SAV.BoxCount)
|
|
return 0;
|
|
return Data[GetBoxWallpaperOffset(box)];
|
|
}
|
|
|
|
public void SetBoxWallpaper(int box, int value)
|
|
{
|
|
if ((uint)box > SAV.BoxCount)
|
|
return;
|
|
Data[GetBoxWallpaperOffset(box)] = (byte)value;
|
|
}
|
|
|
|
private Span<byte> GetBoxNameSpan(int box) => Data.AsSpan(GetBoxNameOffset(box), 0x14);
|
|
|
|
public string GetBoxName(int box)
|
|
{
|
|
if (box >= SAV.BoxCount)
|
|
return string.Empty;
|
|
return SAV.GetString(GetBoxNameSpan(box));
|
|
}
|
|
|
|
public void SetBoxName(int box, string value)
|
|
{
|
|
SAV.SetString(GetBoxNameSpan(box), value.AsSpan(), 13, StringConverterOption.ClearZero);
|
|
}
|
|
|
|
public string this[int i]
|
|
{
|
|
get => GetBoxName(i);
|
|
set => SetBoxName(i, value);
|
|
}
|
|
}
|