3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-17 21:40:08 +01:00
Paper/src/main/java/net/minecraft/server/BlockLever.java

217 Zeilen
6.5 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);
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 a() {
return false;
}
2011-05-26 14:48:22 +02:00
public boolean b() {
return false;
}
public boolean canPlace(World world, int i, int j, int k, int l) {
2011-06-30 00:02:25 +02:00
return l == 1 && world.e(i, j - 1, k) ? true : (l == 2 && world.e(i, j, k + 1) ? true : (l == 3 && world.e(i, j, k - 1) ? true : (l == 4 && world.e(i + 1, j, k) ? true : l == 5 && world.e(i - 1, j, k))));
2011-05-26 14:48:22 +02:00
}
public boolean canPlace(World world, int i, int j, int k) {
2011-06-30 00:02:25 +02:00
return world.e(i - 1, j, k) ? true : (world.e(i + 1, j, k) ? true : (world.e(i, j, k - 1) ? true : (world.e(i, j, k + 1) ? true : world.e(i, j - 1, k))));
2011-01-08 14:33:54 +01:00
}
public void postPlace(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;
2011-05-26 14:48:22 +02:00
i1 = -1;
2011-06-30 00:02:25 +02:00
if (l == 1 && world.e(i, j - 1, k)) {
i1 = 5 + world.random.nextInt(2);
2011-01-08 14:33:54 +01:00
}
2011-01-29 22:50:29 +01:00
2011-06-30 00:02:25 +02:00
if (l == 2 && world.e(i, j, k + 1)) {
2011-01-08 14:33:54 +01:00
i1 = 4;
}
2011-01-29 22:50:29 +01:00
2011-06-30 00:02:25 +02:00
if (l == 3 && world.e(i, j, k - 1)) {
2011-01-08 14:33:54 +01:00
i1 = 3;
}
2011-01-29 22:50:29 +01:00
2011-06-30 00:02:25 +02:00
if (l == 4 && world.e(i + 1, j, k)) {
2011-01-08 14:33:54 +01:00
i1 = 2;
}
2011-01-29 22:50:29 +01:00
2011-06-30 00:02:25 +02:00
if (l == 5 && world.e(i - 1, j, k)) {
2011-01-08 14:33:54 +01:00
i1 = 1;
}
2011-01-29 22:50:29 +01:00
2011-05-26 14:48:22 +02:00
if (i1 == -1) {
2011-06-30 00:02:25 +02:00
this.g(world, i, j, k, world.getData(i, j, k));
2011-05-26 14:48:22 +02:00
world.setTypeId(i, j, k, 0);
} else {
world.setData(i, j, k, i1 + j1);
}
2011-01-08 14:33:54 +01:00
}
public void doPhysics(World world, int i, int j, int k, int l) {
2011-01-29 22:50:29 +01:00
if (this.g(world, i, j, k)) {
int i1 = world.getData(i, j, k) & 7;
2011-01-08 14:33:54 +01:00
boolean flag = false;
2011-06-30 00:02:25 +02:00
if (!world.e(i - 1, j, k) && i1 == 1) {
2011-01-08 14:33:54 +01:00
flag = true;
}
2011-01-29 22:50:29 +01:00
2011-06-30 00:02:25 +02:00
if (!world.e(i + 1, j, k) && i1 == 2) {
2011-01-08 14:33:54 +01:00
flag = true;
}
2011-01-29 22:50:29 +01:00
2011-06-30 00:02:25 +02:00
if (!world.e(i, j, k - 1) && i1 == 3) {
2011-01-08 14:33:54 +01:00
flag = true;
}
2011-01-29 22:50:29 +01:00
2011-06-30 00:02:25 +02:00
if (!world.e(i, j, k + 1) && i1 == 4) {
2011-01-08 14:33:54 +01:00
flag = true;
}
2011-01-29 22:50:29 +01:00
2011-06-30 00:02:25 +02:00
if (!world.e(i, j - 1, k) && i1 == 5) {
2011-01-08 14:33:54 +01:00
flag = true;
}
2011-01-29 22:50:29 +01:00
2011-06-30 00:02:25 +02:00
if (!world.e(i, j - 1, k) && i1 == 6) {
2011-05-26 14:48:22 +02:00
flag = true;
}
2011-01-08 14:33:54 +01:00
if (flag) {
2011-06-30 00:02:25 +02:00
this.g(world, i, j, k, world.getData(i, j, k));
world.setTypeId(i, j, k, 0);
2011-01-08 14:33:54 +01:00
}
}
}
private boolean g(World world, int i, int j, int k) {
if (!this.canPlace(world, i, j, k)) {
2011-06-30 00:02:25 +02:00
this.g(world, i, j, k, world.getData(i, j, k));
world.setTypeId(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) & 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);
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
}
}
2011-01-29 22:50:29 +01:00
public void b(World world, int i, int j, int k, EntityHuman entityhuman) {
this.interact(world, i, j, k, entityhuman);
2011-01-08 14:33:54 +01:00
}
public boolean interact(World world, int i, int j, int k, EntityHuman entityhuman) {
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 {
int l = world.getData(i, j, k);
int i1 = l & 7;
int j1 = 8 - (l & 8);
2011-01-29 22:50:29 +01:00
// CraftBukkit start - Interact Lever
org.bukkit.block.Block block = world.getWorld().getBlockAt(i, j, k);
2011-01-29 22:50:29 +01:00
int old = (j1 != 8) ? 1 : 0;
int current = (j1 == 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
if ((eventRedstone.getNewCurrent() > 0) != (j1 == 8)) {
return true;
}
// CraftBukkit end
2011-02-23 13:56:36 +01:00
world.setData(i, j, k, i1 + j1);
world.b(i, j, k, i, j, k);
world.makeSound((double) i + 0.5D, (double) j + 0.5D, (double) k + 0.5D, "random.click", 0.3F, j1 > 0 ? 0.6F : 0.5F);
world.applyPhysics(i, j, k, this.id);
if (i1 == 1) {
world.applyPhysics(i - 1, j, k, this.id);
} else if (i1 == 2) {
world.applyPhysics(i + 1, j, k, this.id);
} else if (i1 == 3) {
world.applyPhysics(i, j, k - 1, this.id);
} else if (i1 == 4) {
world.applyPhysics(i, j, k + 1, this.id);
} else {
world.applyPhysics(i, j - 1, k, this.id);
}
2011-01-08 14:33:54 +01:00
return true;
}
}
public void remove(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) {
world.applyPhysics(i, j, k, this.id);
2011-01-08 14:33:54 +01:00
int i1 = l & 7;
if (i1 == 1) {
world.applyPhysics(i - 1, j, k, this.id);
2011-01-08 14:33:54 +01:00
} else if (i1 == 2) {
world.applyPhysics(i + 1, j, k, this.id);
2011-01-08 14:33:54 +01:00
} else if (i1 == 3) {
world.applyPhysics(i, j, k - 1, this.id);
2011-01-08 14:33:54 +01:00
} else if (i1 == 4) {
world.applyPhysics(i, j, k + 1, 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
super.remove(world, i, j, k);
2011-01-08 14:33:54 +01:00
}
2011-05-26 14:48:22 +02:00
public boolean a(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-06-30 00:02:25 +02:00
public boolean 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
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-05-26 14:48:22 +02:00
return 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;
}
}