PKHeX/PKHeX.Core/Saves/Substructures/Battle Videos/BV3.cs
Kurt fc754b346b
File scoped namespaces (#3529)
[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`
2022-06-18 11:04:24 -07:00

105 lines
2.7 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using static System.Buffers.Binary.BinaryPrimitives;
namespace PKHeX.Core;
public sealed class BV3 : BattleVideo
{
internal const int SIZE = 0xF80;
public override int Generation => 3;
public override IReadOnlyList<PKM> BattlePKMs => PlayerTeams.SelectMany(z => z).ToArray();
public readonly byte[] Data;
internal new static bool IsValid(ReadOnlySpan<byte> data)
{
if (data.Length != SIZE)
return false;
var chk = ReadUInt32LittleEndian(data[(SIZE-4)..]);
if (chk > 0xF7080)
return false; // max if all are FF
var expect = GetChecksum8(data);
return chk == expect;
}
public BV3(byte[] data) => Data = (byte[])data.Clone();
public BV3() : this(new byte[SIZE]) { }
public IReadOnlyList<PK3[]> PlayerTeams
{
get => new[]
{
GetTeam(0),
GetTeam(1),
};
set
{
SetTeam(value[0], 0);
SetTeam(value[1], 1);
}
}
public PK3[] GetTeam(int teamIndex)
{
if ((uint)teamIndex > 2)
throw new ArgumentOutOfRangeException(nameof(teamIndex));
var ofs = 6 * PokeCrypto.SIZE_3PARTY * teamIndex;
var team = new PK3[6];
for (int p = 0; p < 6; p++)
{
int offset = ofs + (PokeCrypto.SIZE_3PARTY * p);
team[p] = new PK3(Data.Slice(offset, PokeCrypto.SIZE_3PARTY));
}
return team;
}
public void SetTeam(IReadOnlyList<PK3> team, int teamIndex)
{
var ofs = 6 * PokeCrypto.SIZE_3PARTY * teamIndex;
for (int p = 0; p < 6; p++)
{
int offset = ofs + (PokeCrypto.SIZE_3PARTY * p);
team[p].EncryptedPartyData.CopyTo(Data, offset);
}
}
// 0x4B0 - string3[4][8] Trainer Names
// 0x4D0 - u8[4] Trainer Genders
// 0x4D4 - u32[4] Trainer IDs
// 0x4E4 - u8[4] Trainer Languages
public uint Seed
{
get => ReadUInt32LittleEndian(Data.AsSpan(0x4E8));
set => WriteUInt32LittleEndian(Data.AsSpan(0x4E8), value);
}
public uint Mode
{
get => ReadUInt32LittleEndian(Data.AsSpan(0x4EC));
set => WriteUInt32LittleEndian(Data.AsSpan(0x4EC), value);
}
// ...
public uint Checksum
{
get => ReadUInt32LittleEndian(Data.AsSpan(SIZE - 4));
set => WriteUInt32LittleEndian(Data.AsSpan(SIZE - 4), value);
}
public bool IsChecksumValid() => Checksum == GetChecksum8(Data);
public static uint GetChecksum8(ReadOnlySpan<byte> data)
{
uint result = 0;
for (int i = 0; i < data.Length - 4; i++)
result += data[i];
return result;
}
}