54 lines
2.0 KiB
Java
54 lines
2.0 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> {
|
|
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> p_170805_, String p_170806_) {
|
|
return p_170805_.getArgument(p_170806_, MinMaxBounds.Doubles.class);
|
|
}
|
|
|
|
public MinMaxBounds.Doubles parse(StringReader p_170803_) throws CommandSyntaxException {
|
|
return MinMaxBounds.Doubles.fromReader(p_170803_);
|
|
}
|
|
|
|
@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> p_105420_, String p_105421_) {
|
|
return p_105420_.getArgument(p_105421_, MinMaxBounds.Ints.class);
|
|
}
|
|
|
|
public MinMaxBounds.Ints parse(StringReader p_105418_) throws CommandSyntaxException {
|
|
return MinMaxBounds.Ints.fromReader(p_105418_);
|
|
}
|
|
|
|
@Override
|
|
public Collection<String> getExamples() {
|
|
return EXAMPLES;
|
|
}
|
|
}
|
|
} |