/* * Decompiled with CFR 0.152. * * Could not load the following classes: * com.google.gson.JsonObject * com.mojang.brigadier.ImmutableStringReader * com.mojang.brigadier.StringReader * com.mojang.brigadier.arguments.ArgumentType * com.mojang.brigadier.context.CommandContext * com.mojang.brigadier.exceptions.CommandSyntaxException * com.mojang.brigadier.exceptions.Dynamic2CommandExceptionType * com.mojang.brigadier.suggestion.Suggestions * com.mojang.brigadier.suggestion.SuggestionsBuilder * org.apache.commons.io.FilenameUtils */ package net.minecraft.commands.arguments; import com.google.gson.JsonObject; import com.mojang.brigadier.ImmutableStringReader; 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.Identifier; import net.minecraft.resources.ResourceKey; 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((selector, registry) -> Component.translatableEscape("argument.resource_selector.not_found", selector, registry)); private final ResourceKey> registryKey; private final HolderLookup registryLookup; private ResourceSelectorArgument(CommandBuildContext context, ResourceKey> registryKey) { this.registryKey = registryKey; this.registryLookup = context.lookupOrThrow(registryKey); } public Collection> parse(StringReader reader) throws CommandSyntaxException { String pattern = ResourceSelectorArgument.ensureNamespaced(ResourceSelectorArgument.readPattern(reader)); List> results = this.registryLookup.listElements().filter(element -> ResourceSelectorArgument.matches(pattern, element.key().identifier())).toList(); if (results.isEmpty()) { throw ERROR_NO_MATCHES.createWithContext((ImmutableStringReader)reader, (Object)pattern, (Object)this.registryKey.identifier()); } return results; } public static Collection> parse(StringReader reader, HolderLookup registry) { String pattern = ResourceSelectorArgument.ensureNamespaced(ResourceSelectorArgument.readPattern(reader)); return registry.listElements().filter(element -> ResourceSelectorArgument.matches(pattern, element.key().identifier())).toList(); } private static String readPattern(StringReader reader) { int start = reader.getCursor(); while (reader.canRead() && ResourceSelectorArgument.isAllowedPatternCharacter(reader.peek())) { reader.skip(); } return reader.getString().substring(start, reader.getCursor()); } private static boolean isAllowedPatternCharacter(char character) { return Identifier.isAllowedInIdentifier(character) || character == '*' || character == '?'; } private static String ensureNamespaced(String input) { if (!input.contains(":")) { return "minecraft:" + input; } return input; } private static boolean matches(String pattern, Identifier key) { return FilenameUtils.wildcardMatch((String)key.toString(), (String)pattern); } public static ResourceSelectorArgument resourceSelector(CommandBuildContext context, ResourceKey> registry) { return new ResourceSelectorArgument(context, registry); } public static Collection> getSelectedResources(CommandContext context, String name) { return (Collection)context.getArgument(name, Collection.class); } public CompletableFuture listSuggestions(CommandContext context, SuggestionsBuilder builder) { return SharedSuggestionProvider.listSuggestions(context, builder, this.registryKey, SharedSuggestionProvider.ElementSuggestionType.ELEMENTS); } public Collection getExamples() { return EXAMPLES; } public static class Info implements ArgumentTypeInfo, Template> { @Override public void serializeToNetwork(Template template, FriendlyByteBuf out) { out.writeResourceKey(template.registryKey); } @Override public Template deserializeFromNetwork(FriendlyByteBuf in) { return new Template(in.readRegistryKey()); } @Override public void serializeToJson(Template template, JsonObject out) { out.addProperty("registry", template.registryKey.identifier().toString()); } @Override public Template unpack(ResourceSelectorArgument argument) { return new Template(argument.registryKey); } public final class Template implements ArgumentTypeInfo.Template> { private final ResourceKey> registryKey; private Template(ResourceKey> registryKey) { this.registryKey = registryKey; } @Override public ResourceSelectorArgument instantiate(CommandBuildContext context) { return new ResourceSelectorArgument(context, this.registryKey); } @Override public ArgumentTypeInfo, ?> type() { return Info.this; } } } }