2011-01-08 11:49:42 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit start
|
2011-01-15 22:36:57 +01:00
|
|
|
import org.bukkit.block.BlockFace;
|
2011-01-15 22:40:18 +01:00
|
|
|
import org.bukkit.craftbukkit.block.CraftBlock;
|
2011-01-15 22:29:17 +01:00
|
|
|
import org.bukkit.craftbukkit.inventory.CraftItemStack;
|
2011-01-15 22:23:28 +01:00
|
|
|
import org.bukkit.craftbukkit.entity.CraftPlayer;
|
2011-01-08 11:49:42 +01:00
|
|
|
import org.bukkit.event.Event.Type;
|
2011-01-15 21:26:05 +01:00
|
|
|
import org.bukkit.event.block.BlockPlaceEvent;
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit end
|
2011-01-08 11:49:42 +01:00
|
|
|
|
|
|
|
public class ItemBlock extends Item {
|
|
|
|
|
|
|
|
private int a;
|
|
|
|
|
|
|
|
public ItemBlock(int i) {
|
|
|
|
super(i);
|
|
|
|
a = i + 256;
|
2011-01-14 14:31:10 +01:00
|
|
|
b(Block.m[i + 256].a(2));
|
2011-01-08 11:49:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean a(ItemStack itemstack, EntityPlayer entityplayer, World world, int i, int j, int k, int l) {
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit start
|
2011-01-08 11:49:42 +01:00
|
|
|
// Bail if we have nothing of the item in hand
|
|
|
|
if (itemstack.a == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
2011-01-11 09:25:13 +01:00
|
|
|
|
|
|
|
// CraftBukkit store info of the clicked block
|
2011-01-08 11:49:42 +01:00
|
|
|
CraftBlock blockClicked = (CraftBlock) ((WorldServer) world).getWorld().getBlockAt(i, j, k);
|
|
|
|
BlockFace faceClicked = CraftBlock.notchToBlockFace(l);
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit end
|
|
|
|
|
2011-01-14 14:31:10 +01:00
|
|
|
if (world.a(i, j, k) == Block.aS.bi) {
|
2011-01-08 11:49:42 +01:00
|
|
|
l = 0;
|
|
|
|
} else {
|
|
|
|
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-01-11 09:25:13 +01:00
|
|
|
|
2011-01-14 22:22:14 +01:00
|
|
|
if (itemstack.a == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit start - store the old data so we can undo it
|
2011-01-08 11:49:42 +01:00
|
|
|
int oldMaterial = world.a(i, j, k);
|
|
|
|
int oldData = world.b(i, j, k);
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-01-08 11:49:42 +01:00
|
|
|
if (world.a(a, i, j, k, false)) {
|
|
|
|
Block block = Block.m[a];
|
|
|
|
|
|
|
|
// This executes the placement of the block
|
2011-01-20 03:13:51 +01:00
|
|
|
if (world.b(i, j, k, a)) {
|
2011-01-08 11:49:42 +01:00
|
|
|
CraftBlock placedBlock = (CraftBlock) blockClicked.getFace(faceClicked) ;
|
|
|
|
CraftItemStack itemInHand = new CraftItemStack(itemstack);
|
|
|
|
CraftPlayer thePlayer = new CraftPlayer(((WorldServer) world).getServer(), (EntityPlayerMP) entityplayer);
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-01-15 23:59:51 +01:00
|
|
|
int distanceFromSpawn = (int) Math.max(Math.abs(i - world.m), Math.abs(k - world.o));
|
2011-01-11 09:25:13 +01:00
|
|
|
|
|
|
|
// CraftBukkit hardcoded Spawn distance for now
|
2011-01-08 11:49:42 +01:00
|
|
|
boolean canBuild = distanceFromSpawn > 16 || thePlayer.isOp();
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-01-15 21:26:05 +01:00
|
|
|
BlockPlaceEvent bpe = new BlockPlaceEvent(Type.BLOCK_PLACED, placedBlock, blockClicked, itemInHand, thePlayer, canBuild);
|
2011-01-08 12:18:05 +01:00
|
|
|
((WorldServer) world).getServer().getPluginManager().callEvent(bpe);
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-01-08 11:49:42 +01:00
|
|
|
if (bpe.isCancelled() || !bpe.canBuild()) {
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit Undo!
|
|
|
|
|
2011-01-08 11:49:42 +01:00
|
|
|
if (this.a == 79) {
|
2011-01-20 03:13:51 +01:00
|
|
|
// Ice will explode if we set straight to 0
|
2011-01-14 21:27:11 +01:00
|
|
|
world.b(i, j, k, 20);
|
2011-01-20 03:13:51 +01:00
|
|
|
} else if ((this.a == 44) && (world.a(i, j - 1, k) == 43) && (world.a(i, j, k) == 0)) {
|
|
|
|
// Half steps automatically set the block below to a double
|
|
|
|
world.b(i, j - 1, k, 44);
|
2011-01-08 11:49:42 +01:00
|
|
|
}
|
2011-01-20 03:13:51 +01:00
|
|
|
|
2011-01-14 20:44:11 +01:00
|
|
|
world.b(i, j, k, oldMaterial);
|
|
|
|
world.d(i, j, k, oldData);
|
2011-01-08 11:49:42 +01:00
|
|
|
} else {
|
2011-01-20 03:13:51 +01:00
|
|
|
world.c(i, j, k, a(itemstack.h()));
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-01-08 11:49:42 +01:00
|
|
|
Block.m[a].c(world, i, j, k, l);
|
2011-01-11 09:25:13 +01:00
|
|
|
Block.m[a].a(world, i, j, k, ((EntityLiving) (entityplayer)));
|
2011-01-14 14:31:10 +01:00
|
|
|
world.a((float) i + 0.5F, (float) j + 0.5F, (float) k + 0.5F, block.br.c(), (block.br.a() + 1.0F) / 2.0F, block.br.b() * 0.8F);
|
2011-01-08 11:49:42 +01:00
|
|
|
itemstack.a--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit end
|
2011-01-08 11:49:42 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String a() {
|
|
|
|
return Block.m[a].e();
|
|
|
|
}
|
|
|
|
}
|