PKHeX/PKHeX.Core/Saves/Substructures/Battle Videos/BV7.cs
Kurt 88830e0d00
Update from .NET Framework 4.6 to .NET 7 (#3729)
Updates from net46->net7, dropping support for mono in favor of using the latest runtime (along with the performance/API improvements). Releases will be posted as 64bit only for now.

Refactors a good amount of internal API methods to be more performant and more customizable for future updates & fixes.

Adds functionality for Batch Editor commands to `>`, `<` and <=/>=

TID/SID properties renamed to TID16/SID16 for clarity; other properties exposed for Gen7 / display variants.

Main window has a new layout to account for DPI scaling (8 point grid)

Fixed: Tatsugiri and Paldean Tauros now output Showdown form names as Showdown expects
Changed: Gen9 species now interact based on the confirmed National Dex IDs (closes #3724)
Fixed: Pokedex set all no longer clears species with unavailable non-base forms (closes #3720)
Changed: Hyper Training suggestions now apply for level 50 in SV. (closes #3714)
Fixed: B2/W2 hatched egg met locations exclusive to specific versions are now explicitly checked (closes #3691)
Added: Properties for ribbon/mark count (closes #3659)
Fixed: Traded SV eggs are now checked correctly (closes #3692)
2023-01-21 20:02:33 -08:00

123 lines
4 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using static System.Buffers.Binary.BinaryPrimitives;
namespace PKHeX.Core;
public sealed class BV7 : BattleVideo
{
internal const int SIZE = 0x2BC0;
private const string NPC = "NPC";
private const int PlayerCount = 4;
public override int Generation => 7;
private readonly byte[] Data;
public override IReadOnlyList<PK7> BattlePKMs => PlayerTeams.SelectMany(t => t).ToArray();
internal new static bool IsValid(ReadOnlySpan<byte> data) => data.Length == SIZE;
public BV7(byte[] data) => Data = (byte[])data.Clone();
private static readonly int[] offsets = { 0xE41, 0x145E, 0x1A7B, 0x2098 };
public IReadOnlyList<PK7[]> PlayerTeams
{
get
{
var Teams = new PK7[PlayerCount][];
for (int t = 0; t < PlayerCount; t++)
Teams[t] = GetTeam(t);
return Teams;
}
set
{
for (int t = 0; t < PlayerCount; t++)
SetTeam(value[t], t);
}
}
public PK7[] GetTeam(int teamIndex)
{
var team = new PK7[6];
var ofs = offsets[teamIndex];
for (int p = 0; p < 6; p++)
{
int offset = ofs + (PokeCrypto.SIZE_6PARTY * p);
team[p] = new PK7(Data.Slice(offset, PokeCrypto.SIZE_6STORED));
}
return team;
}
public void SetTeam(IReadOnlyList<PK7> team, int teamIndex)
{
var ofs = offsets[teamIndex];
for (int p = 0; p < 6; p++)
{
int offset = ofs + (PokeCrypto.SIZE_6PARTY * p);
team[p].EncryptedPartyData.CopyTo(Data, offset);
}
}
public string[] GetPlayerNames()
{
string[] trainers = new string[PlayerCount];
for (int i = 0; i < PlayerCount; i++)
{
var span = Data.AsSpan(0x12C + +(0x1A * i), 0x1A);
var str = StringConverter7.GetString(span);
trainers[i] = string.IsNullOrWhiteSpace(trainers[i]) ? NPC : str;
}
return trainers;
}
public void SetPlayerNames(IReadOnlyList<string> value)
{
if (value.Count != PlayerCount)
return;
for (int i = 0; i < PlayerCount; i++)
{
string tr = value[i] == NPC ? string.Empty : value[i];
var span = Data.AsSpan(0x12C + +(0x1A * i), 0x1A);
StringConverter7.SetString(span, tr, 12, 0, StringConverterOption.ClearZero);
}
}
private int MatchYear { get => ReadUInt16LittleEndian(Data.AsSpan(0x2BB0)); set => WriteUInt16LittleEndian(Data.AsSpan(0x2BB0), (ushort)value); }
private int MatchDay { get => Data[0x2BB3]; set => Data[0x2BB3] = (byte)value; }
private int MatchMonth { get => Data[0x2BB2]; set => Data[0x2BB2] = (byte)value; }
private int MatchHour { get => Data[0x2BB4]; set => Data[0x2BB4] = (byte)value; }
private int MatchMinute { get => Data[0x2BB5]; set => Data[0x2BB5] = (byte)value; }
private int MatchSecond { get => Data[0x2BB6]; set => Data[0x2BB6] = (byte)value; }
public DateTime? MatchStamp
{
get
{
if (!DateUtil.IsDateValid(MatchYear, MatchMonth, MatchDay))
return null;
return new DateTime(MatchYear, MatchMonth, MatchDay, MatchHour, MatchMinute, MatchSecond);
}
set
{
if (value.HasValue)
{
MatchYear = value.Value.Year;
MatchDay = value.Value.Day;
MatchMonth = value.Value.Month;
MatchHour = value.Value.Hour;
MatchMinute = value.Value.Minute;
MatchSecond = value.Value.Second;
}
else
{
MatchYear = MatchDay = MatchMonth = MatchHour = MatchMinute = MatchSecond = 0;
}
}
}
public int MusicID { get => Data[0x21C]; set => Data[0x21C] = (byte)value; }
public bool SilentBGM { get => MusicID == 0xFF; set => MusicID = (byte)(value ? 0xFF : MusicID); }
}