2019-05-11 03:46:49 +00:00
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Decoration and logic for Met Location IDs
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static class Locations
|
|
|
|
|
{
|
|
|
|
|
public const int LinkTrade4 = 2002;
|
|
|
|
|
public const int LinkTrade5 = 30003;
|
|
|
|
|
public const int LinkTrade6 = 30002;
|
|
|
|
|
|
|
|
|
|
public const int Daycare4 = 2000;
|
|
|
|
|
public const int Daycare5 = 60002;
|
|
|
|
|
|
|
|
|
|
public const int LinkTrade2NPC = 126;
|
|
|
|
|
public const int LinkTrade3NPC = 254;
|
|
|
|
|
public const int LinkTrade4NPC = 2001;
|
|
|
|
|
public const int LinkTrade5NPC = 30002;
|
|
|
|
|
public const int LinkTrade6NPC = 30001;
|
|
|
|
|
|
Track a PKM's Box,Slot,StorageFlags,Identifier metadata separately (#3222)
* Track a PKM's Box,Slot,StorageFlags,Identifier metadata separately
Don't store within the object, track the slot origin data separately.
Batch editing now pre-filters if using Box/Slot/Identifier logic; split up mods/filters as they're starting to get pretty hefty.
- Requesting a Box Data report now shows all slots in the save file (party, misc)
- Can now exclude backup saves from database search via toggle (separate from settings preventing load entirely)
- Replace some linq usages with direct code
* Remove WasLink virtual in PKM
Inline any logic, since we now have encounter objects to indicate matching, rather than the proto-legality logic checking properties of a PKM.
* Use Fateful to directly check gen5 mysterygift origins
No other encounter types in gen5 apply Fateful
* Simplify double ball comparison
Used to be separate for deferral cases, now no longer needed to be separate.
* Grab move/relearn reference and update locally
Fix relearn move identifier
* Inline defog HM transfer preference check
HasMove is faster than getting moves & checking contains. Skips allocation by setting values directly.
* Extract more met location metadata checks: WasBredEgg
* Replace Console.Write* with Debug.Write*
There's no console output UI, so don't include them in release builds.
* Inline WasGiftEgg, WasEvent, and WasEventEgg logic
Adios legality tags that aren't entirely correct for the specific format. Just put the computations in EncounterFinder.
2021-06-23 03:23:48 +00:00
|
|
|
|
public const int Breeder5 = 60003;
|
|
|
|
|
public const int Breeder6 = 60004;
|
|
|
|
|
|
2019-05-11 03:46:49 +00:00
|
|
|
|
public const int PokeWalker4 = 233;
|
|
|
|
|
public const int Ranger4 = 3001;
|
|
|
|
|
public const int Faraway4 = 3002;
|
|
|
|
|
|
2019-09-23 23:56:47 +00:00
|
|
|
|
/// <summary> Goldenrod City in <see cref="GameVersion.C"/> </summary>
|
|
|
|
|
public const int HatchLocationC = 16;
|
|
|
|
|
|
|
|
|
|
/// <summary> Route 117 in <see cref="GameVersion.RSE"/> </summary>
|
|
|
|
|
public const int HatchLocationRSE = 32;
|
|
|
|
|
|
2021-04-12 22:43:21 +00:00
|
|
|
|
/// <summary> Four Island in <see cref="GameVersion.FRLG"/> </summary>
|
|
|
|
|
public const int HatchLocationFRLG = 146;
|
2019-09-23 23:56:47 +00:00
|
|
|
|
|
|
|
|
|
/// <summary> Solaceon Town in <see cref="GameVersion.DPPt"/> </summary>
|
|
|
|
|
public const int HatchLocationDPPt = 4;
|
|
|
|
|
|
|
|
|
|
/// <summary> Route 34 in <see cref="GameVersion.HGSS"/> </summary>
|
|
|
|
|
public const int HatchLocationHGSS = 182;
|
|
|
|
|
|
2020-02-10 20:52:55 +00:00
|
|
|
|
/// <summary> Skyarrow Bridge in <see cref="GameVersion.Gen5"/> </summary>
|
|
|
|
|
public const int HatchLocation5 = 64;
|
2019-09-23 23:56:47 +00:00
|
|
|
|
|
|
|
|
|
/// <summary> Route 7 in <see cref="GameVersion.XY"/> </summary>
|
|
|
|
|
public const int HatchLocation6XY = 38;
|
|
|
|
|
|
|
|
|
|
/// <summary> Battle Resort in <see cref="GameVersion.ORAS"/> </summary>
|
|
|
|
|
public const int HatchLocation6AO = 318;
|
|
|
|
|
|
2020-02-06 03:42:22 +00:00
|
|
|
|
/// <summary> Paniola Ranch in <see cref="GameVersion.Gen7"/> </summary>
|
|
|
|
|
public const int HatchLocation7 = 78;
|
2019-09-23 23:56:47 +00:00
|
|
|
|
|
2019-11-16 01:34:18 +00:00
|
|
|
|
/// <summary> Route 5 in <see cref="GameVersion.SWSH"/> </summary>
|
|
|
|
|
public const int HatchLocation8 = 40;
|
2019-09-23 23:56:47 +00:00
|
|
|
|
|
2020-09-05 19:11:43 +00:00
|
|
|
|
/// <summary> Generation 1 -> Generation 7 Transfer Location (Kanto) </summary>
|
|
|
|
|
public const int Transfer1 = 30013;
|
|
|
|
|
|
|
|
|
|
/// <summary> Generation 2 -> Generation 7 Transfer Location (Johto) </summary>
|
|
|
|
|
public const int Transfer2 = 30017;
|
|
|
|
|
|
2019-09-23 23:56:47 +00:00
|
|
|
|
/// <summary> Generation 3 -> Generation 4 Transfer Location (Pal Park) </summary>
|
2019-05-11 03:46:49 +00:00
|
|
|
|
public const int Transfer3 = 0x37;
|
|
|
|
|
|
|
|
|
|
/// <summary> Generation 4 -> Generation 5 Transfer Location (Poké Transporter) </summary>
|
|
|
|
|
public const int Transfer4 = 30001;
|
|
|
|
|
|
|
|
|
|
/// <summary> Generation 4 -> Generation 5 Transfer Location (Crown Celebi - Event not activated in Gen 5) </summary>
|
|
|
|
|
public const int Transfer4_CelebiUnused = 30010;
|
|
|
|
|
|
|
|
|
|
/// <summary> Generation 4 -> Generation 5 Transfer Location (Crown Celebi - Event activated in Gen 5) </summary>
|
|
|
|
|
public const int Transfer4_CelebiUsed = 30011;
|
|
|
|
|
|
|
|
|
|
/// <summary> Generation 4 -> Generation 5 Transfer Location (Crown Beast - Event not activated in Gen 5) </summary>
|
|
|
|
|
public const int Transfer4_CrownUnused = 30012;
|
|
|
|
|
|
|
|
|
|
/// <summary> Generation 4 -> Generation 5 Transfer Location (Crown Beast - Event activated in Gen 5) </summary>
|
|
|
|
|
public const int Transfer4_CrownUsed = 30013;
|
2019-09-23 23:56:47 +00:00
|
|
|
|
|
2020-09-26 06:55:31 +00:00
|
|
|
|
/// <summary> Generation 6 Gift from Pokémon Link </summary>
|
|
|
|
|
public const int LinkGift6 = 30011;
|
|
|
|
|
|
2021-07-30 21:05:23 +00:00
|
|
|
|
/// <summary> Generation 7 Poké Pelago </summary>
|
|
|
|
|
public const int Pelago7 = 30016;
|
|
|
|
|
|
2020-11-19 05:34:40 +00:00
|
|
|
|
/// <summary> Generation 7 Transfer from GO to Pokémon LGP/E's GO Park </summary>
|
|
|
|
|
public const int GO7 = 50;
|
|
|
|
|
|
2020-11-11 06:10:53 +00:00
|
|
|
|
/// <summary> Generation 8 Transfer from GO to Pokémon HOME </summary>
|
|
|
|
|
public const int GO8 = 30012;
|
|
|
|
|
|
2020-09-26 06:55:31 +00:00
|
|
|
|
/// <summary> Generation 8 Gift from Pokémon HOME </summary>
|
|
|
|
|
public const int HOME8 = 30018;
|
|
|
|
|
|
2020-08-30 17:23:22 +00:00
|
|
|
|
public const int BugCatchingContest4 = 207;
|
|
|
|
|
|
2021-01-02 01:08:49 +00:00
|
|
|
|
public static int TradedEggLocationNPC(int generation) => generation switch
|
2019-05-11 03:46:49 +00:00
|
|
|
|
{
|
2021-01-02 01:08:49 +00:00
|
|
|
|
1 => LinkTrade2NPC,
|
|
|
|
|
2 => LinkTrade2NPC,
|
|
|
|
|
3 => LinkTrade3NPC,
|
|
|
|
|
4 => LinkTrade4NPC,
|
|
|
|
|
5 => LinkTrade5NPC,
|
|
|
|
|
_ => LinkTrade6NPC
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public static int TradedEggLocation(int generation) => generation switch
|
2019-05-11 03:46:49 +00:00
|
|
|
|
{
|
2021-01-02 01:08:49 +00:00
|
|
|
|
4 => LinkTrade4,
|
|
|
|
|
5 => LinkTrade5,
|
|
|
|
|
_ => LinkTrade6
|
|
|
|
|
};
|
2019-05-11 03:46:49 +00:00
|
|
|
|
|
2021-05-29 22:31:47 +00:00
|
|
|
|
public static bool IsPtHGSSLocation(int location) => location is > 111 and < 2000;
|
|
|
|
|
public static bool IsPtHGSSLocationEgg(int location) => location is > 2010 and < 3000;
|
Track a PKM's Box,Slot,StorageFlags,Identifier metadata separately (#3222)
* Track a PKM's Box,Slot,StorageFlags,Identifier metadata separately
Don't store within the object, track the slot origin data separately.
Batch editing now pre-filters if using Box/Slot/Identifier logic; split up mods/filters as they're starting to get pretty hefty.
- Requesting a Box Data report now shows all slots in the save file (party, misc)
- Can now exclude backup saves from database search via toggle (separate from settings preventing load entirely)
- Replace some linq usages with direct code
* Remove WasLink virtual in PKM
Inline any logic, since we now have encounter objects to indicate matching, rather than the proto-legality logic checking properties of a PKM.
* Use Fateful to directly check gen5 mysterygift origins
No other encounter types in gen5 apply Fateful
* Simplify double ball comparison
Used to be separate for deferral cases, now no longer needed to be separate.
* Grab move/relearn reference and update locally
Fix relearn move identifier
* Inline defog HM transfer preference check
HasMove is faster than getting moves & checking contains. Skips allocation by setting values directly.
* Extract more met location metadata checks: WasBredEgg
* Replace Console.Write* with Debug.Write*
There's no console output UI, so don't include them in release builds.
* Inline WasGiftEgg, WasEvent, and WasEventEgg logic
Adios legality tags that aren't entirely correct for the specific format. Just put the computations in EncounterFinder.
2021-06-23 03:23:48 +00:00
|
|
|
|
public static bool IsEventLocation4(int location) => location is >= 3000 and <= 3076;
|
2021-05-29 22:31:47 +00:00
|
|
|
|
public static bool IsEventLocation5(int location) => location is > 40000 and < 50000;
|
2020-07-19 22:48:45 +00:00
|
|
|
|
|
2020-08-30 17:23:22 +00:00
|
|
|
|
private const int SafariLocation_RSE = 57;
|
|
|
|
|
private const int SafariLocation_FRLG = 136;
|
|
|
|
|
private const int SafariLocation_HGSS = 202;
|
|
|
|
|
private const int MarshLocation_DPPt = 52;
|
2020-12-25 20:30:26 +00:00
|
|
|
|
public static bool IsSafariZoneLocation3(int loc) => loc is SafariLocation_RSE or SafariLocation_FRLG;
|
|
|
|
|
public static bool IsSafariZoneLocation4(int loc) => loc is MarshLocation_DPPt or SafariLocation_HGSS;
|
Track a PKM's Box,Slot,StorageFlags,Identifier metadata separately (#3222)
* Track a PKM's Box,Slot,StorageFlags,Identifier metadata separately
Don't store within the object, track the slot origin data separately.
Batch editing now pre-filters if using Box/Slot/Identifier logic; split up mods/filters as they're starting to get pretty hefty.
- Requesting a Box Data report now shows all slots in the save file (party, misc)
- Can now exclude backup saves from database search via toggle (separate from settings preventing load entirely)
- Replace some linq usages with direct code
* Remove WasLink virtual in PKM
Inline any logic, since we now have encounter objects to indicate matching, rather than the proto-legality logic checking properties of a PKM.
* Use Fateful to directly check gen5 mysterygift origins
No other encounter types in gen5 apply Fateful
* Simplify double ball comparison
Used to be separate for deferral cases, now no longer needed to be separate.
* Grab move/relearn reference and update locally
Fix relearn move identifier
* Inline defog HM transfer preference check
HasMove is faster than getting moves & checking contains. Skips allocation by setting values directly.
* Extract more met location metadata checks: WasBredEgg
* Replace Console.Write* with Debug.Write*
There's no console output UI, so don't include them in release builds.
* Inline WasGiftEgg, WasEvent, and WasEventEgg logic
Adios legality tags that aren't entirely correct for the specific format. Just put the computations in EncounterFinder.
2021-06-23 03:23:48 +00:00
|
|
|
|
|
|
|
|
|
public static bool IsEggLocationBred4(int loc, GameVersion ver)
|
|
|
|
|
{
|
|
|
|
|
if (loc is Daycare4 or LinkTrade4)
|
|
|
|
|
return true;
|
|
|
|
|
return loc == Faraway4 && ver is GameVersion.Pt or GameVersion.HG or GameVersion.SS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static bool IsEggLocationBred5(int loc) => loc is Daycare5 or LinkTrade5;
|
|
|
|
|
public static bool IsEggLocationBred6(int loc) => loc is Daycare5 or LinkTrade6;
|
2019-05-11 03:46:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|