2016-11-08 16:43:57 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
2017-01-08 07:54:09 +00:00
|
|
|
|
namespace PKHeX.Core
|
2016-11-08 16:43:57 +00:00
|
|
|
|
{
|
|
|
|
|
public class EvolutionTree
|
|
|
|
|
{
|
|
|
|
|
private List<EvolutionSet> Entries { get; } = new List<EvolutionSet>();
|
2016-11-17 16:36:45 +00:00
|
|
|
|
private readonly EvolutionLineage[] Lineage;
|
2016-11-15 02:25:08 +00:00
|
|
|
|
private readonly GameVersion Game;
|
2016-11-08 16:43:57 +00:00
|
|
|
|
private readonly PersonalTable Personal;
|
2017-01-29 17:26:40 +00:00
|
|
|
|
private readonly int MaxSpeciesTree;
|
2016-11-08 16:43:57 +00:00
|
|
|
|
|
2017-01-29 17:26:40 +00:00
|
|
|
|
public EvolutionTree(byte[][] data, GameVersion game, PersonalTable personal, int maxSpeciesTree)
|
2016-11-08 16:43:57 +00:00
|
|
|
|
{
|
2016-11-15 02:25:08 +00:00
|
|
|
|
Game = game;
|
2016-11-08 16:43:57 +00:00
|
|
|
|
Personal = personal;
|
2017-01-29 17:26:40 +00:00
|
|
|
|
MaxSpeciesTree = maxSpeciesTree;
|
2016-11-08 16:43:57 +00:00
|
|
|
|
switch (game)
|
|
|
|
|
{
|
2017-02-11 23:20:44 +00:00
|
|
|
|
case GameVersion.RBY:
|
2017-06-18 01:37:19 +00:00
|
|
|
|
Entries = EvolutionSet1.GetArray(data[0], maxSpeciesTree);
|
2017-02-25 20:37:01 +00:00
|
|
|
|
break;
|
|
|
|
|
case GameVersion.GSC:
|
2017-06-18 01:37:19 +00:00
|
|
|
|
Entries = EvolutionSet2.GetArray(data[0], maxSpeciesTree);
|
2016-11-08 16:43:57 +00:00
|
|
|
|
break;
|
2017-03-19 12:33:20 +00:00
|
|
|
|
case GameVersion.RS:
|
2017-06-18 01:37:19 +00:00
|
|
|
|
Entries = EvolutionSet3.GetArray(data[0]);
|
2017-03-19 12:27:23 +00:00
|
|
|
|
break;
|
2017-03-19 12:33:20 +00:00
|
|
|
|
case GameVersion.DP:
|
2017-06-18 01:37:19 +00:00
|
|
|
|
Entries = EvolutionSet4.GetArray(data[0]);
|
2017-03-19 12:27:23 +00:00
|
|
|
|
break;
|
2017-03-19 12:33:20 +00:00
|
|
|
|
case GameVersion.BW:
|
2017-06-18 01:37:19 +00:00
|
|
|
|
Entries = EvolutionSet5.GetArray(data[0]);
|
2017-03-19 12:27:23 +00:00
|
|
|
|
break;
|
2016-11-08 16:43:57 +00:00
|
|
|
|
case GameVersion.ORAS:
|
|
|
|
|
Entries.AddRange(data.Select(d => new EvolutionSet6(d)));
|
|
|
|
|
break;
|
2017-02-11 23:20:44 +00:00
|
|
|
|
case GameVersion.SM:
|
|
|
|
|
Entries.AddRange(data.Select(d => new EvolutionSet7(d)));
|
|
|
|
|
break;
|
2016-11-08 16:43:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Create Lineages
|
|
|
|
|
Lineage = new EvolutionLineage[Entries.Count];
|
|
|
|
|
for (int i = 0; i < Entries.Count; i++)
|
|
|
|
|
Lineage[i] = new EvolutionLineage();
|
2016-11-17 16:36:45 +00:00
|
|
|
|
if (Game == GameVersion.ORAS)
|
2017-02-11 23:20:44 +00:00
|
|
|
|
Array.Resize(ref Lineage, MaxSpeciesTree + 1);
|
2016-11-08 16:43:57 +00:00
|
|
|
|
|
|
|
|
|
// Populate Lineages
|
|
|
|
|
for (int i = 1; i < Lineage.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
// Iterate over all possible evolutions
|
|
|
|
|
var s = Entries[i];
|
|
|
|
|
foreach (EvolutionMethod evo in s.PossibleEvolutions)
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
int index = GetIndex(evo);
|
2016-11-08 16:43:57 +00:00
|
|
|
|
if (index < 0)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
var sourceEvo = evo.Copy(i);
|
|
|
|
|
|
|
|
|
|
Lineage[index].Insert(sourceEvo);
|
|
|
|
|
// If current entries has a pre-evolution, propagate to evolution as well
|
|
|
|
|
if (Lineage[i].Chain.Count > 0)
|
|
|
|
|
Lineage[index].Insert(Lineage[i].Chain[0]);
|
|
|
|
|
|
|
|
|
|
if (index >= i) continue;
|
|
|
|
|
// If destination species evolves into something (ie a 'baby' Pokemon like Cleffa)
|
|
|
|
|
// Add it to the corresponding parent chains
|
|
|
|
|
foreach (EvolutionMethod mid in Entries[index].PossibleEvolutions)
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
int newIndex = GetIndex(mid);
|
2016-11-08 16:43:57 +00:00
|
|
|
|
if (newIndex < 0)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
Lineage[newIndex].Insert(sourceEvo);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
FixEvoTreeManually();
|
2016-11-15 02:25:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// There's always oddballs.
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void FixEvoTreeManually()
|
2016-11-15 02:25:08 +00:00
|
|
|
|
{
|
2017-06-17 01:45:26 +00:00
|
|
|
|
if (Game == GameVersion.SM)
|
2017-06-18 01:37:19 +00:00
|
|
|
|
FixEvoTreeSM();
|
2016-11-15 02:25:08 +00:00
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void FixEvoTreeSM()
|
2016-11-15 02:25:08 +00:00
|
|
|
|
{
|
2017-02-02 06:19:37 +00:00
|
|
|
|
// Wormadam -- Copy Burmy 0 to Wormadam-1/2
|
2017-06-18 01:37:19 +00:00
|
|
|
|
Lineage[Personal.GetFormeIndex(413, 1)].Chain.Insert(0, Lineage[413].Chain[0]);
|
|
|
|
|
Lineage[Personal.GetFormeIndex(413, 2)].Chain.Insert(0, Lineage[413].Chain[0]);
|
2017-02-02 06:19:37 +00:00
|
|
|
|
|
2016-11-15 02:25:08 +00:00
|
|
|
|
// Shellos -- Move Shellos-1 evo from Gastrodon-0 to Gastrodon-1
|
2017-06-18 01:37:19 +00:00
|
|
|
|
Lineage[Personal.GetFormeIndex(422 + 1, 1)].Chain.Insert(0, Lineage[422 + 1].Chain[0]);
|
2016-11-15 02:25:08 +00:00
|
|
|
|
Lineage[422+1].Chain.RemoveAt(0);
|
|
|
|
|
|
2017-06-11 00:36:33 +00:00
|
|
|
|
// Meowstic -- Meowstic-1 (F) should point back to Espurr, copy Meowstic-0 (M)
|
2017-06-18 01:37:19 +00:00
|
|
|
|
Lineage[Personal.GetFormeIndex(678, 1)].Chain.Insert(0, Lineage[678].Chain[0]);
|
2017-06-11 00:36:33 +00:00
|
|
|
|
|
|
|
|
|
// Floette doesn't contain evo info for forms 1-4, copy. Florges points to form 0, no fix needed.
|
|
|
|
|
var fbb = Lineage[669+1].Chain[0];
|
|
|
|
|
for (int i = 1; i <= 4; i++) // NOT AZ
|
2017-06-18 01:37:19 +00:00
|
|
|
|
Lineage[Personal.GetFormeIndex(669+1, i)].Chain.Insert(0, fbb);
|
2017-06-17 01:45:26 +00:00
|
|
|
|
// Clear forme chains from Florges
|
|
|
|
|
Lineage[671].Chain.RemoveRange(0, Lineage[671].Chain.Count - 2);
|
2017-06-11 00:36:33 +00:00
|
|
|
|
|
2016-11-15 02:25:08 +00:00
|
|
|
|
// Gourgeist -- Sizes are still relevant. Formes are in reverse order.
|
|
|
|
|
for (int i = 1; i <= 3; i++)
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
Lineage[Personal.GetFormeIndex(711, i)].Chain.Clear();
|
|
|
|
|
Lineage[Personal.GetFormeIndex(711, i)].Chain.Add(Lineage[711].Chain[3-i]);
|
2016-11-15 02:25:08 +00:00
|
|
|
|
}
|
|
|
|
|
Lineage[711].Chain.RemoveRange(0, 3);
|
2016-11-15 05:44:55 +00:00
|
|
|
|
|
|
|
|
|
// Add past gen evolutions for other Marowak and Exeggutor
|
2017-06-18 01:37:19 +00:00
|
|
|
|
var raichu1 = Lineage[Personal.GetFormeIndex(26, 1)];
|
2017-01-27 13:34:27 +00:00
|
|
|
|
var evo1 = raichu1.Chain[0].StageEntryMethods[0].Copy();
|
|
|
|
|
Lineage[26].Chain.Add(new EvolutionStage { StageEntryMethods = new List<EvolutionMethod> { evo1 } });
|
|
|
|
|
var evo2 = raichu1.Chain[1].StageEntryMethods[0].Copy();
|
|
|
|
|
evo2.Form = -1; evo2.Banlist = new[] { GameVersion.SN, GameVersion.MN };
|
|
|
|
|
Lineage[26].Chain.Add(new EvolutionStage { StageEntryMethods = new List<EvolutionMethod> { evo2 } });
|
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
var exegg = Lineage[Personal.GetFormeIndex(103, 1)].Chain[0].StageEntryMethods[0].Copy();
|
2017-06-17 01:45:26 +00:00
|
|
|
|
exegg.Form = -1; exegg.Banlist = new[] { GameVersion.SN, GameVersion.MN }; exegg.Method = 8; // No night required (doesn't matter)
|
2016-11-15 05:44:55 +00:00
|
|
|
|
Lineage[103].Chain.Add(new EvolutionStage { StageEntryMethods = new List<EvolutionMethod> { exegg } });
|
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
var marowak = Lineage[Personal.GetFormeIndex(105, 1)].Chain[0].StageEntryMethods[0].Copy();
|
2016-11-15 05:44:55 +00:00
|
|
|
|
marowak.Form = -1; marowak.Banlist = new[] {GameVersion.SN, GameVersion.MN};
|
|
|
|
|
Lineage[105].Chain.Add(new EvolutionStage { StageEntryMethods = new List<EvolutionMethod> { marowak } });
|
2016-11-15 02:25:08 +00:00
|
|
|
|
}
|
2016-11-08 16:43:57 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private int GetIndex(PKM pkm)
|
2016-11-08 16:43:57 +00:00
|
|
|
|
{
|
|
|
|
|
if (pkm.Format < 7)
|
|
|
|
|
return pkm.Species;
|
2017-06-18 01:37:19 +00:00
|
|
|
|
return Personal.GetFormeIndex(pkm.Species, pkm.AltForm);
|
2016-11-08 16:43:57 +00:00
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private int GetIndex(EvolutionMethod evo)
|
2016-11-08 16:43:57 +00:00
|
|
|
|
{
|
|
|
|
|
int evolvesToSpecies = evo.Species;
|
|
|
|
|
if (evolvesToSpecies == 0)
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
if (Personal == null)
|
|
|
|
|
return evolvesToSpecies;
|
|
|
|
|
|
|
|
|
|
int evolvesToForm = evo.Form;
|
|
|
|
|
if (evolvesToForm < 0)
|
|
|
|
|
evolvesToForm = 0;
|
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
return Personal.GetFormeIndex(evolvesToSpecies, evolvesToForm);
|
2016-11-08 16:43:57 +00:00
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public IEnumerable<DexLevel> GetValidPreEvolutions(PKM pkm, int lvl, int maxSpeciesOrigin = -1, bool skipChecks = false)
|
2016-11-08 16:43:57 +00:00
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
int index = GetIndex(pkm);
|
2017-04-15 02:55:40 +00:00
|
|
|
|
if (maxSpeciesOrigin <= 0)
|
2017-06-18 01:37:19 +00:00
|
|
|
|
maxSpeciesOrigin = Legal.GetMaxSpeciesOrigin(pkm);
|
|
|
|
|
return Lineage[index].GetExplicitLineage(pkm, lvl, skipChecks, MaxSpeciesTree, maxSpeciesOrigin);
|
2016-11-08 16:43:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public abstract class EvolutionSet
|
|
|
|
|
{
|
|
|
|
|
public EvolutionMethod[] PossibleEvolutions;
|
|
|
|
|
}
|
2017-02-11 23:20:44 +00:00
|
|
|
|
public class EvolutionSet1 : EvolutionSet
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private static EvolutionMethod GetMethod(byte[] data, ref int offset)
|
2017-02-11 23:20:44 +00:00
|
|
|
|
{
|
|
|
|
|
switch (data[offset])
|
|
|
|
|
{
|
|
|
|
|
case 1: // Level
|
|
|
|
|
var m1 = new EvolutionMethod
|
|
|
|
|
{
|
2017-02-25 20:37:01 +00:00
|
|
|
|
Method = 1, // Level Up
|
2017-02-11 23:20:44 +00:00
|
|
|
|
Level = data[offset + 1],
|
|
|
|
|
Species = data[offset + 2]
|
|
|
|
|
};
|
|
|
|
|
offset += 3;
|
|
|
|
|
return m1;
|
|
|
|
|
case 2: // Use Item
|
|
|
|
|
var m2 = new EvolutionMethod
|
|
|
|
|
{
|
|
|
|
|
Method = 8, // Use Item
|
|
|
|
|
Argument = data[offset + 1],
|
|
|
|
|
// 1
|
|
|
|
|
Species = data[offset + 3],
|
|
|
|
|
};
|
|
|
|
|
offset += 4;
|
|
|
|
|
return m2;
|
|
|
|
|
case 3: // Trade
|
|
|
|
|
var m3 = new EvolutionMethod
|
|
|
|
|
{
|
|
|
|
|
Method = 5, // Trade
|
|
|
|
|
// 1
|
|
|
|
|
Species = data[offset + 2]
|
|
|
|
|
};
|
|
|
|
|
offset += 3;
|
|
|
|
|
return m3;
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public static List<EvolutionSet> GetArray(byte[] data, int maxSpecies)
|
2017-02-11 23:20:44 +00:00
|
|
|
|
{
|
|
|
|
|
var evos = new List<EvolutionSet>();
|
|
|
|
|
int offset = 0;
|
2017-02-25 20:37:01 +00:00
|
|
|
|
for (int i = 0; i <= maxSpecies; i++)
|
2017-02-11 23:20:44 +00:00
|
|
|
|
{
|
|
|
|
|
var m = new List<EvolutionMethod>();
|
|
|
|
|
while (data[offset] != 0)
|
2017-06-18 01:37:19 +00:00
|
|
|
|
m.Add(GetMethod(data, ref offset));
|
2017-02-11 23:20:44 +00:00
|
|
|
|
++offset;
|
|
|
|
|
evos.Add(new EvolutionSet1 { PossibleEvolutions = m.ToArray() });
|
|
|
|
|
}
|
|
|
|
|
return evos;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-02-25 20:37:01 +00:00
|
|
|
|
public class EvolutionSet2 : EvolutionSet
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private static EvolutionMethod GetMethod(byte[] data, ref int offset)
|
2017-02-25 20:37:01 +00:00
|
|
|
|
{
|
|
|
|
|
int method = data[offset];
|
|
|
|
|
int arg = data[offset + 1];
|
|
|
|
|
int species = data[offset + 2];
|
|
|
|
|
offset += 3;
|
|
|
|
|
|
|
|
|
|
switch (method)
|
|
|
|
|
{
|
|
|
|
|
case 1: /* Level Up */ return new EvolutionMethod { Method = 1, Species = species, Level = arg };
|
|
|
|
|
case 2: /* Use Item */ return new EvolutionMethod { Method = 8, Species = species, Argument = arg };
|
|
|
|
|
case 3: /* Trade */ return new EvolutionMethod { Method = 5, Species = species };
|
|
|
|
|
case 4: /*Friendship*/ return new EvolutionMethod { Method = 1, Species = species };
|
|
|
|
|
case 5: /* Stats */
|
|
|
|
|
// species is currently stat ID, we don't care about evo type as stats can be changed after evo
|
|
|
|
|
return new EvolutionMethod { Method = 1, Species = data[offset++], Level = arg }; // Tyrogue stats
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public static List<EvolutionSet> GetArray(byte[] data, int maxSpecies)
|
2017-02-25 20:37:01 +00:00
|
|
|
|
{
|
|
|
|
|
var evos = new List<EvolutionSet>();
|
|
|
|
|
int offset = 0;
|
|
|
|
|
for (int i = 0; i <= maxSpecies; i++)
|
|
|
|
|
{
|
|
|
|
|
var m = new List<EvolutionMethod>();
|
|
|
|
|
while (data[offset] != 0)
|
2017-06-18 01:37:19 +00:00
|
|
|
|
m.Add(GetMethod(data, ref offset));
|
2017-02-25 20:37:01 +00:00
|
|
|
|
++offset;
|
|
|
|
|
evos.Add(new EvolutionSet2 { PossibleEvolutions = m.ToArray() });
|
|
|
|
|
}
|
|
|
|
|
return evos;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-19 12:27:23 +00:00
|
|
|
|
public class EvolutionSet3 : EvolutionSet
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private static EvolutionMethod GetMethod(byte[] data, int offset)
|
2017-03-19 12:27:23 +00:00
|
|
|
|
{
|
|
|
|
|
int method = BitConverter.ToUInt16(data, offset + 0);
|
|
|
|
|
int arg = BitConverter.ToUInt16(data, offset + 2);
|
2017-06-18 01:37:19 +00:00
|
|
|
|
int species = PKX.GetG4Species(BitConverter.ToUInt16(data, offset + 4));
|
2017-03-19 12:27:23 +00:00
|
|
|
|
//2 bytes padding
|
|
|
|
|
|
|
|
|
|
switch (method)
|
|
|
|
|
{
|
|
|
|
|
case 1: /* Friendship*/
|
|
|
|
|
case 2: /* Friendship day*/
|
|
|
|
|
case 3: /* Friendship night*/
|
|
|
|
|
case 5: /* Trade */
|
|
|
|
|
case 6: /* Trade while holding */
|
|
|
|
|
return new EvolutionMethod { Method = method, Species = species, Argument = arg };
|
|
|
|
|
case 4: /* Level Up */
|
|
|
|
|
return new EvolutionMethod { Method = 4, Species = species, Level = arg, Argument = arg };
|
|
|
|
|
case 7: /* Use item */
|
|
|
|
|
case 15: /* Beauty evolution*/
|
|
|
|
|
return new EvolutionMethod { Method = method + 1, Species = species, Argument = arg };
|
|
|
|
|
case 8: /* Tyrogue -> Hitmonchan */
|
|
|
|
|
case 9: /* Tyrogue -> Hitmonlee */
|
|
|
|
|
case 10: /* Tyrogue -> Hitmontop*/
|
|
|
|
|
case 11: /* Wurmple -> Silcoon evolution */
|
|
|
|
|
case 12: /* Wurmple -> Cascoon evolution */
|
|
|
|
|
case 13: /* Nincada -> Ninjask evolution */
|
|
|
|
|
case 14: /* Shedinja spawn in Nincada -> Ninjask evolution */
|
|
|
|
|
return new EvolutionMethod { Method = method + 1, Species = species, Level = arg, Argument = arg };
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public static List<EvolutionSet> GetArray(byte[] data)
|
2017-03-19 12:27:23 +00:00
|
|
|
|
{
|
|
|
|
|
EvolutionSet[] evos = new EvolutionSet[Legal.MaxSpeciesID_3 + 1];
|
|
|
|
|
evos[0] = new EvolutionSet3 { PossibleEvolutions = new EvolutionMethod[0] };
|
|
|
|
|
for (int i = 0; i <= Legal.MaxSpeciesIndex_3; i++)
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
int g4species = PKX.GetG4Species(i);
|
2017-03-19 12:27:23 +00:00
|
|
|
|
if (g4species == 0)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
int offset = i * 40;
|
|
|
|
|
var m_list = new List<EvolutionMethod>();
|
|
|
|
|
for (int j = 0; j < 5; j++)
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
EvolutionMethod m = GetMethod(data, offset);
|
2017-04-15 02:55:40 +00:00
|
|
|
|
if (m != null)
|
2017-03-19 12:27:23 +00:00
|
|
|
|
m_list.Add(m);
|
|
|
|
|
else
|
|
|
|
|
break;
|
|
|
|
|
offset += 8;
|
|
|
|
|
}
|
|
|
|
|
evos[g4species] = new EvolutionSet3 { PossibleEvolutions = m_list.ToArray() };
|
|
|
|
|
}
|
|
|
|
|
return evos.ToList();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public class EvolutionSet4 : EvolutionSet
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private static EvolutionMethod GetMethod(byte[] data, int offset)
|
2017-03-19 12:27:23 +00:00
|
|
|
|
{
|
|
|
|
|
int[] argEvos = { 6, 8, 16, 17, 18, 19, 20, 21, 22 };
|
|
|
|
|
int method = BitConverter.ToUInt16(data, offset + 0);
|
|
|
|
|
int arg = BitConverter.ToUInt16(data, offset + 2);
|
|
|
|
|
int species = BitConverter.ToUInt16(data, offset + 4);
|
|
|
|
|
|
|
|
|
|
if (method == 0)
|
|
|
|
|
return null;
|
|
|
|
|
// To have the same estructure as gen 6
|
|
|
|
|
// Gen 4 Method 6 is Gen 6 Method 7, G4 7 = G6 8, and so on
|
|
|
|
|
if (method > 6)
|
|
|
|
|
method++;
|
|
|
|
|
|
|
|
|
|
var evo = new EvolutionMethod
|
|
|
|
|
{
|
|
|
|
|
Method = method,
|
|
|
|
|
Argument = arg,
|
|
|
|
|
Species = species,
|
|
|
|
|
Level = arg,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (argEvos.Contains(evo.Method))
|
|
|
|
|
evo.Level = 0;
|
|
|
|
|
return evo;
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public static List<EvolutionSet> GetArray(byte[] data)
|
2017-03-19 12:27:23 +00:00
|
|
|
|
{
|
|
|
|
|
var evos = new List<EvolutionSet>();
|
|
|
|
|
for (int i = 0; i <= Legal.MaxSpeciesIndex_4_HGSSPt; i++)
|
|
|
|
|
{
|
|
|
|
|
/* 44 bytes per species,
|
|
|
|
|
* for every species 7 evolutions with 6 bytes per evolution,
|
|
|
|
|
* last 2 bytes of every specie is padding*/
|
|
|
|
|
int offset = i * 44;
|
|
|
|
|
var m_list = new List<EvolutionMethod>();
|
|
|
|
|
for (int j = 0; j < 7; j++)
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
EvolutionMethod m = GetMethod(data, offset);
|
2017-03-19 12:27:23 +00:00
|
|
|
|
if (m != null)
|
|
|
|
|
m_list.Add(m);
|
|
|
|
|
else
|
|
|
|
|
break;
|
|
|
|
|
offset += 6;
|
|
|
|
|
}
|
|
|
|
|
evos.Add(new EvolutionSet4 { PossibleEvolutions = m_list.ToArray() });
|
|
|
|
|
}
|
2017-07-21 02:34:41 +00:00
|
|
|
|
return evos;
|
2017-03-19 12:27:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public class EvolutionSet5 : EvolutionSet
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private static EvolutionMethod GetMethod(byte[] data, int offset)
|
2017-03-19 12:27:23 +00:00
|
|
|
|
{
|
|
|
|
|
int[] argEvos = { 6, 8, 16, 17, 18, 19, 20, 21, 22 };
|
|
|
|
|
int method = BitConverter.ToUInt16(data, offset + 0);
|
|
|
|
|
int arg = BitConverter.ToUInt16(data, offset + 2);
|
|
|
|
|
int species = BitConverter.ToUInt16(data, offset + 4);
|
|
|
|
|
|
|
|
|
|
if (method == 0)
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
var evo = new EvolutionMethod
|
|
|
|
|
{
|
|
|
|
|
Method = method,
|
|
|
|
|
Argument = arg,
|
|
|
|
|
Species = species,
|
|
|
|
|
Level = arg,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (argEvos.Contains(evo.Method))
|
|
|
|
|
evo.Level = 0;
|
|
|
|
|
return evo;
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public static List<EvolutionSet> GetArray(byte[] data)
|
2017-03-19 12:27:23 +00:00
|
|
|
|
{
|
|
|
|
|
var evos = new List<EvolutionSet>();
|
|
|
|
|
for (int i = 0; i <= Legal.MaxSpeciesIndex_5_B2W2; i++)
|
|
|
|
|
{
|
|
|
|
|
/* 42 bytes per species,
|
|
|
|
|
* for every species 7 evolutions with 6 bytes per evolution*/
|
|
|
|
|
int offset = i * 42;
|
|
|
|
|
var m_list = new List<EvolutionMethod>();
|
|
|
|
|
for (int j = 0; j < 7; j++)
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
EvolutionMethod m = GetMethod(data, offset);
|
2017-03-19 12:27:23 +00:00
|
|
|
|
if (m != null)
|
|
|
|
|
m_list.Add(m);
|
|
|
|
|
else
|
|
|
|
|
break;
|
|
|
|
|
offset += 6;
|
|
|
|
|
}
|
|
|
|
|
evos.Add(new EvolutionSet5 { PossibleEvolutions = m_list.ToArray() });
|
|
|
|
|
}
|
2017-07-21 02:34:41 +00:00
|
|
|
|
return evos;
|
2017-03-19 12:27:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-08 16:43:57 +00:00
|
|
|
|
public class EvolutionSet6 : EvolutionSet
|
|
|
|
|
{
|
2017-07-21 02:34:41 +00:00
|
|
|
|
private static readonly HashSet<int> argEvos = new HashSet<int> {6, 8, 16, 17, 18, 19, 20, 21, 22, 29, 30, 32, 33, 34};
|
2016-11-08 16:43:57 +00:00
|
|
|
|
private const int SIZE = 6;
|
|
|
|
|
public EvolutionSet6(byte[] data)
|
|
|
|
|
{
|
|
|
|
|
PossibleEvolutions = new EvolutionMethod[data.Length / SIZE];
|
|
|
|
|
for (int i = 0; i < data.Length; i += SIZE)
|
|
|
|
|
{
|
2017-02-11 23:20:44 +00:00
|
|
|
|
var evo = new EvolutionMethod
|
2016-11-08 16:43:57 +00:00
|
|
|
|
{
|
|
|
|
|
Method = BitConverter.ToUInt16(data, i + 0),
|
|
|
|
|
Argument = BitConverter.ToUInt16(data, i + 2),
|
|
|
|
|
Species = BitConverter.ToUInt16(data, i + 4),
|
|
|
|
|
|
|
|
|
|
// Copy
|
|
|
|
|
Level = BitConverter.ToUInt16(data, i + 2),
|
|
|
|
|
};
|
2016-11-17 16:36:45 +00:00
|
|
|
|
|
|
|
|
|
// Argument is used by both Level argument and Item/Move/etc. Clear if appropriate.
|
2017-02-11 23:20:44 +00:00
|
|
|
|
if (argEvos.Contains(evo.Method))
|
|
|
|
|
evo.Level = 0;
|
|
|
|
|
|
|
|
|
|
PossibleEvolutions[i/SIZE] = evo;
|
2016-11-08 16:43:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public class EvolutionSet7 : EvolutionSet
|
|
|
|
|
{
|
|
|
|
|
private const int SIZE = 8;
|
|
|
|
|
public EvolutionSet7(byte[] data)
|
|
|
|
|
{
|
|
|
|
|
PossibleEvolutions = new EvolutionMethod[data.Length / SIZE];
|
|
|
|
|
for (int i = 0; i < data.Length; i += SIZE)
|
|
|
|
|
{
|
|
|
|
|
PossibleEvolutions[i / SIZE] = new EvolutionMethod
|
|
|
|
|
{
|
|
|
|
|
Method = BitConverter.ToUInt16(data, i + 0),
|
|
|
|
|
Argument = BitConverter.ToUInt16(data, i + 2),
|
|
|
|
|
Species = BitConverter.ToUInt16(data, i + 4),
|
|
|
|
|
Form = (sbyte)data[i + 6],
|
|
|
|
|
Level = data[i + 7],
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public class EvolutionMethod
|
|
|
|
|
{
|
|
|
|
|
public int Method;
|
|
|
|
|
public int Species;
|
|
|
|
|
public int Argument;
|
|
|
|
|
public int Form = -1;
|
|
|
|
|
public int Level;
|
|
|
|
|
|
|
|
|
|
public bool RequiresLevelUp;
|
|
|
|
|
public static readonly int[] TradeMethods = {5, 6, 7};
|
2016-11-15 05:44:55 +00:00
|
|
|
|
public GameVersion[] Banlist = new GameVersion[0];
|
2016-11-08 16:43:57 +00:00
|
|
|
|
|
2016-12-03 04:26:35 +00:00
|
|
|
|
public bool Valid(PKM pkm, int lvl, bool skipChecks)
|
2016-11-08 16:43:57 +00:00
|
|
|
|
{
|
|
|
|
|
RequiresLevelUp = false;
|
|
|
|
|
if (Form > -1)
|
2017-01-27 13:34:27 +00:00
|
|
|
|
if (!skipChecks && pkm.AltForm != Form)
|
2016-11-08 16:43:57 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
2017-01-27 03:49:37 +00:00
|
|
|
|
if (!skipChecks && Banlist.Contains((GameVersion)pkm.Version))
|
2016-11-15 05:44:55 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
2016-11-08 16:43:57 +00:00
|
|
|
|
switch (Method)
|
|
|
|
|
{
|
|
|
|
|
case 8: // Use Item
|
|
|
|
|
return true;
|
2016-11-30 02:38:51 +00:00
|
|
|
|
case 17: // Male
|
|
|
|
|
return pkm.Gender == 0;
|
|
|
|
|
case 18: // Female
|
|
|
|
|
return pkm.Gender == 1;
|
2016-11-08 16:43:57 +00:00
|
|
|
|
|
|
|
|
|
case 5: // Trade Evolution
|
|
|
|
|
case 6: // Trade while Holding
|
|
|
|
|
case 7: // Trade for Opposite Species
|
2016-12-03 04:26:35 +00:00
|
|
|
|
return !pkm.IsUntraded || skipChecks;
|
2016-11-08 16:43:57 +00:00
|
|
|
|
|
|
|
|
|
// Special Levelup Cases
|
|
|
|
|
case 16:
|
2016-12-09 07:06:32 +00:00
|
|
|
|
if (pkm.CNT_Beauty < Argument)
|
2017-06-15 02:04:19 +00:00
|
|
|
|
return skipChecks;
|
2016-11-08 16:43:57 +00:00
|
|
|
|
goto default;
|
2016-11-12 02:01:46 +00:00
|
|
|
|
case 23: // Gender = Male
|
|
|
|
|
if (pkm.Gender != 0)
|
2016-11-08 16:43:57 +00:00
|
|
|
|
return false;
|
|
|
|
|
goto default;
|
2016-11-12 02:01:46 +00:00
|
|
|
|
case 24: // Gender = Female
|
|
|
|
|
if (pkm.Gender != 1)
|
2016-11-08 16:43:57 +00:00
|
|
|
|
return false;
|
|
|
|
|
goto default;
|
|
|
|
|
case 34: // Gender = Female, out Form1
|
|
|
|
|
if (pkm.Gender != 1 || pkm.AltForm != 1)
|
|
|
|
|
return false;
|
|
|
|
|
goto default;
|
|
|
|
|
|
|
|
|
|
case 36: // Any Time on Version
|
|
|
|
|
case 37: // Daytime on Version
|
|
|
|
|
case 38: // Nighttime on Version
|
2016-12-03 04:26:35 +00:00
|
|
|
|
if (pkm.Version != Argument && pkm.IsUntraded || skipChecks)
|
|
|
|
|
return skipChecks;
|
2016-11-08 16:43:57 +00:00
|
|
|
|
goto default;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
if (Level == 0 && lvl < 2)
|
|
|
|
|
return false;
|
|
|
|
|
if (lvl < Level)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
RequiresLevelUp = true;
|
|
|
|
|
|
|
|
|
|
// Check Met Level for extra validity
|
|
|
|
|
switch (pkm.GenNumber)
|
|
|
|
|
{
|
|
|
|
|
case 1: // No metdata in RBY
|
|
|
|
|
case 2: // No metdata in GS, Crystal metdata can be reset
|
|
|
|
|
return true;
|
|
|
|
|
case 3:
|
|
|
|
|
case 4:
|
|
|
|
|
if (pkm.Format > pkm.GenNumber) // Pal Park / PokeTransfer updates Met Level
|
|
|
|
|
return true;
|
2016-11-11 04:45:58 +00:00
|
|
|
|
return pkm.Met_Level < lvl;
|
2016-11-08 16:43:57 +00:00
|
|
|
|
|
|
|
|
|
case 5: // Bank keeps current level
|
|
|
|
|
case 6:
|
|
|
|
|
case 7:
|
2016-11-11 04:45:58 +00:00
|
|
|
|
return lvl >= Level && (!pkm.IsNative || pkm.Met_Level < lvl);
|
2016-11-08 16:43:57 +00:00
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-02-21 03:40:50 +00:00
|
|
|
|
|
2016-11-11 04:45:58 +00:00
|
|
|
|
public DexLevel GetDexLevel(int species, int lvl)
|
|
|
|
|
{
|
|
|
|
|
return new DexLevel
|
|
|
|
|
{
|
|
|
|
|
Species = species,
|
|
|
|
|
Level = lvl,
|
|
|
|
|
Form = Form,
|
|
|
|
|
Flag = Method,
|
|
|
|
|
};
|
|
|
|
|
}
|
2016-11-08 16:43:57 +00:00
|
|
|
|
|
2017-01-27 13:34:27 +00:00
|
|
|
|
public EvolutionMethod Copy(int species = -1)
|
2016-11-08 16:43:57 +00:00
|
|
|
|
{
|
2017-01-27 13:34:27 +00:00
|
|
|
|
if (species < 0)
|
|
|
|
|
species = Species;
|
2016-11-08 16:43:57 +00:00
|
|
|
|
return new EvolutionMethod
|
|
|
|
|
{
|
|
|
|
|
Method = Method,
|
|
|
|
|
Species = species,
|
|
|
|
|
Argument = Argument,
|
|
|
|
|
Form = Form,
|
|
|
|
|
Level = Level
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Informatics
|
|
|
|
|
public class EvolutionLineage
|
|
|
|
|
{
|
|
|
|
|
public readonly List<EvolutionStage> Chain = new List<EvolutionStage>();
|
|
|
|
|
|
|
|
|
|
public void Insert(EvolutionMethod entry)
|
|
|
|
|
{
|
|
|
|
|
int matchChain = -1;
|
|
|
|
|
for (int i = 0; i < Chain.Count; i++)
|
|
|
|
|
if (Chain[i].StageEntryMethods.Any(e => e.Species == entry.Species))
|
|
|
|
|
matchChain = i;
|
|
|
|
|
|
|
|
|
|
if (matchChain != -1)
|
|
|
|
|
Chain[matchChain].StageEntryMethods.Add(entry);
|
|
|
|
|
else
|
|
|
|
|
Chain.Insert(0, new EvolutionStage { StageEntryMethods = new List<EvolutionMethod> {entry}});
|
|
|
|
|
}
|
|
|
|
|
public void Insert(EvolutionStage evo)
|
|
|
|
|
{
|
|
|
|
|
Chain.Insert(0, evo);
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public IEnumerable<DexLevel> GetExplicitLineage(PKM pkm, int lvl, bool skipChecks, int maxSpeciesTree, int maxSpeciesOrigin)
|
2016-11-08 16:43:57 +00:00
|
|
|
|
{
|
|
|
|
|
List<DexLevel> dl = new List<DexLevel> { new DexLevel { Species = pkm.Species, Level = lvl, Form = pkm.AltForm } };
|
2017-05-17 04:09:53 +00:00
|
|
|
|
for (int i = Chain.Count - 1; i >= 0; i--) // reverse evolution!
|
2016-11-08 16:43:57 +00:00
|
|
|
|
{
|
2016-12-01 06:05:09 +00:00
|
|
|
|
bool oneValid = false;
|
2016-11-09 05:44:05 +00:00
|
|
|
|
foreach (var evo in Chain[i].StageEntryMethods)
|
2016-11-08 16:43:57 +00:00
|
|
|
|
{
|
2016-12-03 04:26:35 +00:00
|
|
|
|
if (!evo.Valid(pkm, lvl, skipChecks))
|
2016-11-08 16:43:57 +00:00
|
|
|
|
continue;
|
|
|
|
|
|
2016-12-01 06:05:09 +00:00
|
|
|
|
oneValid = true;
|
2017-06-18 01:37:19 +00:00
|
|
|
|
UpdateMinValues(dl, evo);
|
2017-01-29 17:26:40 +00:00
|
|
|
|
int species = evo.Species;
|
2016-11-11 04:45:58 +00:00
|
|
|
|
|
2017-01-29 17:26:40 +00:00
|
|
|
|
// Gen7 Personal Formes -- unmap the forme personal entry ID to the actual species ID since species are consecutive
|
|
|
|
|
if (evo.Species > maxSpeciesTree)
|
|
|
|
|
species = pkm.Species - Chain.Count + i;
|
|
|
|
|
|
2017-05-24 01:35:32 +00:00
|
|
|
|
dl.Add(evo.GetDexLevel(species, lvl));
|
2016-11-08 16:43:57 +00:00
|
|
|
|
if (evo.RequiresLevelUp)
|
|
|
|
|
lvl--;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2016-12-01 06:05:09 +00:00
|
|
|
|
if (!oneValid)
|
|
|
|
|
break;
|
2016-11-08 16:43:57 +00:00
|
|
|
|
}
|
2017-01-29 17:26:40 +00:00
|
|
|
|
|
|
|
|
|
// Remove future gen preevolutions, no munchlax in a gen3 snorlax, no pichu in a gen1 vc raichu, etc
|
|
|
|
|
if (dl.Any(d => d.Species <= maxSpeciesOrigin) && dl.Last().Species > maxSpeciesOrigin)
|
|
|
|
|
dl.RemoveAt(dl.Count - 1);
|
|
|
|
|
|
2017-02-21 03:40:50 +00:00
|
|
|
|
// Last species is the wild/hatched species, the minimum is 1 because it has not evolved from previous species
|
2017-02-15 20:21:23 +00:00
|
|
|
|
dl.Last().MinLevel = 1;
|
2017-02-15 21:01:39 +00:00
|
|
|
|
dl.Last().RequiresLvlUp = false;
|
2016-11-08 16:43:57 +00:00
|
|
|
|
return dl;
|
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private static void UpdateMinValues(IReadOnlyCollection<DexLevel> dl, EvolutionMethod evo)
|
2017-02-21 03:40:50 +00:00
|
|
|
|
{
|
|
|
|
|
var last = dl.Last();
|
|
|
|
|
if (evo.Level == 0) // Evolutions like elemental stones, trade, etc
|
|
|
|
|
{
|
|
|
|
|
if (!evo.RequiresLevelUp)
|
|
|
|
|
last.MinLevel = 1;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// Evolutions like frienship, pichu -> pikachu, eevee -> umbreon, etc
|
|
|
|
|
last.MinLevel = 2;
|
|
|
|
|
|
|
|
|
|
var first = dl.First();
|
|
|
|
|
if (dl.Count > 1 && !first.RequiresLvlUp)
|
|
|
|
|
first.MinLevel = 2; // Raichu from Pikachu would have minimum level 1, but with Pichu included Raichu minimum level is 2
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else // level up evolutions
|
|
|
|
|
{
|
|
|
|
|
last.MinLevel = evo.Level;
|
|
|
|
|
|
|
|
|
|
var first = dl.First();
|
|
|
|
|
if (dl.Count > 1)
|
|
|
|
|
{
|
|
|
|
|
if (first.MinLevel < evo.Level && !first.RequiresLvlUp)
|
|
|
|
|
first.MinLevel = evo.Level; // Pokemon like Nidoqueen, its minimum level is Nidorina minimum level
|
|
|
|
|
if (first.MinLevel <= evo.Level && first.RequiresLvlUp)
|
|
|
|
|
first.MinLevel = evo.Level + 1; // Pokemon like Crobat, its minimum level is Golbat minimum level + 1
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
last.RequiresLvlUp = evo.RequiresLevelUp;
|
|
|
|
|
}
|
2016-11-08 16:43:57 +00:00
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public struct EvolutionStage
|
2016-11-08 16:43:57 +00:00
|
|
|
|
{
|
|
|
|
|
public List<EvolutionMethod> StageEntryMethods;
|
|
|
|
|
}
|
|
|
|
|
}
|