2018-03-30 21:37:01 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core
|
2018-03-30 16:31:40 -07:00
|
|
|
|
{
|
|
|
|
|
public interface IVersion
|
|
|
|
|
{
|
2020-05-19 21:46:05 -07:00
|
|
|
|
GameVersion Version { get; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal interface IVersionSet
|
|
|
|
|
{
|
|
|
|
|
GameVersion Version { set; }
|
2018-03-30 16:31:40 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static partial class Extensions
|
|
|
|
|
{
|
2020-05-19 21:07:30 -07:00
|
|
|
|
private static bool CanBeReceivedBy(this IVersion ver, GameVersion game) => ver.Version.Contains(game);
|
2018-08-02 20:11:42 -07:00
|
|
|
|
|
2018-03-30 16:31:40 -07:00
|
|
|
|
public static GameVersion GetCompatibleVersion(this IVersion ver, GameVersion prefer)
|
|
|
|
|
{
|
|
|
|
|
if (ver.CanBeReceivedBy(prefer) || ver.Version <= GameVersion.Unknown)
|
|
|
|
|
return prefer;
|
2018-03-30 21:37:01 -07:00
|
|
|
|
return ver.GetSingleVersion();
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-19 21:46:05 -07:00
|
|
|
|
internal static void SetVersion<T>(this IEnumerable<T> arr, GameVersion game) where T : IVersion, IVersionSet
|
2018-03-30 21:37:01 -07:00
|
|
|
|
{
|
|
|
|
|
foreach (var z in arr)
|
2018-08-02 20:11:42 -07:00
|
|
|
|
{
|
2020-05-19 21:46:05 -07:00
|
|
|
|
if (((IVersion)z).Version <= 0)
|
|
|
|
|
((IVersionSet)z).Version = game;
|
2018-08-02 20:11:42 -07:00
|
|
|
|
}
|
2018-03-30 21:37:01 -07:00
|
|
|
|
}
|
2018-08-02 20:11:42 -07:00
|
|
|
|
|
2018-03-30 21:37:01 -07:00
|
|
|
|
private static GameVersion GetSingleVersion(this IVersion ver)
|
2018-03-30 16:31:40 -07:00
|
|
|
|
{
|
|
|
|
|
const int max = (int) GameVersion.RB;
|
2018-03-30 21:37:01 -07:00
|
|
|
|
if ((int)ver.Version < max)
|
|
|
|
|
return ver.Version;
|
2020-01-25 21:49:52 -08:00
|
|
|
|
var rnd = Util.Rand;
|
2018-03-30 16:31:40 -07:00
|
|
|
|
while (true) // this isn't optimal, but is low maintenance
|
|
|
|
|
{
|
2020-01-25 21:49:52 -08:00
|
|
|
|
var game = (GameVersion)rnd.Next(1, max);
|
2018-03-30 16:31:40 -07:00
|
|
|
|
if (ver.CanBeReceivedBy(game))
|
|
|
|
|
return game;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|