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

97 Zeilen
3.3 KiB
Java

2012-02-09 06:27:14 +01:00
package net.minecraft.server;
public class ItemStep extends ItemBlock {
2013-11-04 14:07:38 +01:00
private final boolean b;
2012-07-29 09:33:13 +02:00
private final BlockStepAbstract c;
2013-11-04 14:07:38 +01:00
private final BlockStepAbstract d;
2012-07-29 09:33:13 +02:00
2013-11-04 14:07:38 +01:00
public ItemStep(Block block, BlockStepAbstract blockstepabstract, BlockStepAbstract blockstepabstract1, boolean flag) {
super(block);
this.c = blockstepabstract;
this.d = blockstepabstract1;
this.b = flag;
2012-02-09 06:27:14 +01:00
this.setMaxDurability(0);
this.a(true);
}
public int filterData(int i) {
return i;
}
2013-11-04 14:07:38 +01:00
public String a(ItemStack itemstack) {
return this.c.b(itemstack.getData());
2012-02-09 06:27:14 +01:00
}
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) {
final int clickedX = i, clickedY = j, clickedZ = k; // CraftBukkit
2013-11-04 14:07:38 +01:00
if (this.b) {
2012-07-29 09:33:13 +02:00
return super.interactWith(itemstack, entityhuman, world, i, j, k, l, f, f1, f2);
} else if (itemstack.count == 0) {
2012-02-09 06:27:14 +01:00
return false;
} else if (!entityhuman.a(i, j, k, l, itemstack)) {
2012-02-09 06:27:14 +01:00
return false;
} else {
2013-11-04 14:07:38 +01:00
Block block = world.getType(i, j, k);
int i1 = world.getData(i, j, k);
int j1 = i1 & 7;
boolean flag = (i1 & 8) != 0;
2012-02-09 06:27:14 +01:00
2013-11-04 14:07:38 +01:00
if ((l == 1 && !flag || l == 0 && flag) && block == this.c && j1 == itemstack.getData()) {
// CraftBukkit start - world.setTypeIdAndData -> processBlockPlace()
2013-11-04 14:07:38 +01:00
// if (world.b(this.d.a(world, i, j, k)) && world.setTypeAndData(i, j, k, this.d, j1, 3)) {
if (world.b(this.d.a(world, i, j, k)) && processBlockPlace(world, entityhuman, null, i, j, k, this.d, j1, clickedX, clickedY, clickedZ)) {
// world.makeSound((double) ((float) i + 0.5F), (double) ((float) j + 0.5F), (double) ((float) k + 0.5F), this.d.stepSound.getPlaceSound(), (this.d.stepSound.getVolume1() + 1.0F) / 2.0F, this.d.stepSound.getVolume2() * 0.8F);
// CraftBukkit end
--itemstack.count;
}
2013-11-04 14:07:38 +01:00
return true;
2012-02-09 06:27:14 +01:00
} else {
2012-07-29 09:33:13 +02:00
return this.a(itemstack, entityhuman, world, i, j, k, l) ? true : super.interactWith(itemstack, entityhuman, world, i, j, k, l, f, f1, f2);
2012-02-09 06:27:14 +01:00
}
}
}
2012-07-29 09:33:13 +02:00
private boolean a(ItemStack itemstack, EntityHuman entityhuman, World world, int i, int j, int k, int l) {
if (l == 0) {
--j;
}
if (l == 1) {
++j;
}
if (l == 2) {
--k;
}
if (l == 3) {
++k;
}
if (l == 4) {
--i;
}
if (l == 5) {
++i;
}
2013-11-04 14:07:38 +01:00
Block block = world.getType(i, j, k);
int i1 = world.getData(i, j, k);
int j1 = i1 & 7;
2013-11-04 14:07:38 +01:00
if (block == this.c && j1 == itemstack.getData()) {
if (world.b(this.d.a(world, i, j, k)) && world.setTypeAndData(i, j, k, this.d, j1, 3)) {
world.makeSound((double) ((float) i + 0.5F), (double) ((float) j + 0.5F), (double) ((float) k + 0.5F), this.d.stepSound.getPlaceSound(), (this.d.stepSound.getVolume1() + 1.0F) / 2.0F, this.d.stepSound.getVolume2() * 0.8F);
--itemstack.count;
}
2013-07-01 13:03:00 +02:00
return true;
} else {
return false;
}
}
2012-02-09 06:27:14 +01:00
}