mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
5d3bc289b6
Mark things as sealed as they shouldn't be inherited from or overriden in a derived class.
319 lines
No EOL
11 KiB
C#
319 lines
No EOL
11 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Generation 7 Dex manipulator
|
|
/// </summary>
|
|
public class Zukan7 : Zukan
|
|
{
|
|
private const int MAGIC = 0x2F120F17;
|
|
private const int SIZE_MAGIC = 4;
|
|
private const int SIZE_FLAGS = 4;
|
|
private const int SIZE_MISC = 0x80; // Misc Data (1024 bits)
|
|
private const int SIZE_CAUGHT = 0x68; // 832 bits
|
|
|
|
protected sealed override int OFS_CAUGHT => SIZE_MAGIC + SIZE_FLAGS + SIZE_MISC;
|
|
protected sealed override int OFS_SEEN => OFS_CAUGHT + SIZE_CAUGHT;
|
|
|
|
protected sealed override int BitSeenSize => 0x8C; // 1120 bits
|
|
protected sealed override int DexLangFlagByteCount => 920; // 0x398 = 817*9, top off the savedata block.
|
|
protected sealed override int DexLangIDCount => 9; // CHT, skipping langID 6 (unused)
|
|
|
|
private readonly IList<int> FormBaseSpecies;
|
|
|
|
public Zukan7(SAV7SM sav, int dex, int langflag) : this(sav, dex, langflag, DexFormUtil.GetDexFormIndexSM) { }
|
|
public Zukan7(SAV7USUM sav, int dex, int langflag) : this(sav, dex, langflag, DexFormUtil.GetDexFormIndexUSUM) { }
|
|
protected Zukan7(SAV7b sav, int dex, int langflag) : this(sav, dex, langflag, DexFormUtil.GetDexFormIndexGG) { }
|
|
|
|
private Zukan7(SaveFile sav, int dex, int langflag, Func<int, int, int, int> form) : base(sav, dex, langflag)
|
|
{
|
|
DexFormIndexFetcher = form;
|
|
FormBaseSpecies = GetFormIndexBaseSpeciesList();
|
|
Debug.Assert(!SAV.Exportable || BitConverter.ToUInt32(SAV.Data, PokeDex) == MAGIC);
|
|
}
|
|
|
|
public Func<int, int, int, int> DexFormIndexFetcher { get; }
|
|
|
|
protected sealed override void SetAllDexSeenFlags(int baseBit, int altform, int gender, bool isShiny, bool value = true)
|
|
{
|
|
int species = baseBit + 1;
|
|
|
|
if (species == (int)Species.Castform)
|
|
isShiny = false;
|
|
|
|
// Starting with Gen7, form bits are stored in the same region as the species flags.
|
|
int formstart = altform;
|
|
int formend = altform;
|
|
bool reset = GetSaneFormsToIterate(species, out int fs, out int fe, formstart);
|
|
if (reset)
|
|
{
|
|
formstart = fs;
|
|
formend = fe;
|
|
}
|
|
|
|
int shiny = isShiny ? 1 : 0;
|
|
for (int form = formstart; form <= formend; form++)
|
|
{
|
|
int formBit = baseBit;
|
|
if (form > 0) // Override the bit to overwrite
|
|
{
|
|
int fc = SAV.Personal[species].FormeCount;
|
|
if (fc > 1) // actually has forms
|
|
{
|
|
int f = DexFormIndexFetcher(species, fc, SAV.MaxSpeciesID - 1);
|
|
if (f >= 0) // bit index valid
|
|
formBit = f + form;
|
|
}
|
|
}
|
|
SetDexFlags(baseBit, formBit, gender, shiny, value);
|
|
}
|
|
}
|
|
|
|
protected override bool GetSaneFormsToIterate(int species, out int formStart, out int formEnd, int formIn)
|
|
{
|
|
return SanitizeFormsToIterate(species, out formStart, out formEnd, formIn, SAV is SAV7USUM);
|
|
}
|
|
|
|
public static bool SanitizeFormsToIterate(int species, out int formStart, out int formEnd, int formIn, bool USUM)
|
|
{
|
|
// 004AA370 in Moon
|
|
// Simplified in terms of usage -- only overrides to give all the battle forms for a pkm
|
|
switch (species)
|
|
{
|
|
case 351: // Castform
|
|
formStart = 0;
|
|
formEnd = 3;
|
|
return true;
|
|
|
|
case 421: // Cherrim
|
|
case 555: // Darmanitan
|
|
case 648: // Meloetta
|
|
case 746: // Wishiwashi
|
|
case 778: // Mimikyu
|
|
// Alolans
|
|
case 020: // Raticate
|
|
case 105: // Marowak
|
|
formStart = 0;
|
|
formEnd = 1;
|
|
return true;
|
|
|
|
case 735: // Gumshoos
|
|
case 758: // Salazzle
|
|
case 754: // Lurantis
|
|
case 738: // Vikavolt
|
|
case 784: // Kommo-o
|
|
case 752: // Araquanid
|
|
case 777: // Togedemaru
|
|
case 743: // Ribombee
|
|
case 744: // Rockruff
|
|
break;
|
|
|
|
case 774 when formIn <= 6: // Minior
|
|
break; // don't give meteor forms except the first
|
|
|
|
case 718 when formIn > 1:
|
|
break;
|
|
default:
|
|
int count = USUM ? DexFormUtil.GetDexFormCountUSUM(species) : DexFormUtil.GetDexFormCountSM(species);
|
|
formStart = formEnd = 0;
|
|
return count < formIn;
|
|
}
|
|
formStart = 0;
|
|
formEnd = 0;
|
|
return true;
|
|
}
|
|
|
|
protected sealed override int GetDexLangFlag(int lang)
|
|
{
|
|
if (lang > 10 || lang == 6 || lang <= 0)
|
|
return -1; // invalid language
|
|
|
|
if (lang >= 7) // skip over langID 6 (unused)
|
|
lang--;
|
|
lang--; // skip over langID 0 (unused) => [0-8]
|
|
return lang;
|
|
}
|
|
|
|
protected sealed override void SetSpindaDexData(PKM pkm, bool alreadySeen)
|
|
{
|
|
int shift = (pkm.Gender & 1) | (pkm.IsShiny ? 2 : 0);
|
|
if (alreadySeen) // update?
|
|
{
|
|
var flag1 = (1 << (shift + 4));
|
|
if ((SAV.Data[PokeDex + 0x84] & flag1) != 0) // Already showing this one
|
|
return;
|
|
BitConverter.GetBytes(pkm.EncryptionConstant).CopyTo(SAV.Data, PokeDex + 0x8E8 + (shift * 4));
|
|
SAV.Data[PokeDex + 0x84] |= (byte)(flag1 | (1 << shift));
|
|
}
|
|
else if ((SAV.Data[PokeDex + 0x84] & (1 << shift)) == 0)
|
|
{
|
|
BitConverter.GetBytes(pkm.EncryptionConstant).CopyTo(SAV.Data, PokeDex + 0x8E8 + (shift * 4));
|
|
SAV.Data[PokeDex + 0x84] |= (byte)(1 << shift);
|
|
}
|
|
}
|
|
|
|
// Dex Flags
|
|
public bool NationalDex
|
|
{
|
|
get => (SAV.Data[PokeDex + 4] & 1) == 1;
|
|
set => SAV.Data[PokeDex + 4] = (byte)((SAV.Data[PokeDex + 4] & 0xFE) | (value ? 1 : 0));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the last viewed dex entry in the Pokedex (by National Dex ID), internally called DefaultMons
|
|
/// </summary>
|
|
public uint CurrentViewedDex => BitConverter.ToUInt32(SAV.Data, PokeDex + 4) >> 9 & 0x3FF;
|
|
|
|
public IEnumerable<int> GetAllFormEntries(int spec)
|
|
{
|
|
var fc = SAV.Personal[spec].FormeCount;
|
|
for (int j = 1; j < fc; j++)
|
|
{
|
|
int start = j;
|
|
int end = j;
|
|
if (GetSaneFormsToIterate(spec, out int s, out int n, j))
|
|
{
|
|
start = s;
|
|
end = n;
|
|
}
|
|
start = Math.Max(1, start);
|
|
for (int f = start; f <= end; f++)
|
|
{
|
|
int x = GetDexFormIndex(spec, fc, f);
|
|
if (x >= 0)
|
|
yield return x;
|
|
}
|
|
}
|
|
}
|
|
|
|
public int GetDexFormIndex(int spec, int fc, int f)
|
|
{
|
|
var index = DexFormIndexFetcher(spec, fc, f);
|
|
if (index < 0)
|
|
return index;
|
|
return index + SAV.MaxSpeciesID - 1;
|
|
}
|
|
|
|
public IList<string> GetEntryNames(IReadOnlyList<string> Species)
|
|
{
|
|
var names = new List<string>();
|
|
var max = SAV.MaxSpeciesID;
|
|
for (int i = 1; i <= max; i++)
|
|
names.Add($"{i:000} - {Species[i]}");
|
|
|
|
// Add Formes
|
|
int ctr = max + 1;
|
|
for (int spec = 1; spec <= max; spec++)
|
|
{
|
|
int c = SAV.Personal[spec].FormeCount;
|
|
for (int f = 1; f < c; f++)
|
|
{
|
|
int x = GetDexFormIndex(spec, c, f);
|
|
if (x >= 0)
|
|
names.Add($"{ctr++:000} - {Species[spec]}-{f}");
|
|
}
|
|
}
|
|
return names;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a list of Species IDs that a given dex-forme index corresponds to.
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
private List<int> GetFormIndexBaseSpeciesList()
|
|
{
|
|
var baseSpecies = new List<int>();
|
|
for (int spec = 1; spec <= SAV.MaxSpeciesID; spec++)
|
|
{
|
|
int c = SAV.Personal[spec].FormeCount;
|
|
for (int f = 1; f < c; f++)
|
|
{
|
|
int x = GetDexFormIndex(spec, c, f);
|
|
if (x >= 0)
|
|
baseSpecies.Add(spec);
|
|
}
|
|
}
|
|
return baseSpecies;
|
|
}
|
|
|
|
public int GetBaseSpeciesGenderValue(int index)
|
|
{
|
|
// meowstic special handling
|
|
const int meow = 678;
|
|
if (index == meow - 1 || (index >= SAV.MaxSpeciesID && FormBaseSpecies[index - SAV.MaxSpeciesID] == meow))
|
|
return index < SAV.MaxSpeciesID ? 0 : 254; // M : F
|
|
|
|
if (index < SAV.MaxSpeciesID)
|
|
return SAV.Personal[index + 1].Gender;
|
|
|
|
index -= SAV.MaxSpeciesID;
|
|
int spec = FormBaseSpecies[index];
|
|
return SAV.Personal[spec].Gender;
|
|
}
|
|
|
|
public int GetBaseSpecies(int index)
|
|
{
|
|
if (index <= SAV.MaxSpeciesID)
|
|
return index;
|
|
|
|
return FormBaseSpecies[index - SAV.MaxSpeciesID - 1];
|
|
}
|
|
|
|
protected sealed override void SetAllDexFlagsLanguage(int bit, int lang, bool value = true)
|
|
{
|
|
lang = GetDexLangFlag(lang);
|
|
if (lang < 0)
|
|
return;
|
|
|
|
int lbit = (bit * DexLangIDCount) + lang;
|
|
if (lbit < DexLangFlagByteCount << 3) // Sanity check for max length of region
|
|
SetFlag(PokeDexLanguageFlags, lbit, value);
|
|
}
|
|
|
|
public bool[] GetLanguageBitflags(int species)
|
|
{
|
|
var result = new bool[DexLangIDCount];
|
|
int bit = species - 1;
|
|
for (int i = 0; i < DexLangIDCount; i++)
|
|
{
|
|
int lbit = (bit * DexLangIDCount) + i;
|
|
result[i] = GetFlag(PokeDexLanguageFlags, lbit);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
public void SetLanguageBitflags(int species, bool[] value)
|
|
{
|
|
int bit = species - 1;
|
|
for (int i = 0; i < DexLangIDCount; i++)
|
|
{
|
|
int lbit = (bit * DexLangIDCount) + i;
|
|
SetFlag(PokeDexLanguageFlags, lbit, value[i]);
|
|
}
|
|
}
|
|
|
|
public void ToggleLanguageFlagsAll(bool value)
|
|
{
|
|
var arr = GetBlankLanguageBits(value);
|
|
for (int i = 1; i <= SAV.MaxSpeciesID; i++)
|
|
SetLanguageBitflags(i, arr);
|
|
}
|
|
|
|
public void ToggleLanguageFlagsSingle(int species, bool value)
|
|
{
|
|
var arr = GetBlankLanguageBits(value);
|
|
SetLanguageBitflags(species, arr);
|
|
}
|
|
|
|
private bool[] GetBlankLanguageBits(bool value)
|
|
{
|
|
var result = new bool[DexLangIDCount];
|
|
for (int i = 0; i < DexLangIDCount; i++)
|
|
result[i] = value;
|
|
return result;
|
|
}
|
|
}
|
|
} |