2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/PlayerInteractManager.java
+++ b/net/minecraft/server/PlayerInteractManager.java
2019-07-20 01:00:00 +02:00
@@ -2,6 +2,15 @@
2014-11-25 22:32:16 +01:00
2019-07-20 01:00:00 +02:00
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
2014-11-25 22:32:16 +01:00
+// CraftBukkit start
2017-07-28 09:23:39 +02:00
+import java.util.ArrayList;
2018-10-31 09:55:04 +01:00
+import org.bukkit.craftbukkit.block.CraftBlock;
2014-11-25 22:32:16 +01:00
+import org.bukkit.event.block.BlockBreakEvent;
+import org.bukkit.craftbukkit.event.CraftEventFactory;
+import org.bukkit.event.Event;
+import org.bukkit.event.block.Action;
+import org.bukkit.event.player.PlayerInteractEvent;
+// CraftBukkit end
2019-07-20 01:00:00 +02:00
2014-11-25 22:32:16 +01:00
public class PlayerInteractManager {
2019-07-20 01:00:00 +02:00
@@ -30,7 +39,7 @@
2016-06-09 03:43:49 +02:00
this.gamemode = enumgamemode;
enumgamemode.a(this.player.abilities);
2015-06-07 22:04:28 +02:00
this.player.updateAbilities();
2019-05-27 22:30:00 +02:00
- this.player.server.getPlayerList().sendAll(new PacketPlayOutPlayerInfo(PacketPlayOutPlayerInfo.EnumPlayerInfoAction.UPDATE_GAME_MODE, new EntityPlayer[]{this.player}));
+ this.player.server.getPlayerList().sendAll(new PacketPlayOutPlayerInfo(PacketPlayOutPlayerInfo.EnumPlayerInfoAction.UPDATE_GAME_MODE, new EntityPlayer[]{this.player}), this.player); // CraftBukkit
2016-02-29 22:32:46 +01:00
this.world.everyoneSleeping();
2015-06-07 22:04:28 +02:00
}
2019-07-20 01:00:00 +02:00
@@ -55,7 +64,7 @@
2014-11-25 22:32:16 +01:00
}
public void a() {
- ++this.currentTick;
+ this.currentTick = MinecraftServer.currentTick; // CraftBukkit;
2019-07-20 01:00:00 +02:00
IBlockData iblockdata;
2014-11-25 22:32:16 +01:00
2019-07-20 01:00:00 +02:00
if (this.i) {
2019-07-23 06:24:50 +02:00
@@ -111,9 +120,31 @@
2014-11-25 22:32:16 +01:00
2019-07-20 01:00:00 +02:00
if (packetplayinblockdig_enumplayerdigtype == PacketPlayInBlockDig.EnumPlayerDigType.START_DESTROY_BLOCK) {
if (!this.world.a((EntityHuman) this.player, blockposition)) {
+ // CraftBukkit start - fire PlayerInteractEvent
+ CraftEventFactory.callPlayerInteractEvent(this.player, Action.LEFT_CLICK_BLOCK, blockposition, enumdirection, this.player.inventory.getItemInHand(), EnumHand.MAIN_HAND);
this.player.playerConnection.sendPacket(new PacketPlayOutBlockBreak(blockposition, this.world.getType(blockposition), packetplayinblockdig_enumplayerdigtype, false));
+ // Update any tile entity data for this block
+ TileEntity tileentity = world.getTileEntity(blockposition);
+ if (tileentity != null) {
+ this.player.playerConnection.sendPacket(tileentity.getUpdatePacket());
+ }
+ // CraftBukkit end
2019-07-23 06:24:50 +02:00
+ return;
+ }
+
2019-07-20 01:00:00 +02:00
+ // CraftBukkit start
+ PlayerInteractEvent event = CraftEventFactory.callPlayerInteractEvent(this.player, Action.LEFT_CLICK_BLOCK, blockposition, enumdirection, this.player.inventory.getItemInHand(), EnumHand.MAIN_HAND);
+ if (event.isCancelled()) {
+ // Let the client know the block still exists
2019-07-23 06:24:50 +02:00
+ this.player.playerConnection.sendPacket(new PacketPlayOutBlockChange(this.world, blockposition));
2019-07-20 01:00:00 +02:00
+ // Update any tile entity data for this block
+ TileEntity tileentity = this.world.getTileEntity(blockposition);
+ if (tileentity != null) {
+ this.player.playerConnection.sendPacket(tileentity.getUpdatePacket());
+ }
2019-07-23 06:24:50 +02:00
return;
}
2019-07-20 01:00:00 +02:00
+ // CraftBukkit end
2019-07-23 06:24:50 +02:00
2019-07-20 01:00:00 +02:00
if (this.isCreative()) {
if (!this.world.douseFire((EntityHuman) null, blockposition, enumdirection)) {
2019-07-23 06:24:50 +02:00
@@ -130,15 +161,49 @@
2019-07-20 01:00:00 +02:00
return;
}
2014-11-25 22:32:16 +01:00
2019-07-20 01:00:00 +02:00
- this.world.douseFire((EntityHuman) null, blockposition, enumdirection);
+ // this.world.douseFire((EntityHuman) null, blockposition, enumdirection); // CraftBukkit - Moved down
this.lastDigTick = this.currentTick;
float f = 1.0F;
2014-11-25 22:32:16 +01:00
2019-07-20 01:00:00 +02:00
iblockdata = this.world.getType(blockposition);
- if (!iblockdata.isAir()) {
+ // CraftBukkit start - Swings at air do *NOT* exist.
+ if (event.useInteractedBlock() == Event.Result.DENY) {
+ // If we denied a door from opening, we need to send a correcting update to the client, as it already opened the door.
+ IBlockData data = this.world.getType(blockposition);
+ if (data.getBlock() instanceof BlockDoor) {
+ // For some reason *BOTH* the bottom/top part have to be marked updated.
+ boolean bottom = data.get(BlockDoor.HALF) == BlockPropertyDoubleBlockHalf.LOWER;
2019-07-23 06:24:50 +02:00
+ this.player.playerConnection.sendPacket(new PacketPlayOutBlockChange(this.world, blockposition));
2019-07-20 01:00:00 +02:00
+ this.player.playerConnection.sendPacket(new PacketPlayOutBlockChange(this.world, bottom ? blockposition.up() : blockposition.down()));
+ } else if (data.getBlock() instanceof BlockTrapdoor) {
2019-07-23 06:24:50 +02:00
+ this.player.playerConnection.sendPacket(new PacketPlayOutBlockChange(this.world, blockposition));
2019-07-20 01:00:00 +02:00
+ }
+ } else if (!iblockdata.isAir()) {
iblockdata.attack(this.world, blockposition, this.player);
f = iblockdata.getDamage(this.player, this.player.world, blockposition);
+ // Allow fire punching to be blocked
+ this.world.douseFire((EntityHuman) null, blockposition, enumdirection);
2019-07-23 06:24:50 +02:00
+ }
+
2019-07-20 01:00:00 +02:00
+ if (event.useItemInHand() == Event.Result.DENY) {
+ // If we 'insta destroyed' then the client needs to be informed.
+ if (f > 1.0f) {
2019-07-23 06:24:50 +02:00
+ this.player.playerConnection.sendPacket(new PacketPlayOutBlockChange(this.world, blockposition));
2019-07-20 01:00:00 +02:00
+ }
+ return;
+ }
+ org.bukkit.event.block.BlockDamageEvent blockEvent = CraftEventFactory.callBlockDamageEvent(this.player, blockposition.getX(), blockposition.getY(), blockposition.getZ(), this.player.inventory.getItemInHand(), f >= 1.0f);
+
+ if (blockEvent.isCancelled()) {
+ // Let the client know the block still exists
2019-07-23 06:24:50 +02:00
+ this.player.playerConnection.sendPacket(new PacketPlayOutBlockChange(this.world, blockposition));
2019-07-20 01:00:00 +02:00
+ return;
+ }
+
+ if (blockEvent.getInstaBreak()) {
+ f = 2.0f;
2019-07-23 06:24:50 +02:00
}
2019-07-20 01:00:00 +02:00
+ // CraftBukkit end
2019-07-23 06:24:50 +02:00
2019-07-20 01:00:00 +02:00
if (!iblockdata.isAir() && f >= 1.0F) {
this.a(blockposition, packetplayinblockdig_enumplayerdigtype);
2019-07-23 06:24:50 +02:00
@@ -189,17 +254,73 @@
if (this.breakBlock(blockposition)) {
this.player.playerConnection.sendPacket(new PacketPlayOutBlockBreak(blockposition, this.world.getType(blockposition), packetplayinblockdig_enumplayerdigtype, true));
} else {
- this.player.playerConnection.sendPacket(new PacketPlayOutBlockBreak(blockposition, this.world.getType(blockposition), packetplayinblockdig_enumplayerdigtype, false));
+ this.player.playerConnection.sendPacket(new PacketPlayOutBlockChange(this.world, blockposition)); // CraftBukkit - SPIGOT-5196
}
}
2014-11-25 22:32:16 +01:00
public boolean breakBlock(BlockPosition blockposition) {
2018-07-15 02:00:00 +02:00
IBlockData iblockdata = this.world.getType(blockposition);
2014-11-25 22:32:16 +01:00
+ // CraftBukkit start - fire BlockBreakEvent
2018-10-31 09:55:04 +01:00
+ org.bukkit.block.Block bblock = CraftBlock.at(world, blockposition);
2014-11-25 22:32:16 +01:00
+ BlockBreakEvent event = null;
+
+ if (this.player instanceof EntityPlayer) {
+ // Sword + Creative mode pre-cancel
2018-07-15 02:00:00 +02:00
+ boolean isSwordNoBreak = !this.player.getItemInMainHand().getItem().a(iblockdata, this.world, blockposition, (EntityHuman) this.player);
2014-11-25 22:32:16 +01:00
+
+ // Tell client the block is gone immediately then process events
+ // Don't tell the client if its a creative sword break because its not broken!
+ if (world.getTileEntity(blockposition) == null && !isSwordNoBreak) {
+ PacketPlayOutBlockChange packet = new PacketPlayOutBlockChange(this.world, blockposition);
+ packet.block = Blocks.AIR.getBlockData();
2019-07-20 01:00:00 +02:00
+ this.player.playerConnection.sendPacket(packet);
2014-11-25 22:32:16 +01:00
+ }
+
2018-10-31 09:55:04 +01:00
+ event = new BlockBreakEvent(bblock, this.player.getBukkitEntity());
2014-11-25 22:32:16 +01:00
+
+ // Sword + Creative mode pre-cancel
+ event.setCancelled(isSwordNoBreak);
+
+ // Calculate default block experience
+ IBlockData nmsData = this.world.getType(blockposition);
+ Block nmsBlock = nmsData.getBlock();
+
2016-02-29 22:32:46 +01:00
+ ItemStack itemstack = this.player.getEquipment(EnumItemSlot.MAINHAND);
+
+ if (nmsBlock != null && !event.isCancelled() && !this.isCreative() && this.player.hasBlock(nmsBlock.getBlockData())) {
2019-04-23 04:00:00 +02:00
+ event.setExpToDrop(nmsBlock.getExpDrop(nmsData, this.world, blockposition, itemstack));
2014-11-25 22:32:16 +01:00
+ }
2018-08-03 03:34:26 +02:00
+
+ this.world.getServer().getPluginManager().callEvent(event);
2019-04-23 04:00:00 +02:00
- if (!this.player.getItemInMainHand().getItem().a(iblockdata, (World) this.world, blockposition, (EntityHuman) this.player)) {
2014-11-25 22:32:16 +01:00
+ if (event.isCancelled()) {
+ if (isSwordNoBreak) {
+ return false;
+ }
+ // Let the client know the block still exists
2019-07-20 01:00:00 +02:00
+ this.player.playerConnection.sendPacket(new PacketPlayOutBlockChange(this.world, blockposition));
2019-04-23 04:00:00 +02:00
+
2018-08-03 03:34:26 +02:00
+ // Brute force all possible updates
+ for (EnumDirection dir : EnumDirection.values()) {
2019-07-20 01:00:00 +02:00
+ this.player.playerConnection.sendPacket(new PacketPlayOutBlockChange(world, blockposition.shift(dir)));
2016-10-10 07:58:14 +02:00
+ }
2019-01-30 01:20:39 +01:00
+
2014-11-25 22:32:16 +01:00
+ // Update any tile entity data for this block
+ TileEntity tileentity = this.world.getTileEntity(blockposition);
+ if (tileentity != null) {
+ this.player.playerConnection.sendPacket(tileentity.getUpdatePacket());
+ }
+ return false;
+ }
+ }
2018-07-15 02:00:00 +02:00
+ // CraftBukkit end
2019-01-07 03:57:35 +01:00
+
2019-04-23 04:00:00 +02:00
+ if (false && !this.player.getItemInMainHand().getItem().a(iblockdata, (World) this.world, blockposition, (EntityHuman) this.player)) { // CraftBukkit - false
2014-11-25 22:32:16 +01:00
return false;
} else {
2018-07-15 02:00:00 +02:00
+ iblockdata = this.world.getType(blockposition); // CraftBukkit - update state from plugins
+ if (iblockdata.isAir()) return false; // CraftBukkit - A plugin set block to air without cancelling
2014-11-25 22:32:16 +01:00
TileEntity tileentity = this.world.getTileEntity(blockposition);
2016-06-09 03:43:49 +02:00
Block block = iblockdata.getBlock();
2015-02-26 23:41:06 +01:00
2019-07-20 01:00:00 +02:00
@@ -209,6 +330,10 @@
} else if (this.player.a((World) this.world, blockposition, this.gamemode)) {
return false;
} else {
2017-07-28 09:23:39 +02:00
+ // CraftBukkit start
2018-10-31 09:55:04 +01:00
+ org.bukkit.block.BlockState state = bblock.getState();
2017-07-28 09:23:39 +02:00
+ world.captureDrops = new ArrayList<>();
+ // CraftBukkit end
2019-07-20 01:00:00 +02:00
block.a((World) this.world, blockposition, iblockdata, (EntityHuman) this.player);
boolean flag = this.world.a(blockposition, false);
2017-07-28 09:23:39 +02:00
2019-07-20 01:00:00 +02:00
@@ -217,20 +342,33 @@
}
if (this.isCreative()) {
- return true;
+ // return true; // CraftBukkit
} else {
ItemStack itemstack = this.player.getItemInMainHand();
2018-07-15 02:00:00 +02:00
boolean flag1 = this.player.hasBlock(iblockdata);
2014-11-25 22:32:16 +01:00
2019-07-20 01:00:00 +02:00
itemstack.a(this.world, iblockdata, blockposition, this.player);
2017-05-28 03:16:13 +02:00
- if (flag && flag1) {
2019-07-20 01:00:00 +02:00
+ if (flag && flag1 && event.isDropItems()) { // CraftBukkit - Check if block should drop items
ItemStack itemstack1 = itemstack.isEmpty() ? ItemStack.a : itemstack.cloneItemStack();
2018-07-15 02:00:00 +02:00
2019-07-20 01:00:00 +02:00
block.a(this.world, this.player, blockposition, iblockdata, tileentity, itemstack1);
2017-05-28 03:16:13 +02:00
}
2019-04-23 04:00:00 +02:00
2019-07-20 01:00:00 +02:00
- return true;
+ // return true; // CraftBukkit
+ }
+ // CraftBukkit start
2019-01-30 01:20:39 +01:00
+ if (event.isDropItems()) {
+ org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockDropItemEvent(bblock, state, this.player, world.captureDrops);
2019-04-23 04:00:00 +02:00
+ }
2018-10-31 09:55:04 +01:00
+ world.captureDrops = null;
2018-07-15 02:00:00 +02:00
+
2019-07-20 01:00:00 +02:00
+ // Drop event experience
2016-02-29 22:32:46 +01:00
+ if (flag && event != null) {
+ iblockdata.getBlock().dropExperience(this.world, blockposition, event.getExpToDrop());
2019-07-20 01:00:00 +02:00
}
2019-04-23 04:00:00 +02:00
+
2019-07-20 01:00:00 +02:00
+ return true;
+ // CraftBukkit end
2016-02-29 22:32:46 +01:00
}
2019-04-23 04:00:00 +02:00
}
2019-07-20 01:00:00 +02:00
}
@@ -272,12 +410,41 @@
2014-12-09 10:38:52 +01:00
}
2014-11-25 22:32:16 +01:00
}
2016-11-17 02:41:03 +01:00
+ // CraftBukkit start - whole method
2014-12-09 13:20:44 +01:00
+ public boolean interactResult = false;
+ public boolean firedInteract = false;
2019-04-23 04:00:00 +02:00
public EnumInteractionResult a(EntityHuman entityhuman, World world, ItemStack itemstack, EnumHand enumhand, MovingObjectPositionBlock movingobjectpositionblock) {
BlockPosition blockposition = movingobjectpositionblock.getBlockPosition();
2018-07-15 02:00:00 +02:00
IBlockData iblockdata = world.getType(blockposition);
2018-07-22 04:00:00 +02:00
+ EnumInteractionResult enuminteractionresult = EnumInteractionResult.PASS;
2018-07-15 02:00:00 +02:00
+ if (iblockdata.isAir()) return enuminteractionresult;
+ boolean cancelledBlock = false;
2016-11-17 11:01:15 +01:00
2018-07-15 02:00:00 +02:00
if (this.gamemode == EnumGamemode.SPECTATOR) {
2019-04-23 04:00:00 +02:00
ITileInventory itileinventory = iblockdata.b(world, blockposition);
+ cancelledBlock = !(itileinventory instanceof ITileInventory);
2018-07-15 02:00:00 +02:00
+ }
2015-02-26 23:41:06 +01:00
+
2019-07-20 01:00:00 +02:00
+ if (entityhuman.getCooldownTracker().hasCooldown(itemstack.getItem())) {
2018-07-15 02:00:00 +02:00
+ cancelledBlock = true;
+ }
2017-07-28 09:23:39 +02:00
+
2019-04-23 04:00:00 +02:00
+ PlayerInteractEvent event = CraftEventFactory.callPlayerInteractEvent(entityhuman, Action.RIGHT_CLICK_BLOCK, blockposition, movingobjectpositionblock.getDirection(), itemstack, cancelledBlock, enumhand);
2018-07-15 02:00:00 +02:00
+ firedInteract = true;
+ interactResult = event.useItemInHand() == Event.Result.DENY;
2016-11-17 11:01:15 +01:00
+
2018-07-15 02:00:00 +02:00
+ if (event.useInteractedBlock() == Event.Result.DENY) {
+ // If we denied a door from opening, we need to send a correcting update to the client, as it already opened the door.
+ if (iblockdata.getBlock() instanceof BlockDoor) {
+ boolean bottom = iblockdata.get(BlockDoor.HALF) == BlockPropertyDoubleBlockHalf.LOWER;
+ ((EntityPlayer) entityhuman).playerConnection.sendPacket(new PacketPlayOutBlockChange(world, bottom ? blockposition.up() : blockposition.down()));
+ } else if (iblockdata.getBlock() instanceof BlockCake) {
+ ((EntityPlayer) entityhuman).getBukkitEntity().sendHealthUpdate(); // SPIGOT-1341 - reset health for cake
+ }
+ ((EntityPlayer) entityhuman).getBukkitEntity().updateInventory(); // SPIGOT-2867
+ enuminteractionresult = (event.useItemInHand() != Event.Result.ALLOW) ? EnumInteractionResult.SUCCESS : EnumInteractionResult.PASS;
+ } else if (this.gamemode == EnumGamemode.SPECTATOR) {
2019-04-23 04:00:00 +02:00
+ ITileInventory itileinventory = iblockdata.b(world, blockposition);
2016-11-17 02:41:03 +01:00
2019-04-23 04:00:00 +02:00
if (itileinventory != null) {
entityhuman.openContainer(itileinventory);
2019-07-20 01:00:00 +02:00
@@ -289,24 +456,26 @@
2018-07-22 04:00:00 +02:00
boolean flag = !entityhuman.getItemInMainHand().isEmpty() || !entityhuman.getItemInOffHand().isEmpty();
boolean flag1 = entityhuman.isSneaking() && flag;
2018-07-15 02:00:00 +02:00
2019-04-23 04:00:00 +02:00
- if (!flag1 && iblockdata.interact(world, entityhuman, enumhand, movingobjectpositionblock)) {
2018-07-15 02:00:00 +02:00
- return EnumInteractionResult.SUCCESS;
2019-07-20 01:00:00 +02:00
- } else if (!itemstack.isEmpty() && !entityhuman.getCooldownTracker().hasCooldown(itemstack.getItem())) {
2018-07-22 04:00:00 +02:00
+ if (!flag1) {
2019-04-23 04:00:00 +02:00
+ enuminteractionresult = iblockdata.interact(world, entityhuman, enumhand, movingobjectpositionblock) ? EnumInteractionResult.SUCCESS : EnumInteractionResult.FAIL;
2016-11-17 11:01:15 +01:00
+ }
+
2018-07-22 04:00:00 +02:00
+ if (!itemstack.isEmpty() && enuminteractionresult != EnumInteractionResult.SUCCESS && !interactResult) { // add !interactResult SPIGOT-764
2019-04-23 04:00:00 +02:00
ItemActionContext itemactioncontext = new ItemActionContext(entityhuman, enumhand, movingobjectpositionblock);
2018-07-15 02:00:00 +02:00
if (this.isCreative()) {
int i = itemstack.getCount();
- EnumInteractionResult enuminteractionresult = itemstack.placeItem(itemactioncontext);
+ enuminteractionresult = itemstack.placeItem(itemactioncontext, enumhand);
2017-07-28 09:23:39 +02:00
2018-07-15 02:00:00 +02:00
itemstack.setCount(i);
return enuminteractionresult;
} else {
- return itemstack.placeItem(itemactioncontext);
+ return itemstack.placeItem(itemactioncontext, enumhand);
2016-11-17 02:41:03 +01:00
}
2018-07-22 04:00:00 +02:00
- } else {
- return EnumInteractionResult.PASS;
2016-11-17 02:41:03 +01:00
}
}
+ return enuminteractionresult;
2014-11-25 22:32:16 +01:00
+ // CraftBukkit end
}
public void a(WorldServer worldserver) {