3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-18 14:00:05 +01:00
Paper/src/main/java/net/minecraft/server/BlockButton.java

257 Zeilen
7.9 KiB
Java

2011-01-08 14:33:54 +01:00
package net.minecraft.server;
import java.util.Random;
import org.bukkit.event.block.BlockRedstoneEvent; // CraftBukkit
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
}
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;
}
2011-11-20 09:01:14 +01:00
public int d() {
2011-01-08 14:33:54 +01:00
return 20;
}
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 == 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)));
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-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-06-30 00:02:25 +02:00
} else if (l == 3 && world.e(i, j, k - 1)) {
2011-01-08 14:33:54 +01:00
i1 = 3;
2011-06-30 00:02:25 +02:00
} else if (l == 4 && world.e(i + 1, j, k)) {
2011-01-08 14:33:54 +01:00
i1 = 2;
2011-06-30 00:02:25 +02:00
} else if (l == 5 && world.e(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
world.setData(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) {
2011-06-30 00:02:25 +02:00
return world.e(i - 1, j, k) ? 1 : (world.e(i + 1, j, k) ? 2 : (world.e(i, j, k - 1) ? 3 : (world.e(i, j, k + 1) ? 4 : 1)));
2011-01-08 14:33:54 +01:00
}
public void doPhysics(World world, int i, int j, int k, int l) {
2011-02-23 03:37:56 +01:00
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;
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-01-08 14:33:54 +01:00
if (flag) {
2011-11-20 09:01:14 +01:00
this.b(world, i, j, k, world.getData(i, j, k), 0);
world.setTypeId(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) {
if (!this.canPlace(world, i, j, k)) {
2011-11-20 09:01:14 +01:00
this.b(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 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.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-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
org.bukkit.block.Block block = world.getWorld().getBlockAt(i, j, k);
2011-02-23 03:37:56 +01:00
int old = (j1 != 8) ? 1 : 0;
int current = (j1 == 8) ? 1 : 0;
2011-02-23 03:37:56 +01:00
BlockRedstoneEvent eventRedstone = new BlockRedstoneEvent(block, old, current);
world.getServer().getPluginManager().callEvent(eventRedstone);
2011-02-23 03:37:56 +01:00
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
world.setData(i, j, k, i1 + j1);
2011-02-23 03:37:56 +01:00
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, 0.6F);
world.applyPhysics(i, j, k, this.id);
2011-02-23 03:37:56 +01:00
if (i1 == 1) {
world.applyPhysics(i - 1, j, k, this.id);
2011-02-23 03:37:56 +01:00
} else if (i1 == 2) {
world.applyPhysics(i + 1, j, k, this.id);
2011-02-23 03:37:56 +01:00
} else if (i1 == 3) {
world.applyPhysics(i, j, k - 1, this.id);
2011-02-23 03:37:56 +01:00
} else if (i1 == 4) {
world.applyPhysics(i, j, k + 1, this.id);
2011-01-12 18:40:42 +01:00
} else {
world.applyPhysics(i, j - 1, k, this.id);
2011-01-12 18:40:42 +01:00
}
2011-02-23 03:37:56 +01:00
2011-11-20 09:01:14 +01:00
world.c(i, j, k, this.id, this.d());
2011-02-23 03:37:56 +01:00
return true;
2011-01-08 14:33:54 +01:00
}
}
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-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 isPowerSource() {
2011-01-08 14:33:54 +01:00
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
org.bukkit.block.Block block = world.getWorld().getBlockAt(i, j, k);
BlockRedstoneEvent eventRedstone = new BlockRedstoneEvent(block, 1, 0);
world.getServer().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
world.setData(i, j, k, l & 7);
world.applyPhysics(i, j, k, this.id);
2011-01-29 22:50:29 +01:00
int i1 = l & 7;
if (i1 == 1) {
world.applyPhysics(i - 1, j, k, this.id);
2011-01-29 22:50:29 +01:00
} else if (i1 == 2) {
world.applyPhysics(i + 1, j, k, this.id);
2011-01-29 22:50:29 +01:00
} else if (i1 == 3) {
world.applyPhysics(i, j, k - 1, this.id);
2011-01-29 22:50:29 +01:00
} else if (i1 == 4) {
world.applyPhysics(i, j, k + 1, this.id);
2011-01-29 22:50:29 +01:00
} else {
world.applyPhysics(i, j - 1, k, this.id);
2011-01-29 22:50:29 +01:00
}
world.makeSound((double) i + 0.5D, (double) j + 0.5D, (double) k + 0.5D, "random.click", 0.3F, 0.5F);
2011-01-29 22:50:29 +01:00
world.b(i, j, k, i, j, k);
}
2011-01-08 14:33:54 +01:00
}
}
2011-11-20 09:01:14 +01:00
public void f() {
float f = 0.1875F;
float f1 = 0.125F;
float f2 = 0.125F;
this.a(0.5F - f, 0.5F - f1, 0.5F - f2, 0.5F + f, 0.5F + f1, 0.5F + f2);
}
2011-01-08 14:33:54 +01:00
}