mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 09:50:43 -05:00
95 lines
3.8 KiB
C#
95 lines
3.8 KiB
C#
using System;
|
|
using SPT.Reflection.CodeWrapper;
|
|
using SPT.Reflection.Patching;
|
|
using SPT.Reflection.Utils;
|
|
using EFT;
|
|
using HarmonyLib;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Reflection.Emit;
|
|
|
|
namespace SPT.SinglePlayer.Patches.ScavMode
|
|
{
|
|
public class ScavProfileLoadPatch : ModulePatch
|
|
{
|
|
protected override MethodBase GetTargetMethod()
|
|
{
|
|
// Struct348 - 32128
|
|
// Struct364 - 33374
|
|
var desiredType = typeof(TarkovApplication)
|
|
.GetNestedTypes(PatchConstants.PublicDeclaredFlags)
|
|
.SingleCustom(x => x.GetField("timeAndWeather") != null
|
|
&& x.GetField("gameWorld") != null
|
|
&& x.GetField("metricsConfig") != null
|
|
&& x.Name.Contains("Struct"));
|
|
|
|
var desiredMethod = AccessTools.Method(desiredType, "MoveNext");
|
|
|
|
Logger.LogDebug($"{this.GetType().Name} Type: {desiredType?.Name}");
|
|
Logger.LogDebug($"{this.GetType().Name} Method: {desiredMethod?.Name}");
|
|
|
|
return desiredMethod;
|
|
}
|
|
|
|
[PatchTranspiler]
|
|
public static IEnumerable<CodeInstruction> PatchTranspile(ILGenerator generator, IEnumerable<CodeInstruction> instructions)
|
|
{
|
|
var codes = new List<CodeInstruction>(instructions);
|
|
|
|
// Search for code where backend.Session.getProfile() is called.
|
|
var searchCode = new CodeInstruction(OpCodes.Callvirt, AccessTools.Method(PatchConstants.BackendProfileInterfaceType, "get_Profile"));
|
|
var searchIndex = -1;
|
|
|
|
for (var i = 0; i < codes.Count; i++)
|
|
{
|
|
if (codes[i].opcode == searchCode.opcode && codes[i].operand == searchCode.operand)
|
|
{
|
|
searchIndex = i;
|
|
break;
|
|
}
|
|
}
|
|
|
|
// Patch failed.
|
|
if (searchIndex == -1)
|
|
{
|
|
Logger.LogError($"Patch {MethodBase.GetCurrentMethod()} failed: Could not find reference code.");
|
|
return instructions;
|
|
}
|
|
|
|
// Move back by 2. This is the start of this method call.
|
|
searchIndex -= 2;
|
|
|
|
var brFalseLabel = generator.DefineLabel();
|
|
var brLabel = generator.DefineLabel();
|
|
|
|
var newCodes = CodeGenerator.GenerateInstructions(new List<Code>()
|
|
{
|
|
new Code(OpCodes.Ldloc_1),
|
|
new Code(OpCodes.Call, typeof(ClientApplication<ISession>), "get_Session"),
|
|
new Code(OpCodes.Ldloc_1),
|
|
new Code(OpCodes.Ldfld, typeof(TarkovApplication), "_raidSettings"),
|
|
new Code(OpCodes.Callvirt, typeof(RaidSettings), "get_IsPmc"),
|
|
new Code(OpCodes.Brfalse, brFalseLabel),
|
|
new Code(OpCodes.Callvirt, PatchConstants.BackendProfileInterfaceType, "get_Profile"),
|
|
new Code(OpCodes.Br, brLabel),
|
|
new CodeWithLabel(OpCodes.Callvirt, brFalseLabel, PatchConstants.BackendProfileInterfaceType, "get_ProfileOfPet"),
|
|
new CodeWithLabel(OpCodes.Stfld, brLabel, typeof(TarkovApplication).GetNestedTypes(BindingFlags.Public).SingleCustom(IsTargetNestedType), "profile")
|
|
});
|
|
|
|
codes.RemoveRange(searchIndex, 4);
|
|
codes.InsertRange(searchIndex, newCodes);
|
|
|
|
return codes.AsEnumerable();
|
|
}
|
|
|
|
private static bool IsTargetNestedType(Type nestedType)
|
|
{
|
|
return nestedType.GetMethods(PatchConstants.PublicDeclaredFlags).Any() &&
|
|
nestedType.GetFields().Length == 5 &&
|
|
nestedType.GetField("savageProfile") != null &&
|
|
nestedType.GetField("profile") != null;
|
|
}
|
|
}
|
|
}
|