|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package org.geysermc.connector.network.translators.bedrock; |
|
|
|
import com.github.steveice10.mc.protocol.data.game.entity.metadata.Position; |
|
import com.github.steveice10.mc.protocol.data.game.entity.player.GameMode; |
|
import com.github.steveice10.mc.protocol.data.game.entity.player.Hand; |
|
import com.github.steveice10.mc.protocol.data.game.entity.player.InteractAction; |
|
import com.github.steveice10.mc.protocol.data.game.entity.player.PlayerAction; |
|
import com.github.steveice10.mc.protocol.data.game.world.block.BlockFace; |
|
import com.github.steveice10.mc.protocol.packet.ingame.client.player.ClientPlayerActionPacket; |
|
import com.github.steveice10.mc.protocol.packet.ingame.client.player.ClientPlayerInteractEntityPacket; |
|
import com.github.steveice10.mc.protocol.packet.ingame.client.player.ClientPlayerPlaceBlockPacket; |
|
import com.github.steveice10.mc.protocol.packet.ingame.client.player.ClientPlayerUseItemPacket; |
|
import com.nukkitx.math.vector.Vector3f; |
|
import com.nukkitx.math.vector.Vector3i; |
|
import com.nukkitx.protocol.bedrock.data.LevelEventType; |
|
import com.nukkitx.protocol.bedrock.data.inventory.*; |
|
import com.nukkitx.protocol.bedrock.packet.*; |
|
import org.geysermc.connector.entity.CommandBlockMinecartEntity; |
|
import org.geysermc.connector.entity.Entity; |
|
import org.geysermc.connector.entity.ItemFrameEntity; |
|
import org.geysermc.connector.entity.type.EntityType; |
|
import org.geysermc.connector.inventory.GeyserItemStack; |
|
import org.geysermc.connector.network.session.GeyserSession; |
|
import org.geysermc.connector.network.translators.PacketTranslator; |
|
import org.geysermc.connector.network.translators.Translator; |
|
import org.geysermc.connector.network.translators.sound.EntitySoundInteractionHandler; |
|
import org.geysermc.connector.network.translators.world.block.BlockStateValues; |
|
import org.geysermc.connector.registry.BlockRegistries; |
|
import org.geysermc.connector.registry.type.ItemMapping; |
|
import org.geysermc.connector.registry.type.ItemMappings; |
|
import org.geysermc.connector.utils.BlockUtils; |
|
|
|
import java.util.concurrent.TimeUnit; |
|
|
|
|
|
|
|
|
|
|
|
@Translator(packet = InventoryTransactionPacket.class) |
|
public class BedrockInventoryTransactionTranslator extends PacketTranslator<InventoryTransactionPacket> { |
|
|
|
private static final float MAXIMUM_BLOCK_PLACING_DISTANCE = 64f; |
|
private static final int CREATIVE_EYE_HEIGHT_PLACE_DISTANCE = 49; |
|
private static final int SURVIVAL_EYE_HEIGHT_PLACE_DISTANCE = 36; |
|
private static final float MAXIMUM_BLOCK_DESTROYING_DISTANCE = 36f; |
|
|
|
@Override |
|
|
|
|
|
|
|
public void translate(GeyserSession session, InventoryTransactionPacket packet) { |
|
|
|
session.getBookEditCache().checkForSend(); |
|
|
|
ItemMappings mappings = session.getItemMappings(); |
|
|
|
switch (packet.getTransactionType()) { |
|
case NORMAL: |
|
if (packet.getActions().size() == 2) { |
|
InventoryActionData worldAction = packet.getActions().get(0); |
|
InventoryActionData containerAction = packet.getActions().get(1); |
|
if (worldAction.getSource().getType() == InventorySource.Type.WORLD_INTERACTION |
|
&& worldAction.getSource().getFlag() == InventorySource.Flag.DROP_ITEM) { |
|
if (session.getPlayerInventory().getHeldItemSlot() != containerAction.getSlot() || |
|
session.getPlayerInventory().getItemInHand().isEmpty()) { |
|
return; |
|
} |
|
|
|
boolean dropAll = worldAction.getToItem().getCount() > 1; |
|
ClientPlayerActionPacket dropAllPacket = new ClientPlayerActionPacket( |
|
dropAll ? PlayerAction.DROP_ITEM_STACK : PlayerAction.DROP_ITEM, |
|
BlockUtils.POSITION_ZERO, |
|
BlockFace.DOWN |
|
); |
|
session.sendDownstreamPacket(dropAllPacket); |
|
|
|
if (dropAll) { |
|
session.getPlayerInventory().setItemInHand(GeyserItemStack.EMPTY); |
|
} else { |
|
session.getPlayerInventory().getItemInHand().sub(1); |
|
} |
|
} |
|
} |
|
break; |
|
case INVENTORY_MISMATCH: |
|
break; |
|
case ITEM_USE: |
|
switch (packet.getActionType()) { |
|
case 0: |
|
|
|
|
|
boolean hasAlreadyClicked = System.currentTimeMillis() - session.getLastInteractionTime() < 110.0 && |
|
packet.getBlockPosition().distanceSquared(session.getLastInteractionBlockPosition()) < 0.00001; |
|
session.setLastInteractionBlockPosition(packet.getBlockPosition()); |
|
session.setLastInteractionPlayerPosition(session.getPlayerEntity().getPosition()); |
|
if (hasAlreadyClicked) { |
|
break; |
|
} else { |
|
|
|
session.setLastInteractionTime(System.currentTimeMillis()); |
|
} |
|
|
|
|
|
if (session.getBlockMappings().isItemFrame(packet.getBlockRuntimeId())) { |
|
Entity itemFrameEntity = ItemFrameEntity.getItemFrameEntity(session, packet.getBlockPosition()); |
|
if (itemFrameEntity != null) { |
|
int entityId = (int) itemFrameEntity.getEntityId(); |
|
Vector3f vector = packet.getClickPosition(); |
|
ClientPlayerInteractEntityPacket interactPacket = new ClientPlayerInteractEntityPacket(entityId, |
|
InteractAction.INTERACT, Hand.MAIN_HAND, session.isSneaking()); |
|
ClientPlayerInteractEntityPacket interactAtPacket = new ClientPlayerInteractEntityPacket(entityId, |
|
InteractAction.INTERACT_AT, vector.getX(), vector.getY(), vector.getZ(), Hand.MAIN_HAND, session.isSneaking()); |
|
session.sendDownstreamPacket(interactPacket); |
|
session.sendDownstreamPacket(interactAtPacket); |
|
break; |
|
} |
|
} |
|
|
|
Vector3i blockPos = BlockUtils.getBlockPosition(packet.getBlockPosition(), packet.getBlockFace()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
Vector3f playerPosition = session.getPlayerEntity().getPosition(); |
|
|
|
|
|
switch (session.getPose()) { |
|
case SNEAKING: |
|
playerPosition = playerPosition.sub(0, (EntityType.PLAYER.getOffset() - 1.27f), 0); |
|
break; |
|
case SWIMMING: |
|
case FALL_FLYING: |
|
case SPIN_ATTACK: |
|
playerPosition = playerPosition.sub(0, (EntityType.PLAYER.getOffset() - 0.4f), 0); |
|
break; |
|
case SLEEPING: |
|
playerPosition = playerPosition.sub(0, (EntityType.PLAYER.getOffset() - 0.2f), 0); |
|
break; |
|
} |
|
|
|
float diffX = playerPosition.getX() - packet.getBlockPosition().getX(); |
|
float diffY = playerPosition.getY() - packet.getBlockPosition().getY(); |
|
float diffZ = playerPosition.getZ() - packet.getBlockPosition().getZ(); |
|
if (((diffX * diffX) + (diffY * diffY) + (diffZ * diffZ)) > |
|
(session.getGameMode().equals(GameMode.CREATIVE) ? CREATIVE_EYE_HEIGHT_PLACE_DISTANCE : SURVIVAL_EYE_HEIGHT_PLACE_DISTANCE)) { |
|
restoreCorrectBlock(session, blockPos, packet); |
|
return; |
|
} |
|
|
|
|
|
if (!(session.getPlayerEntity().getPosition().sub(0, EntityType.PLAYER.getOffset(), 0) |
|
.distanceSquared(packet.getBlockPosition().toFloat().add(0.5f, 0.5f, 0.5f)) < MAXIMUM_BLOCK_PLACING_DISTANCE)) { |
|
|
|
restoreCorrectBlock(session, blockPos, packet); |
|
return; |
|
} |
|
|
|
|
|
|
|
|
|
if (packet.getItemInHand() != null && session.getItemMappings().getSpawnEggIds().contains(packet.getItemInHand().getId())) { |
|
int blockState = session.getConnector().getWorldManager().getBlockAt(session, packet.getBlockPosition()); |
|
if (blockState == BlockStateValues.JAVA_WATER_ID) { |
|
|
|
|
|
ClientPlayerUseItemPacket itemPacket = new ClientPlayerUseItemPacket(Hand.MAIN_HAND); |
|
session.sendDownstreamPacket(itemPacket); |
|
break; |
|
} |
|
} |
|
|
|
ClientPlayerPlaceBlockPacket blockPacket = new ClientPlayerPlaceBlockPacket( |
|
new Position(packet.getBlockPosition().getX(), packet.getBlockPosition().getY(), packet.getBlockPosition().getZ()), |
|
BlockFace.values()[packet.getBlockFace()], |
|
Hand.MAIN_HAND, |
|
packet.getClickPosition().getX(), packet.getClickPosition().getY(), packet.getClickPosition().getZ(), |
|
false); |
|
session.sendDownstreamPacket(blockPacket); |
|
|
|
if (packet.getItemInHand() != null) { |
|
|
|
if (session.getItemMappings().getBoatIds().contains(packet.getItemInHand().getId())) { |
|
ClientPlayerUseItemPacket itemPacket = new ClientPlayerUseItemPacket(Hand.MAIN_HAND); |
|
session.sendDownstreamPacket(itemPacket); |
|
} else if (session.getItemMappings().getBucketIds().contains(packet.getItemInHand().getId())) { |
|
|
|
InventorySlotPacket slotPacket = new InventorySlotPacket(); |
|
slotPacket.setContainerId(ContainerId.INVENTORY); |
|
slotPacket.setSlot(packet.getHotbarSlot()); |
|
slotPacket.setItem(packet.getItemInHand()); |
|
session.sendUpstreamPacket(slotPacket); |
|
|
|
if (packet.getItemInHand().getId() != session.getItemMappings().getStoredItems().powderSnowBucket().getBedrockId()) { |
|
|
|
int blockState = session.getConnector().getWorldManager().getBlockAt(session, packet.getBlockPosition()); |
|
if (session.isSneaking() || blockState != BlockRegistries.JAVA_IDENTIFIERS.get("minecraft:crafting_table")) { |
|
|
|
|
|
session.setBucketScheduledFuture(session.scheduleInEventLoop(() -> { |
|
ClientPlayerUseItemPacket itemPacket = new ClientPlayerUseItemPacket(Hand.MAIN_HAND); |
|
session.sendDownstreamPacket(itemPacket); |
|
}, 5, TimeUnit.MILLISECONDS)); |
|
} |
|
} |
|
} |
|
} |
|
|
|
if (packet.getActions().isEmpty()) { |
|
if (session.getOpPermissionLevel() >= 2 && session.getGameMode() == GameMode.CREATIVE) { |
|
|
|
int blockState = session.getBlockMappings().getJavaBlockState(packet.getBlockRuntimeId()); |
|
String blockName = BlockRegistries.JAVA_IDENTIFIERS.get().getOrDefault(blockState, ""); |
|
|
|
|
|
if (blockName.contains("jigsaw")) { |
|
ContainerOpenPacket openPacket = new ContainerOpenPacket(); |
|
openPacket.setBlockPosition(packet.getBlockPosition()); |
|
openPacket.setId((byte) 1); |
|
openPacket.setType(ContainerType.JIGSAW_EDITOR); |
|
openPacket.setUniqueEntityId(-1); |
|
session.sendUpstreamPacket(openPacket); |
|
} |
|
} |
|
} |
|
|
|
ItemMapping handItem = mappings.getMapping(packet.getItemInHand()); |
|
if (handItem.isBlock()) { |
|
session.setLastBlockPlacePosition(blockPos); |
|
session.setLastBlockPlacedId(handItem.getJavaIdentifier()); |
|
} |
|
session.setInteracting(true); |
|
break; |
|
case 1: |
|
if (packet.getActions().size() == 1 && packet.getLegacySlots().size() > 0) { |
|
InventoryActionData actionData = packet.getActions().get(0); |
|
LegacySetItemSlotData slotData = packet.getLegacySlots().get(0); |
|
if (slotData.getContainerId() == 6 && actionData.getToItem().getId() != 0) { |
|
|
|
|
|
session.getInventoryTranslator().updateInventory(session, session.getPlayerInventory()); |
|
} |
|
} |
|
|
|
|
|
if (session.getPlayerInventory().getItemInHand().getJavaId() == mappings.getStoredItems().shield().getJavaId()) { |
|
break; |
|
} |
|
|
|
|
|
if (packet.getItemInHand() != null) { |
|
if (session.getItemMappings().getBucketIds().contains(packet.getItemInHand().getId()) && |
|
packet.getItemInHand().getId() != session.getItemMappings().getStoredItems().milkBucket().getBedrockId()) { |
|
|
|
break; |
|
} else if (session.getItemMappings().getSpawnEggIds().contains(packet.getItemInHand().getId())) { |
|
|
|
break; |
|
} |
|
} |
|
|
|
ClientPlayerUseItemPacket useItemPacket = new ClientPlayerUseItemPacket(Hand.MAIN_HAND); |
|
session.sendDownstreamPacket(useItemPacket); |
|
break; |
|
case 2: |
|
int blockState = session.getGameMode() == GameMode.CREATIVE ? |
|
session.getConnector().getWorldManager().getBlockAt(session, packet.getBlockPosition()) : session.getBreakingBlock(); |
|
|
|
session.setLastBlockPlacedId(null); |
|
session.setLastBlockPlacePosition(null); |
|
|
|
|
|
|
|
playerPosition = session.getPlayerEntity().getPosition(); |
|
Vector3f floatBlockPosition = packet.getBlockPosition().toFloat(); |
|
diffX = playerPosition.getX() - (floatBlockPosition.getX() + 0.5f); |
|
diffY = (playerPosition.getY() - EntityType.PLAYER.getOffset()) - (floatBlockPosition.getY() + 0.5f) + 1.5f; |
|
diffZ = playerPosition.getZ() - (floatBlockPosition.getZ() + 0.5f); |
|
float distanceSquared = diffX * diffX + diffY * diffY + diffZ * diffZ; |
|
if (distanceSquared > MAXIMUM_BLOCK_DESTROYING_DISTANCE) { |
|
restoreCorrectBlock(session, packet.getBlockPosition(), packet); |
|
return; |
|
} |
|
|
|
LevelEventPacket blockBreakPacket = new LevelEventPacket(); |
|
blockBreakPacket.setType(LevelEventType.PARTICLE_DESTROY_BLOCK); |
|
blockBreakPacket.setPosition(packet.getBlockPosition().toFloat()); |
|
blockBreakPacket.setData(session.getBlockMappings().getBedrockBlockId(blockState)); |
|
session.sendUpstreamPacket(blockBreakPacket); |
|
session.setBreakingBlock(BlockStateValues.JAVA_AIR_ID); |
|
|
|
Entity itemFrameEntity = ItemFrameEntity.getItemFrameEntity(session, packet.getBlockPosition()); |
|
if (itemFrameEntity != null) { |
|
ClientPlayerInteractEntityPacket attackPacket = new ClientPlayerInteractEntityPacket((int) itemFrameEntity.getEntityId(), |
|
InteractAction.ATTACK, session.isSneaking()); |
|
session.sendDownstreamPacket(attackPacket); |
|
break; |
|
} |
|
|
|
PlayerAction action = session.getGameMode() == GameMode.CREATIVE ? PlayerAction.START_DIGGING : PlayerAction.FINISH_DIGGING; |
|
Position pos = new Position(packet.getBlockPosition().getX(), packet.getBlockPosition().getY(), packet.getBlockPosition().getZ()); |
|
ClientPlayerActionPacket breakPacket = new ClientPlayerActionPacket(action, pos, BlockFace.values()[packet.getBlockFace()]); |
|
session.sendDownstreamPacket(breakPacket); |
|
break; |
|
} |
|
break; |
|
case ITEM_RELEASE: |
|
if (packet.getActionType() == 0) { |
|
|
|
ClientPlayerActionPacket releaseItemPacket = new ClientPlayerActionPacket(PlayerAction.RELEASE_USE_ITEM, BlockUtils.POSITION_ZERO, |
|
BlockFace.DOWN); |
|
session.sendDownstreamPacket(releaseItemPacket); |
|
} |
|
break; |
|
case ITEM_USE_ON_ENTITY: |
|
Entity entity = session.getEntityCache().getEntityByGeyserId(packet.getRuntimeEntityId()); |
|
if (entity == null) |
|
return; |
|
|
|
|
|
switch (packet.getActionType()) { |
|
case 0: |
|
if (entity instanceof CommandBlockMinecartEntity) { |
|
|
|
|
|
if (session.getOpPermissionLevel() < 2 || session.getGameMode() != GameMode.CREATIVE) return; |
|
ContainerOpenPacket openPacket = new ContainerOpenPacket(); |
|
openPacket.setBlockPosition(Vector3i.ZERO); |
|
openPacket.setId((byte) 1); |
|
openPacket.setType(ContainerType.COMMAND_BLOCK); |
|
openPacket.setUniqueEntityId(entity.getGeyserId()); |
|
session.sendUpstreamPacket(openPacket); |
|
break; |
|
} |
|
Vector3f vector = packet.getClickPosition().sub(entity.getPosition()); |
|
ClientPlayerInteractEntityPacket interactPacket = new ClientPlayerInteractEntityPacket((int) entity.getEntityId(), |
|
InteractAction.INTERACT, Hand.MAIN_HAND, session.isSneaking()); |
|
ClientPlayerInteractEntityPacket interactAtPacket = new ClientPlayerInteractEntityPacket((int) entity.getEntityId(), |
|
InteractAction.INTERACT_AT, vector.getX(), vector.getY(), vector.getZ(), Hand.MAIN_HAND, session.isSneaking()); |
|
session.sendDownstreamPacket(interactPacket); |
|
session.sendDownstreamPacket(interactAtPacket); |
|
|
|
EntitySoundInteractionHandler.handleEntityInteraction(session, packet.getClickPosition(), entity); |
|
break; |
|
case 1: |
|
if (entity.getEntityType() == EntityType.ENDER_DRAGON) { |
|
|
|
|
|
ClientPlayerInteractEntityPacket attackPacket = new ClientPlayerInteractEntityPacket((int) entity.getEntityId() + 3, |
|
InteractAction.ATTACK, session.isSneaking()); |
|
session.sendDownstreamPacket(attackPacket); |
|
} else { |
|
ClientPlayerInteractEntityPacket attackPacket = new ClientPlayerInteractEntityPacket((int) entity.getEntityId(), |
|
InteractAction.ATTACK, session.isSneaking()); |
|
session.sendDownstreamPacket(attackPacket); |
|
} |
|
break; |
|
} |
|
break; |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void restoreCorrectBlock(GeyserSession session, Vector3i blockPos, InventoryTransactionPacket packet) { |
|
int javaBlockState = session.getConnector().getWorldManager().getBlockAt(session, blockPos); |
|
UpdateBlockPacket updateBlockPacket = new UpdateBlockPacket(); |
|
updateBlockPacket.setDataLayer(0); |
|
updateBlockPacket.setBlockPosition(blockPos); |
|
updateBlockPacket.setRuntimeId(session.getBlockMappings().getBedrockBlockId(javaBlockState)); |
|
updateBlockPacket.getFlags().addAll(UpdateBlockPacket.FLAG_ALL_PRIORITY); |
|
session.sendUpstreamPacket(updateBlockPacket); |
|
|
|
UpdateBlockPacket updateWaterPacket = new UpdateBlockPacket(); |
|
updateWaterPacket.setDataLayer(1); |
|
updateWaterPacket.setBlockPosition(blockPos); |
|
updateWaterPacket.setRuntimeId(BlockRegistries.WATERLOGGED.get().contains(javaBlockState) ? session.getBlockMappings().getBedrockWaterId() : session.getBlockMappings().getBedrockAirId()); |
|
updateWaterPacket.getFlags().addAll(UpdateBlockPacket.FLAG_ALL_PRIORITY); |
|
session.sendUpstreamPacket(updateWaterPacket); |
|
|
|
|
|
InventorySlotPacket slotPacket = new InventorySlotPacket(); |
|
slotPacket.setContainerId(ContainerId.INVENTORY); |
|
slotPacket.setSlot(packet.getHotbarSlot()); |
|
slotPacket.setItem(packet.getItemInHand()); |
|
session.sendUpstreamPacket(slotPacket); |
|
} |
|
} |
|
|