2022-03-13 01:04:20 +00:00
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Specification for <see cref="PKM.IsShiny"/>, used for creating and validating.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum Shiny : byte
|
|
|
|
|
{
|
|
|
|
|
/// <summary> PID is purely random; can be shiny or not shiny. </summary>
|
|
|
|
|
Random = 0,
|
|
|
|
|
|
|
|
|
|
/// <summary> PID is randomly created and forced to be not shiny. </summary>
|
|
|
|
|
Never,
|
|
|
|
|
|
2022-03-13 01:31:10 +00:00
|
|
|
|
/// <summary> PID is randomly created and forced to be shiny. </summary>
|
|
|
|
|
Always,
|
|
|
|
|
|
2022-03-13 01:04:20 +00:00
|
|
|
|
/// <summary> PID is randomly created and forced to be shiny as Stars. </summary>
|
|
|
|
|
AlwaysStar,
|
|
|
|
|
|
|
|
|
|
/// <summary> PID is randomly created and forced to be shiny as Squares. </summary>
|
|
|
|
|
AlwaysSquare,
|
|
|
|
|
|
|
|
|
|
/// <summary> PID is fixed to a specified value. </summary>
|
|
|
|
|
FixedValue,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static class ShinyExtensions
|
2018-03-17 02:35:55 +00:00
|
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public static bool IsValid(this Shiny s, PKM pk) => s switch
|
2018-03-17 02:35:55 +00:00
|
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
|
Shiny.Always => pk.IsShiny,
|
|
|
|
|
Shiny.Never => !pk.IsShiny,
|
|
|
|
|
Shiny.AlwaysSquare => pk.ShinyXor == 0,
|
|
|
|
|
Shiny.AlwaysStar => pk.ShinyXor == 1,
|
2022-03-13 01:04:20 +00:00
|
|
|
|
_ => true,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public static bool IsShiny(this Shiny s) => s switch
|
2018-03-17 02:35:55 +00:00
|
|
|
|
{
|
2022-03-13 01:04:20 +00:00
|
|
|
|
Shiny.Always => true,
|
|
|
|
|
Shiny.AlwaysSquare => true,
|
|
|
|
|
Shiny.AlwaysStar => true,
|
|
|
|
|
_ => false,
|
|
|
|
|
};
|
2022-04-25 03:19:50 +00:00
|
|
|
|
|
|
|
|
|
public static bool ShowSquareBeforeGen8 { get; set; }
|
|
|
|
|
|
|
|
|
|
public static Shiny GetType(PKM pk)
|
|
|
|
|
{
|
|
|
|
|
bool shiny = pk.IsShiny;
|
|
|
|
|
if (!shiny)
|
|
|
|
|
return Shiny.Never;
|
|
|
|
|
|
|
|
|
|
if (IsSquareShinyExist(pk))
|
|
|
|
|
return Shiny.AlwaysSquare;
|
|
|
|
|
return Shiny.AlwaysStar;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static bool IsSquareShinyExist(PKM pk)
|
|
|
|
|
{
|
|
|
|
|
if (pk.Format < 8 && !ShowSquareBeforeGen8)
|
|
|
|
|
return false;
|
|
|
|
|
return pk.ShinyXor == 0 || pk.FatefulEncounter || pk.Version == (int)GameVersion.GO;
|
|
|
|
|
}
|
2018-03-17 02:35:55 +00:00
|
|
|
|
}
|