minecraft-src/net/minecraft/commands/arguments/RangeArgument.java
2025-07-04 01:41:11 +03:00

57 lines
1.9 KiB
Java

package net.minecraft.commands.arguments;
import com.mojang.brigadier.StringReader;
import com.mojang.brigadier.arguments.ArgumentType;
import com.mojang.brigadier.context.CommandContext;
import com.mojang.brigadier.exceptions.CommandSyntaxException;
import java.util.Arrays;
import java.util.Collection;
import net.minecraft.advancements.critereon.MinMaxBounds;
import net.minecraft.commands.CommandSourceStack;
public interface RangeArgument<T extends MinMaxBounds<?>> extends ArgumentType<T> {
/**
* Note: this class is missing several fields and methods due to them not being used in particular FloatRange has no way of being created.
*/
static RangeArgument.Ints intRange() {
return new RangeArgument.Ints();
}
static RangeArgument.Floats floatRange() {
return new RangeArgument.Floats();
}
public static class Floats implements RangeArgument<MinMaxBounds.Doubles> {
private static final Collection<String> EXAMPLES = Arrays.asList("0..5.2", "0", "-5.4", "-100.76..", "..100");
public static MinMaxBounds.Doubles getRange(CommandContext<CommandSourceStack> context, String name) {
return context.getArgument(name, MinMaxBounds.Doubles.class);
}
public MinMaxBounds.Doubles parse(StringReader reader) throws CommandSyntaxException {
return MinMaxBounds.Doubles.fromReader(reader);
}
@Override
public Collection<String> getExamples() {
return EXAMPLES;
}
}
public static class Ints implements RangeArgument<MinMaxBounds.Ints> {
private static final Collection<String> EXAMPLES = Arrays.asList("0..5", "0", "-5", "-100..", "..100");
public static MinMaxBounds.Ints getRange(CommandContext<CommandSourceStack> context, String name) {
return context.getArgument(name, MinMaxBounds.Ints.class);
}
public MinMaxBounds.Ints parse(StringReader reader) throws CommandSyntaxException {
return MinMaxBounds.Ints.fromReader(reader);
}
@Override
public Collection<String> getExamples() {
return EXAMPLES;
}
}
}