package net.minecraft.commands.arguments; import com.google.gson.JsonObject; import com.mojang.brigadier.StringReader; import com.mojang.brigadier.arguments.ArgumentType; import com.mojang.brigadier.context.CommandContext; import com.mojang.brigadier.exceptions.CommandSyntaxException; import com.mojang.brigadier.exceptions.Dynamic2CommandExceptionType; import com.mojang.brigadier.suggestion.Suggestions; import com.mojang.brigadier.suggestion.SuggestionsBuilder; import java.util.Collection; import java.util.List; import java.util.concurrent.CompletableFuture; import net.minecraft.commands.CommandBuildContext; import net.minecraft.commands.CommandSourceStack; import net.minecraft.commands.SharedSuggestionProvider; import net.minecraft.commands.synchronization.ArgumentTypeInfo; import net.minecraft.core.Holder; import net.minecraft.core.HolderLookup; import net.minecraft.core.Registry; import net.minecraft.network.FriendlyByteBuf; import net.minecraft.network.chat.Component; import net.minecraft.resources.ResourceKey; import net.minecraft.resources.ResourceLocation; import org.apache.commons.io.FilenameUtils; public class ResourceSelectorArgument implements ArgumentType>> { private static final Collection EXAMPLES = List.of("minecraft:*", "*:asset", "*"); public static final Dynamic2CommandExceptionType ERROR_NO_MATCHES = new Dynamic2CommandExceptionType( (object, object2) -> Component.translatableEscape("argument.resource_selector.not_found", object, object2) ); final ResourceKey> registryKey; private final HolderLookup registryLookup; ResourceSelectorArgument(CommandBuildContext buildContext, ResourceKey> registryKey) { this.registryKey = registryKey; this.registryLookup = buildContext.lookupOrThrow(registryKey); } public Collection> parse(StringReader reader) throws CommandSyntaxException { String string = ensureNamespaced(readPattern(reader)); List> list = this.registryLookup.listElements().filter(reference -> matches(string, reference.key().location())).toList(); if (list.isEmpty()) { throw ERROR_NO_MATCHES.createWithContext(reader, string, this.registryKey.location()); } else { return list; } } public static Collection> parse(StringReader parse, HolderLookup lookup) { String string = ensureNamespaced(readPattern(parse)); return lookup.listElements().filter(reference -> matches(string, reference.key().location())).toList(); } private static String readPattern(StringReader reader) { int i = reader.getCursor(); while (reader.canRead() && isAllowedPatternCharacter(reader.peek())) { reader.skip(); } return reader.getString().substring(i, reader.getCursor()); } private static boolean isAllowedPatternCharacter(char c) { return ResourceLocation.isAllowedInResourceLocation(c) || c == '*' || c == '?'; } private static String ensureNamespaced(String name) { return !name.contains(":") ? "minecraft:" + name : name; } private static boolean matches(String string, ResourceLocation location) { return FilenameUtils.wildcardMatch(location.toString(), string); } public static ResourceSelectorArgument resourceSelector(CommandBuildContext buildContext, ResourceKey> registryKey) { return new ResourceSelectorArgument<>(buildContext, registryKey); } public static Collection> getSelectedResources(CommandContext context, String name) { return context.getArgument(name, Collection.class); } @Override public CompletableFuture listSuggestions(CommandContext commandContext, SuggestionsBuilder suggestionsBuilder) { return SharedSuggestionProvider.listSuggestions(commandContext, suggestionsBuilder, this.registryKey, SharedSuggestionProvider.ElementSuggestionType.ELEMENTS); } @Override public Collection getExamples() { return EXAMPLES; } public static class Info implements ArgumentTypeInfo, ResourceSelectorArgument.Info.Template> { public void serializeToNetwork(ResourceSelectorArgument.Info.Template template, FriendlyByteBuf buffer) { buffer.writeResourceKey(template.registryKey); } public ResourceSelectorArgument.Info.Template deserializeFromNetwork(FriendlyByteBuf buffer) { return new ResourceSelectorArgument.Info.Template(buffer.readRegistryKey()); } public void serializeToJson(ResourceSelectorArgument.Info.Template template, JsonObject json) { json.addProperty("registry", template.registryKey.location().toString()); } public ResourceSelectorArgument.Info.Template unpack(ResourceSelectorArgument argument) { return new ResourceSelectorArgument.Info.Template(argument.registryKey); } public final class Template implements ArgumentTypeInfo.Template> { final ResourceKey> registryKey; Template(final ResourceKey> registryKey) { this.registryKey = registryKey; } public ResourceSelectorArgument instantiate(CommandBuildContext context) { return new ResourceSelectorArgument<>(context, this.registryKey); } @Override public ArgumentTypeInfo, ?> type() { return Info.this; } } } }