2011-01-08 12:18:05 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit start
|
2011-03-21 00:25:26 +01:00
|
|
|
import org.bukkit.craftbukkit.block.CraftBlockState;
|
|
|
|
import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
|
|
import org.bukkit.event.block.BlockPlaceEvent;
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit end
|
2011-01-08 12:18:05 +01:00
|
|
|
|
|
|
|
public class ItemRedstone extends Item {
|
|
|
|
|
|
|
|
public ItemRedstone(int i) {
|
|
|
|
super(i);
|
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +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-01-29 22:50:29 +01:00
|
|
|
|
2011-05-14 16:29:42 +02:00
|
|
|
if (world.getTypeId(i, j, k) != Block.SNOW.id) {
|
|
|
|
if (l == 0) {
|
|
|
|
--j;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-05-14 16:29:42 +02:00
|
|
|
if (l == 1) {
|
|
|
|
++j;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-05-14 16:29:42 +02:00
|
|
|
if (l == 2) {
|
|
|
|
--k;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-05-14 16:29:42 +02:00
|
|
|
if (l == 3) {
|
|
|
|
++k;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-05-14 16:29:42 +02:00
|
|
|
if (l == 4) {
|
|
|
|
--i;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-05-14 16:29:42 +02:00
|
|
|
if (l == 5) {
|
|
|
|
++i;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-05-14 16:29:42 +02:00
|
|
|
if (!world.isEmpty(i, j, k)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
if (!entityhuman.c(i, j, k)) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
if (Block.REDSTONE_WIRE.canPlace(world, i, j, k)) {
|
|
|
|
CraftBlockState blockState = CraftBlockState.getBlockState(world, i, j, k); // CraftBukkit
|
2011-03-21 00:25:26 +01:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
world.setRawTypeId(i, j, k, Block.REDSTONE_WIRE.id); // CraftBukkit - We update after the event
|
2011-06-15 04:50:39 +02:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
// CraftBukkit start - redstone
|
|
|
|
BlockPlaceEvent event = CraftEventFactory.callBlockPlaceEvent(world, entityhuman, blockState, clickedX, clickedY, clickedZ, Block.REDSTONE_WIRE);
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
if (event.isCancelled() || !event.canBuild()) {
|
|
|
|
event.getBlockPlaced().setTypeIdAndData(blockState.getTypeId(), blockState.getRawData(), false);
|
|
|
|
return false;
|
|
|
|
}
|
2011-06-09 08:52:37 +02:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
world.update( i, j, k, Block.REDSTONE_WIRE.id); // Must take place after BlockPlaceEvent, we need to update all other blocks.
|
|
|
|
// CraftBukkit end
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
--itemstack.count; // CraftBukkit - ORDER MATTERS
|
|
|
|
}
|
2011-05-14 16:29:42 +02:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
return true;
|
|
|
|
}
|
2011-01-08 12:18:05 +01:00
|
|
|
}
|
|
|
|
}
|