2021-05-27 19:20:00 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
|
|
|
|
/// <inheritdoc cref="ISuggestModification"/>
|
2021-12-27 21:50:21 +00:00
|
|
|
|
public sealed class ComplexSuggestion : ISuggestModification
|
2021-05-27 19:20:00 +00:00
|
|
|
|
{
|
|
|
|
|
public readonly string Keyword;
|
|
|
|
|
public readonly Func<PKM, bool> Criteria = _ => true;
|
|
|
|
|
public readonly Func<string, string, BatchInfo, ModifyResult> Action;
|
|
|
|
|
|
|
|
|
|
public ComplexSuggestion(
|
|
|
|
|
string keyword,
|
|
|
|
|
Func<PKM, bool> criteria,
|
|
|
|
|
Func<string, string, BatchInfo, ModifyResult> action) : this(keyword, action)
|
|
|
|
|
{
|
|
|
|
|
Criteria = criteria;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ComplexSuggestion(
|
|
|
|
|
string keyword,
|
|
|
|
|
Func<string, string, BatchInfo, ModifyResult> action)
|
|
|
|
|
{
|
|
|
|
|
Keyword = keyword;
|
|
|
|
|
Action = action;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool IsMatch(string name, string value, BatchInfo info)
|
|
|
|
|
{
|
|
|
|
|
return name == Keyword && Criteria(info.Entity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ModifyResult Modify(string name, string value, BatchInfo info)
|
|
|
|
|
{
|
|
|
|
|
return Action(name, value, info);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|