minecraft-src/net/minecraft/commands/arguments/ResourceKeyArgument.java
2025-07-04 03:45:38 +03:00

143 lines
7.5 KiB
Java

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.DynamicCommandExceptionType;
import com.mojang.brigadier.suggestion.Suggestions;
import com.mojang.brigadier.suggestion.SuggestionsBuilder;
import java.util.Arrays;
import java.util.Collection;
import java.util.Optional;
import java.util.concurrent.CompletableFuture;
import net.minecraft.advancements.Advancement;
import net.minecraft.advancements.AdvancementHolder;
import net.minecraft.commands.CommandSourceStack;
import net.minecraft.commands.SharedSuggestionProvider;
import net.minecraft.commands.SharedSuggestionProvider.ElementSuggestionType;
import net.minecraft.commands.synchronization.ArgumentTypeInfo;
import net.minecraft.core.Registry;
import net.minecraft.core.Holder.Reference;
import net.minecraft.core.registries.Registries;
import net.minecraft.network.FriendlyByteBuf;
import net.minecraft.network.chat.Component;
import net.minecraft.resources.ResourceKey;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.world.item.crafting.Recipe;
import net.minecraft.world.item.crafting.RecipeHolder;
import net.minecraft.world.item.crafting.RecipeManager;
import net.minecraft.world.level.levelgen.feature.ConfiguredFeature;
import net.minecraft.world.level.levelgen.structure.Structure;
import net.minecraft.world.level.levelgen.structure.pools.StructureTemplatePool;
public class ResourceKeyArgument<T> implements ArgumentType<ResourceKey<T>> {
private static final Collection<String> EXAMPLES = Arrays.asList("foo", "foo:bar", "012");
private static final DynamicCommandExceptionType ERROR_INVALID_FEATURE = new DynamicCommandExceptionType(
object -> Component.translatableEscape("commands.place.feature.invalid", object)
);
private static final DynamicCommandExceptionType ERROR_INVALID_STRUCTURE = new DynamicCommandExceptionType(
object -> Component.translatableEscape("commands.place.structure.invalid", object)
);
private static final DynamicCommandExceptionType ERROR_INVALID_TEMPLATE_POOL = new DynamicCommandExceptionType(
object -> Component.translatableEscape("commands.place.jigsaw.invalid", object)
);
private static final DynamicCommandExceptionType ERROR_INVALID_RECIPE = new DynamicCommandExceptionType(
object -> Component.translatableEscape("recipe.notFound", object)
);
private static final DynamicCommandExceptionType ERROR_INVALID_ADVANCEMENT = new DynamicCommandExceptionType(
object -> Component.translatableEscape("advancement.advancementNotFound", object)
);
final ResourceKey<? extends Registry<T>> registryKey;
public ResourceKeyArgument(ResourceKey<? extends Registry<T>> registryKey) {
this.registryKey = registryKey;
}
public static <T> ResourceKeyArgument<T> key(ResourceKey<? extends Registry<T>> registryKey) {
return new ResourceKeyArgument<>(registryKey);
}
public static <T> ResourceKey<T> getRegistryKey(
CommandContext<CommandSourceStack> context, String argument, ResourceKey<Registry<T>> registryKey, DynamicCommandExceptionType exception
) throws CommandSyntaxException {
ResourceKey<?> resourceKey = context.getArgument(argument, ResourceKey.class);
Optional<ResourceKey<T>> optional = resourceKey.cast(registryKey);
return (ResourceKey<T>)optional.orElseThrow(() -> exception.create(resourceKey.location()));
}
private static <T> Registry<T> getRegistry(CommandContext<CommandSourceStack> context, ResourceKey<? extends Registry<T>> registryKey) {
return context.getSource().getServer().registryAccess().lookupOrThrow(registryKey);
}
private static <T> Reference<T> resolveKey(
CommandContext<CommandSourceStack> context, String argument, ResourceKey<Registry<T>> registryKey, DynamicCommandExceptionType exception
) throws CommandSyntaxException {
ResourceKey<T> resourceKey = getRegistryKey(context, argument, registryKey, exception);
return (Reference<T>)getRegistry(context, registryKey).get(resourceKey).orElseThrow(() -> exception.create(resourceKey.location()));
}
public static Reference<ConfiguredFeature<?, ?>> getConfiguredFeature(CommandContext<CommandSourceStack> context, String argument) throws CommandSyntaxException {
return resolveKey(context, argument, Registries.CONFIGURED_FEATURE, ERROR_INVALID_FEATURE);
}
public static Reference<Structure> getStructure(CommandContext<CommandSourceStack> context, String argument) throws CommandSyntaxException {
return resolveKey(context, argument, Registries.STRUCTURE, ERROR_INVALID_STRUCTURE);
}
public static Reference<StructureTemplatePool> getStructureTemplatePool(CommandContext<CommandSourceStack> context, String argument) throws CommandSyntaxException {
return resolveKey(context, argument, Registries.TEMPLATE_POOL, ERROR_INVALID_TEMPLATE_POOL);
}
public static RecipeHolder<?> getRecipe(CommandContext<CommandSourceStack> context, String argument) throws CommandSyntaxException {
RecipeManager recipeManager = context.getSource().getServer().getRecipeManager();
ResourceKey<Recipe<?>> resourceKey = getRegistryKey(context, argument, Registries.RECIPE, ERROR_INVALID_RECIPE);
return (RecipeHolder<?>)recipeManager.byKey(resourceKey).orElseThrow(() -> ERROR_INVALID_RECIPE.create(resourceKey.location()));
}
public static AdvancementHolder getAdvancement(CommandContext<CommandSourceStack> context, String argument) throws CommandSyntaxException {
ResourceKey<Advancement> resourceKey = getRegistryKey(context, argument, Registries.ADVANCEMENT, ERROR_INVALID_ADVANCEMENT);
AdvancementHolder advancementHolder = context.getSource().getServer().getAdvancements().get(resourceKey.location());
if (advancementHolder == null) {
throw ERROR_INVALID_ADVANCEMENT.create(resourceKey.location());
} else {
return advancementHolder;
}
}
public ResourceKey<T> parse(StringReader reader) throws CommandSyntaxException {
ResourceLocation resourceLocation = ResourceLocation.read(reader);
return ResourceKey.create(this.registryKey, resourceLocation);
}
@Override
public <S> CompletableFuture<Suggestions> listSuggestions(CommandContext<S> commandContext, SuggestionsBuilder suggestionsBuilder) {
return commandContext.getSource() instanceof SharedSuggestionProvider sharedSuggestionProvider
? sharedSuggestionProvider.suggestRegistryElements(this.registryKey, ElementSuggestionType.ELEMENTS, suggestionsBuilder, commandContext)
: suggestionsBuilder.buildFuture();
}
@Override
public Collection<String> getExamples() {
return EXAMPLES;
}
public static class Info<T> implements ArgumentTypeInfo<ResourceKeyArgument<T>, ResourceKeyArgument.Info<T>.Template> {
public void serializeToNetwork(ResourceKeyArgument.Info<T>.Template template, FriendlyByteBuf friendlyByteBuf) {
friendlyByteBuf.writeResourceKey(template.registryKey);
}
public ResourceKeyArgument.Info<T>.Template deserializeFromNetwork(FriendlyByteBuf friendlyByteBuf) {
return new net.minecraft.commands.arguments.ResourceKeyArgument.Info.Template(this, friendlyByteBuf.readRegistryKey());
}
public void serializeToJson(ResourceKeyArgument.Info<T>.Template template, JsonObject jsonObject) {
jsonObject.addProperty("registry", template.registryKey.location().toString());
}
public ResourceKeyArgument.Info<T>.Template unpack(ResourceKeyArgument<T> resourceKeyArgument) {
return new net.minecraft.commands.arguments.ResourceKeyArgument.Info.Template(this, resourceKeyArgument.registryKey);
}
}
}