2011-01-08 14:33:54 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
import java.util.Random;
|
|
|
|
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit start
|
2011-01-23 13:23:13 +01:00
|
|
|
import org.bukkit.craftbukkit.CraftServer;
|
|
|
|
import org.bukkit.craftbukkit.CraftWorld;
|
2011-01-15 22:40:18 +01:00
|
|
|
import org.bukkit.craftbukkit.block.CraftBlock;
|
2011-01-12 18:40:42 +01:00
|
|
|
import org.bukkit.event.block.BlockRedstoneEvent;
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit end
|
2011-01-08 14:33:54 +01:00
|
|
|
|
|
|
|
public class BlockButton extends Block {
|
|
|
|
|
|
|
|
protected BlockButton(int i, int j) {
|
2011-01-29 22:50:29 +01:00
|
|
|
super(i, j, Material.ORIENTABLE);
|
|
|
|
this.a(true);
|
2011-01-08 14:33:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public AxisAlignedBB d(World world, int i, int j, int k) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int b() {
|
|
|
|
return 20;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean a() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean a(World world, int i, int j, int k) {
|
2011-01-29 22:50:29 +01:00
|
|
|
return world.d(i - 1, j, k) ? true : (world.d(i + 1, j, k) ? true : (world.d(i, j, k - 1) ? true : world.d(i, j, k + 1)));
|
2011-01-08 14:33:54 +01:00
|
|
|
}
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
public void d(World world, int i, int j, int k, int l) {
|
2011-01-29 22:50:29 +01:00
|
|
|
int i1 = world.getData(i, j, k);
|
2011-01-08 14:33:54 +01:00
|
|
|
int j1 = i1 & 8;
|
|
|
|
|
|
|
|
i1 &= 7;
|
|
|
|
if (l == 2 && world.d(i, j, k + 1)) {
|
|
|
|
i1 = 4;
|
2011-02-23 03:37:56 +01:00
|
|
|
} else if (l == 3 && world.d(i, j, k - 1)) {
|
2011-01-08 14:33:54 +01:00
|
|
|
i1 = 3;
|
2011-02-23 03:37:56 +01:00
|
|
|
} else if (l == 4 && world.d(i + 1, j, k)) {
|
2011-01-08 14:33:54 +01:00
|
|
|
i1 = 2;
|
2011-02-23 03:37:56 +01:00
|
|
|
} else if (l == 5 && world.d(i - 1, j, k)) {
|
2011-01-08 14:33:54 +01:00
|
|
|
i1 = 1;
|
2011-02-23 03:37:56 +01:00
|
|
|
} else {
|
|
|
|
i1 = this.g(world, i, j, k);
|
2011-01-08 14:33:54 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-14 14:31:10 +01:00
|
|
|
world.c(i, j, k, i1 + j1);
|
2011-01-08 14:33:54 +01:00
|
|
|
}
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
private int g(World world, int i, int j, int k) {
|
|
|
|
return world.d(i - 1, j, k) ? 1 : (world.d(i + 1, j, k) ? 2 : (world.d(i, j, k - 1) ? 3 : (world.d(i, j, k + 1) ? 4 : 1)));
|
2011-01-08 14:33:54 +01:00
|
|
|
}
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
public void a(World world, int i, int j, int k, int l) {
|
|
|
|
if (this.h(world, i, j, k)) {
|
2011-01-29 22:50:29 +01:00
|
|
|
int i1 = world.getData(i, j, k) & 7;
|
2011-01-08 14:33:54 +01:00
|
|
|
boolean flag = false;
|
|
|
|
|
|
|
|
if (!world.d(i - 1, j, k) && i1 == 1) {
|
|
|
|
flag = true;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-08 14:33:54 +01:00
|
|
|
if (!world.d(i + 1, j, k) && i1 == 2) {
|
|
|
|
flag = true;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-08 14:33:54 +01:00
|
|
|
if (!world.d(i, j, k - 1) && i1 == 3) {
|
|
|
|
flag = true;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-08 14:33:54 +01:00
|
|
|
if (!world.d(i, j, k + 1) && i1 == 4) {
|
|
|
|
flag = true;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-08 14:33:54 +01:00
|
|
|
if (flag) {
|
2011-03-31 22:40:00 +02:00
|
|
|
this.a_(world, i, j, k, world.getData(i, j, k));
|
2011-01-14 14:31:10 +01:00
|
|
|
world.e(i, j, k, 0);
|
2011-01-08 14:33:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
private boolean h(World world, int i, int j, int k) {
|
2011-01-29 22:50:29 +01:00
|
|
|
if (!this.a(world, i, j, k)) {
|
2011-03-31 22:40:00 +02:00
|
|
|
this.a_(world, i, j, k, world.getData(i, j, k));
|
2011-01-14 14:31:10 +01:00
|
|
|
world.e(i, j, k, 0);
|
2011-01-08 14:33:54 +01:00
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(IBlockAccess iblockaccess, int i, int j, int k) {
|
2011-01-29 22:50:29 +01:00
|
|
|
int l = iblockaccess.getData(i, j, k);
|
2011-01-08 14:33:54 +01:00
|
|
|
int i1 = l & 7;
|
|
|
|
boolean flag = (l & 8) > 0;
|
|
|
|
float f = 0.375F;
|
|
|
|
float f1 = 0.625F;
|
|
|
|
float f2 = 0.1875F;
|
|
|
|
float f3 = 0.125F;
|
|
|
|
|
|
|
|
if (flag) {
|
|
|
|
f3 = 0.0625F;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-08 14:33:54 +01:00
|
|
|
if (i1 == 1) {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.a(0.0F, f, 0.5F - f2, f3, f1, 0.5F + f2);
|
2011-01-08 14:33:54 +01:00
|
|
|
} else if (i1 == 2) {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.a(1.0F - f3, f, 0.5F - f2, 1.0F, f1, 0.5F + f2);
|
2011-01-08 14:33:54 +01:00
|
|
|
} else if (i1 == 3) {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.a(0.5F - f2, f, 0.0F, 0.5F + f2, f1, f3);
|
2011-01-08 14:33:54 +01:00
|
|
|
} else if (i1 == 4) {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.a(0.5F - f2, f, 1.0F - f3, 0.5F + f2, f1, 1.0F);
|
2011-01-08 14:33:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public void b(World world, int i, int j, int k, EntityHuman entityhuman) {
|
|
|
|
this.a(world, i, j, k, entityhuman);
|
2011-01-08 14:33:54 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public boolean a(World world, int i, int j, int k, EntityHuman entityhuman) {
|
2011-02-23 03:37:56 +01:00
|
|
|
int l = world.getData(i, j, k);
|
|
|
|
int i1 = l & 7;
|
|
|
|
int j1 = 8 - (l & 8);
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
if (j1 == 0) {
|
|
|
|
return true;
|
|
|
|
} else {
|
2011-02-23 13:56:36 +01:00
|
|
|
// CraftBukkit start
|
2011-03-23 12:22:13 +01:00
|
|
|
CraftWorld craftWorld = ((WorldServer) world).getWorld();
|
|
|
|
CraftServer server = ((WorldServer) world).getServer();
|
|
|
|
CraftBlock block = (CraftBlock) craftWorld.getBlockAt(i, j, k);
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
int old = (j1 != 8) ? 1 : 0;
|
|
|
|
int current = (j1 == 8) ? 1 : 0;
|
|
|
|
BlockRedstoneEvent eventRedstone = new BlockRedstoneEvent(block, old, current);
|
|
|
|
server.getPluginManager().callEvent(eventRedstone);
|
|
|
|
if ((eventRedstone.getNewCurrent() > 0) != (j1 == 8)) {
|
2011-01-29 22:50:29 +01:00
|
|
|
return true;
|
|
|
|
}
|
2011-02-23 13:56:36 +01:00
|
|
|
// CraftBukkit end
|
2011-01-08 14:33:54 +01:00
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
world.c(i, j, k, i1 + j1);
|
|
|
|
world.b(i, j, k, i, j, k);
|
|
|
|
world.a((double) i + 0.5D, (double) j + 0.5D, (double) k + 0.5D, "random.click", 0.3F, 0.6F);
|
|
|
|
world.h(i, j, k, this.id);
|
|
|
|
if (i1 == 1) {
|
|
|
|
world.h(i - 1, j, k, this.id);
|
|
|
|
} else if (i1 == 2) {
|
|
|
|
world.h(i + 1, j, k, this.id);
|
|
|
|
} else if (i1 == 3) {
|
|
|
|
world.h(i, j, k - 1, this.id);
|
|
|
|
} else if (i1 == 4) {
|
|
|
|
world.h(i, j, k + 1, this.id);
|
2011-01-12 18:40:42 +01:00
|
|
|
} else {
|
2011-02-23 03:37:56 +01:00
|
|
|
world.h(i, j - 1, k, this.id);
|
2011-01-12 18:40:42 +01:00
|
|
|
}
|
2011-02-23 03:37:56 +01:00
|
|
|
|
|
|
|
world.c(i, j, k, this.id, this.b());
|
|
|
|
return true;
|
2011-01-08 14:33:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void b(World world, int i, int j, int k) {
|
2011-01-29 22:50:29 +01:00
|
|
|
int l = world.getData(i, j, k);
|
2011-01-08 14:33:54 +01:00
|
|
|
|
|
|
|
if ((l & 8) > 0) {
|
2011-01-29 22:50:29 +01:00
|
|
|
world.h(i, j, k, this.id);
|
2011-01-08 14:33:54 +01:00
|
|
|
int i1 = l & 7;
|
|
|
|
|
|
|
|
if (i1 == 1) {
|
2011-01-29 22:50:29 +01:00
|
|
|
world.h(i - 1, j, k, this.id);
|
2011-01-08 14:33:54 +01:00
|
|
|
} else if (i1 == 2) {
|
2011-01-29 22:50:29 +01:00
|
|
|
world.h(i + 1, j, k, this.id);
|
2011-01-08 14:33:54 +01:00
|
|
|
} else if (i1 == 3) {
|
2011-01-29 22:50:29 +01:00
|
|
|
world.h(i, j, k - 1, this.id);
|
2011-01-08 14:33:54 +01:00
|
|
|
} else if (i1 == 4) {
|
2011-01-29 22:50:29 +01:00
|
|
|
world.h(i, j, k + 1, this.id);
|
2011-01-08 14:33:54 +01:00
|
|
|
} else {
|
2011-01-29 22:50:29 +01:00
|
|
|
world.h(i, j - 1, k, this.id);
|
2011-01-08 14:33:54 +01:00
|
|
|
}
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-08 14:33:54 +01:00
|
|
|
super.b(world, i, j, k);
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean b(IBlockAccess iblockaccess, int i, int j, int k, int l) {
|
2011-01-29 22:50:29 +01:00
|
|
|
return (iblockaccess.getData(i, j, k) & 8) > 0;
|
2011-01-08 14:33:54 +01:00
|
|
|
}
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
public boolean c(World world, int i, int j, int k, int l) {
|
2011-01-29 22:50:29 +01:00
|
|
|
int i1 = world.getData(i, j, k);
|
2011-01-08 14:33:54 +01:00
|
|
|
|
|
|
|
if ((i1 & 8) == 0) {
|
|
|
|
return false;
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
|
|
|
int j1 = i1 & 7;
|
2011-01-08 14:33:54 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
return j1 == 5 && l == 1 ? true : (j1 == 4 && l == 2 ? true : (j1 == 3 && l == 3 ? true : (j1 == 2 && l == 4 ? true : j1 == 1 && l == 5)));
|
2011-01-08 14:33:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean c() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(World world, int i, int j, int k, Random random) {
|
2011-01-29 22:50:29 +01:00
|
|
|
if (!world.isStatic) {
|
|
|
|
int l = world.getData(i, j, k);
|
|
|
|
|
|
|
|
if ((l & 8) != 0) {
|
2011-02-23 13:56:36 +01:00
|
|
|
// CraftBukkit start
|
2011-02-19 16:55:47 +01:00
|
|
|
CraftWorld craftWorld = ((WorldServer) world).getWorld();
|
|
|
|
CraftServer server = ((WorldServer) world).getServer();
|
|
|
|
CraftBlock block = (CraftBlock) craftWorld.getBlockAt(i, j, k);
|
|
|
|
BlockRedstoneEvent eventRedstone = new BlockRedstoneEvent(block, 1, 0);
|
|
|
|
server.getPluginManager().callEvent(eventRedstone);
|
2011-02-20 17:40:40 +01:00
|
|
|
if (eventRedstone.getNewCurrent() > 0) return;
|
2011-02-23 13:56:36 +01:00
|
|
|
// CraftBukkit end
|
2011-02-20 17:40:40 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
world.c(i, j, k, l & 7);
|
|
|
|
world.h(i, j, k, this.id);
|
|
|
|
int i1 = l & 7;
|
|
|
|
|
|
|
|
if (i1 == 1) {
|
|
|
|
world.h(i - 1, j, k, this.id);
|
|
|
|
} else if (i1 == 2) {
|
|
|
|
world.h(i + 1, j, k, this.id);
|
|
|
|
} else if (i1 == 3) {
|
|
|
|
world.h(i, j, k - 1, this.id);
|
|
|
|
} else if (i1 == 4) {
|
|
|
|
world.h(i, j, k + 1, this.id);
|
|
|
|
} else {
|
|
|
|
world.h(i, j - 1, k, this.id);
|
|
|
|
}
|
|
|
|
|
|
|
|
world.a((double) i + 0.5D, (double) j + 0.5D, (double) k + 0.5D, "random.click", 0.3F, 0.5F);
|
|
|
|
world.b(i, j, k, i, j, k);
|
|
|
|
}
|
2011-01-08 14:33:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|