89 lines
		
	
	
	
		
			3.7 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			89 lines
		
	
	
	
		
			3.7 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.server.commands.data;
 | |
| 
 | |
| import com.mojang.brigadier.builder.ArgumentBuilder;
 | |
| import com.mojang.brigadier.context.CommandContext;
 | |
| import com.mojang.brigadier.exceptions.CommandSyntaxException;
 | |
| import com.mojang.brigadier.exceptions.SimpleCommandExceptionType;
 | |
| import com.mojang.logging.LogUtils;
 | |
| import java.util.Locale;
 | |
| import java.util.function.Function;
 | |
| import net.minecraft.commands.CommandSourceStack;
 | |
| import net.minecraft.commands.Commands;
 | |
| import net.minecraft.commands.arguments.NbtPathArgument;
 | |
| import net.minecraft.commands.arguments.coordinates.BlockPosArgument;
 | |
| import net.minecraft.core.BlockPos;
 | |
| import net.minecraft.nbt.CompoundTag;
 | |
| import net.minecraft.nbt.NbtUtils;
 | |
| import net.minecraft.nbt.Tag;
 | |
| import net.minecraft.network.chat.Component;
 | |
| import net.minecraft.util.ProblemReporter;
 | |
| import net.minecraft.world.level.block.entity.BlockEntity;
 | |
| import net.minecraft.world.level.block.state.BlockState;
 | |
| import net.minecraft.world.level.storage.TagValueInput;
 | |
| import org.slf4j.Logger;
 | |
| 
 | |
| public class BlockDataAccessor implements DataAccessor {
 | |
| 	private static final Logger LOGGER = LogUtils.getLogger();
 | |
| 	static final SimpleCommandExceptionType ERROR_NOT_A_BLOCK_ENTITY = new SimpleCommandExceptionType(Component.translatable("commands.data.block.invalid"));
 | |
| 	public static final Function<String, DataCommands.DataProvider> PROVIDER = string -> new DataCommands.DataProvider() {
 | |
| 		@Override
 | |
| 		public DataAccessor access(CommandContext<CommandSourceStack> context) throws CommandSyntaxException {
 | |
| 			BlockPos blockPos = BlockPosArgument.getLoadedBlockPos(context, string + "Pos");
 | |
| 			BlockEntity blockEntity = context.getSource().getLevel().getBlockEntity(blockPos);
 | |
| 			if (blockEntity == null) {
 | |
| 				throw BlockDataAccessor.ERROR_NOT_A_BLOCK_ENTITY.create();
 | |
| 			} else {
 | |
| 				return new BlockDataAccessor(blockEntity, blockPos);
 | |
| 			}
 | |
| 		}
 | |
| 
 | |
| 		@Override
 | |
| 		public ArgumentBuilder<CommandSourceStack, ?> wrap(
 | |
| 			ArgumentBuilder<CommandSourceStack, ?> builder, Function<ArgumentBuilder<CommandSourceStack, ?>, ArgumentBuilder<CommandSourceStack, ?>> action
 | |
| 		) {
 | |
| 			return builder.then(
 | |
| 				Commands.literal("block").then((ArgumentBuilder<CommandSourceStack, ?>)action.apply(Commands.argument(string + "Pos", BlockPosArgument.blockPos())))
 | |
| 			);
 | |
| 		}
 | |
| 	};
 | |
| 	private final BlockEntity entity;
 | |
| 	private final BlockPos pos;
 | |
| 
 | |
| 	public BlockDataAccessor(BlockEntity entity, BlockPos pos) {
 | |
| 		this.entity = entity;
 | |
| 		this.pos = pos;
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public void setData(CompoundTag other) {
 | |
| 		BlockState blockState = this.entity.getLevel().getBlockState(this.pos);
 | |
| 
 | |
| 		try (ProblemReporter.ScopedCollector scopedCollector = new ProblemReporter.ScopedCollector(this.entity.problemPath(), LOGGER)) {
 | |
| 			this.entity.loadWithComponents(TagValueInput.create(scopedCollector, this.entity.getLevel().registryAccess(), other));
 | |
| 			this.entity.setChanged();
 | |
| 			this.entity.getLevel().sendBlockUpdated(this.pos, blockState, blockState, 3);
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public CompoundTag getData() {
 | |
| 		return this.entity.saveWithFullMetadata(this.entity.getLevel().registryAccess());
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public Component getModifiedSuccess() {
 | |
| 		return Component.translatable("commands.data.block.modified", this.pos.getX(), this.pos.getY(), this.pos.getZ());
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public Component getPrintSuccess(Tag nbt) {
 | |
| 		return Component.translatable("commands.data.block.query", this.pos.getX(), this.pos.getY(), this.pos.getZ(), NbtUtils.toPrettyComponent(nbt));
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public Component getPrintSuccess(NbtPathArgument.NbtPath path, double scale, int value) {
 | |
| 		return Component.translatable(
 | |
| 			"commands.data.block.get", path.asString(), this.pos.getX(), this.pos.getY(), this.pos.getZ(), String.format(Locale.ROOT, "%.2f", scale), value
 | |
| 		);
 | |
| 	}
 | |
| }
 |