Paper/src/main/java/net/minecraft/server/ItemBlock.java

117 Zeilen
3.9 KiB
Java

package net.minecraft.server;
public class ItemBlock extends Item {
private int id;
public ItemBlock(int i) {
super(i);
this.id = i + 256;
2012-07-29 09:33:13 +02:00
this.c(Block.byId[i + 256].a(2));
}
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-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) {
if (l == 0) {
2011-01-29 22:50:29 +01:00
--j;
}
2011-01-29 22:50:29 +01:00
if (l == 1) {
2011-01-29 22:50:29 +01:00
++j;
}
2011-01-29 22:50:29 +01:00
if (l == 2) {
2011-01-29 22:50:29 +01:00
--k;
}
2011-01-29 22:50:29 +01:00
if (l == 3) {
2011-01-29 22:50:29 +01:00
++k;
}
2011-01-29 22:50:29 +01:00
if (l == 4) {
2011-01-29 22:50:29 +01:00
--i;
}
2011-01-29 22:50:29 +01:00
if (l == 5) {
2011-01-29 22:50:29 +01:00
++i;
}
}
2011-01-29 22:50:29 +01:00
if (itemstack.count == 0) {
return false;
} 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;
} 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
// 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;
}
*/
return processBlockPlace(world, entityhuman, itemstack, i, j, k, this.id, k1);
// CraftBukkit end
2011-11-20 09:01:14 +01:00
} 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
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
}
public String getName() {
2012-07-29 09:33:13 +02:00
return Block.byId[this.id].a();
}
}