mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 09:50:43 -05:00
Depends on SPT-AKI/SPT-AssemblyTool#3 * Refactored Modules for better consistency and general readability, along with preparing the code for a publicized assembly * Added `PublicDeclaredFlags` to `PatchConstants` to cover a set of commonly used flags to get methods post-publicizing * Added a replacement to LINQ's `.Single()` - `.SingleCustom()` which has improved logging to help with debugging Module code. Replaced all `.Single()` usages where applicable * Replaced most method info fetching with `AccessTools` for consistency and better readability, especially in places where methods were being retrieved by their name anyways **NOTE:** As a side effect of publicizing all properties, some property access code such as `Player.Position` will now show "ambiguous reference" errors during compile, due to there being multiple interfaces with the Property name being defined on the class. The way to get around this is to use a cast to an explicit interface Example: ```cs Singleton<GameWorld>.Instance.MainPlayer.Position ``` will now need to be ```cs ((IPlayer)Singleton<GameWorld>.Instance.MainPlayer).Position ``` Co-authored-by: Terkoiz <terkoiz@spt.dev> Reviewed-on: SPT-AKI/Modules#58 Co-authored-by: Terkoiz <terkoiz@noreply.dev.sp-tarkov.com> Co-committed-by: Terkoiz <terkoiz@noreply.dev.sp-tarkov.com>
48 lines
1.8 KiB
C#
48 lines
1.8 KiB
C#
using Aki.Reflection.Patching;
|
|
using Aki.Reflection.Utils;
|
|
using EFT;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
|
|
namespace Aki.SinglePlayer.Patches.Healing
|
|
{
|
|
/// <summary>
|
|
/// We need to alter Class1049.smethod_0().
|
|
/// Set the passed in ERaidMode to online, this ensures the heal screen shows.
|
|
/// It cannot be changed in the calling method as doing so causes the post-raid exp display to remain at 0
|
|
/// </summary>
|
|
public class PostRaidHealScreenPatch : ModulePatch
|
|
{
|
|
protected override MethodBase GetTargetMethod()
|
|
{
|
|
// Class1049.smethod_0 as of 18969
|
|
//internal static Class1049 smethod_0(GInterface29 backend, string profileId, Profile savageProfile, LocationSettingsClass.GClass1097 location, ExitStatus exitStatus, TimeSpan exitTime, ERaidMode raidMode)
|
|
var desiredMethod = typeof(PostRaidHealthScreenClass).GetMethods(BindingFlags.Static | BindingFlags.Public).SingleCustom(IsTargetMethod);
|
|
|
|
Logger.LogDebug($"{this.GetType().Name} Method: {desiredMethod?.Name}");
|
|
|
|
return desiredMethod;
|
|
}
|
|
|
|
private static bool IsTargetMethod(MethodInfo mi)
|
|
{
|
|
var parameters = mi.GetParameters();
|
|
return parameters.Length == 7
|
|
&& parameters[0].Name == "session"
|
|
&& parameters[1].Name == "profileId"
|
|
&& parameters[2].Name == "savageProfile"
|
|
&& parameters[3].Name == "location"
|
|
&& parameters[4].Name == "exitStatus"
|
|
&& parameters[5].Name == "exitTime"
|
|
&& parameters[6].Name == "raidMode";
|
|
}
|
|
|
|
[PatchPrefix]
|
|
private static bool PatchPrefix(ref ERaidMode raidMode)
|
|
{
|
|
raidMode = ERaidMode.Online;
|
|
return true; // Perform original method
|
|
}
|
|
}
|
|
}
|