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

43 lines
1.7 KiB
Java

package net.minecraft.commands.arguments;
import com.mojang.brigadier.context.CommandContext;
import com.mojang.brigadier.exceptions.DynamicCommandExceptionType;
import com.mojang.serialization.DynamicOps;
import java.util.Collection;
import java.util.List;
import net.minecraft.commands.CommandBuildContext;
import net.minecraft.commands.CommandSourceStack;
import net.minecraft.core.HolderLookup;
import net.minecraft.nbt.NbtOps;
import net.minecraft.nbt.SnbtGrammar;
import net.minecraft.nbt.Tag;
import net.minecraft.network.chat.Component;
import net.minecraft.network.chat.Style;
import net.minecraft.util.parsing.packrat.commands.CommandArgumentParser;
import net.minecraft.util.parsing.packrat.commands.ParserBasedArgument;
public class StyleArgument extends ParserBasedArgument<Style> {
private static final Collection<String> EXAMPLES = List.of("{bold: true}", "{color: 'red'}", "{}");
public static final DynamicCommandExceptionType ERROR_INVALID_STYLE = new DynamicCommandExceptionType(
object -> Component.translatableEscape("argument.style.invalid", object)
);
private static final DynamicOps<Tag> OPS = NbtOps.INSTANCE;
private static final CommandArgumentParser<Tag> TAG_PARSER = SnbtGrammar.createParser(OPS);
private StyleArgument(HolderLookup.Provider registries) {
super(TAG_PARSER.withCodec(registries.createSerializationContext(OPS), TAG_PARSER, Style.Serializer.CODEC, ERROR_INVALID_STYLE));
}
public static Style getStyle(CommandContext<CommandSourceStack> context, String name) {
return context.getArgument(name, Style.class);
}
public static StyleArgument style(CommandBuildContext context) {
return new StyleArgument(context);
}
@Override
public Collection<String> getExamples() {
return EXAMPLES;
}
}