mirror of
https://github.com/PaperMC/Paper.git
synced 2025-04-03 10:35:48 +02:00
SPIGOT-6910: Add BlockDamageAbortEvent
By: FreeSoccerHDX <unconfigured@null.spigotmc.org>
This commit is contained in:
parent
df76a31fc1
commit
e664c2bf5f
@ -60,7 +60,7 @@
|
|||||||
IBlockData iblockdata;
|
IBlockData iblockdata;
|
||||||
|
|
||||||
if (this.hasDelayedDestroy) {
|
if (this.hasDelayedDestroy) {
|
||||||
@@ -142,9 +170,31 @@
|
@@ -142,10 +170,32 @@
|
||||||
|
|
||||||
if (packetplayinblockdig_enumplayerdigtype == PacketPlayInBlockDig.EnumPlayerDigType.START_DESTROY_BLOCK) {
|
if (packetplayinblockdig_enumplayerdigtype == PacketPlayInBlockDig.EnumPlayerDigType.START_DESTROY_BLOCK) {
|
||||||
if (!this.level.mayInteract(this.player, blockposition)) {
|
if (!this.level.mayInteract(this.player, blockposition)) {
|
||||||
@ -73,9 +73,9 @@
|
|||||||
+ this.player.connection.send(tileentity.getUpdatePacket());
|
+ this.player.connection.send(tileentity.getUpdatePacket());
|
||||||
+ }
|
+ }
|
||||||
+ // CraftBukkit end
|
+ // CraftBukkit end
|
||||||
+ return;
|
return;
|
||||||
+ }
|
}
|
||||||
+
|
|
||||||
+ // CraftBukkit start
|
+ // CraftBukkit start
|
||||||
+ PlayerInteractEvent event = CraftEventFactory.callPlayerInteractEvent(this.player, Action.LEFT_CLICK_BLOCK, blockposition, enumdirection, this.player.getInventory().getSelected(), EnumHand.MAIN_HAND);
|
+ PlayerInteractEvent event = CraftEventFactory.callPlayerInteractEvent(this.player, Action.LEFT_CLICK_BLOCK, blockposition, enumdirection, this.player.getInventory().getSelected(), EnumHand.MAIN_HAND);
|
||||||
+ if (event.isCancelled()) {
|
+ if (event.isCancelled()) {
|
||||||
@ -86,12 +86,13 @@
|
|||||||
+ if (tileentity != null) {
|
+ if (tileentity != null) {
|
||||||
+ this.player.connection.send(tileentity.getUpdatePacket());
|
+ this.player.connection.send(tileentity.getUpdatePacket());
|
||||||
+ }
|
+ }
|
||||||
return;
|
+ return;
|
||||||
}
|
+ }
|
||||||
+ // CraftBukkit end
|
+ // CraftBukkit end
|
||||||
|
+
|
||||||
if (this.isCreative()) {
|
if (this.isCreative()) {
|
||||||
this.destroyAndAck(blockposition, packetplayinblockdig_enumplayerdigtype, "creative destroy");
|
this.destroyAndAck(blockposition, packetplayinblockdig_enumplayerdigtype, "creative destroy");
|
||||||
|
return;
|
||||||
@@ -160,11 +210,43 @@
|
@@ -160,11 +210,43 @@
|
||||||
float f = 1.0F;
|
float f = 1.0F;
|
||||||
|
|
||||||
@ -137,7 +138,7 @@
|
|||||||
if (!iblockdata.isAir() && f >= 1.0F) {
|
if (!iblockdata.isAir() && f >= 1.0F) {
|
||||||
this.destroyAndAck(blockposition, packetplayinblockdig_enumplayerdigtype, "insta mine");
|
this.destroyAndAck(blockposition, packetplayinblockdig_enumplayerdigtype, "insta mine");
|
||||||
} else {
|
} else {
|
||||||
@@ -208,7 +290,7 @@
|
@@ -208,13 +290,15 @@
|
||||||
} else if (packetplayinblockdig_enumplayerdigtype == PacketPlayInBlockDig.EnumPlayerDigType.ABORT_DESTROY_BLOCK) {
|
} else if (packetplayinblockdig_enumplayerdigtype == PacketPlayInBlockDig.EnumPlayerDigType.ABORT_DESTROY_BLOCK) {
|
||||||
this.isDestroyingBlock = false;
|
this.isDestroyingBlock = false;
|
||||||
if (!Objects.equals(this.destroyPos, blockposition)) {
|
if (!Objects.equals(this.destroyPos, blockposition)) {
|
||||||
@ -146,7 +147,15 @@
|
|||||||
this.level.destroyBlockProgress(this.player.getId(), this.destroyPos, -1);
|
this.level.destroyBlockProgress(this.player.getId(), this.destroyPos, -1);
|
||||||
this.player.connection.send(new PacketPlayOutBlockBreak(this.destroyPos, this.level.getBlockState(this.destroyPos), packetplayinblockdig_enumplayerdigtype, true, "aborted mismatched destroying"));
|
this.player.connection.send(new PacketPlayOutBlockBreak(this.destroyPos, this.level.getBlockState(this.destroyPos), packetplayinblockdig_enumplayerdigtype, true, "aborted mismatched destroying"));
|
||||||
}
|
}
|
||||||
@@ -224,17 +306,72 @@
|
|
||||||
|
this.level.destroyBlockProgress(this.player.getId(), blockposition, -1);
|
||||||
|
this.player.connection.send(new PacketPlayOutBlockBreak(blockposition, this.level.getBlockState(blockposition), packetplayinblockdig_enumplayerdigtype, true, "aborted destroying"));
|
||||||
|
+
|
||||||
|
+ CraftEventFactory.callBlockDamageAbortEvent(this.player, blockposition, this.player.getInventory().getSelected()); // CraftBukkit
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
@@ -224,17 +308,72 @@
|
||||||
if (this.destroyBlock(blockposition)) {
|
if (this.destroyBlock(blockposition)) {
|
||||||
this.player.connection.send(new PacketPlayOutBlockBreak(blockposition, this.level.getBlockState(blockposition), packetplayinblockdig_enumplayerdigtype, true, s));
|
this.player.connection.send(new PacketPlayOutBlockBreak(blockposition, this.level.getBlockState(blockposition), packetplayinblockdig_enumplayerdigtype, true, s));
|
||||||
} else {
|
} else {
|
||||||
@ -177,7 +186,8 @@
|
|||||||
+
|
+
|
||||||
+ // Sword + Creative mode pre-cancel
|
+ // Sword + Creative mode pre-cancel
|
||||||
+ event.setCancelled(isSwordNoBreak);
|
+ event.setCancelled(isSwordNoBreak);
|
||||||
+
|
|
||||||
|
- if (!this.player.getMainHandItem().getItem().canAttackBlock(iblockdata, this.level, blockposition, this.player)) {
|
||||||
+ // Calculate default block experience
|
+ // Calculate default block experience
|
||||||
+ IBlockData nmsData = this.level.getBlockState(blockposition);
|
+ IBlockData nmsData = this.level.getBlockState(blockposition);
|
||||||
+ Block nmsBlock = nmsData.getBlock();
|
+ Block nmsBlock = nmsData.getBlock();
|
||||||
@ -201,8 +211,7 @@
|
|||||||
+ for (EnumDirection dir : EnumDirection.values()) {
|
+ for (EnumDirection dir : EnumDirection.values()) {
|
||||||
+ this.player.connection.send(new PacketPlayOutBlockChange(level, blockposition.relative(dir)));
|
+ this.player.connection.send(new PacketPlayOutBlockChange(level, blockposition.relative(dir)));
|
||||||
+ }
|
+ }
|
||||||
|
+
|
||||||
- if (!this.player.getMainHandItem().getItem().canAttackBlock(iblockdata, this.level, blockposition, this.player)) {
|
|
||||||
+ // Update any tile entity data for this block
|
+ // Update any tile entity data for this block
|
||||||
+ TileEntity tileentity = this.level.getBlockEntity(blockposition);
|
+ TileEntity tileentity = this.level.getBlockEntity(blockposition);
|
||||||
+ if (tileentity != null) {
|
+ if (tileentity != null) {
|
||||||
@ -221,7 +230,7 @@
|
|||||||
TileEntity tileentity = this.level.getBlockEntity(blockposition);
|
TileEntity tileentity = this.level.getBlockEntity(blockposition);
|
||||||
Block block = iblockdata.getBlock();
|
Block block = iblockdata.getBlock();
|
||||||
|
|
||||||
@@ -244,6 +381,10 @@
|
@@ -244,6 +383,10 @@
|
||||||
} else if (this.player.blockActionRestricted(this.level, blockposition, this.gameModeForPlayer)) {
|
} else if (this.player.blockActionRestricted(this.level, blockposition, this.gameModeForPlayer)) {
|
||||||
return false;
|
return false;
|
||||||
} else {
|
} else {
|
||||||
@ -232,7 +241,7 @@
|
|||||||
block.playerWillDestroy(this.level, blockposition, iblockdata, this.player);
|
block.playerWillDestroy(this.level, blockposition, iblockdata, this.player);
|
||||||
boolean flag = this.level.removeBlock(blockposition, false);
|
boolean flag = this.level.removeBlock(blockposition, false);
|
||||||
|
|
||||||
@@ -252,19 +393,32 @@
|
@@ -252,19 +395,32 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.isCreative()) {
|
if (this.isCreative()) {
|
||||||
@ -268,7 +277,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -306,12 +460,52 @@
|
@@ -306,12 +462,52 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -321,7 +330,7 @@
|
|||||||
|
|
||||||
if (itileinventory != null) {
|
if (itileinventory != null) {
|
||||||
entityplayer.openMenu(itileinventory);
|
entityplayer.openMenu(itileinventory);
|
||||||
@@ -325,7 +519,7 @@
|
@@ -325,7 +521,7 @@
|
||||||
ItemStack itemstack1 = itemstack.copy();
|
ItemStack itemstack1 = itemstack.copy();
|
||||||
|
|
||||||
if (!flag1) {
|
if (!flag1) {
|
||||||
@ -330,7 +339,7 @@
|
|||||||
|
|
||||||
if (enuminteractionresult.consumesAction()) {
|
if (enuminteractionresult.consumesAction()) {
|
||||||
CriterionTriggers.ITEM_USED_ON_BLOCK.trigger(entityplayer, blockposition, itemstack1);
|
CriterionTriggers.ITEM_USED_ON_BLOCK.trigger(entityplayer, blockposition, itemstack1);
|
||||||
@@ -333,17 +527,17 @@
|
@@ -333,17 +529,17 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -351,7 +360,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (enuminteractionresult1.consumesAction()) {
|
if (enuminteractionresult1.consumesAction()) {
|
||||||
@@ -351,10 +545,10 @@
|
@@ -351,10 +547,10 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
return enuminteractionresult1;
|
return enuminteractionresult1;
|
||||||
|
@ -128,6 +128,7 @@ import org.bukkit.event.Cancellable;
|
|||||||
import org.bukkit.event.Event;
|
import org.bukkit.event.Event;
|
||||||
import org.bukkit.event.Event.Result;
|
import org.bukkit.event.Event.Result;
|
||||||
import org.bukkit.event.block.Action;
|
import org.bukkit.event.block.Action;
|
||||||
|
import org.bukkit.event.block.BlockDamageAbortEvent;
|
||||||
import org.bukkit.event.block.BlockDamageEvent;
|
import org.bukkit.event.block.BlockDamageEvent;
|
||||||
import org.bukkit.event.block.BlockDropItemEvent;
|
import org.bukkit.event.block.BlockDropItemEvent;
|
||||||
import org.bukkit.event.block.BlockFadeEvent;
|
import org.bukkit.event.block.BlockFadeEvent;
|
||||||
@ -574,6 +575,18 @@ public class CraftEventFactory {
|
|||||||
return event;
|
return event;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static BlockDamageAbortEvent callBlockDamageAbortEvent(EntityPlayer who, BlockPosition pos, ItemStack itemstack) {
|
||||||
|
Player player = who.getBukkitEntity();
|
||||||
|
CraftItemStack itemInHand = CraftItemStack.asCraftMirror(itemstack);
|
||||||
|
|
||||||
|
Block blockClicked = CraftBlock.at(who.getLevel(), pos);
|
||||||
|
|
||||||
|
BlockDamageAbortEvent event = new BlockDamageAbortEvent(player, blockClicked, itemInHand);
|
||||||
|
player.getServer().getPluginManager().callEvent(event);
|
||||||
|
|
||||||
|
return event;
|
||||||
|
}
|
||||||
|
|
||||||
public static boolean doEntityAddEventCalling(World world, Entity entity, SpawnReason spawnReason) {
|
public static boolean doEntityAddEventCalling(World world, Entity entity, SpawnReason spawnReason) {
|
||||||
if (entity == null) return false;
|
if (entity == null) return false;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user