0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 09:50:43 -05:00
modules/project/SPT.SinglePlayer/Patches/RaidFix/BotTemplateLimitPatch.cs

45 lines
1.5 KiB
C#
Raw Normal View History

2024-05-21 19:10:17 +01:00
using SPT.Reflection.Patching;
using SPT.Common.Http;
2023-03-03 18:52:31 +00:00
using System;
using System.Collections.Generic;
using System.Reflection;
using HarmonyLib;
2023-03-03 18:52:31 +00:00
2024-05-21 19:10:17 +01:00
namespace SPT.SinglePlayer.Patches.RaidFix
2023-03-03 18:52:31 +00:00
{
public class BotTemplateLimitPatch : ModulePatch
{
static BotTemplateLimitPatch()
{
_ = nameof(BotsPresets.CreateProfile);
_ = nameof(WaveInfo.Difficulty);
}
protected override MethodBase GetTargetMethod()
{
2024-07-04 22:07:02 +01:00
return AccessTools.Method(typeof(BotsPresets), nameof(BotsPresets.method_3));
2023-03-03 18:52:31 +00:00
}
[PatchPostfix]
public static void PatchPostfix(List<WaveInfo> __result, List<WaveInfo> wavesProfiles, List<WaveInfo> delayed)
2023-03-03 18:52:31 +00:00
{
/*
2023-07-30 09:47:25 +01:00
Method sums Limits by grouping wavesPropfiles collection by Role and Difficulty
2023-03-03 18:52:31 +00:00
then in each group sets Limit to 30, the remainder is stored in "delayed" collection.
So we change Limit of each group.
Clear delayed waves, we don't need them if we have enough loaded profiles and in method_2 it creates a lot of garbage.
*/
delayed?.Clear();
foreach (WaveInfo wave in __result)
{
var json = RequestHandler.GetJson($"/singleplayer/settings/bot/limit/{wave.Role}");
wave.Limit = (string.IsNullOrWhiteSpace(json))
? 30
: Convert.ToInt32(json);
}
}
}
}