From e04f564becfdc76ef26147c2cdb993800b7a8edc Mon Sep 17 00:00:00 2001 From: Eddio0141 Date: Fri, 15 Nov 2024 20:38:40 +0000 Subject: [PATCH] handle using object in place of value type, and vice versa revert pointless typo --- Harmony/Tools/AccessTools.cs | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/Harmony/Tools/AccessTools.cs b/Harmony/Tools/AccessTools.cs index a6656b50..303b672e 100644 --- a/Harmony/Tools/AccessTools.cs +++ b/Harmony/Tools/AccessTools.cs @@ -1524,6 +1524,13 @@ public static FieldRef StaticFieldRefAccess(FieldInfo fieldInfo) /// else, invocation of the delegate calls the exact specified (this is useful for calling base class methods) /// Note: if false and is an interface method, an ArgumentException is thrown. /// + /// + /// Only applies for instance methods, and if argument is null. + /// This argument only matters if the target signature contains a value type (such as struct or primitive types), + /// and your argument is replaced by a non-value type + /// (usually object) instead of using said value type. + /// Use this if the generic arguments of doesn't represent the delegate's + /// arguments, and calling this function fails /// A delegate of given to given /// /// @@ -1536,7 +1543,7 @@ public static FieldRef StaticFieldRefAccess(FieldInfo fieldInfo) /// /// /// - public static DelegateType MethodDelegate(MethodInfo method, object instance = null, bool virtualCall = true) where DelegateType : Delegate + public static DelegateType MethodDelegate(MethodInfo method, object instance = null, bool virtualCall = true, Type[] delegateArgs = null) where DelegateType : Delegate { if (method is null) throw new ArgumentNullException(nameof(method)); @@ -1612,20 +1619,36 @@ public static DelegateType MethodDelegate(MethodInfo method, objec parameterTypes[0] = declaringType; for (var i = 0; i < numParameters; i++) parameterTypes[i + 1] = parameters[i].ParameterType; + var delegateArgsResolved = delegateArgs ?? delegateType.GetGenericArguments(); + var dynMethodReturn = delegateArgsResolved.Length < parameterTypes.Length + ? parameterTypes + : delegateArgsResolved; var dmd = new DynamicMethodDefinition( "OpenInstanceDelegate_" + method.Name, method.ReturnType, - parameterTypes) + dynMethodReturn) { // OwnerType = declaringType }; var ilGen = dmd.GetILGenerator(); - if (declaringType != null && declaringType.IsValueType) + if (declaringType != null && declaringType.IsValueType && delegateArgsResolved.Length > 0 && + !delegateArgsResolved[0].IsByRef) + { ilGen.Emit(OpCodes.Ldarga_S, 0); + } else ilGen.Emit(OpCodes.Ldarg_0); for (var i = 1; i < parameterTypes.Length; i++) + { ilGen.Emit(OpCodes.Ldarg, i); + // unbox to make il code valid + if (parameterTypes[i].IsValueType && i < delegateArgsResolved.Length && + !delegateArgsResolved[i].IsValueType) + { + ilGen.Emit(OpCodes.Unbox_Any, parameterTypes[i]); + } + } + ilGen.Emit(OpCodes.Call, method); ilGen.Emit(OpCodes.Ret); return (DelegateType)dmd.Generate().CreateDelegate(delegateType);