Files
SPT-Server-Build/Core/Controllers/BotController.cs
T
2025-01-07 13:00:49 +00:00

101 lines
2.4 KiB
C#

using Core.Models.Common;
using Core.Models.Eft.Bot;
using Core.Models.Eft.Common;
using Core.Models.Eft.Common.Tables;
using Core.Models.Eft.Match;
using Core.Models.Spt.Bots;
using Core.Models.Spt.Config;
using Condition = Core.Models.Spt.Config.Condition;
namespace Core.Controllers;
public class BotController
{
private BotConfig _botConfig;
private PmcConfig _pmcConfig;
public BotController()
{}
public int GetBotPresetGenerationLimit(string type)
{
throw new NotImplementedException();
}
public BotCore GetBotCoreDifficulty()
{
throw new NotImplementedException();
}
public object GetBotDifficulty(string type, string difficulty) // TODO: return type was: IBotCore | IDifficultyCategories
{
throw new NotImplementedException();
}
public Dictionary<string, object> GetAllBotDifficulties()
{
throw new NotImplementedException();
}
public async Task<List<BotBase>> Generate(GenerateBotsRequestData info, bool playerscav)
{
throw new NotImplementedException();
}
public async Task<List<BotBase>> GenerateMultipleBotsAndCache()
{
throw new NotImplementedException();
}
public GetRaidConfigurationRequestData GetMostRecentRaidSettings()
{
throw new NotImplementedException();
}
public MinMax GetPmcLevelRangeForMap(string location)
{
throw new NotImplementedException();
}
public BotGenerationDetails GetBotGenerationDetailsForWave(Condition condition, PmcData pmcProfile, bool AllPmcsHaveSameNameAsPlayer,
GetRaidConfigurationRequestData raidSettings, int botCountToGenerate, bool generateAsPmc)
{
throw new NotImplementedException();
}
public int GetPlayerLevelFromProfile()
{
throw new NotImplementedException();
}
public int GetBotLimit(string type)
{
throw new NotImplementedException();
}
public bool IsBotPmc(string botRole)
{
throw new NotImplementedException();
}
public bool IsBotBoss(string botRole)
{
throw new NotImplementedException();
}
public bool IsBotFollower(string botRole)
{
throw new NotImplementedException();
}
public int GetBotCap()
{
throw new NotImplementedException();
}
public object GetAiBotBrainTypes() // TODO: Returns `any` in the node server
{
throw new NotImplementedException();
}
}