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/BlockPressurePlate.java

185 Zeilen
5.9 KiB
Java

2011-01-08 14:33:54 +01:00
package net.minecraft.server;
import java.util.List;
import java.util.Random;
// CraftBukkit start
import org.bukkit.craftbukkit.event.CraftEventFactory;
2011-01-12 18:40:42 +01:00
import org.bukkit.event.block.BlockRedstoneEvent;
2011-04-04 06:48:40 +02:00
import org.bukkit.event.entity.EntityInteractEvent;
// CraftBukkit end
2011-01-08 14:33:54 +01:00
public class BlockPressurePlate extends Block {
private EnumMobType a;
2011-05-26 14:48:22 +02:00
protected BlockPressurePlate(int i, int j, EnumMobType enummobtype, Material material) {
super(i, j, material);
2011-01-29 22:50:29 +01:00
this.a = enummobtype;
this.a(true);
2011-01-08 14:33:54 +01:00
float f = 0.0625F;
2011-01-29 22:50:29 +01:00
this.a(f, 0.0F, f, 1.0F - f, 0.03125F, 1.0F - f);
2011-01-08 14:33:54 +01:00
}
2011-05-26 14:48:22 +02:00
public int c() {
2011-01-08 14:33:54 +01:00
return 20;
}
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) {
2011-06-30 00:02:25 +02:00
return world.e(i, j - 1, k);
2011-01-08 14:33:54 +01:00
}
2011-06-30 00:02:25 +02:00
public void c(World world, int i, int j, int k) {}
2011-01-08 14:33:54 +01:00
public void doPhysics(World world, int i, int j, int k, int l) {
2011-01-08 14:33:54 +01:00
boolean flag = false;
2011-06-30 00:02:25 +02:00
if (!world.e(i, j - 1, k)) {
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-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
}
}
public void a(World world, int i, int j, int k, Random random) {
2011-01-29 22:50:29 +01:00
if (!world.isStatic) {
if (world.getData(i, j, k) != 0) {
this.g(world, i, j, k);
}
2011-01-08 14:33:54 +01:00
}
}
public void a(World world, int i, int j, int k, Entity entity) {
2011-01-29 22:50:29 +01:00
if (!world.isStatic) {
if (world.getData(i, j, k) != 1) {
this.g(world, i, j, k);
}
2011-01-08 14:33:54 +01:00
}
}
private void g(World world, int i, int j, int k) {
2011-01-29 22:50:29 +01:00
boolean flag = world.getData(i, j, k) == 1;
2011-01-08 14:33:54 +01:00
boolean flag1 = false;
float f = 0.125F;
List list = null;
2011-01-29 22:50:29 +01:00
if (this.a == EnumMobType.EVERYTHING) {
list = world.b((Entity) null, AxisAlignedBB.b((double) ((float) i + f), (double) j, (double) ((float) k + f), (double) ((float) (i + 1) - f), (double) j + 0.25D, (double) ((float) (k + 1) - f)));
2011-01-08 14:33:54 +01:00
}
2011-01-29 22:50:29 +01:00
if (this.a == EnumMobType.MOBS) {
list = world.a(EntityLiving.class, AxisAlignedBB.b((double) ((float) i + f), (double) j, (double) ((float) k + f), (double) ((float) (i + 1) - f), (double) j + 0.25D, (double) ((float) (k + 1) - f)));
2011-01-08 14:33:54 +01:00
}
2011-01-29 22:50:29 +01:00
if (this.a == EnumMobType.PLAYERS) {
list = world.a(EntityHuman.class, AxisAlignedBB.b((double) ((float) i + f), (double) j, (double) ((float) k + f), (double) ((float) (i + 1) - f), (double) j + 0.25D, (double) ((float) (k + 1) - f)));
2011-01-08 14:33:54 +01:00
}
2011-01-29 22:50:29 +01:00
2011-01-08 14:33:54 +01:00
if (list.size() > 0) {
flag1 = true;
}
2011-01-14 14:31:10 +01:00
// CraftBukkit start - Interact Pressure Plate
org.bukkit.World bworld = world.getWorld();
org.bukkit.plugin.PluginManager manager = world.getServer().getPluginManager();
if (flag != flag1) {
if (flag1) {
for (Object object: list) {
2011-04-04 06:48:40 +02:00
if (object != null) {
org.bukkit.event.Cancellable cancellable;
2011-06-12 00:02:58 +02:00
2011-04-04 06:48:40 +02:00
if (object instanceof EntityHuman) {
cancellable = CraftEventFactory.callPlayerInteractEvent((EntityHuman) object, org.bukkit.event.block.Action.PHYSICAL, i, j, k, -1, null);
2011-06-12 00:02:58 +02:00
} else if (object instanceof Entity) {
cancellable = new EntityInteractEvent(((Entity) object).getBukkitEntity(), bworld.getBlockAt(i, j, k));
manager.callEvent((EntityInteractEvent) cancellable);
2011-06-12 00:02:58 +02:00
} else {
continue;
2011-04-04 06:48:40 +02:00
}
if (cancellable.isCancelled()) {
return;
}
}
}
}
BlockRedstoneEvent eventRedstone = new BlockRedstoneEvent(bworld.getBlockAt(i, j, k), flag ? 1 : 0, flag1 ? 1 : 0);
manager.callEvent(eventRedstone);
flag1 = eventRedstone.getNewCurrent() > 0;
}
2011-02-23 13:56:36 +01:00
// CraftBukkit end
2011-01-08 14:33:54 +01:00
if (flag1 && !flag) {
world.setData(i, j, k, 1);
world.applyPhysics(i, j, k, this.id);
world.applyPhysics(i, j - 1, k, this.id);
2011-01-08 14:33:54 +01:00
world.b(i, j, k, i, j, k);
world.makeSound((double) i + 0.5D, (double) j + 0.1D, (double) k + 0.5D, "random.click", 0.3F, 0.6F);
2011-01-08 14:33:54 +01:00
}
2011-01-29 22:50:29 +01:00
2011-01-08 14:33:54 +01:00
if (!flag1 && flag) {
world.setData(i, j, k, 0);
world.applyPhysics(i, j, k, this.id);
world.applyPhysics(i, j - 1, k, this.id);
2011-01-08 14:33:54 +01:00
world.b(i, j, k, i, j, k);
world.makeSound((double) i + 0.5D, (double) j + 0.1D, (double) k + 0.5D, "random.click", 0.3F, 0.5F);
2011-01-08 14:33:54 +01:00
}
2011-01-29 22:50:29 +01:00
2011-01-08 14:33:54 +01:00
if (flag1) {
2011-05-26 14:48:22 +02:00
world.c(i, j, k, this.id, this.c());
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 > 0) {
world.applyPhysics(i, j, k, this.id);
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
}
public void a(IBlockAccess iblockaccess, int i, int j, int k) {
2011-01-29 22:50:29 +01:00
boolean flag = iblockaccess.getData(i, j, k) == 1;
2011-01-08 14:33:54 +01:00
float f = 0.0625F;
if (flag) {
2011-01-29 22:50:29 +01:00
this.a(f, 0.0F, f, 1.0F - f, 0.03125F, 1.0F - f);
2011-01-08 14:33:54 +01:00
} else {
2011-01-29 22:50:29 +01:00
this.a(f, 0.0F, f, 1.0F - f, 0.0625F, 1.0F - f);
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) > 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
return world.getData(i, j, k) == 0 ? false : l == 1;
2011-01-08 14:33:54 +01:00
}
public boolean isPowerSource() {
2011-01-08 14:33:54 +01:00
return true;
}
}