mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2025-07-11 22:49:54 +00:00
176 lines
7.9 KiB
Diff
176 lines
7.9 KiB
Diff
--- a/net/minecraft/commands/CommandDispatcher.java
|
|
+++ b/net/minecraft/commands/CommandDispatcher.java
|
|
@@ -145,6 +145,15 @@
|
|
import net.minecraft.world.level.GameRules;
|
|
import org.slf4j.Logger;
|
|
|
|
+// CraftBukkit start
|
|
+import com.google.common.base.Joiner;
|
|
+import java.util.Collection;
|
|
+import java.util.IdentityHashMap;
|
|
+import java.util.LinkedHashSet;
|
|
+import org.bukkit.event.player.PlayerCommandSendEvent;
|
|
+import org.bukkit.event.server.ServerCommandEvent;
|
|
+// CraftBukkit end
|
|
+
|
|
public class CommandDispatcher {
|
|
|
|
public static final String COMMAND_PREFIX = "/";
|
|
@@ -188,6 +197,7 @@
|
|
private final com.mojang.brigadier.CommandDispatcher<CommandListenerWrapper> dispatcher = new com.mojang.brigadier.CommandDispatcher();
|
|
|
|
public CommandDispatcher(CommandDispatcher.ServerType commanddispatcher_servertype, CommandBuildContext commandbuildcontext) {
|
|
+ this(); // CraftBukkit
|
|
CommandAdvancement.register(this.dispatcher);
|
|
CommandAttribute.register(this.dispatcher, commandbuildcontext);
|
|
CommandExecute.register(this.dispatcher, commandbuildcontext);
|
|
@@ -292,6 +302,11 @@
|
|
CommandPublish.register(this.dispatcher);
|
|
}
|
|
|
|
+ // CraftBukkit start
|
|
+ }
|
|
+
|
|
+ public CommandDispatcher() {
|
|
+ // CraftBukkkit end
|
|
this.dispatcher.setConsumer(ExecutionCommandSource.resultConsumer());
|
|
}
|
|
|
|
@@ -302,9 +317,52 @@
|
|
return new ParseResults(commandcontextbuilder1, parseresults.getReader(), parseresults.getExceptions());
|
|
}
|
|
|
|
+ // CraftBukkit start
|
|
+ public void dispatchServerCommand(CommandListenerWrapper sender, String command) {
|
|
+ Joiner joiner = Joiner.on(" ");
|
|
+ if (command.startsWith("/")) {
|
|
+ command = command.substring(1);
|
|
+ }
|
|
+
|
|
+ ServerCommandEvent event = new ServerCommandEvent(sender.getBukkitSender(), command);
|
|
+ org.bukkit.Bukkit.getPluginManager().callEvent(event);
|
|
+ if (event.isCancelled()) {
|
|
+ return;
|
|
+ }
|
|
+ command = event.getCommand();
|
|
+
|
|
+ String[] args = command.split(" ");
|
|
+
|
|
+ String cmd = args[0];
|
|
+ if (cmd.startsWith("minecraft:")) cmd = cmd.substring("minecraft:".length());
|
|
+ if (cmd.startsWith("bukkit:")) cmd = cmd.substring("bukkit:".length());
|
|
+
|
|
+ // Block disallowed commands
|
|
+ if (cmd.equalsIgnoreCase("stop") || cmd.equalsIgnoreCase("kick") || cmd.equalsIgnoreCase("op")
|
|
+ || cmd.equalsIgnoreCase("deop") || cmd.equalsIgnoreCase("ban") || cmd.equalsIgnoreCase("ban-ip")
|
|
+ || cmd.equalsIgnoreCase("pardon") || cmd.equalsIgnoreCase("pardon-ip") || cmd.equalsIgnoreCase("reload")) {
|
|
+ return;
|
|
+ }
|
|
+
|
|
+ // Handle vanilla commands;
|
|
+ if (sender.getLevel().getCraftServer().getCommandBlockOverride(args[0])) {
|
|
+ args[0] = "minecraft:" + args[0];
|
|
+ }
|
|
+
|
|
+ String newCommand = joiner.join(args);
|
|
+ this.performPrefixedCommand(sender, newCommand, newCommand);
|
|
+ }
|
|
+ // CraftBukkit end
|
|
+
|
|
public void performPrefixedCommand(CommandListenerWrapper commandlistenerwrapper, String s) {
|
|
+ // CraftBukkit start
|
|
+ this.performPrefixedCommand(commandlistenerwrapper, s, s);
|
|
+ }
|
|
+
|
|
+ public void performPrefixedCommand(CommandListenerWrapper commandlistenerwrapper, String s, String label) {
|
|
s = trimOptionalPrefix(s);
|
|
- this.performCommand(this.dispatcher.parse(s, commandlistenerwrapper), s);
|
|
+ this.performCommand(this.dispatcher.parse(s, commandlistenerwrapper), s, label);
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
public static String trimOptionalPrefix(String s) {
|
|
@@ -312,12 +370,16 @@
|
|
}
|
|
|
|
public void performCommand(ParseResults<CommandListenerWrapper> parseresults, String s) {
|
|
+ this.performCommand(parseresults, s, s);
|
|
+ }
|
|
+
|
|
+ public void performCommand(ParseResults<CommandListenerWrapper> parseresults, String s, String label) { // CraftBukkit
|
|
CommandListenerWrapper commandlistenerwrapper = (CommandListenerWrapper) parseresults.getContext().getSource();
|
|
|
|
Profiler.get().push(() -> {
|
|
return "/" + s;
|
|
});
|
|
- ContextChain<CommandListenerWrapper> contextchain = finishParsing(parseresults, s, commandlistenerwrapper);
|
|
+ ContextChain<CommandListenerWrapper> contextchain = finishParsing(parseresults, s, commandlistenerwrapper, label); // CraftBukkit
|
|
|
|
try {
|
|
if (contextchain != null) {
|
|
@@ -351,7 +413,7 @@
|
|
}
|
|
|
|
@Nullable
|
|
- private static ContextChain<CommandListenerWrapper> finishParsing(ParseResults<CommandListenerWrapper> parseresults, String s, CommandListenerWrapper commandlistenerwrapper) {
|
|
+ private static ContextChain<CommandListenerWrapper> finishParsing(ParseResults<CommandListenerWrapper> parseresults, String s, CommandListenerWrapper commandlistenerwrapper, String label) { // CraftBukkit
|
|
try {
|
|
validateParseResults(parseresults);
|
|
return (ContextChain) ContextChain.tryFlatten(parseresults.getContext().build(s)).orElseThrow(() -> {
|
|
@@ -362,7 +424,7 @@
|
|
if (commandsyntaxexception.getInput() != null && commandsyntaxexception.getCursor() >= 0) {
|
|
int i = Math.min(commandsyntaxexception.getInput().length(), commandsyntaxexception.getCursor());
|
|
IChatMutableComponent ichatmutablecomponent = IChatBaseComponent.empty().withStyle(EnumChatFormat.GRAY).withStyle((chatmodifier) -> {
|
|
- return chatmodifier.withClickEvent(new ChatClickable.SuggestCommand("/" + s));
|
|
+ return chatmodifier.withClickEvent(new ChatClickable.SuggestCommand("/" + label)); // CraftBukkit
|
|
});
|
|
|
|
if (i > 10) {
|
|
@@ -412,7 +474,7 @@
|
|
|
|
executioncontext1.close();
|
|
} finally {
|
|
- CommandDispatcher.CURRENT_EXECUTION_CONTEXT.set((Object) null);
|
|
+ CommandDispatcher.CURRENT_EXECUTION_CONTEXT.set(null); // CraftBukkit - decompile error
|
|
}
|
|
} else {
|
|
consumer.accept(executioncontext);
|
|
@@ -421,11 +483,36 @@
|
|
}
|
|
|
|
public void sendCommands(EntityPlayer entityplayer) {
|
|
- Map<CommandNode<CommandListenerWrapper>, CommandNode<CommandListenerWrapper>> map = new HashMap();
|
|
+ // CraftBukkit start
|
|
+ // Register Vanilla commands into builtRoot as before
|
|
+ Map<CommandNode<CommandListenerWrapper>, CommandNode<CommandListenerWrapper>> map = new IdentityHashMap<>(); // Use identity to prevent aliasing issues
|
|
+ RootCommandNode<CommandListenerWrapper> vanillaRoot = new RootCommandNode();
|
|
+
|
|
+ RootCommandNode<CommandListenerWrapper> vanilla = entityplayer.server.vanillaCommandDispatcher.getDispatcher().getRoot();
|
|
+ map.put(vanilla, vanillaRoot);
|
|
+ fillUsableCommands(vanilla, vanillaRoot, entityplayer.createCommandSourceStack(), (Map) map);
|
|
+
|
|
+ // Now build the global commands in a second pass
|
|
RootCommandNode<CommandListenerWrapper> rootcommandnode = new RootCommandNode();
|
|
|
|
map.put(this.dispatcher.getRoot(), rootcommandnode);
|
|
fillUsableCommands(this.dispatcher.getRoot(), rootcommandnode, entityplayer.createCommandSourceStack(), map);
|
|
+
|
|
+ Collection<String> bukkit = new LinkedHashSet<>();
|
|
+ for (CommandNode node : rootcommandnode.getChildren()) {
|
|
+ bukkit.add(node.getName());
|
|
+ }
|
|
+
|
|
+ PlayerCommandSendEvent event = new PlayerCommandSendEvent(entityplayer.getBukkitEntity(), new LinkedHashSet<>(bukkit));
|
|
+ event.getPlayer().getServer().getPluginManager().callEvent(event);
|
|
+
|
|
+ // Remove labels that were removed during the event
|
|
+ for (String orig : bukkit) {
|
|
+ if (!event.getCommands().contains(orig)) {
|
|
+ rootcommandnode.removeCommand(orig);
|
|
+ }
|
|
+ }
|
|
+ // CraftBukkit end
|
|
entityplayer.connection.send(new PacketPlayOutCommands(rootcommandnode, CommandDispatcher.COMMAND_NODE_INSPECTOR));
|
|
}
|
|
|