2012-02-09 06:27:14 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
public class ItemStep extends ItemBlock {
|
|
|
|
|
|
|
|
public ItemStep(int i) {
|
|
|
|
super(i);
|
|
|
|
this.setMaxDurability(0);
|
|
|
|
this.a(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
public int filterData(int i) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String a(ItemStack itemstack) {
|
|
|
|
int i = itemstack.getData();
|
|
|
|
|
|
|
|
if (i < 0 || i >= BlockStep.a.length) {
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return super.getName() + "." + BlockStep.a[i];
|
|
|
|
}
|
|
|
|
|
2012-02-29 22:31:04 +01:00
|
|
|
public boolean interactWith(ItemStack itemstack, EntityHuman entityhuman, World world, int i, int j, int k, int l) {
|
2012-02-09 06:27:14 +01:00
|
|
|
if (itemstack.count == 0) {
|
|
|
|
return false;
|
|
|
|
} else if (!entityhuman.d(i, j, k)) {
|
|
|
|
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-03-01 11:49:23 +01:00
|
|
|
if ((l == 1 && !flag || l == 0 && flag) && i1 == Block.STEP.id && k1 == itemstack.getData()) {
|
2012-02-29 22:31:04 +01:00
|
|
|
/* CraftBukkit start - handle this in super
|
2012-03-22 21:39:39 +01:00
|
|
|
if (world.containsEntity(Block.DOUBLE_STEP.e(world, i, j, k)) && world.setTypeIdAndData(i, j, k, Block.DOUBLE_STEP.id, k1)) {
|
2012-02-09 06:27:14 +01:00
|
|
|
world.makeSound((double) ((float) i + 0.5F), (double) ((float) j + 0.5F), (double) ((float) k + 0.5F), Block.DOUBLE_STEP.stepSound.getName(), (Block.DOUBLE_STEP.stepSound.getVolume1() + 1.0F) / 2.0F, Block.DOUBLE_STEP.stepSound.getVolume2() * 0.8F);
|
|
|
|
--itemstack.count;
|
|
|
|
}
|
2012-03-22 21:39:39 +01:00
|
|
|
|
|
|
|
return true;
|
2012-02-09 03:26:49 +01:00
|
|
|
*/
|
2012-02-29 22:31:04 +01:00
|
|
|
return super.interactWith(itemstack, entityhuman, world, i, j, k, -1);
|
2012-02-09 03:26:49 +01:00
|
|
|
// CraftBukkit end
|
2012-02-09 06:27:14 +01:00
|
|
|
} else {
|
2012-03-22 21:39:39 +01:00
|
|
|
return b(itemstack, entityhuman, world, i, j, k, l) ? true : super.interactWith(itemstack, entityhuman, world, i, j, k, l);
|
2012-02-09 06:27:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-03-22 21:39:39 +01:00
|
|
|
|
|
|
|
private static boolean b(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;
|
|
|
|
|
|
|
|
if (i1 == Block.STEP.id && k1 == itemstack.getData()) {
|
|
|
|
if (world.containsEntity(Block.DOUBLE_STEP.e(world, i, j, k)) && world.setTypeIdAndData(i, j, k, Block.DOUBLE_STEP.id, k1)) {
|
|
|
|
world.makeSound((double) ((float) i + 0.5F), (double) ((float) j + 0.5F), (double) ((float) k + 0.5F), Block.DOUBLE_STEP.stepSound.getName(), (Block.DOUBLE_STEP.stepSound.getVolume1() + 1.0F) / 2.0F, Block.DOUBLE_STEP.stepSound.getVolume2() * 0.8F);
|
|
|
|
--itemstack.count;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2012-02-09 06:27:14 +01:00
|
|
|
}
|