mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
768047cd80
* Rewrite ribbon verification * Explicitly verifies all ribbons instead of chained iterators. * Verifies using only the stack, using `struct` and `Span<T>`. No allocation on heap, or `IEnumerable` iterators. * Verifies all egg ribbons using a separate method, explicitly implemented. No reflection overhead. * Separates each ribbon interface to separate `static` classes. Easier to identify code needing change on new game update. * Extracted logic for specific ribbons. Can easily revise complicated ribbon's acquisition rules. * Simplifies GiveAll/RemoveAll legal ribbon mutations. No reflection overhead, and no allocation. * Can be expanded in the future if we need to track conditions for ribbon acquisition (was Sinnoh Champ received in BDSP or Gen4?) End result is a more performant implementation and easier to maintain & reuse logic.
21 lines
715 B
C#
21 lines
715 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary> Common Ribbons introduced in Generation 7 </summary>
|
|
public interface IRibbonSetCommon7
|
|
{
|
|
bool RibbonChampionAlola { get; set; }
|
|
bool RibbonBattleRoyale { get; set; }
|
|
bool RibbonBattleTreeGreat { get; set; }
|
|
bool RibbonBattleTreeMaster { get; set; }
|
|
}
|
|
|
|
internal static partial class RibbonExtensions
|
|
{
|
|
internal static void CopyRibbonSetCommon7(this IRibbonSetCommon7 set, IRibbonSetCommon7 dest)
|
|
{
|
|
dest.RibbonChampionAlola = set.RibbonChampionAlola;
|
|
dest.RibbonBattleRoyale = set.RibbonBattleRoyale;
|
|
dest.RibbonBattleTreeGreat = set.RibbonBattleTreeGreat;
|
|
dest.RibbonBattleTreeMaster = set.RibbonBattleTreeMaster;
|
|
}
|
|
}
|