2022-11-25 01:42:17 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using static System.Buffers.Binary.BinaryPrimitives;
|
|
|
|
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// A single Generation 9 Rental Team
|
|
|
|
/// </summary>
|
|
|
|
public sealed class RentalTeam9 : IRentalTeam<PK9>, IPokeGroup
|
|
|
|
{
|
2022-12-11 03:55:24 +00:00
|
|
|
private const int LEN_OT = 11; // char
|
2022-11-25 01:42:17 +00:00
|
|
|
private const int LEN_TEAMNAME = 10; // char
|
|
|
|
|
2022-12-11 03:55:24 +00:00
|
|
|
private const int LEN_META = sizeof(ushort) + (sizeof(char) * (LEN_OT + LEN_TEAMNAME)) + sizeof(uint);
|
2022-11-25 01:42:17 +00:00
|
|
|
private const int LEN_STORED = PokeCrypto.SIZE_8STORED; // 0x148
|
|
|
|
private const int LEN_POKE = PokeCrypto.SIZE_8PARTY; // 0x158
|
|
|
|
private const int LEN_PARTYSTAT = LEN_POKE - PokeCrypto.SIZE_8STORED; // 0x10
|
|
|
|
private const int COUNT_POKE = 6;
|
|
|
|
|
|
|
|
private const int OFS_META = 0;
|
|
|
|
private const int OFS_1 = OFS_META + LEN_META;
|
|
|
|
private const int OFS_2 = OFS_1 + LEN_POKE;
|
|
|
|
private const int OFS_3 = OFS_2 + LEN_POKE;
|
|
|
|
private const int OFS_4 = OFS_3 + LEN_POKE;
|
|
|
|
private const int OFS_5 = OFS_4 + LEN_POKE;
|
|
|
|
private const int OFS_6 = OFS_5 + LEN_POKE;
|
|
|
|
private const int OFS_END = OFS_6 + LEN_POKE;
|
|
|
|
public const int SIZE = OFS_END + sizeof(uint); // 0x844
|
|
|
|
|
2022-12-11 03:55:24 +00:00
|
|
|
public readonly byte[] Data;
|
2022-11-25 01:42:17 +00:00
|
|
|
|
|
|
|
public RentalTeam9(byte[] data) => Data = data;
|
|
|
|
|
|
|
|
// 2 bytes number
|
|
|
|
public ushort ID
|
|
|
|
{
|
|
|
|
get => ReadUInt16LittleEndian(Data.AsSpan(OFS_META + 0x00));
|
|
|
|
set => WriteUInt16LittleEndian(Data.AsSpan(OFS_META + 0x00), value);
|
|
|
|
}
|
|
|
|
|
|
|
|
private Span<byte> Player_Trash => Data.AsSpan(OFS_META + 0x02, LEN_OT * sizeof(char));
|
|
|
|
|
|
|
|
private Span<byte> TeamName_Trash => Data.AsSpan(OFS_META + 0x18, LEN_TEAMNAME * sizeof(char));
|
|
|
|
|
2022-12-11 03:55:24 +00:00
|
|
|
public uint Language
|
2022-11-25 01:42:17 +00:00
|
|
|
{
|
|
|
|
get => ReadUInt32LittleEndian(Data.AsSpan(OFS_META + 0x2C));
|
|
|
|
set => WriteUInt32LittleEndian(Data.AsSpan(OFS_META + 0x2C), value);
|
|
|
|
}
|
|
|
|
|
|
|
|
public string PlayerName
|
|
|
|
{
|
|
|
|
get => StringConverter8.GetString(Player_Trash);
|
2022-12-11 03:55:24 +00:00
|
|
|
set => StringConverter8.SetString(Player_Trash, value.AsSpan(), 10);
|
2022-11-25 01:42:17 +00:00
|
|
|
}
|
2022-12-11 03:55:24 +00:00
|
|
|
|
2022-11-25 01:42:17 +00:00
|
|
|
public string TeamName
|
|
|
|
{
|
|
|
|
get => StringConverter8.GetString(TeamName_Trash);
|
|
|
|
set => StringConverter8.SetString(TeamName_Trash, value.AsSpan(), LEN_TEAMNAME);
|
|
|
|
}
|
2022-12-11 03:55:24 +00:00
|
|
|
|
|
|
|
public uint EntityCount
|
2022-11-25 01:42:17 +00:00
|
|
|
{
|
|
|
|
get => ReadUInt32LittleEndian(Data.AsSpan(OFS_END));
|
|
|
|
set => WriteUInt32LittleEndian(Data.AsSpan(OFS_END), value);
|
|
|
|
}
|
|
|
|
|
|
|
|
public PK9 GetSlot(int slot)
|
|
|
|
{
|
|
|
|
var ofs = GetSlotOffset(slot);
|
|
|
|
var data = Data.Slice(ofs, LEN_POKE);
|
|
|
|
var pk9 = new PK9(data);
|
|
|
|
pk9.ResetPartyStats();
|
|
|
|
return pk9;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SetSlot(int slot, PK9 pk)
|
|
|
|
{
|
|
|
|
var ofs = GetSlotOffset(slot);
|
|
|
|
var data = pk.EncryptedPartyData;
|
|
|
|
// Wipe Party Stats
|
|
|
|
Array.Clear(data, LEN_STORED, LEN_PARTYSTAT);
|
|
|
|
data.CopyTo(Data, ofs);
|
|
|
|
}
|
|
|
|
|
|
|
|
public PK9[] GetTeam()
|
|
|
|
{
|
|
|
|
var team = new PK9[COUNT_POKE];
|
|
|
|
for (int i = 0; i < team.Length; i++)
|
|
|
|
team[i] = GetSlot(i);
|
|
|
|
return team;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SetTeam(IReadOnlyList<PK9> team)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < team.Count; i++)
|
|
|
|
SetSlot(i, team[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static int GetSlotOffset(int slot)
|
|
|
|
{
|
|
|
|
if ((uint)slot >= COUNT_POKE)
|
|
|
|
throw new ArgumentOutOfRangeException(nameof(slot));
|
|
|
|
return OFS_1 + (LEN_POKE * slot);
|
|
|
|
}
|
|
|
|
|
|
|
|
public IEnumerable<PKM> Contents => GetTeam();
|
|
|
|
|
|
|
|
public static bool IsRentalTeam(byte[] data)
|
|
|
|
{
|
|
|
|
if (data.Length != SIZE)
|
|
|
|
return false;
|
|
|
|
var team = new RentalTeam9(data).GetTeam();
|
2022-12-08 07:28:47 +00:00
|
|
|
// Checksum can be invalid for whatever reason. Just sanity check a little.
|
|
|
|
return team.All(x => (uint)x.Species <= x.MaxSpeciesID && x.Moves.All(y => (uint)y <= x.MaxMoveID));
|
2022-11-25 01:42:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static RentalTeam9 GetFrom(ReadOnlySpan<byte> data, int index)
|
|
|
|
{
|
|
|
|
var ofs = index * SIZE;
|
|
|
|
var team = data.Slice(ofs, SIZE).ToArray();
|
|
|
|
return new RentalTeam9(team);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void WriteTo(Span<byte> data, int index) => Data.CopyTo(data[(index * SIZE)..]);
|
2022-12-11 03:55:24 +00:00
|
|
|
|
|
|
|
public ushort EntityChecksum => Checksums.CRC16_CCITT(Data.AsSpan(OFS_1, OFS_END - OFS_1));
|
2022-11-25 01:42:17 +00:00
|
|
|
}
|