2021-11-23 18:26:33 -05:00
|
|
|
|
using System.Linq;
|
2018-02-10 01:26:38 -05:00
|
|
|
|
using System.Threading.Tasks;
|
2018-04-10 02:38:18 -04:00
|
|
|
|
using SharedLibraryCore;
|
2018-05-05 16:36:26 -04:00
|
|
|
|
using System.Collections.Generic;
|
2018-11-27 19:31:48 -05:00
|
|
|
|
using IW4MAdmin.Plugins.Stats.Helpers;
|
2020-01-31 21:15:07 -05:00
|
|
|
|
using SharedLibraryCore.Configuration;
|
|
|
|
|
using SharedLibraryCore.Interfaces;
|
2021-11-23 18:26:33 -05:00
|
|
|
|
using EFClient = Data.Models.Client.EFClient;
|
2018-05-05 16:36:26 -04:00
|
|
|
|
|
2018-04-08 17:50:58 -04:00
|
|
|
|
namespace IW4MAdmin.Plugins.Stats.Commands
|
2018-02-10 01:26:38 -05:00
|
|
|
|
{
|
2021-11-23 18:26:33 -05:00
|
|
|
|
public class TopStats : Command
|
2018-02-10 01:26:38 -05:00
|
|
|
|
{
|
2023-02-11 22:01:28 -05:00
|
|
|
|
public static async Task<List<string>> GetTopStats(IGameServer server, ITranslationLookup translationLookup, StatManager statManager)
|
2018-02-10 01:26:38 -05:00
|
|
|
|
{
|
2023-04-05 11:15:10 -04:00
|
|
|
|
var serverId = server.LegacyDatabaseId;
|
|
|
|
|
var topStatsText = new List<string>
|
2018-05-05 16:36:26 -04:00
|
|
|
|
{
|
2021-11-23 18:26:33 -05:00
|
|
|
|
$"(Color::Accent)--{translationLookup["PLUGINS_STATS_COMMANDS_TOP_TEXT"]}--"
|
2018-05-05 16:36:26 -04:00
|
|
|
|
};
|
2018-02-10 01:26:38 -05:00
|
|
|
|
|
2023-02-11 22:01:28 -05:00
|
|
|
|
var stats = await statManager.GetTopStats(0, 5, serverId);
|
2021-11-23 18:26:33 -05:00
|
|
|
|
var statsList = stats.Select((stats, index) =>
|
|
|
|
|
translationLookup["COMMANDS_TOPSTATS_RESULT"]
|
|
|
|
|
.FormatExt(index + 1, stats.Name, stats.KDR, stats.Performance));
|
2018-05-16 00:57:37 -04:00
|
|
|
|
|
2020-11-27 22:52:52 -05:00
|
|
|
|
topStatsText.AddRange(statsList);
|
2018-05-05 16:36:26 -04:00
|
|
|
|
|
2021-11-23 18:26:33 -05:00
|
|
|
|
// no one qualified
|
2018-05-08 00:58:46 -04:00
|
|
|
|
if (topStatsText.Count == 1)
|
2018-05-05 16:36:26 -04:00
|
|
|
|
{
|
2023-04-05 11:15:10 -04:00
|
|
|
|
topStatsText = new List<string>
|
2018-04-10 02:38:18 -04:00
|
|
|
|
{
|
2020-01-31 21:15:07 -05:00
|
|
|
|
translationLookup["PLUGINS_STATS_TEXT_NOQUALIFY"]
|
2018-05-05 16:36:26 -04:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return topStatsText;
|
|
|
|
|
}
|
2018-04-10 02:38:18 -04:00
|
|
|
|
|
2021-11-23 18:26:33 -05:00
|
|
|
|
private new readonly CommandConfiguration _config;
|
2023-02-11 22:01:28 -05:00
|
|
|
|
private readonly StatManager _statManager;
|
2020-08-01 10:58:23 -04:00
|
|
|
|
|
2023-02-11 22:01:28 -05:00
|
|
|
|
public TopStats(CommandConfiguration config, ITranslationLookup translationLookup, StatManager statManager) : base(config,
|
2021-11-23 18:26:33 -05:00
|
|
|
|
translationLookup)
|
2020-01-31 21:15:07 -05:00
|
|
|
|
{
|
|
|
|
|
Name = "topstats";
|
|
|
|
|
Description = translationLookup["PLUGINS_STATS_COMMANDS_TOP_DESC"];
|
|
|
|
|
Alias = "ts";
|
|
|
|
|
Permission = EFClient.Permission.User;
|
|
|
|
|
RequiresTarget = false;
|
2020-08-01 10:58:23 -04:00
|
|
|
|
|
|
|
|
|
_config = config;
|
2023-02-11 22:01:28 -05:00
|
|
|
|
_statManager = statManager;
|
2020-01-31 21:15:07 -05:00
|
|
|
|
}
|
2018-05-05 16:36:26 -04:00
|
|
|
|
|
2022-03-23 13:09:40 -04:00
|
|
|
|
public override async Task ExecuteAsync(GameEvent gameEvent)
|
2018-05-05 16:36:26 -04:00
|
|
|
|
{
|
2023-02-11 22:01:28 -05:00
|
|
|
|
var topStats = await GetTopStats(gameEvent.Owner, _translationLookup, _statManager);
|
2022-03-23 13:09:40 -04:00
|
|
|
|
if (!gameEvent.Message.IsBroadcastCommand(_config.BroadcastCommandPrefix))
|
2018-05-05 16:36:26 -04:00
|
|
|
|
{
|
2022-03-23 13:09:40 -04:00
|
|
|
|
await gameEvent.Origin.TellAsync(topStats, gameEvent.Owner.Manager.CancellationToken);
|
2018-05-05 16:36:26 -04:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
foreach (var stat in topStats)
|
2018-09-23 20:45:54 -04:00
|
|
|
|
{
|
2022-03-23 13:09:40 -04:00
|
|
|
|
await gameEvent.Owner.Broadcast(stat).WaitAsync(Utilities.DefaultCommandTimeout,
|
|
|
|
|
gameEvent.Owner.Manager.CancellationToken);
|
2018-09-23 20:45:54 -04:00
|
|
|
|
}
|
2018-02-10 01:26:38 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-03-23 13:09:40 -04:00
|
|
|
|
}
|