quantum-space-buddies/QSB/Patches/QSBPatch.cs

118 lines
3.0 KiB
C#
Raw Normal View History

2021-06-18 20:54:32 +00:00
using Harmony;
using OWML.Common;
using OWML.Utils;
using QSB.Utility;
using System;
using System.Collections.Generic;
using System.Linq;
2021-06-18 20:54:32 +00:00
using System.Reflection;
namespace QSB.Patches
2020-11-03 21:11:10 +00:00
{
2020-12-02 21:23:01 +00:00
public abstract class QSBPatch
{
public abstract QSBPatchTypes Type { get; }
public abstract void DoPatches();
2021-06-18 20:54:32 +00:00
public void DoUnpatches()
{
foreach (var item in _patchedMethods)
{
2021-08-08 19:04:55 +00:00
//DebugLog.DebugWrite($"[Unpatch] {item.DeclaringType}.{item.Name}", MessageType.Info);
Unpatch(item);
2021-06-18 20:54:32 +00:00
}
2021-06-18 21:38:32 +00:00
2021-06-18 20:54:32 +00:00
_patchedMethods.Clear();
}
private List<MethodInfo> _patchedMethods = new List<MethodInfo>();
public void Empty(string patchName)
{
2021-08-08 19:04:55 +00:00
//DebugLog.DebugWrite($"[Empty] {patchName}", MessageType.Success);
2021-06-18 20:54:32 +00:00
var method = GetMethodInfo(patchName);
QSBCore.Helper.HarmonyHelper.EmptyMethod(method);
}
2021-06-19 10:26:05 +00:00
public void Prefix(string patchName)
2021-06-18 20:54:32 +00:00
=> DoPrefixPostfix(true, patchName);
2021-06-19 10:26:05 +00:00
public void Postfix(string patchName)
2021-06-18 20:54:32 +00:00
=> DoPrefixPostfix(false, patchName);
private void DoPrefixPostfix(bool isPrefix, string patchName)
{
var method = GetMethodInfo(patchName);
if (method != null)
{
if (isPrefix)
{
QSBCore.Helper.HarmonyHelper.AddPrefix(method, GetType(), patchName);
}
else
{
QSBCore.Helper.HarmonyHelper.AddPostfix(method, GetType(), patchName);
}
2021-06-18 21:38:32 +00:00
2021-06-18 20:54:32 +00:00
_patchedMethods.Add(method);
}
2021-08-08 19:04:55 +00:00
//DebugLog.DebugWrite($"{(isPrefix ? "[Prefix]" : "[Postfix]")} {patchName}", method == null ? MessageType.Error : MessageType.Success);
2021-06-18 20:54:32 +00:00
}
private MethodInfo GetMethodInfo(string patchName)
{
var splitName = patchName.Split('_');
var typeName = splitName[0];
var methodName = splitName[1];
var type = GetFirstTypeByName(typeName);
if (type == null)
{
DebugLog.ToConsole($"Error - Couldn't find type for patch name {patchName}!", MessageType.Error);
2021-06-18 20:54:32 +00:00
return null;
}
var method = type.GetAnyMethod(methodName);
if (method == null)
{
DebugLog.ToConsole($"Error - Couldn't find method for patch name {patchName}!", MessageType.Error);
2021-06-18 20:54:32 +00:00
return null;
}
return method;
}
private Type GetFirstTypeByName(string typeName)
{
var a = typeof(OWRigidbody).Assembly;
var assemblyTypes = a.GetTypes();
for (var j = 0; j < assemblyTypes.Length; j++)
2021-06-18 20:54:32 +00:00
{
if (assemblyTypes[j].Name == typeName)
{
return assemblyTypes[j];
}
}
2021-06-18 21:38:32 +00:00
2021-06-18 20:54:32 +00:00
return null;
}
private void Unpatch(MethodInfo method)
{
var dictionary = typeof(HarmonySharedState).Invoke<Dictionary<MethodBase, byte[]>>("GetState", new object[0]);
var methodBase = dictionary.Keys.First(m =>
2021-07-04 21:34:38 +00:00
m.DeclaringType == method.DeclaringType
&& m.Name == method.Name);
var patchInfo = PatchInfoSerialization.Deserialize(dictionary.GetValueSafe(methodBase));
patchInfo.RemovePostfix(QSBCore.Helper.Manifest.UniqueName);
patchInfo.RemovePrefix(QSBCore.Helper.Manifest.UniqueName);
patchInfo.RemoveTranspiler(QSBCore.Helper.Manifest.UniqueName);
PatchFunctions.UpdateWrapper(methodBase, patchInfo, QSBCore.Helper.Manifest.UniqueName);
dictionary[methodBase] = patchInfo.Serialize();
}
2020-12-02 21:23:01 +00:00
}
2020-12-03 08:28:05 +00:00
}