using SptCommon.Annotations; using Core.Context; using Core.Helpers; using Core.Models.Eft.InRaid; using Core.Models.Spt.Config; using Core.Models.Utils; using Core.Servers; using Core.Services; namespace Core.Controllers; [Injectable] public class InRaidController( ISptLogger _logger, SaveServer _saveServer, ProfileHelper _profileHelper, LocalisationService _localisationService, ApplicationContext _applicationContext, ConfigServer _configServer ) { protected InRaidConfig _inRaidConfig = _configServer.GetConfig(); protected BotConfig _botConfig = _configServer.GetConfig(); /// /// Save locationId to active profiles in-raid object AND app context /// /// Session id /// Register player request public void AddPlayer(string sessionId, RegisterPlayerRequestData info) { throw new NotImplementedException(); } /// /// Handle raid/profile/scavsave /// Save profile state to disk /// Handles pmc/pscav /// /// /// public void SavePostRaidProfileForScav(ScavSaveRequestData offRaidProfileData, string sessionId) { throw new NotImplementedException(); } /// /// Get the inraid config from configs/inraid.json /// public InRaidConfig GetInRaidConfig() { return _inRaidConfig; } /// /// /// /// /// /// public double GetTraitorScavHostileChance(string url, string sessionId) { throw new NotImplementedException(); } /// /// /// /// /// /// public List GetBossConvertSettings(string url, string sessionId) { return _botConfig.AssaultToBossConversion.BossesToConvertToWeights.Keys.ToList(); } }