63 lines
2.4 KiB
C#
63 lines
2.4 KiB
C#
using NadekoBot.Common.Attributes;
|
|
using NadekoBot.Core.Modules.Gambling.Services;
|
|
using System.Threading.Tasks;
|
|
using Discord;
|
|
using NadekoBot.Core.Services;
|
|
using NadekoBot.Extensions;
|
|
using System.Linq;
|
|
using Discord.Commands;
|
|
|
|
namespace NadekoBot.Modules.Gambling
|
|
{
|
|
public partial class Gambling
|
|
{
|
|
public class CurrencyRaffleCommands : NadekoSubmodule<CurrencyRaffleService>
|
|
{
|
|
private readonly IBotConfigProvider _bc;
|
|
|
|
public CurrencyRaffleCommands(IBotConfigProvider bc)
|
|
{
|
|
_bc = bc;
|
|
}
|
|
|
|
public enum Mixed { Mixed }
|
|
|
|
[NadekoCommand, Usage, Description, Aliases]
|
|
[RequireContext(ContextType.Guild)]
|
|
[Priority(0)]
|
|
public Task RaffleCur(Mixed _, int amount) =>
|
|
RaffleCur(amount, true);
|
|
|
|
[NadekoCommand, Usage, Description, Aliases]
|
|
[RequireContext(ContextType.Guild)]
|
|
[Priority(1)]
|
|
public async Task RaffleCur(int amount, bool mixed = false)
|
|
{
|
|
if (amount < 1)
|
|
return;
|
|
async Task OnEnded(IUser arg, int won)
|
|
{
|
|
await Context.Channel.SendConfirmAsync(GetText("rafflecur_ended", _bc.BotConfig.CurrencyName, Format.Bold(arg.ToString()), won + _bc.BotConfig.CurrencySign));
|
|
}
|
|
var res = await _service.JoinOrCreateGame(Context.Channel.Id,
|
|
Context.User, amount, mixed, OnEnded)
|
|
.ConfigureAwait(false);
|
|
|
|
if (res.Item1 != null)
|
|
{
|
|
await Context.Channel.SendConfirmAsync(GetText("rafflecur", res.Item1.GameType.ToString()),
|
|
string.Join("\n", res.Item1.Users.Select(x => $"{x.DiscordUser} ({x.Amount})")),
|
|
footer: GetText("rafflecur_joined", Context.User.ToString())).ConfigureAwait(false);
|
|
}
|
|
else
|
|
{
|
|
if (res.Item2 == CurrencyRaffleService.JoinErrorType.AlreadyJoinedOrInvalidAmount)
|
|
await ReplyErrorLocalized("rafflecur_already_joined").ConfigureAwait(false);
|
|
else if (res.Item2 == CurrencyRaffleService.JoinErrorType.NotEnoughCurrency)
|
|
await ReplyErrorLocalized("not_enough", _bc.BotConfig.CurrencySign).ConfigureAwait(false);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|