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

314 Zeilen
9.6 KiB
Java

2011-01-08 14:33:54 +01:00
package net.minecraft.server;
import java.util.List;
2011-01-08 14:33:54 +01:00
import java.util.Random;
// CraftBukkit start
import org.bukkit.event.block.BlockRedstoneEvent;
import org.bukkit.event.entity.EntityInteractEvent;
// CraftBukkit end
2011-01-08 14:33:54 +01:00
2013-03-13 23:33:27 +01:00
public abstract class BlockButtonAbstract extends Block {
2011-01-08 14:33:54 +01:00
private final boolean a;
2013-03-13 23:33:27 +01:00
protected BlockButtonAbstract(int i, boolean flag) {
super(i, Material.ORIENTABLE);
2012-07-29 09:33:13 +02:00
this.b(true);
this.a(CreativeModeTab.d);
this.a = flag;
2011-01-08 14:33:54 +01:00
}
2013-03-13 23:33:27 +01:00
public AxisAlignedBB b(World world, int i, int j, int k) {
2011-01-08 14:33:54 +01:00
return null;
}
2013-03-13 23:33:27 +01:00
public int a(World world) {
return this.a ? 30 : 20;
2011-01-08 14:33:54 +01:00
}
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 boolean canPlace(World world, int i, int j, int k, int l) {
2013-03-13 23:33:27 +01:00
return l == 2 && world.u(i, j, k + 1) ? true : (l == 3 && world.u(i, j, k - 1) ? true : (l == 4 && world.u(i + 1, j, k) ? true : l == 5 && world.u(i - 1, j, k)));
2011-05-26 14:48:22 +02:00
}
public boolean canPlace(World world, int i, int j, int k) {
2013-03-13 23:33:27 +01:00
return world.u(i - 1, j, k) ? true : (world.u(i + 1, j, k) ? true : (world.u(i, j, k - 1) ? true : world.u(i, j, k + 1)));
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) {
int j1 = world.getData(i, j, k);
int k1 = j1 & 8;
j1 &= 7;
2013-03-13 23:33:27 +01:00
if (l == 2 && world.u(i, j, k + 1)) {
2012-11-06 13:05:28 +01:00
j1 = 4;
2013-03-13 23:33:27 +01:00
} else if (l == 3 && world.u(i, j, k - 1)) {
2012-11-06 13:05:28 +01:00
j1 = 3;
2013-03-13 23:33:27 +01:00
} else if (l == 4 && world.u(i + 1, j, k)) {
2012-11-06 13:05:28 +01:00
j1 = 2;
2013-03-13 23:33:27 +01:00
} else if (l == 5 && world.u(i - 1, j, k)) {
2012-11-06 13:05:28 +01:00
j1 = 1;
2011-02-23 03:37:56 +01:00
} else {
2013-03-13 23:33:27 +01:00
j1 = this.k(world, i, j, k);
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 j1 + k1;
2011-01-08 14:33:54 +01:00
}
2013-03-13 23:33:27 +01:00
private int k(World world, int i, int j, int k) {
return world.u(i - 1, j, k) ? 1 : (world.u(i + 1, j, k) ? 2 : (world.u(i, j, k - 1) ? 3 : (world.u(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) {
2013-03-13 23:33:27 +01:00
if (this.m(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;
2013-03-13 23:33:27 +01:00
if (!world.u(i - 1, j, k) && i1 == 1) {
2011-01-08 14:33:54 +01:00
flag = true;
}
2011-01-29 22:50:29 +01:00
2013-03-13 23:33:27 +01:00
if (!world.u(i + 1, j, k) && i1 == 2) {
2011-01-08 14:33:54 +01:00
flag = true;
}
2011-01-29 22:50:29 +01:00
2013-03-13 23:33:27 +01:00
if (!world.u(i, j, k - 1) && i1 == 3) {
2011-01-08 14:33:54 +01:00
flag = true;
}
2011-01-29 22:50:29 +01:00
2013-03-13 23:33:27 +01:00
if (!world.u(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) {
2012-07-29 09:33:13 +02:00
this.c(world, i, j, k, world.getData(i, j, k), 0);
2013-03-13 23:33:27 +01:00
world.setAir(i, j, k);
2011-01-08 14:33:54 +01:00
}
}
}
2013-03-13 23:33:27 +01:00
private boolean m(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);
2013-03-13 23:33:27 +01:00
world.setAir(i, j, k);
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);
2013-03-13 23:33:27 +01:00
this.d(l);
}
2013-03-13 23:33:27 +01:00
private void d(int i) {
int j = i & 7;
boolean flag = (i & 8) > 0;
2011-01-08 14:33:54 +01:00
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
if (j == 1) {
2011-01-29 22:50:29 +01:00
this.a(0.0F, f, 0.5F - f2, f3, f1, 0.5F + f2);
} else if (j == 2) {
2011-01-29 22:50:29 +01:00
this.a(1.0F - f3, f, 0.5F - f2, 1.0F, f1, 0.5F + f2);
} else if (j == 3) {
2011-01-29 22:50:29 +01:00
this.a(0.5F - f2, f, 0.0F, 0.5F + f2, f1, f3);
} else if (j == 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
}
}
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) {
int i1 = world.getData(i, j, k);
int j1 = i1 & 7;
int k1 = 8 - (i1 & 8);
2011-01-29 22:50:29 +01:00
2012-07-29 09:33:13 +02:00
if (k1 == 0) {
2011-02-23 03:37:56 +01:00
return true;
} else {
2011-02-23 13:56:36 +01:00
// CraftBukkit start
org.bukkit.block.Block block = world.getWorld().getBlockAt(i, j, k);
2013-03-13 23:33:27 +01:00
int old = (k1 != 8) ? 15 : 0;
int current = (k1 == 8) ? 15 : 0;
2011-02-23 03:37:56 +01:00
BlockRedstoneEvent eventRedstone = new BlockRedstoneEvent(block, old, current);
world.getServer().getPluginManager().callEvent(eventRedstone);
2012-07-29 09:33:13 +02:00
if ((eventRedstone.getNewCurrent() > 0) != (k1 == 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
2013-03-13 23:33:27 +01:00
world.setData(i, j, k, j1 + k1, 3);
world.g(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);
this.d(world, i, j, k, j1);
2013-03-13 23:33:27 +01:00
world.a(i, j, k, this.id, this.a(world));
2011-02-23 03:37:56 +01:00
return true;
2011-01-08 14:33:54 +01:00
}
}
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) {
int j1 = i1 & 7;
2011-01-08 14:33:54 +01:00
this.d(world, i, j, k, j1);
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
}
2013-03-13 23:33:27 +01:00
public int b(IBlockAccess iblockaccess, int i, int j, int k, int l) {
return (iblockaccess.getData(i, j, k) & 8) > 0 ? 15 : 0;
2011-01-08 14:33:54 +01:00
}
2013-03-13 23:33:27 +01:00
public int 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) {
2013-03-13 23:33:27 +01:00
return 0;
2011-01-29 22:50:29 +01:00
} else {
int j1 = i1 & 7;
2011-01-08 14:33:54 +01:00
2013-03-13 23:33:27 +01:00
return j1 == 5 && l == 1 ? 15 : (j1 == 4 && l == 2 ? 15 : (j1 == 3 && l == 3 ? 15 : (j1 == 2 && l == 4 ? 15 : (j1 == 1 && l == 5 ? 15 : 0))));
2011-01-08 14:33:54 +01:00
}
}
public boolean isPowerSource() {
2011-01-08 14:33:54 +01:00
return true;
}
2013-03-13 23:33:27 +01:00
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);
2013-03-13 23:33:27 +01:00
BlockRedstoneEvent eventRedstone = new BlockRedstoneEvent(block, 15, 0);
world.getServer().getPluginManager().callEvent(eventRedstone);
2012-07-29 09:33:13 +02:00
if (eventRedstone.getNewCurrent() > 0) {
return;
}
2011-02-23 13:56:36 +01:00
// CraftBukkit end
2011-02-20 17:40:40 +01:00
if (this.a) {
2013-03-13 23:33:27 +01:00
this.n(world, i, j, k);
2011-01-29 22:50:29 +01:00
} else {
2013-03-13 23:33:27 +01:00
world.setData(i, j, k, l & 7, 3);
int i1 = l & 7;
2011-01-29 22:50:29 +01:00
this.d(world, i, j, k, i1);
world.makeSound((double) i + 0.5D, (double) j + 0.5D, (double) k + 0.5D, "random.click", 0.3F, 0.5F);
2013-03-13 23:33:27 +01:00
world.g(i, j, k, i, j, k);
}
2011-01-29 22:50:29 +01:00
}
2011-01-08 14:33:54 +01:00
}
}
2011-11-20 09:01:14 +01:00
2013-03-13 23:33:27 +01:00
public void g() {
2011-11-20 09:01:14 +01:00
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);
}
public void a(World world, int i, int j, int k, Entity entity) {
if (!world.isStatic) {
if (this.a) {
if ((world.getData(i, j, k) & 8) == 0) {
2013-03-13 23:33:27 +01:00
this.n(world, i, j, k);
}
}
}
}
2013-03-13 23:33:27 +01:00
private void n(World world, int i, int j, int k) {
int l = world.getData(i, j, k);
int i1 = l & 7;
boolean flag = (l & 8) != 0;
2013-03-13 23:33:27 +01:00
this.d(l);
List list = world.a(EntityArrow.class, AxisAlignedBB.a().a((double) i + this.minX, (double) j + this.minY, (double) k + this.minZ, (double) i + this.maxX, (double) j + this.maxY, (double) k + this.maxZ));
boolean flag1 = !list.isEmpty();
// CraftBukkit start - Call interact event when arrows turn on wooden buttons
if (flag != flag1 && flag1) {
org.bukkit.block.Block block = world.getWorld().getBlockAt(i, j, k);
boolean allowed = false;
// If all of the events are cancelled block the button press, else allow
for (Object object : list) {
if (object != null) {
EntityInteractEvent event = new EntityInteractEvent(((Entity) object).getBukkitEntity(), block);
world.getServer().getPluginManager().callEvent(event);
if (!event.isCancelled()) {
allowed = true;
break;
}
}
}
if (!allowed) {
return;
}
}
// CraftBukkit end
if (flag1 && !flag) {
2013-03-13 23:33:27 +01:00
world.setData(i, j, k, i1 | 8, 3);
this.d(world, i, j, k, i1);
2013-03-13 23:33:27 +01:00
world.g(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);
}
if (!flag1 && flag) {
2013-03-13 23:33:27 +01:00
world.setData(i, j, k, i1, 3);
this.d(world, i, j, k, i1);
2013-03-13 23:33:27 +01:00
world.g(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.5F);
}
if (flag1) {
2013-03-13 23:33:27 +01:00
world.a(i, j, k, this.id, this.a(world));
}
}
private void d(World world, int i, int j, int k, int l) {
world.applyPhysics(i, j, k, this.id);
if (l == 1) {
world.applyPhysics(i - 1, j, k, this.id);
} else if (l == 2) {
world.applyPhysics(i + 1, j, k, this.id);
} else if (l == 3) {
world.applyPhysics(i, j, k - 1, this.id);
} else if (l == 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
}