2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2020-04-09 08:49:38 +02:00
|
|
|
From: Callahan <mr.callahhh@gmail.com>
|
|
|
|
Date: Wed, 8 Apr 2020 02:42:14 -0500
|
|
|
|
Subject: [PATCH] Async command map building
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/CommandDispatcher.java b/src/main/java/net/minecraft/server/CommandDispatcher.java
|
2020-08-25 04:22:08 +02:00
|
|
|
index 3a91513951f635b82d3d612c29e78f9f1db4860d..4b1ea9bc39191e01f83577c7bad128cf1ab9612f 100644
|
2020-04-09 08:49:38 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/CommandDispatcher.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/CommandDispatcher.java
|
2020-08-25 04:22:08 +02:00
|
|
|
@@ -244,6 +244,14 @@ public class CommandDispatcher {
|
2020-04-09 08:49:38 +02:00
|
|
|
if ( org.spigotmc.SpigotConfig.tabComplete < 0 ) return; // Spigot
|
|
|
|
// CraftBukkit start
|
|
|
|
// Register Vanilla commands into builtRoot as before
|
|
|
|
+ // Paper start - Async command map building
|
|
|
|
+ java.util.concurrent.ForkJoinPool.commonPool().execute(() -> {
|
|
|
|
+ sendAsync(entityplayer);
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private void sendAsync(EntityPlayer entityplayer) {
|
|
|
|
+ // Paper end - Async command map building
|
|
|
|
Map<CommandNode<CommandListenerWrapper>, CommandNode<ICompletionProvider>> map = Maps.newIdentityHashMap(); // Use identity to prevent aliasing issues
|
|
|
|
RootCommandNode vanillaRoot = new RootCommandNode();
|
|
|
|
|
2020-08-25 04:22:08 +02:00
|
|
|
@@ -261,7 +269,14 @@ public class CommandDispatcher {
|
2020-04-09 08:49:38 +02:00
|
|
|
for (CommandNode node : rootcommandnode.getChildren()) {
|
|
|
|
bukkit.add(node.getName());
|
|
|
|
}
|
|
|
|
+ // Paper start - Async command map building
|
|
|
|
+ MinecraftServer.getServer().execute(() -> {
|
|
|
|
+ runSync(entityplayer, bukkit, rootcommandnode);
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
|
|
|
|
+ private void runSync(EntityPlayer entityplayer, Collection<String> bukkit, RootCommandNode<ICompletionProvider> rootcommandnode) {
|
|
|
|
+ // Paper end - Async command map building
|
|
|
|
PlayerCommandSendEvent event = new PlayerCommandSendEvent(entityplayer.getBukkitEntity(), new LinkedHashSet<>(bukkit));
|
|
|
|
event.getPlayer().getServer().getPluginManager().callEvent(event);
|
|
|
|
|