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

88 Zeilen
2.7 KiB
Java

2012-02-09 06:27:14 +01:00
package net.minecraft.server;
public class ItemStep extends ItemBlock {
2012-07-29 09:33:13 +02:00
private final boolean a;
private final BlockStepAbstract b;
private final BlockStepAbstract c;
public ItemStep(int i, BlockStepAbstract blockstepabstract, BlockStepAbstract blockstepabstract1, boolean flag) {
2012-02-09 06:27:14 +01:00
super(i);
2012-07-29 09:33:13 +02:00
this.b = blockstepabstract;
this.c = blockstepabstract1;
this.a = flag;
2012-02-09 06:27:14 +01:00
this.setMaxDurability(0);
this.a(true);
}
public int filterData(int i) {
return i;
}
public String c_(ItemStack itemstack) {
2012-07-29 09:33:13 +02:00
return this.b.d(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) {
if (this.a) {
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 {
int i1 = world.getTypeId(i, j, k);
int j1 = world.getData(i, j, k);
2012-03-01 11:49:23 +01:00
int k1 = j1 & 7;
boolean flag = (j1 & 8) != 0;
2012-02-09 06:27:14 +01:00
2012-07-29 09:33:13 +02:00
if ((l == 1 && !flag || l == 0 && flag) && i1 == this.b.id && k1 == itemstack.getData()) {
return super.interactWith(itemstack, entityhuman, world, i, j, k, -1, f, f1, f2); // CraftBukkit - handle this in super
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;
}
int i1 = world.getTypeId(i, j, k);
int j1 = world.getData(i, j, k);
int k1 = j1 & 7;
2012-07-29 09:33:13 +02:00
if (i1 == this.b.id && k1 == itemstack.getData()) {
if (world.b(this.c.e(world, i, j, k)) && world.setTypeIdAndData(i, j, k, this.c.id, k1)) {
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), this.c.stepSound.getPlaceSound(), (this.c.stepSound.getVolume1() + 1.0F) / 2.0F, this.c.stepSound.getVolume2() * 0.8F);
--itemstack.count;
}
return true;
} else {
return false;
}
}
2012-02-09 06:27:14 +01:00
}