mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
31 lines
1.4 KiB
C#
31 lines
1.4 KiB
C#
using CommandLine;
|
|
using NadekoBot.Core.Common;
|
|
|
|
namespace NadekoBot.Core.Modules.Games.Common.Trivia
|
|
{
|
|
public class TriviaOptions : INadekoCommandOptions
|
|
{
|
|
[Option('p', "pokemon", Required = false, Default = false, HelpText = "Whether it's 'Who's that pokemon?' trivia.")]
|
|
public bool IsPokemon { get; set; } = false;
|
|
[Option("nohint", Required = false, Default = false, HelpText = "Don't show any hints.")]
|
|
public bool NoHint { get; set; } = false;
|
|
[Option('w', "win-req", Required = false, Default = 10, HelpText = "Winning requirement. Set 0 for an infinite game. Default 10.")]
|
|
public int WinRequirement { get; set; } = 10;
|
|
[Option('q', "question-timer", Required = false, Default = 30, HelpText = "How long until the question ends. Default 30.")]
|
|
public int QuestionTimer { get; set; } = 30;
|
|
[Option('t', "timeout", Required = false, Default = 10, HelpText = "Number of questions of inactivity in order stop. Set 0 for never. Default 10.")]
|
|
public int Timeout { get; set; } = 10;
|
|
|
|
public void NormalizeOptions()
|
|
{
|
|
if (WinRequirement < 0)
|
|
WinRequirement = 10;
|
|
if (QuestionTimer < 10 || QuestionTimer > 300)
|
|
QuestionTimer = 30;
|
|
if (Timeout < 0 || Timeout > 20)
|
|
Timeout = 10;
|
|
|
|
}
|
|
}
|
|
}
|