50 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
	
		
			1.7 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 com.mojang.brigadier.exceptions.SimpleCommandExceptionType;
 | |
| import java.util.Arrays;
 | |
| import java.util.Collection;
 | |
| import java.util.UUID;
 | |
| import java.util.regex.Matcher;
 | |
| import java.util.regex.Pattern;
 | |
| import net.minecraft.commands.CommandSourceStack;
 | |
| import net.minecraft.network.chat.Component;
 | |
| 
 | |
| public class UuidArgument implements ArgumentType<UUID> {
 | |
| 	public static final SimpleCommandExceptionType ERROR_INVALID_UUID = new SimpleCommandExceptionType(Component.translatable("argument.uuid.invalid"));
 | |
| 	private static final Collection<String> EXAMPLES = Arrays.asList("dd12be42-52a9-4a91-a8a1-11c01849e498");
 | |
| 	private static final Pattern ALLOWED_CHARACTERS = Pattern.compile("^([-A-Fa-f0-9]+)");
 | |
| 
 | |
| 	public static UUID getUuid(CommandContext<CommandSourceStack> context, String name) {
 | |
| 		return context.getArgument(name, UUID.class);
 | |
| 	}
 | |
| 
 | |
| 	public static UuidArgument uuid() {
 | |
| 		return new UuidArgument();
 | |
| 	}
 | |
| 
 | |
| 	public UUID parse(StringReader reader) throws CommandSyntaxException {
 | |
| 		String string = reader.getRemaining();
 | |
| 		Matcher matcher = ALLOWED_CHARACTERS.matcher(string);
 | |
| 		if (matcher.find()) {
 | |
| 			String string2 = matcher.group(1);
 | |
| 
 | |
| 			try {
 | |
| 				UUID uUID = UUID.fromString(string2);
 | |
| 				reader.setCursor(reader.getCursor() + string2.length());
 | |
| 				return uUID;
 | |
| 			} catch (IllegalArgumentException var6) {
 | |
| 			}
 | |
| 		}
 | |
| 
 | |
| 		throw ERROR_INVALID_UUID.createWithContext(reader);
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public Collection<String> getExamples() {
 | |
| 		return EXAMPLES;
 | |
| 	}
 | |
| }
 |