Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-03 14:50:19 +01:00
Improve command freezing and fix up command suggestion translation (#1936)
Merge commands with the same parameters (thanks Supreme) Add more suggestion types (blocks, items, entities) More optimizations Co-authored-by: SupremeMortal <6178101+SupremeMortal@users.noreply.github.com> Co-authored-by: rtm516 <rtm516@users.noreply.github.com>
Dieser Commit ist enthalten in:
Ursprung
15027c222e
Commit
d9f8e9eec2
@ -30,8 +30,11 @@ import org.geysermc.connector.entity.*;
|
|||||||
import org.geysermc.connector.entity.living.*;
|
import org.geysermc.connector.entity.living.*;
|
||||||
import org.geysermc.connector.entity.living.animal.*;
|
import org.geysermc.connector.entity.living.animal.*;
|
||||||
import org.geysermc.connector.entity.living.animal.horse.*;
|
import org.geysermc.connector.entity.living.animal.horse.*;
|
||||||
import org.geysermc.connector.entity.living.animal.tameable.*;
|
import org.geysermc.connector.entity.living.animal.tameable.CatEntity;
|
||||||
import org.geysermc.connector.entity.living.merchant.*;
|
import org.geysermc.connector.entity.living.animal.tameable.ParrotEntity;
|
||||||
|
import org.geysermc.connector.entity.living.animal.tameable.WolfEntity;
|
||||||
|
import org.geysermc.connector.entity.living.merchant.AbstractMerchantEntity;
|
||||||
|
import org.geysermc.connector.entity.living.merchant.VillagerEntity;
|
||||||
import org.geysermc.connector.entity.living.monster.*;
|
import org.geysermc.connector.entity.living.monster.*;
|
||||||
import org.geysermc.connector.entity.living.monster.raid.AbstractIllagerEntity;
|
import org.geysermc.connector.entity.living.monster.raid.AbstractIllagerEntity;
|
||||||
import org.geysermc.connector.entity.living.monster.raid.PillagerEntity;
|
import org.geysermc.connector.entity.living.monster.raid.PillagerEntity;
|
||||||
@ -39,6 +42,9 @@ import org.geysermc.connector.entity.living.monster.raid.RaidParticipantEntity;
|
|||||||
import org.geysermc.connector.entity.living.monster.raid.SpellcasterIllagerEntity;
|
import org.geysermc.connector.entity.living.monster.raid.SpellcasterIllagerEntity;
|
||||||
import org.geysermc.connector.entity.player.PlayerEntity;
|
import org.geysermc.connector.entity.player.PlayerEntity;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
@Getter
|
@Getter
|
||||||
public enum EntityType {
|
public enum EntityType {
|
||||||
|
|
||||||
@ -174,17 +180,33 @@ public enum EntityType {
|
|||||||
*/
|
*/
|
||||||
ENDER_DRAGON_PART(EnderDragonPartEntity.class, 32, 0, 0, 0, 0, "minecraft:armor_stand");
|
ENDER_DRAGON_PART(EnderDragonPartEntity.class, 32, 0, 0, 0, 0, "minecraft:armor_stand");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A list of all Java identifiers for use with command suggestions
|
||||||
|
*/
|
||||||
|
public static final String[] ALL_JAVA_IDENTIFIERS;
|
||||||
private static final EntityType[] VALUES = values();
|
private static final EntityType[] VALUES = values();
|
||||||
|
|
||||||
private Class<? extends Entity> entityClass;
|
static {
|
||||||
|
List<String> allJavaIdentifiers = new ArrayList<>();
|
||||||
|
for (EntityType type : values()) {
|
||||||
|
if (type == AGENT || type == BALLOON || type == CHALKBOARD || type == NPC || type == TRIPOD_CAMERA || type == ENDER_DRAGON_PART) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
allJavaIdentifiers.add("minecraft:" + type.name().toLowerCase());
|
||||||
|
}
|
||||||
|
ALL_JAVA_IDENTIFIERS = allJavaIdentifiers.toArray(new String[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
private final Class<? extends Entity> entityClass;
|
||||||
private final int type;
|
private final int type;
|
||||||
private final float height;
|
private final float height;
|
||||||
private final float width;
|
private final float width;
|
||||||
private final float length;
|
private final float length;
|
||||||
private final float offset;
|
private final float offset;
|
||||||
private String identifier;
|
private final String identifier;
|
||||||
|
|
||||||
EntityType(Class<? extends Entity> entityClass, int type, float height) {
|
EntityType(Class<? extends Entity> entityClass, int type, float height) {
|
||||||
|
//noinspection SuspiciousNameCombination
|
||||||
this(entityClass, type, height, height);
|
this(entityClass, type, height, height);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -198,8 +220,6 @@ public enum EntityType {
|
|||||||
|
|
||||||
EntityType(Class<? extends Entity> entityClass, int type, float height, float width, float length, float offset) {
|
EntityType(Class<? extends Entity> entityClass, int type, float height, float width, float length, float offset) {
|
||||||
this(entityClass, type, height, width, length, offset, null);
|
this(entityClass, type, height, width, length, offset, null);
|
||||||
|
|
||||||
this.identifier = "minecraft:" + name().toLowerCase();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
EntityType(Class<? extends Entity> entityClass, int type, float height, float width, float length, float offset, String identifier) {
|
EntityType(Class<? extends Entity> entityClass, int type, float height, float width, float length, float offset, String identifier) {
|
||||||
@ -209,7 +229,7 @@ public enum EntityType {
|
|||||||
this.width = width;
|
this.width = width;
|
||||||
this.length = length;
|
this.length = length;
|
||||||
this.offset = offset + 0.00001f;
|
this.offset = offset + 0.00001f;
|
||||||
this.identifier = identifier;
|
this.identifier = identifier == null ? "minecraft:" + name().toLowerCase() : identifier;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static EntityType getFromIdentifier(String identifier) {
|
public static EntityType getFromIdentifier(String identifier) {
|
||||||
|
@ -69,6 +69,18 @@ public enum Enchantment {
|
|||||||
QUICK_CHARGE,
|
QUICK_CHARGE,
|
||||||
SOUL_SPEED;
|
SOUL_SPEED;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A list of all enchantment Java identifiers for use with command suggestions.
|
||||||
|
*/
|
||||||
|
public static final String[] ALL_JAVA_IDENTIFIERS;
|
||||||
|
|
||||||
|
static {
|
||||||
|
ALL_JAVA_IDENTIFIERS = new String[values().length];
|
||||||
|
for (int i = 0; i < ALL_JAVA_IDENTIFIERS.length; i++) {
|
||||||
|
ALL_JAVA_IDENTIFIERS[i] = values()[i].javaIdentifier;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private final String javaIdentifier;
|
private final String javaIdentifier;
|
||||||
|
|
||||||
Enchantment() {
|
Enchantment() {
|
||||||
|
@ -63,6 +63,11 @@ public class ItemRegistry {
|
|||||||
public static final List<StartGamePacket.ItemEntry> ITEMS = new ArrayList<>();
|
public static final List<StartGamePacket.ItemEntry> ITEMS = new ArrayList<>();
|
||||||
public static final Int2ObjectMap<ItemEntry> ITEM_ENTRIES = new Int2ObjectOpenHashMap<>();
|
public static final Int2ObjectMap<ItemEntry> ITEM_ENTRIES = new Int2ObjectOpenHashMap<>();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A list of all Java item names.
|
||||||
|
*/
|
||||||
|
public static final String[] ITEM_NAMES;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Bamboo item entry, used in PandaEntity.java
|
* Bamboo item entry, used in PandaEntity.java
|
||||||
*/
|
*/
|
||||||
@ -116,6 +121,8 @@ public class ItemRegistry {
|
|||||||
// Used to get the Bedrock namespaced ID (in instances where there are small differences)
|
// Used to get the Bedrock namespaced ID (in instances where there are small differences)
|
||||||
Int2ObjectMap<String> bedrockIdToIdentifier = new Int2ObjectOpenHashMap<>();
|
Int2ObjectMap<String> bedrockIdToIdentifier = new Int2ObjectOpenHashMap<>();
|
||||||
|
|
||||||
|
List<String> itemNames = new ArrayList<>();
|
||||||
|
|
||||||
List<JsonNode> itemEntries;
|
List<JsonNode> itemEntries;
|
||||||
try {
|
try {
|
||||||
itemEntries = GeyserConnector.JSON_MAPPER.readValue(stream, itemEntriesType);
|
itemEntries = GeyserConnector.JSON_MAPPER.readValue(stream, itemEntriesType);
|
||||||
@ -207,6 +214,8 @@ public class ItemRegistry {
|
|||||||
BUCKETS.add(entry.getValue().get("bedrock_id").intValue());
|
BUCKETS.add(entry.getValue().get("bedrock_id").intValue());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
itemNames.add(entry.getKey());
|
||||||
|
|
||||||
itemIndex++;
|
itemIndex++;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -235,6 +244,8 @@ public class ItemRegistry {
|
|||||||
creativeItems.add(ItemData.fromNet(netId++, item.getId(), item.getDamage(), item.getCount(), item.getTag()));
|
creativeItems.add(ItemData.fromNet(netId++, item.getId(), item.getDamage(), item.getCount(), item.getTag()));
|
||||||
}
|
}
|
||||||
CREATIVE_ITEMS = creativeItems.toArray(new ItemData[0]);
|
CREATIVE_ITEMS = creativeItems.toArray(new ItemData[0]);
|
||||||
|
|
||||||
|
ITEM_NAMES = itemNames.toArray(new String[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -33,21 +33,69 @@ import com.nukkitx.protocol.bedrock.data.command.CommandEnumData;
|
|||||||
import com.nukkitx.protocol.bedrock.data.command.CommandParamData;
|
import com.nukkitx.protocol.bedrock.data.command.CommandParamData;
|
||||||
import com.nukkitx.protocol.bedrock.data.command.CommandParamType;
|
import com.nukkitx.protocol.bedrock.data.command.CommandParamType;
|
||||||
import com.nukkitx.protocol.bedrock.packet.AvailableCommandsPacket;
|
import com.nukkitx.protocol.bedrock.packet.AvailableCommandsPacket;
|
||||||
|
import it.unimi.dsi.fastutil.Hash;
|
||||||
import it.unimi.dsi.fastutil.ints.Int2ObjectMap;
|
import it.unimi.dsi.fastutil.ints.Int2ObjectMap;
|
||||||
import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap;
|
import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap;
|
||||||
|
import it.unimi.dsi.fastutil.ints.IntOpenHashSet;
|
||||||
|
import it.unimi.dsi.fastutil.ints.IntSet;
|
||||||
|
import it.unimi.dsi.fastutil.objects.Object2ObjectOpenCustomHashMap;
|
||||||
import lombok.Getter;
|
import lombok.Getter;
|
||||||
|
import lombok.ToString;
|
||||||
|
import net.kyori.adventure.text.format.NamedTextColor;
|
||||||
import org.geysermc.connector.GeyserConnector;
|
import org.geysermc.connector.GeyserConnector;
|
||||||
|
import org.geysermc.connector.entity.type.EntityType;
|
||||||
import org.geysermc.connector.network.session.GeyserSession;
|
import org.geysermc.connector.network.session.GeyserSession;
|
||||||
import org.geysermc.connector.network.translators.PacketTranslator;
|
import org.geysermc.connector.network.translators.PacketTranslator;
|
||||||
import org.geysermc.connector.network.translators.Translator;
|
import org.geysermc.connector.network.translators.Translator;
|
||||||
|
import org.geysermc.connector.network.translators.item.Enchantment;
|
||||||
|
import org.geysermc.connector.network.translators.item.ItemRegistry;
|
||||||
|
import org.geysermc.connector.network.translators.world.block.BlockTranslator;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.*;
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Translator(packet = ServerDeclareCommandsPacket.class)
|
@Translator(packet = ServerDeclareCommandsPacket.class)
|
||||||
public class JavaDeclareCommandsTranslator extends PacketTranslator<ServerDeclareCommandsPacket> {
|
public class JavaDeclareCommandsTranslator extends PacketTranslator<ServerDeclareCommandsPacket> {
|
||||||
|
|
||||||
|
private static final String[] ENUM_BOOLEAN = {"true", "false"};
|
||||||
|
private static final String[] VALID_COLORS;
|
||||||
|
private static final String[] VALID_SCOREBOARD_SLOTS;
|
||||||
|
|
||||||
|
private static final Hash.Strategy<CommandParamData[][]> PARAM_STRATEGY = new Hash.Strategy<CommandParamData[][]>() {
|
||||||
|
@Override
|
||||||
|
public int hashCode(CommandParamData[][] o) {
|
||||||
|
return Arrays.deepHashCode(o);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean equals(CommandParamData[][] a, CommandParamData[][] b) {
|
||||||
|
if (a == b) return true;
|
||||||
|
if (a == null || b == null) return false;
|
||||||
|
if (a.length != b.length) return false;
|
||||||
|
for (int i = 0; i < a.length; i++) {
|
||||||
|
CommandParamData[] a1 = a[i];
|
||||||
|
CommandParamData[] b1 = b[i];
|
||||||
|
if (a1.length != b1.length) return false;
|
||||||
|
|
||||||
|
for (int j = 0; j < a1.length; j++) {
|
||||||
|
if (!a1[j].equals(b1[j])) return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static {
|
||||||
|
List<String> validColors = new ArrayList<>(NamedTextColor.NAMES.keys());
|
||||||
|
validColors.add("reset");
|
||||||
|
VALID_COLORS = validColors.toArray(new String[0]);
|
||||||
|
|
||||||
|
List<String> teamOptions = new ArrayList<>(Arrays.asList("list", "sidebar", "belowName"));
|
||||||
|
for (String color : NamedTextColor.NAMES.keys()) {
|
||||||
|
teamOptions.add("sidebar.team." + color);
|
||||||
|
}
|
||||||
|
VALID_SCOREBOARD_SLOTS = teamOptions.toArray(new String[0]);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void translate(ServerDeclareCommandsPacket packet, GeyserSession session) {
|
public void translate(ServerDeclareCommandsPacket packet, GeyserSession session) {
|
||||||
// Don't send command suggestions if they are disabled
|
// Don't send command suggestions if they are disabled
|
||||||
@ -60,48 +108,50 @@ public class JavaDeclareCommandsTranslator extends PacketTranslator<ServerDeclar
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CommandNode[] nodes = packet.getNodes();
|
||||||
List<CommandData> commandData = new ArrayList<>();
|
List<CommandData> commandData = new ArrayList<>();
|
||||||
Int2ObjectMap<String> commands = new Int2ObjectOpenHashMap<>();
|
IntSet commandNodes = new IntOpenHashSet();
|
||||||
|
Set<String> knownAliases = new HashSet<>();
|
||||||
|
Map<CommandParamData[][], Set<String>> commands = new Object2ObjectOpenCustomHashMap<>(PARAM_STRATEGY);
|
||||||
Int2ObjectMap<List<CommandNode>> commandArgs = new Int2ObjectOpenHashMap<>();
|
Int2ObjectMap<List<CommandNode>> commandArgs = new Int2ObjectOpenHashMap<>();
|
||||||
|
|
||||||
// Get the first node, it should be a root node
|
// Get the first node, it should be a root node
|
||||||
CommandNode rootNode = packet.getNodes()[packet.getFirstNodeIndex()];
|
CommandNode rootNode = nodes[packet.getFirstNodeIndex()];
|
||||||
|
|
||||||
// Loop through the root nodes to get all commands
|
// Loop through the root nodes to get all commands
|
||||||
for (int nodeIndex : rootNode.getChildIndices()) {
|
for (int nodeIndex : rootNode.getChildIndices()) {
|
||||||
CommandNode node = packet.getNodes()[nodeIndex];
|
CommandNode node = nodes[nodeIndex];
|
||||||
|
|
||||||
// Make sure we don't have duplicated commands (happens if there is more than 1 root node)
|
// Make sure we don't have duplicated commands (happens if there is more than 1 root node)
|
||||||
if (commands.containsKey(nodeIndex)) { continue; }
|
if (!commandNodes.add(nodeIndex) || !knownAliases.add(node.getName().toLowerCase())) continue;
|
||||||
if (commands.containsValue(node.getName())) { continue; }
|
|
||||||
|
|
||||||
// Get and update the commandArgs list with the found arguments
|
// Get and update the commandArgs list with the found arguments
|
||||||
if (node.getChildIndices().length >= 1) {
|
if (node.getChildIndices().length >= 1) {
|
||||||
for (int childIndex : node.getChildIndices()) {
|
for (int childIndex : node.getChildIndices()) {
|
||||||
commandArgs.putIfAbsent(nodeIndex, new ArrayList<>());
|
commandArgs.computeIfAbsent(nodeIndex, ArrayList::new).add(nodes[childIndex]);
|
||||||
commandArgs.get(nodeIndex).add(packet.getNodes()[childIndex]);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Insert the command name into the list
|
// Get and parse all params
|
||||||
commands.put(nodeIndex, node.getName());
|
CommandParamData[][] params = getParams(nodes[nodeIndex], nodes);
|
||||||
|
|
||||||
|
// Insert the alias name into the command list
|
||||||
|
commands.computeIfAbsent(params, index -> new HashSet<>()).add(node.getName().toLowerCase());
|
||||||
}
|
}
|
||||||
|
|
||||||
// The command flags, not sure what these do apart from break things
|
// The command flags, not sure what these do apart from break things
|
||||||
List<CommandData.Flag> flags = Collections.emptyList();
|
List<CommandData.Flag> flags = Collections.emptyList();
|
||||||
|
|
||||||
// Loop through all the found commands
|
// Loop through all the found commands
|
||||||
for (int commandID : commands.keySet()) {
|
|
||||||
String commandName = commands.get(commandID);
|
for (Map.Entry<CommandParamData[][], Set<String>> entry : commands.entrySet()) {
|
||||||
|
String commandName = entry.getValue().iterator().next(); // We know this has a value
|
||||||
|
|
||||||
// Create a basic alias
|
// Create a basic alias
|
||||||
CommandEnumData aliases = new CommandEnumData(commandName + "Aliases", new String[] { commandName.toLowerCase() }, false);
|
CommandEnumData aliases = new CommandEnumData(commandName + "Aliases", entry.getValue().toArray(new String[0]), false);
|
||||||
|
|
||||||
// Get and parse all params
|
|
||||||
CommandParamData[][] params = getParams(packet.getNodes()[commandID], packet.getNodes());
|
|
||||||
|
|
||||||
// Build the completed command and add it to the final list
|
// Build the completed command and add it to the final list
|
||||||
CommandData data = new CommandData(commandName, session.getConnector().getCommandManager().getDescription(commandName), flags, (byte) 0, aliases, params);
|
CommandData data = new CommandData(commandName, session.getConnector().getCommandManager().getDescription(commandName), flags, (byte) 0, aliases, entry.getKey());
|
||||||
commandData.add(data);
|
commandData.add(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -109,7 +159,7 @@ public class JavaDeclareCommandsTranslator extends PacketTranslator<ServerDeclar
|
|||||||
AvailableCommandsPacket availableCommandsPacket = new AvailableCommandsPacket();
|
AvailableCommandsPacket availableCommandsPacket = new AvailableCommandsPacket();
|
||||||
availableCommandsPacket.getCommands().addAll(commandData);
|
availableCommandsPacket.getCommands().addAll(commandData);
|
||||||
|
|
||||||
GeyserConnector.getInstance().getLogger().debug("Sending command packet of " + commandData.size() + " commands");
|
session.getConnector().getLogger().debug("Sending command packet of " + commandData.size() + " commands");
|
||||||
|
|
||||||
// Finally, send the commands to the client
|
// Finally, send the commands to the client
|
||||||
session.sendUpstreamPacket(availableCommandsPacket);
|
session.sendUpstreamPacket(availableCommandsPacket);
|
||||||
@ -119,11 +169,10 @@ public class JavaDeclareCommandsTranslator extends PacketTranslator<ServerDeclar
|
|||||||
* Build the command parameter array for the given command
|
* Build the command parameter array for the given command
|
||||||
*
|
*
|
||||||
* @param commandNode The command to build the parameters for
|
* @param commandNode The command to build the parameters for
|
||||||
* @param allNodes Every command node
|
* @param allNodes Every command node
|
||||||
*
|
|
||||||
* @return An array of parameter option arrays
|
* @return An array of parameter option arrays
|
||||||
*/
|
*/
|
||||||
private CommandParamData[][] getParams(CommandNode commandNode, CommandNode[] allNodes) {
|
private static CommandParamData[][] getParams(CommandNode commandNode, CommandNode[] allNodes) {
|
||||||
// Check if the command is an alias and redirect it
|
// Check if the command is an alias and redirect it
|
||||||
if (commandNode.getRedirectIndex() != -1) {
|
if (commandNode.getRedirectIndex() != -1) {
|
||||||
GeyserConnector.getInstance().getLogger().debug("Redirecting command " + commandNode.getName() + " to " + allNodes[commandNode.getRedirectIndex()].getName());
|
GeyserConnector.getInstance().getLogger().debug("Redirecting command " + commandNode.getName() + " to " + allNodes[commandNode.getRedirectIndex()].getName());
|
||||||
@ -136,16 +185,8 @@ public class JavaDeclareCommandsTranslator extends PacketTranslator<ServerDeclar
|
|||||||
rootParam.buildChildren(allNodes);
|
rootParam.buildChildren(allNodes);
|
||||||
|
|
||||||
List<CommandParamData[]> treeData = rootParam.getTree();
|
List<CommandParamData[]> treeData = rootParam.getTree();
|
||||||
CommandParamData[][] params = new CommandParamData[treeData.size()][];
|
|
||||||
|
|
||||||
// Fill the nested params array
|
return treeData.toArray(new CommandParamData[0][]);
|
||||||
int i = 0;
|
|
||||||
for (CommandParamData[] tree : treeData) {
|
|
||||||
params[i] = tree;
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
|
|
||||||
return params;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return new CommandParamData[0][0];
|
return new CommandParamData[0][0];
|
||||||
@ -155,14 +196,17 @@ public class JavaDeclareCommandsTranslator extends PacketTranslator<ServerDeclar
|
|||||||
* Convert Java edition command types to Bedrock edition
|
* Convert Java edition command types to Bedrock edition
|
||||||
*
|
*
|
||||||
* @param parser Command type to convert
|
* @param parser Command type to convert
|
||||||
*
|
|
||||||
* @return Bedrock parameter data type
|
* @return Bedrock parameter data type
|
||||||
*/
|
*/
|
||||||
private CommandParamType mapCommandType(CommandParser parser) {
|
private static Object mapCommandType(CommandParser parser) {
|
||||||
if (parser == null) { return CommandParamType.STRING; }
|
if (parser == null) {
|
||||||
|
return CommandParamType.STRING;
|
||||||
|
}
|
||||||
|
|
||||||
switch (parser) {
|
switch (parser) {
|
||||||
case FLOAT:
|
case FLOAT:
|
||||||
|
case ROTATION:
|
||||||
|
case DOUBLE:
|
||||||
return CommandParamType.FLOAT;
|
return CommandParamType.FLOAT;
|
||||||
|
|
||||||
case INTEGER:
|
case INTEGER:
|
||||||
@ -189,50 +233,44 @@ public class JavaDeclareCommandsTranslator extends PacketTranslator<ServerDeclar
|
|||||||
return CommandParamType.JSON;
|
return CommandParamType.JSON;
|
||||||
|
|
||||||
case RESOURCE_LOCATION:
|
case RESOURCE_LOCATION:
|
||||||
|
case FUNCTION:
|
||||||
return CommandParamType.FILE_PATH;
|
return CommandParamType.FILE_PATH;
|
||||||
|
|
||||||
case INT_RANGE:
|
|
||||||
return CommandParamType.INT_RANGE;
|
|
||||||
|
|
||||||
case BOOL:
|
case BOOL:
|
||||||
case DOUBLE:
|
return ENUM_BOOLEAN;
|
||||||
case STRING:
|
|
||||||
case VEC2:
|
case OPERATION: // ">=", "==", etc
|
||||||
|
return CommandParamType.OPERATOR;
|
||||||
|
|
||||||
case BLOCK_STATE:
|
case BLOCK_STATE:
|
||||||
case BLOCK_PREDICATE:
|
return BlockTranslator.getAllBlockIdentifiers();
|
||||||
|
|
||||||
case ITEM_STACK:
|
case ITEM_STACK:
|
||||||
case ITEM_PREDICATE:
|
return ItemRegistry.ITEM_NAMES;
|
||||||
case COLOR:
|
|
||||||
case COMPONENT:
|
|
||||||
case OBJECTIVE:
|
|
||||||
case OBJECTIVE_CRITERIA:
|
|
||||||
case OPERATION: // Possibly OPERATOR
|
|
||||||
case PARTICLE:
|
|
||||||
case ROTATION:
|
|
||||||
case SCOREBOARD_SLOT:
|
|
||||||
case SCORE_HOLDER:
|
|
||||||
case SWIZZLE:
|
|
||||||
case TEAM:
|
|
||||||
case ITEM_SLOT:
|
|
||||||
case MOB_EFFECT:
|
|
||||||
case FUNCTION:
|
|
||||||
case ENTITY_ANCHOR:
|
|
||||||
case RANGE:
|
|
||||||
case FLOAT_RANGE:
|
|
||||||
case ITEM_ENCHANTMENT:
|
case ITEM_ENCHANTMENT:
|
||||||
|
return Enchantment.ALL_JAVA_IDENTIFIERS; //TODO: inventory branch use Java enums
|
||||||
|
|
||||||
case ENTITY_SUMMON:
|
case ENTITY_SUMMON:
|
||||||
case DIMENSION:
|
return EntityType.ALL_JAVA_IDENTIFIERS;
|
||||||
case TIME:
|
|
||||||
|
case COLOR:
|
||||||
|
return VALID_COLORS;
|
||||||
|
|
||||||
|
case SCOREBOARD_SLOT:
|
||||||
|
return VALID_SCOREBOARD_SLOTS;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return CommandParamType.STRING;
|
return CommandParamType.STRING;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Getter
|
@Getter
|
||||||
private class ParamInfo {
|
@ToString
|
||||||
private CommandNode paramNode;
|
private static class ParamInfo {
|
||||||
private CommandParamData paramData;
|
private final CommandNode paramNode;
|
||||||
private List<ParamInfo> children;
|
private final CommandParamData paramData;
|
||||||
|
private final List<ParamInfo> children;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new parameter info object
|
* Create a new parameter info object
|
||||||
@ -252,33 +290,50 @@ public class JavaDeclareCommandsTranslator extends PacketTranslator<ServerDeclar
|
|||||||
* @param allNodes Every command node
|
* @param allNodes Every command node
|
||||||
*/
|
*/
|
||||||
public void buildChildren(CommandNode[] allNodes) {
|
public void buildChildren(CommandNode[] allNodes) {
|
||||||
int enumIndex = -1;
|
|
||||||
|
|
||||||
for (int paramID : paramNode.getChildIndices()) {
|
for (int paramID : paramNode.getChildIndices()) {
|
||||||
CommandNode paramNode = allNodes[paramID];
|
CommandNode paramNode = allNodes[paramID];
|
||||||
|
|
||||||
if (paramNode.getParser() == null) {
|
if (paramNode.getParser() == null) {
|
||||||
if (enumIndex == -1) {
|
boolean foundCompatible = false;
|
||||||
enumIndex = children.size();
|
for (int i = 0; i < children.size(); i++) {
|
||||||
|
ParamInfo enumParamInfo = children.get(i);
|
||||||
|
// Check to make sure all descending nodes of this command are compatible - otherwise, create a new overload
|
||||||
|
if (isCompatible(allNodes, enumParamInfo.getParamNode(), paramNode)) {
|
||||||
|
foundCompatible = true;
|
||||||
|
// Extend the current list of enum values
|
||||||
|
String[] enumOptions = Arrays.copyOf(enumParamInfo.getParamData().getEnumData().getValues(), enumParamInfo.getParamData().getEnumData().getValues().length + 1);
|
||||||
|
enumOptions[enumOptions.length - 1] = paramNode.getName();
|
||||||
|
|
||||||
// Create the new enum command
|
// Re-create the command using the updated values
|
||||||
CommandEnumData enumData = new CommandEnumData(paramNode.getName(), new String[] { paramNode.getName() }, false);
|
CommandEnumData enumData = new CommandEnumData(enumParamInfo.getParamData().getEnumData().getName(), enumOptions, false);
|
||||||
children.add(new ParamInfo(paramNode, new CommandParamData(paramNode.getName(), false, enumData, mapCommandType(paramNode.getParser()), null, Collections.emptyList())));
|
children.set(i, new ParamInfo(enumParamInfo.getParamNode(), new CommandParamData(enumParamInfo.getParamData().getName(), this.paramNode.isExecutable(), enumData, null, null, Collections.emptyList())));
|
||||||
} else {
|
break;
|
||||||
// Get the existing enum
|
}
|
||||||
ParamInfo enumParamInfo = children.get(enumIndex);
|
|
||||||
|
|
||||||
// Extend the current list of enum values
|
|
||||||
String[] enumOptions = Arrays.copyOf(enumParamInfo.getParamData().getEnumData().getValues(), enumParamInfo.getParamData().getEnumData().getValues().length + 1);
|
|
||||||
enumOptions[enumOptions.length - 1] = paramNode.getName();
|
|
||||||
|
|
||||||
// Re-create the command using the updated values
|
|
||||||
CommandEnumData enumData = new CommandEnumData(enumParamInfo.getParamData().getEnumData().getName(), enumOptions, false);
|
|
||||||
children.set(enumIndex, new ParamInfo(enumParamInfo.getParamNode(), new CommandParamData(enumParamInfo.getParamData().getName(), false, enumData, enumParamInfo.getParamData().getType(), null, Collections.emptyList())));
|
|
||||||
}
|
}
|
||||||
}else{
|
|
||||||
|
if (!foundCompatible) {
|
||||||
|
// Create a new subcommand with this exact type
|
||||||
|
CommandEnumData enumData = new CommandEnumData(paramNode.getName(), new String[]{paramNode.getName()}, false);
|
||||||
|
|
||||||
|
// On setting optional:
|
||||||
|
// isExecutable is defined as a node "constitutes a valid command."
|
||||||
|
// Therefore, any children of the parameter must simply be optional.
|
||||||
|
children.add(new ParamInfo(paramNode, new CommandParamData(paramNode.getName(), this.paramNode.isExecutable(), enumData, null, null, Collections.emptyList())));
|
||||||
|
}
|
||||||
|
} else {
|
||||||
// Put the non-enum param into the list
|
// Put the non-enum param into the list
|
||||||
children.add(new ParamInfo(paramNode, new CommandParamData(paramNode.getName(), false, null, mapCommandType(paramNode.getParser()), null, Collections.emptyList())));
|
Object mappedType = mapCommandType(paramNode.getParser());
|
||||||
|
CommandEnumData enumData = null;
|
||||||
|
CommandParamType type = null;
|
||||||
|
if (mappedType instanceof String[]) {
|
||||||
|
enumData = new CommandEnumData(paramNode.getParser().name().toLowerCase(), (String[]) mappedType, false);
|
||||||
|
} else {
|
||||||
|
type = (CommandParamType) mappedType;
|
||||||
|
}
|
||||||
|
// IF enumData != null:
|
||||||
|
// In game, this will show up like <paramNode.getName(): enumData.getName()>
|
||||||
|
// So if paramNode.getName() == "value" and enumData.getName() == "bool": <value: bool>
|
||||||
|
children.add(new ParamInfo(paramNode, new CommandParamData(paramNode.getName(), this.paramNode.isExecutable(), enumData, type, null, Collections.emptyList())));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -288,6 +343,64 @@ public class JavaDeclareCommandsTranslator extends PacketTranslator<ServerDeclar
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Comparing CommandNode type a and b, determine if they are in the same overload.
|
||||||
|
* <p>
|
||||||
|
* Take the <code>gamerule</code> command, and let's present three "subcommands" you can perform:
|
||||||
|
*
|
||||||
|
* <ul>
|
||||||
|
* <li><code>gamerule doDaylightCycle true</code></li>
|
||||||
|
* <li><code>gamerule announceAdvancements false</code></li>
|
||||||
|
* <li><code>gamerule randomTickSpeed 3</code></li>
|
||||||
|
* </ul>
|
||||||
|
*
|
||||||
|
* While all three of them are indeed part of the same command, the command setting randomTickSpeed parses an int,
|
||||||
|
* while the others use boolean. In Bedrock, this should be presented as a separate overload to indicate that this
|
||||||
|
* does something a little different.
|
||||||
|
* <p>
|
||||||
|
* Therefore, this function will return <code>true</code> if the first two are compared, as they use the same
|
||||||
|
* parsers. If the third is compared with either of the others, this function will return <code>false</code>.
|
||||||
|
* <p>
|
||||||
|
* Here's an example of how the above would be presented to Bedrock (as of 1.16.200). Notice how the top two <code>CommandParamData</code>
|
||||||
|
* classes of each array are identical in type, but the following class is different:
|
||||||
|
* <pre>
|
||||||
|
* overloads=[
|
||||||
|
* [
|
||||||
|
* CommandParamData(name=doDaylightCycle, optional=false, enumData=CommandEnumData(name=announceAdvancements, values=[announceAdvancements, doDaylightCycle], isSoft=false), type=STRING, postfix=null, options=[])
|
||||||
|
* CommandParamData(name=value, optional=false, enumData=CommandEnumData(name=value, values=[true, false], isSoft=false), type=null, postfix=null, options=[])
|
||||||
|
* ]
|
||||||
|
* [
|
||||||
|
* CommandParamData(name=randomTickSpeed, optional=false, enumData=CommandEnumData(name=randomTickSpeed, values=[randomTickSpeed], isSoft=false), type=STRING, postfix=null, options=[])
|
||||||
|
* CommandParamData(name=value, optional=false, enumData=null, type=INT, postfix=null, options=[])
|
||||||
|
* ]
|
||||||
|
* ]
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
* @return if these two can be merged into one overload.
|
||||||
|
*/
|
||||||
|
private boolean isCompatible(CommandNode[] allNodes, CommandNode a, CommandNode b) {
|
||||||
|
if (a == b) return true;
|
||||||
|
if (a.getParser() != b.getParser()) return false;
|
||||||
|
if (a.getChildIndices().length != b.getChildIndices().length) return false;
|
||||||
|
|
||||||
|
for (int i = 0; i < a.getChildIndices().length; i++) {
|
||||||
|
boolean hasSimilarity = false;
|
||||||
|
CommandNode a1 = allNodes[a.getChildIndices()[i]];
|
||||||
|
// Search "b" until we find a child that matches this one
|
||||||
|
for (int j = 0; j < b.getChildIndices().length; j++) {
|
||||||
|
if (isCompatible(allNodes, a1, allNodes[b.getChildIndices()[j]])) {
|
||||||
|
hasSimilarity = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!hasSimilarity) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the tree of every parameter node (recursive)
|
* Get the tree of every parameter node (recursive)
|
||||||
*
|
*
|
||||||
@ -301,13 +414,10 @@ public class JavaDeclareCommandsTranslator extends PacketTranslator<ServerDeclar
|
|||||||
List<CommandParamData[]> childTree = child.getTree();
|
List<CommandParamData[]> childTree = child.getTree();
|
||||||
|
|
||||||
// Un-pack the tree append the child node to it and push into the list
|
// Un-pack the tree append the child node to it and push into the list
|
||||||
for (CommandParamData[] subchild : childTree) {
|
for (CommandParamData[] subChild : childTree) {
|
||||||
CommandParamData[] tmpTree = new ArrayList<CommandParamData>() {
|
CommandParamData[] tmpTree = new CommandParamData[subChild.length + 1];
|
||||||
{
|
tmpTree[0] = child.getParamData();
|
||||||
add(child.getParamData());
|
System.arraycopy(subChild, 0, tmpTree, 1, subChild.length);
|
||||||
addAll(Arrays.asList(subchild));
|
|
||||||
}
|
|
||||||
}.toArray(new CommandParamData[0]);
|
|
||||||
|
|
||||||
treeParamData.add(tmpTree);
|
treeParamData.add(tmpTree);
|
||||||
}
|
}
|
||||||
|
@ -386,4 +386,11 @@ public class BlockTranslator {
|
|||||||
}
|
}
|
||||||
return itemIdentifier;
|
return itemIdentifier;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return a list of all Java block identifiers. For use with command suggestions.
|
||||||
|
*/
|
||||||
|
public static String[] getAllBlockIdentifiers() {
|
||||||
|
return JAVA_ID_TO_JAVA_IDENTIFIER_MAP.values().toArray(new String[0]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren