-
-
Notifications
You must be signed in to change notification settings - Fork 567
Open
Labels
Description
Describe the bug
I have a generic class (and it's child classes) that I'd like to patch. Not every child class overrides the method that I'm patching, so I'm modifying the base generic class. However, only the last patch is executed and "alive" but no error is thrown.
To Reproduce
Steps to reproduce the behavior:
- Create a generic class with a method (does not need to include the generic type in the method)
- Patch the code with a post method.
- No error, but if patched with multiple types, only the last one is executed
Expected behavior
Every patch called with the type that was specified
Screenshots / Code
The patch:
public static class RepositoryPatch<T, M> where T : Repository<T, M> where M : NSEipix.Base.Model
{
public delegate void onAction(T repo);
public static event onAction PostDeserialization;
private static void DeserializePost(JsonRepository<T, M> __instance)
{
if ( PostDeserialization != null && __instance is T repo )
{
PostDeserialization(repo);
}
}
public static void ApplyPatch(Harmony harmony)
{
var origDeser = typeof(T).GetMethod("Deserialize", BindingFlags.Instance | BindingFlags.NonPublic);
if ( origDeser == null || origDeser.IsVirtual )
{
Logger.Instance.info("No specific deserializer implementation for this repository. Falling back to JsonRepository (this is normal)");
origDeser = typeof(JsonRepository<T, M>).GetMethod(
"Deserialize", BindingFlags.Instance | BindingFlags.NonPublic);
}
var deserPost = typeof(RepositoryPatch<T, M>).GetMethod("DeserializePost", BindingFlags.Static | BindingFlags.NonPublic);
harmony.Patch(origDeser, postfix: new HarmonyMethod(deserPost));
Logger.Instance.info("The repository patching <"+typeof(T).Name + ", " + typeof(M).Name + "> was done.");
}
}where the patches are applyed:
try
{
var harmony = new Harmony("com.modloader.nsmeadival");
MainMenuPatch.ApplyPatch(harmony); // Works fine
RoomTypePatch.ApplyPatch(harmony);// Works fine
RoomTypeTooltipViewPatch.ApplyPatch(harmony);//Works fine
RoomViewPatch.ApplyPatch(harmony);// Works fine
RepositoryPatch<CropfieldRepository, Cropfield>.ApplyPatch(harmony);//No error, doesn't get applied
RepositoryPatch<ResearchRepository, ResearchModel>.ApplyPatch(harmony);//No error, doesn't get applied
RepositoryPatch<RoomTypeRepository, RoomType>.ApplyPatch(harmony);// Works fine
}
catch (Exception e)
{
Logger.Instance.info("Error happened while loading patches.\n" + e);
throw;
}Runtime environment (please complete the following information):
- OS: Windows 10 Enterprise build:19042.1052
- .NET version: v4.6.2
- Harmony version: 2.0.4.0
- Name of game or host application: Going Medieval
Additional context
Changing the order of the method calls does affect which patch is called.
Maybe related issues:
zkxs