mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-04 17:59:16 +00:00
39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
using System;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
public sealed class BoxLayout9(SAV9SV sav, SCBlock block) : SaveBlock<SAV9SV>(sav, block.Data), IBoxDetailName
|
|
{
|
|
public const int BoxCount = 32;
|
|
|
|
private const int StringMaxLength = SAV6.LongStringLength / 2;
|
|
|
|
private static int GetBoxNameOffset(int box) => SAV6.LongStringLength * box;
|
|
private Span<byte> GetBoxNameSpan(int box) => Data.Slice(GetBoxNameOffset(box), SAV6.LongStringLength);
|
|
|
|
public string GetBoxName(int box)
|
|
{
|
|
var span = GetBoxNameSpan(box);
|
|
if (System.Buffers.Binary.BinaryPrimitives.ReadUInt16LittleEndian(span) == 0)
|
|
return BoxDetailNameExtensions.GetDefaultBoxName(box);
|
|
return SAV.GetString(span);
|
|
}
|
|
|
|
public void SetBoxName(int box, ReadOnlySpan<char> value)
|
|
{
|
|
var span = GetBoxNameSpan(box);
|
|
SAV.SetString(span, value, StringMaxLength, StringConverterOption.ClearZero);
|
|
}
|
|
|
|
public string this[int i]
|
|
{
|
|
get => GetBoxName(i);
|
|
set => SetBoxName(i, value);
|
|
}
|
|
|
|
public int CurrentBox
|
|
{
|
|
get => SAV.GetValue<byte>(SaveBlockAccessor9SV.KCurrentBox);
|
|
set => SAV.SetValue(SaveBlockAccessor9SV.KCurrentBox, (byte)value);
|
|
}
|
|
}
|