2017-05-14 19:42:27 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
2019-10-20 03:33:17 +00:00
|
|
|
|
public readonly struct SeedInfo
|
2017-05-14 19:42:27 +00:00
|
|
|
|
{
|
2019-10-20 03:33:17 +00:00
|
|
|
|
public readonly uint Seed;
|
|
|
|
|
public readonly bool Charm3;
|
|
|
|
|
|
|
|
|
|
private SeedInfo(uint seed, bool charm3 = false)
|
|
|
|
|
{
|
|
|
|
|
Seed = seed;
|
|
|
|
|
Charm3 = charm3;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-27 06:18:25 +00:00
|
|
|
|
public override bool Equals(object obj) => obj is SeedInfo s && Equals(s);
|
|
|
|
|
public bool Equals(SeedInfo s) => s.Charm3 == Charm3 && s.Seed == Seed;
|
2019-10-20 03:33:17 +00:00
|
|
|
|
public override int GetHashCode() => -1;
|
|
|
|
|
public static bool operator ==(SeedInfo left, SeedInfo right) => left.Equals(right);
|
|
|
|
|
public static bool operator !=(SeedInfo left, SeedInfo right) => !(left == right);
|
2017-06-18 01:37:19 +00:00
|
|
|
|
|
2017-11-30 02:28:20 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Yields an enumerable list of seeds until another valid PID breaks the chain.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="pidiv">Seed and RNG data</param>
|
|
|
|
|
/// <param name="info">Verification information</param>
|
|
|
|
|
/// <returns>Seed information data, which needs to be unrolled once for the nature call.</returns>
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public static IEnumerable<SeedInfo> GetSeedsUntilNature(PIDIV pidiv, FrameGenerator info)
|
2017-05-14 19:42:27 +00:00
|
|
|
|
{
|
|
|
|
|
bool charm3 = false;
|
|
|
|
|
|
|
|
|
|
var seed = pidiv.OriginSeed;
|
2019-10-20 03:33:17 +00:00
|
|
|
|
yield return new SeedInfo(seed);
|
2017-05-14 19:42:27 +00:00
|
|
|
|
|
|
|
|
|
var s1 = seed;
|
PKHeX.Core Nullable cleanup (#2401)
* Handle some nullable cases
Refactor MysteryGift into a second abstract class (backed by a byte array, or fake data)
Make some classes have explicit constructors instead of { } initialization
* Handle bits more obviously without null
* Make SaveFile.BAK explicitly readonly again
* merge constructor methods to have readonly fields
* Inline some properties
* More nullable handling
* Rearrange box actions
define straightforward classes to not have any null properties
* Make extrabyte reference array immutable
* Move tooltip creation to designer
* Rearrange some logic to reduce nesting
* Cache generated fonts
* Split mystery gift album purpose
* Handle more tooltips
* Disallow null setters
* Don't capture RNG object, only type enum
* Unify learnset objects
Now have readonly properties which are never null
don't new() empty learnsets (>800 Learnset objects no longer created,
total of 2400 objects since we also new() a move & level array)
optimize g1/2 reader for early abort case
* Access rewrite
Initialize blocks in a separate object, and get via that object
removes a couple hundred "might be null" warnings since blocks are now readonly getters
some block references have been relocated, but interfaces should expose all that's needed
put HoF6 controls in a groupbox, and disable
* Readonly personal data
* IVs non nullable for mystery gift
* Explicitly initialize forced encounter moves
* Make shadow objects readonly & non-null
Put murkrow fix in binary data resource, instead of on startup
* Assign dex form fetch on constructor
Fixes legality parsing edge cases
also handle cxd parse for valid; exit before exception is thrown in FrameGenerator
* Remove unnecessary null checks
* Keep empty value until init
SetPouch sets the value to an actual one during load, but whatever
* Readonly team lock data
* Readonly locks
Put locked encounters at bottom (favor unlocked)
* Mail readonly data / offset
Rearrange some call flow and pass defaults
Add fake classes for SaveDataEditor mocking
Always party size, no need to check twice in stat editor
use a fake save file as initial data for savedata editor, and for
gamedata (wow i found a usage)
constrain eventwork editor to struct variable types (uint, int, etc),
thus preventing null assignment errors
2019-10-17 01:47:31 +00:00
|
|
|
|
var s2 = RNG.LCRNG.Prev(s1);
|
2017-05-14 19:42:27 +00:00
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
var a = s2 >> 16;
|
|
|
|
|
var b = s1 >> 16;
|
|
|
|
|
|
2017-11-30 02:28:20 +00:00
|
|
|
|
var pid = b << 16 | a;
|
2017-05-14 19:42:27 +00:00
|
|
|
|
|
|
|
|
|
// Process Conditions
|
2017-06-18 01:37:19 +00:00
|
|
|
|
switch (VerifyPIDCriteria(pid, info))
|
2017-05-14 19:42:27 +00:00
|
|
|
|
{
|
|
|
|
|
case LockInfo.Pass:
|
|
|
|
|
yield break;
|
|
|
|
|
case LockInfo.Gender:
|
|
|
|
|
charm3 = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
PKHeX.Core Nullable cleanup (#2401)
* Handle some nullable cases
Refactor MysteryGift into a second abstract class (backed by a byte array, or fake data)
Make some classes have explicit constructors instead of { } initialization
* Handle bits more obviously without null
* Make SaveFile.BAK explicitly readonly again
* merge constructor methods to have readonly fields
* Inline some properties
* More nullable handling
* Rearrange box actions
define straightforward classes to not have any null properties
* Make extrabyte reference array immutable
* Move tooltip creation to designer
* Rearrange some logic to reduce nesting
* Cache generated fonts
* Split mystery gift album purpose
* Handle more tooltips
* Disallow null setters
* Don't capture RNG object, only type enum
* Unify learnset objects
Now have readonly properties which are never null
don't new() empty learnsets (>800 Learnset objects no longer created,
total of 2400 objects since we also new() a move & level array)
optimize g1/2 reader for early abort case
* Access rewrite
Initialize blocks in a separate object, and get via that object
removes a couple hundred "might be null" warnings since blocks are now readonly getters
some block references have been relocated, but interfaces should expose all that's needed
put HoF6 controls in a groupbox, and disable
* Readonly personal data
* IVs non nullable for mystery gift
* Explicitly initialize forced encounter moves
* Make shadow objects readonly & non-null
Put murkrow fix in binary data resource, instead of on startup
* Assign dex form fetch on constructor
Fixes legality parsing edge cases
also handle cxd parse for valid; exit before exception is thrown in FrameGenerator
* Remove unnecessary null checks
* Keep empty value until init
SetPouch sets the value to an actual one during load, but whatever
* Readonly team lock data
* Readonly locks
Put locked encounters at bottom (favor unlocked)
* Mail readonly data / offset
Rearrange some call flow and pass defaults
Add fake classes for SaveDataEditor mocking
Always party size, no need to check twice in stat editor
use a fake save file as initial data for savedata editor, and for
gamedata (wow i found a usage)
constrain eventwork editor to struct variable types (uint, int, etc),
thus preventing null assignment errors
2019-10-17 01:47:31 +00:00
|
|
|
|
s1 = RNG.LCRNG.Prev(s2);
|
|
|
|
|
s2 = RNG.LCRNG.Prev(s1);
|
2017-05-14 19:42:27 +00:00
|
|
|
|
|
2019-10-20 03:33:17 +00:00
|
|
|
|
yield return new SeedInfo(s1, charm3);
|
2017-05-14 19:42:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-11-30 02:28:20 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Yields an enumerable list of seeds until another valid PID breaks the chain.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="pidiv">Seed and RNG data</param>
|
|
|
|
|
/// <param name="info">Verification information</param>
|
|
|
|
|
/// <param name="form">Unown Form lock value</param>
|
|
|
|
|
/// <returns>Seed information data, which needs to be unrolled once for the nature call.</returns>
|
|
|
|
|
public static IEnumerable<SeedInfo> GetSeedsUntilUnownForm(PIDIV pidiv, FrameGenerator info, int form)
|
|
|
|
|
{
|
|
|
|
|
var seed = pidiv.OriginSeed;
|
2019-10-20 03:33:17 +00:00
|
|
|
|
yield return new SeedInfo(seed);
|
2017-11-30 02:28:20 +00:00
|
|
|
|
|
|
|
|
|
var s1 = seed;
|
PKHeX.Core Nullable cleanup (#2401)
* Handle some nullable cases
Refactor MysteryGift into a second abstract class (backed by a byte array, or fake data)
Make some classes have explicit constructors instead of { } initialization
* Handle bits more obviously without null
* Make SaveFile.BAK explicitly readonly again
* merge constructor methods to have readonly fields
* Inline some properties
* More nullable handling
* Rearrange box actions
define straightforward classes to not have any null properties
* Make extrabyte reference array immutable
* Move tooltip creation to designer
* Rearrange some logic to reduce nesting
* Cache generated fonts
* Split mystery gift album purpose
* Handle more tooltips
* Disallow null setters
* Don't capture RNG object, only type enum
* Unify learnset objects
Now have readonly properties which are never null
don't new() empty learnsets (>800 Learnset objects no longer created,
total of 2400 objects since we also new() a move & level array)
optimize g1/2 reader for early abort case
* Access rewrite
Initialize blocks in a separate object, and get via that object
removes a couple hundred "might be null" warnings since blocks are now readonly getters
some block references have been relocated, but interfaces should expose all that's needed
put HoF6 controls in a groupbox, and disable
* Readonly personal data
* IVs non nullable for mystery gift
* Explicitly initialize forced encounter moves
* Make shadow objects readonly & non-null
Put murkrow fix in binary data resource, instead of on startup
* Assign dex form fetch on constructor
Fixes legality parsing edge cases
also handle cxd parse for valid; exit before exception is thrown in FrameGenerator
* Remove unnecessary null checks
* Keep empty value until init
SetPouch sets the value to an actual one during load, but whatever
* Readonly team lock data
* Readonly locks
Put locked encounters at bottom (favor unlocked)
* Mail readonly data / offset
Rearrange some call flow and pass defaults
Add fake classes for SaveDataEditor mocking
Always party size, no need to check twice in stat editor
use a fake save file as initial data for savedata editor, and for
gamedata (wow i found a usage)
constrain eventwork editor to struct variable types (uint, int, etc),
thus preventing null assignment errors
2019-10-17 01:47:31 +00:00
|
|
|
|
var s2 = RNG.LCRNG.Prev(s1);
|
2017-11-30 02:28:20 +00:00
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
var a = s2 >> 16;
|
|
|
|
|
var b = s1 >> 16;
|
|
|
|
|
// PID is in reverse for FRLG Unown
|
|
|
|
|
var pid = a << 16 | b;
|
|
|
|
|
|
|
|
|
|
// Process Conditions
|
|
|
|
|
if (PKX.GetUnownForm(pid) == form) // matches form, does it match nature?
|
|
|
|
|
{
|
2019-09-11 05:07:50 +00:00
|
|
|
|
switch (VerifyPIDCriteria(pid, info))
|
|
|
|
|
{
|
|
|
|
|
case LockInfo.Pass: // yes
|
|
|
|
|
yield break;
|
|
|
|
|
}
|
2017-11-30 02:28:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
PKHeX.Core Nullable cleanup (#2401)
* Handle some nullable cases
Refactor MysteryGift into a second abstract class (backed by a byte array, or fake data)
Make some classes have explicit constructors instead of { } initialization
* Handle bits more obviously without null
* Make SaveFile.BAK explicitly readonly again
* merge constructor methods to have readonly fields
* Inline some properties
* More nullable handling
* Rearrange box actions
define straightforward classes to not have any null properties
* Make extrabyte reference array immutable
* Move tooltip creation to designer
* Rearrange some logic to reduce nesting
* Cache generated fonts
* Split mystery gift album purpose
* Handle more tooltips
* Disallow null setters
* Don't capture RNG object, only type enum
* Unify learnset objects
Now have readonly properties which are never null
don't new() empty learnsets (>800 Learnset objects no longer created,
total of 2400 objects since we also new() a move & level array)
optimize g1/2 reader for early abort case
* Access rewrite
Initialize blocks in a separate object, and get via that object
removes a couple hundred "might be null" warnings since blocks are now readonly getters
some block references have been relocated, but interfaces should expose all that's needed
put HoF6 controls in a groupbox, and disable
* Readonly personal data
* IVs non nullable for mystery gift
* Explicitly initialize forced encounter moves
* Make shadow objects readonly & non-null
Put murkrow fix in binary data resource, instead of on startup
* Assign dex form fetch on constructor
Fixes legality parsing edge cases
also handle cxd parse for valid; exit before exception is thrown in FrameGenerator
* Remove unnecessary null checks
* Keep empty value until init
SetPouch sets the value to an actual one during load, but whatever
* Readonly team lock data
* Readonly locks
Put locked encounters at bottom (favor unlocked)
* Mail readonly data / offset
Rearrange some call flow and pass defaults
Add fake classes for SaveDataEditor mocking
Always party size, no need to check twice in stat editor
use a fake save file as initial data for savedata editor, and for
gamedata (wow i found a usage)
constrain eventwork editor to struct variable types (uint, int, etc),
thus preventing null assignment errors
2019-10-17 01:47:31 +00:00
|
|
|
|
s1 = RNG.LCRNG.Prev(s2);
|
|
|
|
|
s2 = RNG.LCRNG.Prev(s1);
|
2017-11-30 02:28:20 +00:00
|
|
|
|
|
2019-10-20 03:33:17 +00:00
|
|
|
|
yield return new SeedInfo(s1);
|
2017-11-30 02:28:20 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-09-15 05:37:47 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private static LockInfo VerifyPIDCriteria(uint pid, FrameGenerator info)
|
2017-05-14 19:42:27 +00:00
|
|
|
|
{
|
|
|
|
|
// Nature locks are always a given
|
|
|
|
|
var nval = pid % 25;
|
|
|
|
|
if (nval != info.Nature)
|
|
|
|
|
return LockInfo.Nature;
|
|
|
|
|
|
|
|
|
|
if (!info.Gendered)
|
|
|
|
|
return LockInfo.Pass;
|
|
|
|
|
|
|
|
|
|
var gender = pid & 0xFF;
|
|
|
|
|
if (info.GenderLow > gender || gender > info.GenderHigh)
|
|
|
|
|
return LockInfo.Gender;
|
|
|
|
|
|
|
|
|
|
return LockInfo.Pass;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|