2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
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/commands/Commands.java b/src/main/java/net/minecraft/commands/Commands.java
|
2021-08-26 18:41:22 +02:00
|
|
|
index 780f46c8fdbaafaca6babfa34ebd97f420d0d612..07c4d909324c8aad3a8c5d27811e2c28fe7a91f3 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/commands/Commands.java
|
|
|
|
+++ b/src/main/java/net/minecraft/commands/Commands.java
|
|
|
|
@@ -29,6 +29,7 @@ import net.minecraft.network.chat.MutableComponent;
|
|
|
|
import net.minecraft.network.chat.TextComponent;
|
|
|
|
import net.minecraft.network.chat.TranslatableComponent;
|
|
|
|
import net.minecraft.network.protocol.game.ClientboundCommandsPacket;
|
|
|
|
+import net.minecraft.server.MinecraftServer;
|
|
|
|
import net.minecraft.server.commands.AdvancementCommands;
|
|
|
|
import net.minecraft.server.commands.AttributeCommand;
|
|
|
|
import net.minecraft.server.commands.BanIpCommands;
|
2021-08-26 18:41:22 +02:00
|
|
|
@@ -335,6 +336,14 @@ public class Commands {
|
2021-06-11 14:02:28 +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(player);
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+
|
2021-08-26 18:41:22 +02:00
|
|
|
+ private void sendAsync(ServerPlayer player) {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ // Paper end - Async command map building
|
|
|
|
Map<CommandNode<CommandSourceStack>, CommandNode<SharedSuggestionProvider>> map = Maps.newIdentityHashMap(); // Use identity to prevent aliasing issues
|
|
|
|
RootCommandNode vanillaRoot = new RootCommandNode();
|
|
|
|
|
2021-08-26 18:41:22 +02:00
|
|
|
@@ -352,7 +361,14 @@ public class Commands {
|
2021-06-11 14:02:28 +02:00
|
|
|
for (CommandNode node : rootcommandnode.getChildren()) {
|
|
|
|
bukkit.add(node.getName());
|
|
|
|
}
|
|
|
|
+ // Paper start - Async command map building
|
|
|
|
+ MinecraftServer.getServer().execute(() -> {
|
2021-08-26 18:41:22 +02:00
|
|
|
+ runSync(player, bukkit, rootcommandnode);
|
2021-06-11 14:02:28 +02:00
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
|
2021-08-26 18:41:22 +02:00
|
|
|
+ private void runSync(ServerPlayer player, Collection<String> bukkit, RootCommandNode<SharedSuggestionProvider> rootcommandnode) {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ // Paper end - Async command map building
|
2021-08-26 18:41:22 +02:00
|
|
|
PlayerCommandSendEvent event = new PlayerCommandSendEvent(player.getBukkitEntity(), new LinkedHashSet<>(bukkit));
|
2021-06-11 14:02:28 +02:00
|
|
|
event.getPlayer().getServer().getPluginManager().callEvent(event);
|
|
|
|
|