final fixes for warfare 2

This commit is contained in:
z__
2022-02-04 12:09:17 +07:00
parent ba5b611994
commit 1f7e4e869d
2 changed files with 23 additions and 14 deletions

View File

@@ -1,6 +1,7 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using System.Reflection.Emit;
@@ -8,6 +9,7 @@ using NLog;
using Sandbox;
using Torch.Managers.PatchManager;
using Torch.Managers.PatchManager.MSIL;
using Torch.Utils;
namespace Torch.Patches
{
@@ -17,12 +19,14 @@ namespace Torch.Patches
[PatchShim]
public static class WorldLoadExceptionPatch
{
private static readonly ILogger _log = LogManager.GetCurrentClassLogger();
private static readonly ILogger Log = LogManager.GetCurrentClassLogger();
[ReflectedMethodInfo(typeof(MySandboxGame), "InitQuickLaunch")]
private static MethodInfo _quickLaunchMethod = null!;
public static void Patch(PatchContext ctx)
{
ctx.GetPattern(typeof(MySandboxGame).GetMethod("InitQuickLaunch", BindingFlags.Instance | BindingFlags.NonPublic))
.Transpilers.Add(typeof(WorldLoadExceptionPatch).GetMethod(nameof(Transpile), BindingFlags.Static | BindingFlags.NonPublic));
ctx.GetPattern(_quickLaunchMethod).AddTranspiler(nameof(Transpile));
}
private static IEnumerable<MsilInstruction> Transpile(IEnumerable<MsilInstruction> method)
@@ -30,19 +34,19 @@ namespace Torch.Patches
var msil = method.ToList();
for (var i = 0; i < msil.Count; i++)
{
if (msil[i].TryCatchOperations.All(x => x.Type != MsilTryCatchOperationType.BeginClauseBlock))
continue;
for (; i < msil.Count; i++)
var instruction = msil[i];
if (instruction.IsLocalStore() && instruction.Operand is MsilOperandInline.MsilOperandLocal {Value.Index: 19} operand)
{
if (msil[i].OpCode != OpCodes.Leave)
continue;
msil[i] = new MsilInstruction(OpCodes.Rethrow);
break;
msil.InsertRange(i + 1, new []
{
operand.Instruction.CopyWith(OpCodes.Ldloc_S),
new MsilInstruction(OpCodes.Call).InlineValue(new Action<Exception>(LogFatal).Method)
});
}
}
return msil;
}
private static void LogFatal(Exception e) => Log.Fatal(e.ToStringDemystified());
}
}