mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-15 07:02:34 +00:00
3c232505e5
In this pull request I've changed a ton of method signatures to reflect the more-narrow types of Species, Move# and Form; additionally, I've narrowed other large collections that stored lists of species / permitted values, and reworked them to be more performant with the latest API spaghetti that PKHeX provides. Roamer met locations, usually in a range of [max-min]<64, can be quickly checked using a bitflag operation on a UInt64. Other collections (like "Is this from Colosseum or XD") were eliminated -- shadow state is not transferred COLO<->XD, so having a Shadow ID or matching the met location from a gift/wild encounter is a sufficient check for "originated in XD".
128 lines
3.9 KiB
C#
128 lines
3.9 KiB
C#
using System;
|
|
using static System.Buffers.Binary.BinaryPrimitives;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
// warning: international only
|
|
public sealed class Mail2 : MailDetail
|
|
{
|
|
private readonly bool US;
|
|
private bool Japanese => !US;
|
|
private bool Korean => !US && !Japanese;
|
|
|
|
// structure:
|
|
private const int LINE_LENGTH = 0x10;
|
|
private const int MESSAGE_LENGTH = LINE_LENGTH + LINE_LENGTH + 1; // each line has a single char at end
|
|
private const int OFS_AUTHOR = MESSAGE_LENGTH;
|
|
private const int OFS_AUTHOR_NATION = OFS_AUTHOR + AUTHOR_LENGTH + 1;
|
|
private const int OFS_AUTHOR_ID = OFS_AUTHOR_NATION + 2;
|
|
private const int OFS_APPEAR = OFS_AUTHOR_ID + 2;
|
|
private const int OFS_TYPE = OFS_APPEAR + 1;
|
|
private const int SIZE = OFS_TYPE + 1;
|
|
|
|
private const int COUNT_PARTY = 6;
|
|
private const int COUNT_MAILBOX = 10;
|
|
|
|
private const int AUTHOR_LENGTH = 7;
|
|
|
|
public Mail2(SAV2 sav, int index) : base(sav.GetData(GetMailOffset(index), 0x2F), GetMailOffset(index))
|
|
{
|
|
US = !sav.Japanese && !sav.Korean;
|
|
}
|
|
|
|
private static int GetMailOffset(int index)
|
|
{
|
|
if (index < COUNT_PARTY)
|
|
return GetPartyMailOffset(index);
|
|
return GetMailboxMailOffset(index - COUNT_PARTY);
|
|
}
|
|
|
|
private static int GetPartyMailOffset(int index)
|
|
{
|
|
if ((uint)index >= COUNT_PARTY)
|
|
throw new ArgumentOutOfRangeException(nameof(index));
|
|
return (index * SIZE) + 0x600;
|
|
}
|
|
|
|
private static int GetMailboxMailOffset(int index)
|
|
{
|
|
if ((uint)index >= COUNT_MAILBOX)
|
|
throw new ArgumentOutOfRangeException(nameof(index));
|
|
return (index * SIZE) + 0x835;
|
|
}
|
|
|
|
private string GetString(Span<byte> asSpan)
|
|
{
|
|
if (Korean)
|
|
return StringConverter2KOR.GetString(asSpan);
|
|
return StringConverter12.GetString(asSpan, Japanese);
|
|
}
|
|
|
|
private void SetString(Span<byte> asSpan, ReadOnlySpan<char> value, int maxLength)
|
|
{
|
|
if (Korean)
|
|
StringConverter2KOR.SetString(asSpan, value, maxLength);
|
|
else
|
|
StringConverter12.SetString(asSpan, value, maxLength, Japanese);
|
|
}
|
|
|
|
public string Line1
|
|
{
|
|
get => GetString(Data.AsSpan(0, LINE_LENGTH - 1));
|
|
set
|
|
{
|
|
var span = Data.AsSpan(0, LINE_LENGTH);
|
|
SetString(span[..^1], value.AsSpan(), LINE_LENGTH - 1);
|
|
span[^1] = 0x4E;
|
|
}
|
|
}
|
|
|
|
public string Line2
|
|
{
|
|
get => GetString(Data.AsSpan(LINE_LENGTH, LINE_LENGTH - 1));
|
|
set
|
|
{
|
|
var span = Data.AsSpan(LINE_LENGTH, LINE_LENGTH);
|
|
SetString(span[..^1], value.AsSpan(), LINE_LENGTH - 1);
|
|
span[^1] = 0x4E;
|
|
}
|
|
}
|
|
|
|
public override string GetMessage(bool isLastLine) => isLastLine ? Line2 : Line1;
|
|
public override void SetMessage(string line1, string line2) => (Line1, Line2) = (line1, line2);
|
|
|
|
public override string AuthorName
|
|
{
|
|
get => GetString(Data.AsSpan(OFS_AUTHOR, AUTHOR_LENGTH + 1));
|
|
set
|
|
{
|
|
SetString(Data.AsSpan(OFS_AUTHOR, 8), value.AsSpan(), AUTHOR_LENGTH);
|
|
Nationality = 0; // ??
|
|
}
|
|
}
|
|
|
|
public ushort Nationality
|
|
{
|
|
get => ReadUInt16BigEndian(Data.AsSpan(OFS_AUTHOR_NATION, 2));
|
|
set => WriteUInt16LittleEndian(Data.AsSpan(OFS_AUTHOR_NATION, 2), value);
|
|
}
|
|
|
|
public override ushort AuthorTID
|
|
{
|
|
get => ReadUInt16BigEndian(Data.AsSpan(OFS_AUTHOR_ID + 2));
|
|
set => WriteUInt16BigEndian(Data.AsSpan(OFS_AUTHOR_ID, 2), value);
|
|
}
|
|
|
|
public override ushort AppearPKM { get => Data[OFS_APPEAR]; set => Data[OFS_APPEAR] = (byte)value; }
|
|
public override int MailType { get => Data[OFS_TYPE]; set => Data[OFS_TYPE] = (byte)value; }
|
|
|
|
public override bool? IsEmpty => MailType switch
|
|
{
|
|
0 => true,
|
|
0x9E => false,
|
|
>= 0xB5 and <= 0xBD => false,
|
|
_ => null,
|
|
};
|
|
|
|
public override void SetBlank() => Data.AsSpan(0, SIZE).Clear();
|
|
}
|