2021-01-04 00:53:13 +00:00
|
|
|
|
namespace PKHeX.Core
|
2018-03-30 23:31:40 +00:00
|
|
|
|
{
|
2021-04-20 08:02:32 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface that exposes a <see cref="Version"/> to see which version the data originated in.
|
|
|
|
|
/// </summary>
|
2018-03-30 23:31:40 +00:00
|
|
|
|
public interface IVersion
|
|
|
|
|
{
|
2021-04-20 08:02:32 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The version the data originated in.
|
|
|
|
|
/// </summary>
|
2020-05-20 04:46:05 +00:00
|
|
|
|
GameVersion Version { get; }
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-30 23:31:40 +00:00
|
|
|
|
public static partial class Extensions
|
|
|
|
|
{
|
2020-05-20 04:07:30 +00:00
|
|
|
|
private static bool CanBeReceivedBy(this IVersion ver, GameVersion game) => ver.Version.Contains(game);
|
2018-08-03 03:11:42 +00:00
|
|
|
|
|
2018-03-30 23:31:40 +00:00
|
|
|
|
public static GameVersion GetCompatibleVersion(this IVersion ver, GameVersion prefer)
|
|
|
|
|
{
|
|
|
|
|
if (ver.CanBeReceivedBy(prefer) || ver.Version <= GameVersion.Unknown)
|
|
|
|
|
return prefer;
|
2018-03-31 04:37:01 +00:00
|
|
|
|
return ver.GetSingleVersion();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static GameVersion GetSingleVersion(this IVersion ver)
|
2018-03-30 23:31:40 +00:00
|
|
|
|
{
|
2021-02-01 05:28:33 +00:00
|
|
|
|
const int max = (int)GameUtil.HighestGameID;
|
|
|
|
|
if ((int)ver.Version <= max)
|
2018-03-31 04:37:01 +00:00
|
|
|
|
return ver.Version;
|
2020-01-26 05:49:52 +00:00
|
|
|
|
var rnd = Util.Rand;
|
2018-03-30 23:31:40 +00:00
|
|
|
|
while (true) // this isn't optimal, but is low maintenance
|
|
|
|
|
{
|
2020-01-26 05:49:52 +00:00
|
|
|
|
var game = (GameVersion)rnd.Next(1, max);
|
2021-02-01 05:28:33 +00:00
|
|
|
|
if (game == GameVersion.BU)
|
|
|
|
|
continue; // Ignore this one; only can be Japanese language.
|
2018-03-30 23:31:40 +00:00
|
|
|
|
if (ver.CanBeReceivedBy(game))
|
|
|
|
|
return game;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|