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

45 lines
1.5 KiB
C#
Raw Normal View History

2023-03-03 18:52:31 +00:00
using Aki.Reflection.Patching;
using Aki.Common.Http;
using System;
using System.Collections.Generic;
using System.Reflection;
using HarmonyLib;
2023-03-03 18:52:31 +00:00
namespace Aki.SinglePlayer.Patches.RaidFix
{
public class BotTemplateLimitPatch : ModulePatch
{
static BotTemplateLimitPatch()
{
_ = nameof(BotsPresets.CreateProfile);
_ = nameof(WaveInfo.Difficulty);
}
protected override MethodBase GetTargetMethod()
{
return AccessTools.Method(typeof(BotsPresets), nameof(BotsPresets.method_1));
2023-03-03 18:52:31 +00:00
}
[PatchPostfix]
private static void PatchPostfix(List<WaveInfo> __result, List<WaveInfo> wavesProfiles, List<WaveInfo> delayed)
{
/*
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);
}
}
}
}