summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/ModLoading
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-06-24 21:29:10 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-06-24 21:29:10 -0400
commit316242eeb2b6b6e711ab98f64c147a59c1d0aab8 (patch)
tree8266077b34ce63dd09690d97e5e67446f8afc665 /src/SMAPI/Framework/ModLoading
parent71efadf2322a622bc5a74614b1575d2680a84165 (diff)
downloadSMAPI-316242eeb2b6b6e711ab98f64c147a59c1d0aab8.tar.gz
SMAPI-316242eeb2b6b6e711ab98f64c147a59c1d0aab8.tar.bz2
SMAPI-316242eeb2b6b6e711ab98f64c147a59c1d0aab8.zip
merge ISemanticVersion interfaces into new project (#532)
Diffstat (limited to 'src/SMAPI/Framework/ModLoading')
-rw-r--r--src/SMAPI/Framework/ModLoading/Rewriters/TypeReferenceRewriter.cs11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/ModLoading/Rewriters/TypeReferenceRewriter.cs b/src/SMAPI/Framework/ModLoading/Rewriters/TypeReferenceRewriter.cs
index 5c7db902..de9c439a 100644
--- a/src/SMAPI/Framework/ModLoading/Rewriters/TypeReferenceRewriter.cs
+++ b/src/SMAPI/Framework/ModLoading/Rewriters/TypeReferenceRewriter.cs
@@ -17,6 +17,9 @@ namespace StardewModdingAPI.Framework.ModLoading.Rewriters
/// <summary>The new type to reference.</summary>
private readonly Type ToType;
+ /// <summary>A lambda which indicates whether a matching type reference should be rewritten.</summary>
+ private readonly Func<TypeReference, bool> ShouldRewrite;
+
/*********
** Public methods
@@ -24,11 +27,13 @@ namespace StardewModdingAPI.Framework.ModLoading.Rewriters
/// <summary>Construct an instance.</summary>
/// <param name="fromTypeFullName">The full type name to which to find references.</param>
/// <param name="toType">The new type to reference.</param>
- public TypeReferenceRewriter(string fromTypeFullName, Type toType)
+ /// <param name="shouldRewrite">A lambda which indicates whether a matching type reference should be rewritten.</param>
+ public TypeReferenceRewriter(string fromTypeFullName, Type toType, Func<TypeReference, bool> shouldRewrite = null)
: base(fromTypeFullName, InstructionHandleResult.None)
{
this.FromTypeName = fromTypeFullName;
this.ToType = toType;
+ this.ShouldRewrite = shouldRewrite ?? (type => true);
}
/// <summary>Perform the predefined logic for a method if applicable.</summary>
@@ -135,7 +140,11 @@ namespace StardewModdingAPI.Framework.ModLoading.Rewriters
{
// root type
if (type.FullName == this.FromTypeName)
+ {
+ if (!this.ShouldRewrite(type))
+ return type;
return module.ImportReference(this.ToType);
+ }
// generic arguments
if (type is GenericInstanceType genericType)