2011-01-08 11:49:42 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
public class ItemBlock extends Item {
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
private int id;
|
2011-01-08 11:49:42 +01:00
|
|
|
|
|
|
|
public ItemBlock(int i) {
|
|
|
|
super(i);
|
2011-04-20 19:05:14 +02:00
|
|
|
this.id = i + 256;
|
2012-07-29 09:33:13 +02:00
|
|
|
this.c(Block.byId[i + 256].a(2));
|
2011-01-08 11:49:42 +01:00
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
public int g() {
|
2011-09-15 02:23:52 +02:00
|
|
|
return this.id;
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public boolean interactWith(ItemStack itemstack, EntityHuman entityhuman, World world, int i, int j, int k, int l, float f, float f1, float f2) {
|
2011-09-15 02:23:52 +02:00
|
|
|
int i1 = world.getTypeId(i, j, k);
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
if (i1 == Block.SNOW.id) {
|
2012-03-01 11:49:23 +01:00
|
|
|
l = 1;
|
|
|
|
} else if (i1 != Block.VINE.id && i1 != Block.LONG_GRASS.id && i1 != Block.DEAD_BUSH.id) {
|
2011-01-08 11:49:42 +01:00
|
|
|
if (l == 0) {
|
2011-01-29 22:50:29 +01:00
|
|
|
--j;
|
2011-01-08 11:49:42 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-08 11:49:42 +01:00
|
|
|
if (l == 1) {
|
2011-01-29 22:50:29 +01:00
|
|
|
++j;
|
2011-01-08 11:49:42 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-08 11:49:42 +01:00
|
|
|
if (l == 2) {
|
2011-01-29 22:50:29 +01:00
|
|
|
--k;
|
2011-01-08 11:49:42 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-08 11:49:42 +01:00
|
|
|
if (l == 3) {
|
2011-01-29 22:50:29 +01:00
|
|
|
++k;
|
2011-01-08 11:49:42 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-08 11:49:42 +01:00
|
|
|
if (l == 4) {
|
2011-01-29 22:50:29 +01:00
|
|
|
--i;
|
2011-01-08 11:49:42 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-08 11:49:42 +01:00
|
|
|
if (l == 5) {
|
2011-01-29 22:50:29 +01:00
|
|
|
++i;
|
2011-01-08 11:49:42 +01:00
|
|
|
}
|
|
|
|
}
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (itemstack.count == 0) {
|
2011-01-14 22:22:14 +01:00
|
|
|
return false;
|
2012-10-25 05:53:23 +02:00
|
|
|
} else if (!entityhuman.a(i, j, k, l, itemstack)) {
|
2011-05-26 14:48:22 +02:00
|
|
|
return false;
|
2012-03-01 11:49:23 +01:00
|
|
|
} else if (j == 255 && Block.byId[this.id].material.isBuildable()) {
|
2011-11-20 09:01:14 +01:00
|
|
|
return false;
|
2013-01-16 12:39:13 +01:00
|
|
|
} else if (world.mayPlace(this.id, i, j, k, false, l, entityhuman)) {
|
|
|
|
Block block = Block.byId[this.id];
|
2012-11-06 13:05:28 +01:00
|
|
|
int j1 = this.filterData(itemstack.getData());
|
|
|
|
int k1 = Block.byId[this.id].getPlacedData(world, i, j, k, l, f, f1, f2, j1);
|
2011-11-20 09:01:14 +01:00
|
|
|
|
2013-01-16 12:39:13 +01:00
|
|
|
// 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);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
2011-05-26 14:48:22 +02:00
|
|
|
|
2012-11-06 13:05:28 +01:00
|
|
|
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);
|
2011-11-20 09:01:14 +01:00
|
|
|
--itemstack.count;
|
2011-01-08 11:49:42 +01:00
|
|
|
}
|
2013-01-16 12:39:13 +01:00
|
|
|
*/
|
|
|
|
return processBlockPlace(world, entityhuman, itemstack, i, j, k, this.id, k1);
|
|
|
|
// CraftBukkit end
|
2011-11-20 09:01:14 +01:00
|
|
|
} else {
|
|
|
|
return false;
|
2011-01-08 11:49:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-16 12:39:13 +01:00
|
|
|
// 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) {
|
2013-01-17 03:15:40 +01:00
|
|
|
org.bukkit.block.BlockState blockstate = org.bukkit.craftbukkit.block.CraftBlockState.getBlockState(world, x, y, z);
|
|
|
|
|
2013-01-16 12:39:13 +01:00
|
|
|
world.suppressPhysics = true;
|
2013-01-27 16:13:06 +01:00
|
|
|
world.callingPlaceEvent = true;
|
2013-01-19 06:07:28 +01:00
|
|
|
world.setRawTypeIdAndData(x, y, z, id, data);
|
2013-01-16 12:39:13 +01:00
|
|
|
|
2013-01-17 03:15:40 +01:00
|
|
|
org.bukkit.event.block.BlockPlaceEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callBlockPlaceEvent(world, entityhuman, blockstate, x, y, z);
|
2013-01-16 12:39:13 +01:00
|
|
|
if (event.isCancelled() || !event.canBuild()) {
|
2013-01-17 03:15:40 +01:00
|
|
|
blockstate.update(true);
|
2013-01-16 12:39:13 +01:00
|
|
|
world.suppressPhysics = false;
|
2013-01-27 16:13:06 +01:00
|
|
|
world.callingPlaceEvent = false;
|
2013-01-16 12:39:13 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
world.suppressPhysics = false;
|
2013-01-27 16:13:06 +01:00
|
|
|
world.callingPlaceEvent = false;
|
2013-01-16 12:39:13 +01:00
|
|
|
|
2013-01-19 06:07:28 +01:00
|
|
|
int newId = world.getTypeId(x, y, z);
|
|
|
|
int newData = world.getData(x, y, z);
|
|
|
|
|
|
|
|
Block block = Block.byId[newId];
|
2013-01-27 16:13:06 +01:00
|
|
|
if (block != null && !(block instanceof BlockContainer)) { // Containers get placed automatically
|
2013-01-19 06:07:28 +01:00
|
|
|
block.onPlace(world, x, y, z);
|
|
|
|
}
|
|
|
|
|
|
|
|
world.update(x, y, z, newId);
|
|
|
|
|
2013-01-16 12:39:13 +01:00
|
|
|
if (block != null) {
|
|
|
|
block.postPlace(world, x, y, z, entityhuman);
|
2013-01-19 06:07:28 +01:00
|
|
|
block.postPlace(world, x, y, z, newData);
|
2013-01-16 12:39:13 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2012-12-20 05:03:52 +01:00
|
|
|
public String d(ItemStack itemstack) {
|
2012-07-29 09:33:13 +02:00
|
|
|
return Block.byId[this.id].a();
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2012-01-14 21:03:48 +01:00
|
|
|
public String getName() {
|
2012-07-29 09:33:13 +02:00
|
|
|
return Block.byId[this.id].a();
|
2011-01-08 11:49:42 +01:00
|
|
|
}
|
|
|
|
}
|