From 6fd03d6f5c9f92b5921d9cb88535bf57d09272bb Mon Sep 17 00:00:00 2001 From: Adrian <68704415+4drian3d@users.noreply.github.com> Date: Wed, 27 Dec 2023 13:33:44 -0500 Subject: [PATCH] Added static methods to create ArgumentBuilders directly in the BrigadierCommand class (#1161) --- .../api/command/BrigadierCommand.java | 37 ++++++++++++++++++- .../proxy/command/BrigadierCommandTests.java | 12 ++++++ 2 files changed, 47 insertions(+), 2 deletions(-) diff --git a/api/src/main/java/com/velocitypowered/api/command/BrigadierCommand.java b/api/src/main/java/com/velocitypowered/api/command/BrigadierCommand.java index a8331c5b9..365106926 100644 --- a/api/src/main/java/com/velocitypowered/api/command/BrigadierCommand.java +++ b/api/src/main/java/com/velocitypowered/api/command/BrigadierCommand.java @@ -8,8 +8,11 @@ package com.velocitypowered.api.command; import com.google.common.base.Preconditions; +import com.mojang.brigadier.arguments.ArgumentType; import com.mojang.brigadier.builder.LiteralArgumentBuilder; +import com.mojang.brigadier.builder.RequiredArgumentBuilder; import com.mojang.brigadier.tree.LiteralCommandNode; +import org.jetbrains.annotations.NotNull; /** * A command that uses Brigadier for parsing the command and @@ -31,7 +34,7 @@ public final class BrigadierCommand implements Command { * * @param builder the {@link LiteralCommandNode} builder */ - public BrigadierCommand(final LiteralArgumentBuilder builder) { + public BrigadierCommand(final @NotNull LiteralArgumentBuilder builder) { this(Preconditions.checkNotNull(builder, "builder").build()); } @@ -40,7 +43,7 @@ public final class BrigadierCommand implements Command { * * @param node the command node */ - public BrigadierCommand(final LiteralCommandNode node) { + public BrigadierCommand(final @NotNull LiteralCommandNode node) { this.node = Preconditions.checkNotNull(node, "node"); } @@ -52,4 +55,34 @@ public final class BrigadierCommand implements Command { public LiteralCommandNode getNode() { return node; } + + /** + * Creates a new LiteralArgumentBuilder of the required name. + * + * @param name the literal name. + * @return a new LiteralArgumentBuilder. + */ + public static LiteralArgumentBuilder literalArgumentBuilder( + final @NotNull String name) { + Preconditions.checkNotNull(name, "name"); + // Validation to avoid beginner's errors in case someone includes a space in the argument name + Preconditions.checkArgument(name.indexOf(' ') == -1, "the argument name cannot contain spaces"); + return LiteralArgumentBuilder.literal(name); + } + + /** + * Creates a new RequiredArgumentBuilder of the required name and type. + * + * @param name the argument name + * @param argumentType the argument type required + * @param the ArgumentType required type + * @return a new RequiredArgumentBuilder + */ + public static RequiredArgumentBuilder requiredArgumentBuilder( + final @NotNull String name, @NotNull final ArgumentType argumentType) { + Preconditions.checkNotNull(name, "name"); + Preconditions.checkNotNull(argumentType, "argument type"); + + return RequiredArgumentBuilder.argument(name, argumentType); + } } diff --git a/proxy/src/test/java/com/velocitypowered/proxy/command/BrigadierCommandTests.java b/proxy/src/test/java/com/velocitypowered/proxy/command/BrigadierCommandTests.java index 9db03ff94..f4110ba52 100644 --- a/proxy/src/test/java/com/velocitypowered/proxy/command/BrigadierCommandTests.java +++ b/proxy/src/test/java/com/velocitypowered/proxy/command/BrigadierCommandTests.java @@ -20,11 +20,13 @@ package com.velocitypowered.proxy.command; import static com.mojang.brigadier.arguments.IntegerArgumentType.getInteger; import static com.mojang.brigadier.arguments.IntegerArgumentType.integer; import static com.mojang.brigadier.arguments.StringArgumentType.word; +import static org.junit.jupiter.api.Assertions.assertDoesNotThrow; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertSame; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertions.fail; +import com.mojang.brigadier.arguments.StringArgumentType; import com.mojang.brigadier.builder.LiteralArgumentBuilder; import com.mojang.brigadier.builder.RequiredArgumentBuilder; import com.velocitypowered.api.command.BrigadierCommand; @@ -349,4 +351,14 @@ public class BrigadierCommandTests extends CommandTestSuite { assertThrows(CompletionException.class, () -> manager.offerSuggestions(source, "parent ").join()); } + + @Test + void testArgumentBuilderCreationUsingStaticFactory() { + assertDoesNotThrow(() -> BrigadierCommand.literalArgumentBuilder("someCommand")); + assertThrows(IllegalArgumentException.class, + () -> BrigadierCommand.literalArgumentBuilder("some random command")); + assertDoesNotThrow( + () -> BrigadierCommand.requiredArgumentBuilder( + "someRequiredArgument", StringArgumentType.word())); + } }