summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/ItemBlock.java
diff options
context:
space:
mode:
authorfeildmaster <admin@feildmaster.com>2013-01-16 05:39:13 -0600
committerfeildmaster <admin@feildmaster.com>2013-01-16 08:05:59 -0600
commit614ef2f8c5d8d1aa3deb0c08283b056cdeeb5d78 (patch)
tree46bc842d8839ee68726d8596e7c3b5c838900ac7 /src/main/java/net/minecraft/server/ItemBlock.java
parent647b82032b7924497dcc10bcb53fb3076b57e144 (diff)
downloadcraftbukkit-614ef2f8c5d8d1aa3deb0c08283b056cdeeb5d78.tar
craftbukkit-614ef2f8c5d8d1aa3deb0c08283b056cdeeb5d78.tar.gz
craftbukkit-614ef2f8c5d8d1aa3deb0c08283b056cdeeb5d78.tar.lz
craftbukkit-614ef2f8c5d8d1aa3deb0c08283b056cdeeb5d78.tar.xz
craftbukkit-614ef2f8c5d8d1aa3deb0c08283b056cdeeb5d78.zip
Throw BlockPlaceEvent when placing double slabs. Fixes BUKKIT-2469
Diffstat (limited to 'src/main/java/net/minecraft/server/ItemBlock.java')
-rw-r--r--src/main/java/net/minecraft/server/ItemBlock.java79
1 files changed, 42 insertions, 37 deletions
diff --git a/src/main/java/net/minecraft/server/ItemBlock.java b/src/main/java/net/minecraft/server/ItemBlock.java
index fd34f906..56f74026 100644
--- a/src/main/java/net/minecraft/server/ItemBlock.java
+++ b/src/main/java/net/minecraft/server/ItemBlock.java
@@ -1,7 +1,5 @@
package net.minecraft.server;
-import org.bukkit.craftbukkit.block.CraftBlockState; // CraftBukkit
-
public class ItemBlock extends Item {
private int id;
@@ -17,7 +15,6 @@ public class ItemBlock extends Item {
}
public boolean interactWith(ItemStack itemstack, EntityHuman entityhuman, World world, int i, int j, int k, int l, float f, float f1, float f2) {
- int clickedX = i, clickedY = j, clickedZ = k; // CraftBukkit
int i1 = world.getTypeId(i, j, k);
if (i1 == Block.SNOW.id) {
@@ -54,53 +51,61 @@ public class ItemBlock extends Item {
return false;
} else if (j == 255 && Block.byId[this.id].material.isBuildable()) {
return false;
- // CraftBukkit start
- }
-
- int id = this.id;
- if (l == -1 && itemstack.getItem() instanceof ItemStep) {
- if (this.id == Block.STEP.id) {
- id = Block.DOUBLE_STEP.id;
- } else if (this.id == Block.WOOD_STEP.id) {
- id = Block.WOOD_DOUBLE_STEP.id;
- }
- }
-
- if (id != this.id || world.mayPlace(this.id, i, j, k, false, l, entityhuman)) {
- Block block = Block.byId[id];
+ } else if (world.mayPlace(this.id, i, j, k, false, l, entityhuman)) {
+ Block block = Block.byId[this.id];
int j1 = this.filterData(itemstack.getData());
int k1 = Block.byId[this.id].getPlacedData(world, i, j, k, l, f, f1, f2, j1);
- CraftBlockState replacedBlockState = CraftBlockState.getBlockState(world, i, j, k);
-
- world.suppressPhysics = true;
- world.setTypeIdAndData(i, j, k, id, k1);
- org.bukkit.event.block.BlockPlaceEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callBlockPlaceEvent(world, entityhuman, replacedBlockState, clickedX, clickedY, clickedZ);
- id = world.getTypeId(i, j, k);
- int data = world.getData(i, j, k);
- replacedBlockState.update(true);
- world.suppressPhysics = false;
-
- if (event.isCancelled() || !event.canBuild()) {
- return true;
- }
- if (world.setTypeIdAndData(i, j, k, id, data)) {
- if (world.getTypeId(i, j, k) == id && Block.byId[id] != null) {
- Block.byId[id].postPlace(world, i, j, k, entityhuman);
- Block.byId[this.id].postPlace(world, i, j, k, data);
- // CraftBukkit end
+ // CraftBukkit start - redirect to common function handler
+ /*
+ if (world.setTypeIdAndData(i, j, k, this.id, k1)) {
+ if (world.getTypeId(i, j, k) == this.id) {
+ Block.byId[this.id].postPlace(world, i, j, k, entityhuman);
+ Block.byId[this.id].postPlace(world, i, j, k, k1);
}
world.makeSound((double) ((float) i + 0.5F), (double) ((float) j + 0.5F), (double) ((float) k + 0.5F), block.stepSound.getPlaceSound(), (block.stepSound.getVolume1() + 1.0F) / 2.0F, block.stepSound.getVolume2() * 0.8F);
--itemstack.count;
}
-
- return true;
+ */
+ return processBlockPlace(world, entityhuman, itemstack, i, j, k, this.id, k1);
+ // CraftBukkit end
} else {
return false;
}
}
+ // CraftBukkit start - add method to process block placement
+ static boolean processBlockPlace(final World world, final EntityHuman entityhuman, final ItemStack itemstack, final int x, final int y, final int z, final int id, final int data) {
+ world.suppressPhysics = true;
+ world.setTypeIdAndData(x, y, z, id, data);
+
+ org.bukkit.event.block.BlockPlaceEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callBlockPlaceEvent(world, entityhuman, org.bukkit.craftbukkit.block.CraftBlockState.getBlockState(world, x, y, z), x, y, z);
+ if (event.isCancelled() || !event.canBuild()) {
+ event.getBlockReplacedState().update(true);
+ world.suppressPhysics = false;
+ return false;
+ }
+
+ world.suppressPhysics = false;
+ world.applyPhysics(x, y, z, world.getTypeId(x, y, z));
+
+ Block block = Block.byId[world.getTypeId(x, y, z)];
+ if (block != null) {
+ block.postPlace(world, x, y, z, entityhuman);
+ block.postPlace(world, x, y, z, world.getData(x, y, z));
+
+ world.makeSound((double) ((float) x + 0.5F), (double) ((float) y + 0.5F), (double) ((float) z + 0.5F), block.stepSound.getPlaceSound(), (block.stepSound.getVolume1() + 1.0F) / 2.0F, block.stepSound.getVolume2() * 0.8F);
+ }
+
+ if (itemstack != null) {
+ --itemstack.count;
+ }
+
+ return true;
+ }
+ // CraftBukkit end
+
public String d(ItemStack itemstack) {
return Block.byId[this.id].a();
}