mirror of
https://github.com/YouHaveTrouble/BlockEdit.git
synced 2026-06-29 13:36:19 +00:00
ability to set block data as arguments in set command
This commit is contained in:
@@ -25,39 +25,90 @@ public class SetCommand extends Command {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public @NotNull List<String> tabComplete(@NotNull CommandSender sender, @NotNull String alias, @NotNull String[] args) {
|
public @NotNull List<String> tabComplete(@NotNull CommandSender sender, @NotNull String alias, @NotNull String[] args) {
|
||||||
|
ArrayList<String> suggestions = new ArrayList<>();
|
||||||
if (args.length == 1) {
|
if (args.length == 1) {
|
||||||
ArrayList<String> suggestions = new ArrayList<>();
|
|
||||||
for (Material material : Material.values()) {
|
for (Material material : Material.values()) {
|
||||||
if (material.isBlock())
|
if (material.isBlock())
|
||||||
suggestions.add(material.name().toLowerCase());
|
suggestions.add(material.name().toLowerCase());
|
||||||
}
|
}
|
||||||
return StringUtil.copyPartialMatches(args[0], suggestions, new ArrayList<>());
|
return StringUtil.copyPartialMatches(args[0], suggestions, new ArrayList<>());
|
||||||
}
|
}
|
||||||
return new ArrayList<>();
|
// TODO refactor and/or abstract this
|
||||||
|
if (args.length > 1) {
|
||||||
|
Material material = Material.getMaterial(args[0].toUpperCase());
|
||||||
|
if (material == null) return suggestions;
|
||||||
|
if (!material.isBlock()) return suggestions;
|
||||||
|
BlockData blockData = material.createBlockData();
|
||||||
|
String[] split = args[args.length-1].split("=");
|
||||||
|
if (split.length == 1) {
|
||||||
|
String datas = blockData.getAsString(false);
|
||||||
|
String[] nameAndDatas = datas.split("\\[");
|
||||||
|
datas = nameAndDatas[1].substring(0, nameAndDatas[1].length()-2);
|
||||||
|
String[] splitDatas = datas.split(",");
|
||||||
|
for (String data : splitDatas) {
|
||||||
|
String[] splitData = data.split("=");
|
||||||
|
if (splitData.length != 2) continue;
|
||||||
|
String suggestion = splitData[0]+"=";
|
||||||
|
boolean alreadyUsed = false;
|
||||||
|
for (String arg : args) {
|
||||||
|
if (arg.startsWith(suggestion)) {
|
||||||
|
alreadyUsed = true;
|
||||||
|
break;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
if (alreadyUsed) continue;
|
||||||
|
suggestions.add(suggestion);
|
||||||
|
}
|
||||||
|
return StringUtil.copyPartialMatches(split[0], suggestions, new ArrayList<>());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
return suggestions;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean execute(@NotNull CommandSender commandSender, @NotNull String s, @NotNull String[] args) {
|
public boolean execute(@NotNull CommandSender commandSender, @NotNull String s, @NotNull String[] args) {
|
||||||
if (!(commandSender instanceof Player player)) return true;
|
if (!(commandSender instanceof Player player)) return true;
|
||||||
|
|
||||||
|
BEPlayer bePlayer = BEPlayer.getByPlayer(player);
|
||||||
|
Selection selection = bePlayer.getSelection();
|
||||||
|
if (selection == null) {
|
||||||
|
player.sendMessage(Component.text("You need to select 2 points to do this"));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
if (args.length == 0) {
|
if (args.length == 0) {
|
||||||
player.sendMessage(Component.text("You need to provide block type"));
|
player.sendMessage(Component.text("You need to provide block type"));
|
||||||
return true;
|
return true;
|
||||||
} else {
|
|
||||||
Material material = Material.getMaterial(args[0].toUpperCase());
|
|
||||||
if (material == null) {
|
|
||||||
player.sendMessage(Component.text("Provided material does not exist"));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
BlockData blockData = material.createBlockData();
|
|
||||||
BEPlayer bePlayer = BEPlayer.getByPlayer(player);
|
|
||||||
Selection selection = bePlayer.getSelection();
|
|
||||||
if (selection == null) {
|
|
||||||
player.sendMessage(Component.text("You need to select 2 points to do this"));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
BlockEditAPI.runOperation(selection, 1, new SetOperation(blockData));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BlockData blockData;
|
||||||
|
try {
|
||||||
|
blockData = getBlockData(args);
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
player.sendMessage(Component.text("Provided block data is invalid"));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (blockData == null) {
|
||||||
|
player.sendMessage(Component.text("Provided material does not exist"));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
BlockEditAPI.runOperation(selection, 1, new SetOperation(blockData));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private BlockData getBlockData(String[] args) throws IllegalArgumentException {
|
||||||
|
ArrayList<String> argsList = new ArrayList<>(List.of(args));
|
||||||
|
if (argsList.size() == 0) return null;
|
||||||
|
Material material = Material.getMaterial(argsList.get(0).toUpperCase());
|
||||||
|
if (material == null) return null;
|
||||||
|
argsList.remove(0);
|
||||||
|
if (argsList.size() == 0) return material.createBlockData();
|
||||||
|
String dataString = "[" + String.join(",", argsList) + "]";
|
||||||
|
return material.createBlockData(dataString);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user