feat(sights): added sights to the filters

This commit is contained in:
Yui
2025-11-04 00:29:53 -03:00
parent 9103b884f2
commit 99c737c672
3 changed files with 42 additions and 9 deletions

View File

@@ -1,23 +1,23 @@
using moe.yuyui.weebsights_port.Assorts;
using System.Diagnostics;
using moe.yuyui.weebsights_port.Assorts;
using moe.yuyui.weebsights_port.Enums;
using moe.yuyui.weebsights_port.Items;
using moe.yuyui.weebsights_port.Locales;
using SPTarkov.DI.Annotations;
using SPTarkov.Server.Core.DI;
using SPTarkov.Server.Core.Models.Utils;
using SPTarkov.Server.Core.Services;
namespace moe.yuyui.weebsights_port;
[Injectable(TypePriority = OnLoadOrder.PostSptModLoader + 1)]
public class Mod(ISptLogger<Mod> logger, EnglishLocale englishLocale, MechanicAssort mechanicAssort, ItemGenerator itemGenerator): IOnLoad
public class Mod(ISptLogger<Mod> logger,
MechanicAssort mechanicAssort,
ItemGenerator itemGenerator): IOnLoad
{
public Task OnLoad()
{
if (!englishLocale.LoadLocales())
{
logger.Error("[Weeb Iron Sights] Failed to load locales, you may see garbled text");
}
var stopWatch = Stopwatch.StartNew();
var sightsMbus = itemGenerator.GenerateWeebSights<ESightsMbus>();
var sightsMcx = itemGenerator.GenerateWeebSights<ESightsMcx>();
if (!mechanicAssort.InjectAssortFromItemClone(sightsMbus))
@@ -25,10 +25,14 @@ public class Mod(ISptLogger<Mod> logger, EnglishLocale englishLocale, MechanicAs
logger.Critical("[Weeb Iron Sights] Failed to inject MBUS Sights");
}
if (!mechanicAssort.InjectAssortFromItemClone(sightsMcx))
{
logger.Critical("[Weeb Iron Sights] Failed to inject MCX Sights");
}
stopWatch.Stop();
logger.Success($"[Weeb Iron Sights] Loaded in {stopWatch.ElapsedMilliseconds} ms");
return Task.CompletedTask;
}
}