2011-03-18 23:03:30 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
import org.bukkit.craftbukkit.block.CraftBlockState;
|
2011-03-21 00:25:26 +01:00
|
|
|
import org.bukkit.craftbukkit.event.CraftEventFactory;
|
2011-03-18 23:03:30 +01:00
|
|
|
import org.bukkit.event.block.BlockPlaceEvent;
|
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
public class ItemReed extends Item {
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
private int id;
|
2011-03-18 23:03:30 +01:00
|
|
|
|
|
|
|
public ItemReed(int i, Block block) {
|
|
|
|
super(i);
|
2011-04-20 19:05:14 +02:00
|
|
|
this.id = block.id;
|
2011-03-18 23:03:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean a(ItemStack itemstack, EntityHuman entityhuman, World world, int i, int j, int k, int l) {
|
2011-05-14 16:29:42 +02:00
|
|
|
int clickedX = i, clickedY = j, clickedZ = k; // CraftBukkit
|
2011-09-15 02:23:52 +02:00
|
|
|
int i1 = world.getTypeId(i, j, k);
|
2011-03-18 23:03:30 +01:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
if (i1 == Block.SNOW.id) {
|
2011-03-18 23:03:30 +01:00
|
|
|
l = 0;
|
2011-09-15 02:23:52 +02:00
|
|
|
} else if (i1 != Block.VINE.id) {
|
2011-03-18 23:03:30 +01:00
|
|
|
if (l == 0) {
|
|
|
|
--j;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (l == 1) {
|
|
|
|
++j;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (l == 2) {
|
|
|
|
--k;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (l == 3) {
|
|
|
|
++k;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (l == 4) {
|
|
|
|
--i;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (l == 5) {
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
if (!entityhuman.c(i, j, k)) {
|
|
|
|
return false;
|
|
|
|
} else if (itemstack.count == 0) {
|
2011-03-18 23:03:30 +01:00
|
|
|
return false;
|
|
|
|
} else {
|
2011-05-26 14:48:22 +02:00
|
|
|
if (world.a(this.id, i, j, k, false, l)) {
|
2011-04-20 19:05:14 +02:00
|
|
|
Block block = Block.byId[this.id];
|
2011-03-18 23:03:30 +01:00
|
|
|
|
|
|
|
// CraftBukkit start - This executes the placement of the block
|
2011-06-27 00:25:01 +02:00
|
|
|
CraftBlockState replacedBlockState = CraftBlockState.getBlockState(world, i, j, k); // CraftBukkit
|
2011-03-18 23:03:30 +01:00
|
|
|
/**
|
2011-04-20 19:05:14 +02:00
|
|
|
* @see net.minecraft.server.World#setTypeId(int i, int j, int k, int l)
|
2011-05-14 16:29:42 +02:00
|
|
|
*
|
2011-04-20 19:05:14 +02:00
|
|
|
* This replaces world.setTypeId(IIII), we're doing this because we need to
|
2011-03-18 23:03:30 +01:00
|
|
|
* hook between the 'placement' and the informing to 'world' so we can
|
|
|
|
* sanely undo this.
|
|
|
|
*
|
2011-04-20 19:05:14 +02:00
|
|
|
* Whenever the call to 'world.setTypeId' changes we need to figure out again what to
|
2011-03-18 23:03:30 +01:00
|
|
|
* replace this with.
|
|
|
|
*/
|
2011-04-20 19:05:14 +02:00
|
|
|
if (world.setRawTypeId(i, j, k, this.id)) { // <-- world.e does this to place the block
|
2011-03-21 00:25:26 +01:00
|
|
|
BlockPlaceEvent event = CraftEventFactory.callBlockPlaceEvent(world, entityhuman, replacedBlockState, clickedX, clickedY, clickedZ, block);
|
2011-03-18 23:03:30 +01:00
|
|
|
|
|
|
|
if (event.isCancelled() || !event.canBuild()) {
|
2011-05-14 16:29:42 +02:00
|
|
|
// CraftBukkit - undo; this only has reed, repeater and pie blocks
|
2011-03-18 23:03:30 +01:00
|
|
|
world.setTypeIdAndData(i, j, k, replacedBlockState.getTypeId(), replacedBlockState.getRawData());
|
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
return true;
|
2011-03-18 23:03:30 +01:00
|
|
|
}
|
2011-05-26 14:48:22 +02:00
|
|
|
|
|
|
|
world.update(i, j, k, this.id); // <-- world.setTypeId does this on success (tell the world)
|
2011-03-18 23:03:30 +01:00
|
|
|
// CraftBukkit end
|
2011-05-26 14:48:22 +02:00
|
|
|
|
2011-09-16 21:10:11 +02:00
|
|
|
if (world.getTypeId(i, j, k) == this.id) {
|
|
|
|
Block.byId[this.id].postPlace(world, i, j, k, l);
|
|
|
|
Block.byId[this.id].postPlace(world, i, j, k, entityhuman);
|
|
|
|
}
|
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
world.makeSound((double) ((float) i + 0.5F), (double) ((float) j + 0.5F), (double) ((float) k + 0.5F), block.stepSound.getName(), (block.stepSound.getVolume1() + 1.0F) / 2.0F, block.stepSound.getVolume2() * 0.8F);
|
|
|
|
--itemstack.count;
|
2011-03-18 23:03:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|