51 lines
1.7 KiB
Java
51 lines
1.7 KiB
Java
package wtf.beatrice.hidekobot.commands.slash;
|
|
|
|
import net.dv8tion.jda.api.events.interaction.command.SlashCommandInteractionEvent;
|
|
import net.dv8tion.jda.api.interactions.commands.OptionMapping;
|
|
import net.dv8tion.jda.api.interactions.commands.OptionType;
|
|
import net.dv8tion.jda.api.interactions.commands.build.CommandData;
|
|
import net.dv8tion.jda.api.interactions.commands.build.Commands;
|
|
import org.jetbrains.annotations.NotNull;
|
|
import wtf.beatrice.hidekobot.commands.base.DiceRoll;
|
|
import wtf.beatrice.hidekobot.objects.MessageResponse;
|
|
import wtf.beatrice.hidekobot.objects.commands.SlashCommandImpl;
|
|
|
|
public class DiceRollCommand extends SlashCommandImpl
|
|
{
|
|
@Override
|
|
public CommandData getSlashCommandData()
|
|
{
|
|
|
|
return Commands.slash("diceroll", "Roll dice. You can roll multiple dice at the same time.")
|
|
.addOption(OptionType.STRING, "query",
|
|
"The dice to roll.",
|
|
false,
|
|
false);
|
|
}
|
|
|
|
@Override
|
|
public void runSlashCommand(@NotNull SlashCommandInteractionEvent event)
|
|
{
|
|
event.deferReply().queue();
|
|
|
|
OptionMapping textOption = event.getOption("query");
|
|
String messageContent = "";
|
|
if(textOption != null)
|
|
{
|
|
messageContent = textOption.getAsString();
|
|
}
|
|
|
|
String[] args = messageContent.split("\\s");
|
|
|
|
MessageResponse response = DiceRoll.buildResponse(event.getUser(), args);
|
|
|
|
if(response.content() != null)
|
|
{
|
|
event.getHook().editOriginal(response.content()).queue();
|
|
} else if(response.embed() != null)
|
|
{
|
|
event.getHook().editOriginalEmbeds(response.embed()).queue();
|
|
}
|
|
}
|
|
}
|