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

262 Zeilen
7.7 KiB
Java

2011-01-08 14:33:54 +01:00
package net.minecraft.server;
import org.bukkit.event.block.BlockRedstoneEvent; // CraftBukkit
2011-01-08 14:33:54 +01:00
public class BlockLever extends Block {
protected BlockLever(int i, int j) {
2011-01-29 22:50:29 +01:00
super(i, j, Material.ORIENTABLE);
2012-07-29 09:33:13 +02:00
this.a(CreativeModeTab.d);
2011-01-08 14:33:54 +01:00
}
2011-06-30 00:02:25 +02:00
public AxisAlignedBB e(World world, int i, int j, int k) {
2011-01-08 14:33:54 +01:00
return null;
}
public boolean c() {
2011-01-08 14:33:54 +01:00
return false;
}
public boolean b() {
2011-05-26 14:48:22 +02:00
return false;
}
public int d() {
2011-11-20 09:01:14 +01:00
return 12;
}
2011-05-26 14:48:22 +02:00
public boolean canPlace(World world, int i, int j, int k, int l) {
2012-11-06 13:05:28 +01:00
return l == 0 && world.t(i, j + 1, k) ? true : (l == 1 && world.v(i, j - 1, k) ? true : (l == 2 && world.t(i, j, k + 1) ? true : (l == 3 && world.t(i, j, k - 1) ? true : (l == 4 && world.t(i + 1, j, k) ? true : l == 5 && world.t(i - 1, j, k)))));
2011-05-26 14:48:22 +02:00
}
public boolean canPlace(World world, int i, int j, int k) {
2012-11-06 13:05:28 +01:00
return world.t(i - 1, j, k) ? true : (world.t(i + 1, j, k) ? true : (world.t(i, j, k - 1) ? true : (world.t(i, j, k + 1) ? true : (world.v(i, j - 1, k) ? true : world.t(i, j + 1, k)))));
2011-01-08 14:33:54 +01:00
}
2012-11-06 13:05:28 +01:00
public int getPlacedData(World world, int i, int j, int k, int l, float f, float f1, float f2, int i1) {
2011-01-08 14:33:54 +01:00
int j1 = i1 & 8;
2012-11-06 13:05:28 +01:00
int k1 = i1 & 7;
2011-01-08 14:33:54 +01:00
2012-11-06 13:05:28 +01:00
k1 = -1;
if (l == 0 && world.t(i, j + 1, k)) {
k1 = world.random.nextBoolean() ? 0 : 7;
2012-07-29 09:33:13 +02:00
}
2012-11-06 13:05:28 +01:00
if (l == 1 && world.v(i, j - 1, k)) {
k1 = 5 + world.random.nextInt(2);
2011-01-08 14:33:54 +01:00
}
2011-01-29 22:50:29 +01:00
2012-11-06 13:05:28 +01:00
if (l == 2 && world.t(i, j, k + 1)) {
k1 = 4;
2011-01-08 14:33:54 +01:00
}
2011-01-29 22:50:29 +01:00
2012-11-06 13:05:28 +01:00
if (l == 3 && world.t(i, j, k - 1)) {
k1 = 3;
2011-01-08 14:33:54 +01:00
}
2011-01-29 22:50:29 +01:00
2012-11-06 13:05:28 +01:00
if (l == 4 && world.t(i + 1, j, k)) {
k1 = 2;
2011-01-08 14:33:54 +01:00
}
2011-01-29 22:50:29 +01:00
2012-11-06 13:05:28 +01:00
if (l == 5 && world.t(i - 1, j, k)) {
k1 = 1;
2011-01-08 14:33:54 +01:00
}
2011-01-29 22:50:29 +01:00
2012-11-06 13:05:28 +01:00
return k1 + j1;
2011-01-08 14:33:54 +01:00
}
2012-07-29 09:33:13 +02:00
public static int d(int i) {
switch (i) {
case 0:
return 0;
case 1:
return 5;
case 2:
return 4;
case 3:
return 3;
case 4:
return 2;
case 5:
return 1;
default:
return -1;
}
}
public void doPhysics(World world, int i, int j, int k, int l) {
2012-07-29 09:33:13 +02:00
if (this.l(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;
2012-11-06 13:05:28 +01:00
if (!world.t(i - 1, j, k) && i1 == 1) {
2011-01-08 14:33:54 +01:00
flag = true;
}
2011-01-29 22:50:29 +01:00
2012-11-06 13:05:28 +01:00
if (!world.t(i + 1, j, k) && i1 == 2) {
2011-01-08 14:33:54 +01:00
flag = true;
}
2011-01-29 22:50:29 +01:00
2012-11-06 13:05:28 +01:00
if (!world.t(i, j, k - 1) && i1 == 3) {
2011-01-08 14:33:54 +01:00
flag = true;
}
2011-01-29 22:50:29 +01:00
2012-11-06 13:05:28 +01:00
if (!world.t(i, j, k + 1) && i1 == 4) {
2011-01-08 14:33:54 +01:00
flag = true;
}
2011-01-29 22:50:29 +01:00
2012-11-06 13:05:28 +01:00
if (!world.v(i, j - 1, k) && i1 == 5) {
2011-01-08 14:33:54 +01:00
flag = true;
}
2011-01-29 22:50:29 +01:00
2012-11-06 13:05:28 +01:00
if (!world.v(i, j - 1, k) && i1 == 6) {
2012-07-29 09:33:13 +02:00
flag = true;
}
2012-11-06 13:05:28 +01:00
if (!world.t(i, j + 1, k) && i1 == 0) {
2012-07-29 09:33:13 +02:00
flag = true;
}
2012-11-06 13:05:28 +01:00
if (!world.t(i, j + 1, k) && i1 == 7) {
2011-05-26 14:48:22 +02:00
flag = true;
}
2011-01-08 14:33:54 +01:00
if (flag) {
2012-07-29 09:33:13 +02:00
this.c(world, i, j, k, world.getData(i, j, k), 0);
world.setTypeId(i, j, k, 0);
2011-01-08 14:33:54 +01:00
}
}
}
2012-07-29 09:33:13 +02:00
private boolean l(World world, int i, int j, int k) {
if (!this.canPlace(world, i, j, k)) {
2012-07-29 09:33:13 +02:00
this.c(world, i, j, k, world.getData(i, j, k), 0);
world.setTypeId(i, j, k, 0);
2011-01-08 14:33:54 +01:00
return false;
} else {
return true;
}
}
public void updateShape(IBlockAccess iblockaccess, int i, int j, int k) {
2011-01-29 22:50:29 +01:00
int l = iblockaccess.getData(i, j, k) & 7;
2011-01-08 14:33:54 +01:00
float f = 0.1875F;
if (l == 1) {
2011-01-29 22:50:29 +01:00
this.a(0.0F, 0.2F, 0.5F - f, f * 2.0F, 0.8F, 0.5F + f);
2011-01-08 14:33:54 +01:00
} else if (l == 2) {
2011-01-29 22:50:29 +01:00
this.a(1.0F - f * 2.0F, 0.2F, 0.5F - f, 1.0F, 0.8F, 0.5F + f);
2011-01-08 14:33:54 +01:00
} else if (l == 3) {
2011-01-29 22:50:29 +01:00
this.a(0.5F - f, 0.2F, 0.0F, 0.5F + f, 0.8F, f * 2.0F);
2011-01-08 14:33:54 +01:00
} else if (l == 4) {
2011-01-29 22:50:29 +01:00
this.a(0.5F - f, 0.2F, 1.0F - f * 2.0F, 0.5F + f, 0.8F, 1.0F);
2012-07-29 09:33:13 +02:00
} else if (l != 5 && l != 6) {
if (l == 0 || l == 7) {
f = 0.25F;
this.a(0.5F - f, 0.4F, 0.5F - f, 0.5F + f, 1.0F, 0.5F + f);
}
2011-01-08 14:33:54 +01:00
} else {
2011-01-29 22:50:29 +01:00
f = 0.25F;
this.a(0.5F - f, 0.0F, 0.5F - f, 0.5F + f, 0.6F, 0.5F + f);
2011-01-08 14:33:54 +01:00
}
}
public void attack(World world, int i, int j, int k, EntityHuman entityhuman) {}
2011-01-08 14:33:54 +01:00
2012-07-29 09:33:13 +02:00
public boolean interact(World world, int i, int j, int k, EntityHuman entityhuman, int l, float f, float f1, float f2) {
2011-01-29 22:50:29 +01:00
if (world.isStatic) {
2011-01-08 14:33:54 +01:00
return true;
2011-01-29 22:50:29 +01:00
} else {
2012-07-29 09:33:13 +02:00
int i1 = world.getData(i, j, k);
int j1 = i1 & 7;
int k1 = 8 - (i1 & 8);
2011-01-29 22:50:29 +01:00
// CraftBukkit start - Interact Lever
org.bukkit.block.Block block = world.getWorld().getBlockAt(i, j, k);
2012-07-29 09:33:13 +02:00
int old = (k1 != 8) ? 1 : 0;
int current = (k1 == 8) ? 1 : 0;
2011-02-08 13:54:28 +01:00
BlockRedstoneEvent eventRedstone = new BlockRedstoneEvent(block, old, current);
world.getServer().getPluginManager().callEvent(eventRedstone);
2011-01-29 22:50:29 +01:00
2012-07-29 09:33:13 +02:00
if ((eventRedstone.getNewCurrent() > 0) != (k1 == 8)) {
return true;
}
// CraftBukkit end
2011-02-23 13:56:36 +01:00
2012-07-29 09:33:13 +02:00
world.setData(i, j, k, j1 + k1);
world.e(i, j, k, i, j, k);
2012-07-29 09:33:13 +02:00
world.makeSound((double) i + 0.5D, (double) j + 0.5D, (double) k + 0.5D, "random.click", 0.3F, k1 > 0 ? 0.6F : 0.5F);
world.applyPhysics(i, j, k, this.id);
2012-07-29 09:33:13 +02:00
if (j1 == 1) {
world.applyPhysics(i - 1, j, k, this.id);
2012-07-29 09:33:13 +02:00
} else if (j1 == 2) {
world.applyPhysics(i + 1, j, k, this.id);
2012-07-29 09:33:13 +02:00
} else if (j1 == 3) {
world.applyPhysics(i, j, k - 1, this.id);
2012-07-29 09:33:13 +02:00
} else if (j1 == 4) {
world.applyPhysics(i, j, k + 1, this.id);
2012-07-29 09:33:13 +02:00
} else if (j1 != 5 && j1 != 6) {
if (j1 == 0 || j1 == 7) {
world.applyPhysics(i, j + 1, k, this.id);
}
} else {
world.applyPhysics(i, j - 1, k, this.id);
}
2011-01-08 14:33:54 +01:00
return true;
}
}
2012-07-29 09:33:13 +02:00
public void remove(World world, int i, int j, int k, int l, int i1) {
if ((i1 & 8) > 0) {
world.applyPhysics(i, j, k, this.id);
2012-07-29 09:33:13 +02:00
int j1 = i1 & 7;
2011-01-08 14:33:54 +01:00
2012-07-29 09:33:13 +02:00
if (j1 == 1) {
world.applyPhysics(i - 1, j, k, this.id);
2012-07-29 09:33:13 +02:00
} else if (j1 == 2) {
world.applyPhysics(i + 1, j, k, this.id);
2012-07-29 09:33:13 +02:00
} else if (j1 == 3) {
world.applyPhysics(i, j, k - 1, this.id);
2012-07-29 09:33:13 +02:00
} else if (j1 == 4) {
world.applyPhysics(i, j, k + 1, this.id);
2012-07-29 09:33:13 +02:00
} else if (j1 != 5 && j1 != 6) {
if (j1 == 0 || j1 == 7) {
world.applyPhysics(i, j + 1, k, this.id);
}
2011-01-08 14:33:54 +01:00
} else {
world.applyPhysics(i, j - 1, k, this.id);
2011-01-08 14:33:54 +01:00
}
}
2011-01-29 22:50:29 +01:00
2012-07-29 09:33:13 +02:00
super.remove(world, i, j, k, l, i1);
2011-01-08 14:33:54 +01:00
}
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
}
public boolean c(IBlockAccess iblockaccess, int i, int j, int k, int l) {
int i1 = iblockaccess.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
2012-07-29 09:33:13 +02:00
return j1 == 0 && l == 0 ? true : (j1 == 7 && l == 0 ? true : (j1 == 6 && l == 1 ? true : (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 isPowerSource() {
2011-01-08 14:33:54 +01:00
return true;
}
}