/* * Ex Deorum * Copyright (c) 2024 thedarkcolour * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ package thedarkcolour.exdeorum.blockentity; import net.minecraft.core.BlockPos; import net.minecraft.nbt.CompoundTag; import net.minecraft.network.Connection; import net.minecraft.network.FriendlyByteBuf; import net.minecraft.network.protocol.game.ClientboundBlockEntityDataPacket; import net.minecraft.world.InteractionHand; import net.minecraft.world.InteractionResult; import net.minecraft.world.entity.player.Player; import net.minecraft.world.level.Level; import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.state.BlockState; import thedarkcolour.exdeorum.network.VisualUpdateTracker; import thedarkcolour.exdeorum.registry.EBlockEntities; import javax.annotation.Nullable; public abstract class EBlockEntity extends BlockEntity { public EBlockEntity(BlockEntityType type, BlockPos pos, BlockState state) { super(type, pos, state); } @Override public CompoundTag getUpdateTag() { return saveWithoutMetadata(); } @Nullable @Override public ClientboundBlockEntityDataPacket getUpdatePacket() { return ClientboundBlockEntityDataPacket.create(this); } @Override public void onDataPacket(Connection net, ClientboundBlockEntityDataPacket pkt) { // todo consider removing the load with an empty tag if (pkt.getTag() == null) { load(new CompoundTag()); } else { load(pkt.getTag()); } } public void markUpdated() { setChanged(); VisualUpdateTracker.sendVisualUpdate(this); } public InteractionResult use(Level level, Player player, InteractionHand hand) { return InteractionResult.PASS; } public void writeVisualData(FriendlyByteBuf buffer) { } public void readVisualData(FriendlyByteBuf buffer) { } // Only called when data is sent by a local server public void copyVisualData(BlockEntity fromIntegratedServer) { } }