71 lines
		
	
	
	
		
			3 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
	
		
			3 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.commands.arguments.coordinates;
 | |
| 
 | |
| 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.SimpleCommandExceptionType;
 | |
| import com.mojang.brigadier.suggestion.Suggestions;
 | |
| import com.mojang.brigadier.suggestion.SuggestionsBuilder;
 | |
| import java.util.Arrays;
 | |
| import java.util.Collection;
 | |
| import java.util.Collections;
 | |
| import java.util.concurrent.CompletableFuture;
 | |
| import net.minecraft.commands.CommandSourceStack;
 | |
| import net.minecraft.commands.Commands;
 | |
| import net.minecraft.commands.SharedSuggestionProvider;
 | |
| import net.minecraft.network.chat.Component;
 | |
| import net.minecraft.world.phys.Vec3;
 | |
| 
 | |
| public class Vec3Argument implements ArgumentType<Coordinates> {
 | |
| 	private static final Collection<String> EXAMPLES = Arrays.asList("0 0 0", "~ ~ ~", "^ ^ ^", "^1 ^ ^-5", "0.1 -0.5 .9", "~0.5 ~1 ~-5");
 | |
| 	public static final SimpleCommandExceptionType ERROR_NOT_COMPLETE = new SimpleCommandExceptionType(Component.translatable("argument.pos3d.incomplete"));
 | |
| 	public static final SimpleCommandExceptionType ERROR_MIXED_TYPE = new SimpleCommandExceptionType(Component.translatable("argument.pos.mixed"));
 | |
| 	private final boolean centerCorrect;
 | |
| 
 | |
| 	public Vec3Argument(boolean centerCorrect) {
 | |
| 		this.centerCorrect = centerCorrect;
 | |
| 	}
 | |
| 
 | |
| 	public static Vec3Argument vec3() {
 | |
| 		return new Vec3Argument(true);
 | |
| 	}
 | |
| 
 | |
| 	public static Vec3Argument vec3(boolean centerCorrect) {
 | |
| 		return new Vec3Argument(centerCorrect);
 | |
| 	}
 | |
| 
 | |
| 	public static Vec3 getVec3(CommandContext<CommandSourceStack> context, String name) {
 | |
| 		return context.<Coordinates>getArgument(name, Coordinates.class).getPosition(context.getSource());
 | |
| 	}
 | |
| 
 | |
| 	public static Coordinates getCoordinates(CommandContext<CommandSourceStack> context, String name) {
 | |
| 		return context.getArgument(name, Coordinates.class);
 | |
| 	}
 | |
| 
 | |
| 	public Coordinates parse(StringReader reader) throws CommandSyntaxException {
 | |
| 		return (Coordinates)(reader.canRead() && reader.peek() == '^' ? LocalCoordinates.parse(reader) : WorldCoordinates.parseDouble(reader, this.centerCorrect));
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public <S> CompletableFuture<Suggestions> listSuggestions(CommandContext<S> commandContext, SuggestionsBuilder suggestionsBuilder) {
 | |
| 		if (!(commandContext.getSource() instanceof SharedSuggestionProvider)) {
 | |
| 			return Suggestions.empty();
 | |
| 		} else {
 | |
| 			String string = suggestionsBuilder.getRemaining();
 | |
| 			Collection<SharedSuggestionProvider.TextCoordinates> collection;
 | |
| 			if (!string.isEmpty() && string.charAt(0) == '^') {
 | |
| 				collection = Collections.singleton(SharedSuggestionProvider.TextCoordinates.DEFAULT_LOCAL);
 | |
| 			} else {
 | |
| 				collection = ((SharedSuggestionProvider)commandContext.getSource()).getAbsoluteCoordinates();
 | |
| 			}
 | |
| 
 | |
| 			return SharedSuggestionProvider.suggestCoordinates(string, collection, suggestionsBuilder, Commands.createValidator(this::parse));
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public Collection<String> getExamples() {
 | |
| 		return EXAMPLES;
 | |
| 	}
 | |
| }
 |