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

221 Zeilen
7.0 KiB
Java

2011-01-08 14:33:54 +01:00
package net.minecraft.server;
import java.util.Random;
// CraftBukkit start
import org.bukkit.craftbukkit.CraftServer;
import org.bukkit.craftbukkit.CraftWorld;
import org.bukkit.craftbukkit.block.CraftBlock;
import org.bukkit.entity.LivingEntity;
2011-01-08 14:33:54 +01:00
import org.bukkit.event.Event.Type;
import org.bukkit.event.block.BlockInteractEvent;
// CraftBukkit end
2011-01-08 14:33:54 +01:00
public class BlockDoor extends Block {
protected BlockDoor(int i, Material material) {
super(i, material);
2011-01-29 22:50:29 +01:00
this.textureId = 97;
if (material == Material.ORE) {
++this.textureId;
2011-01-08 14:33:54 +01:00
}
2011-01-29 22:50:29 +01:00
2011-01-08 14:33:54 +01:00
float f = 0.5F;
float f1 = 1.0F;
2011-01-29 22:50:29 +01:00
this.a(0.5F - f, 0.0F, 0.5F - f, 0.5F + f, f1, 0.5F + f);
2011-01-08 14:33:54 +01:00
}
2011-02-23 03:37:56 +01:00
public int a(int i, int j) {
if (i != 0 && i != 1) {
int k = this.d(j);
if ((k == 0 || k == 2) ^ i <= 3) {
return this.textureId;
} else {
int l = k / 2 + (i & 1 ^ k);
l += (j & 4) / 4;
int i1 = this.textureId - (j & 8) * 2;
if ((l & 1) != 0) {
i1 = -i1;
}
return i1;
}
} else {
return this.textureId;
}
}
2011-01-08 14:33:54 +01:00
public boolean a() {
return false;
}
public AxisAlignedBB d(World world, int i, int j, int k) {
2011-01-29 22:50:29 +01:00
this.a((IBlockAccess) world, i, j, k);
2011-01-08 14:33:54 +01:00
return super.d(world, i, j, k);
}
public void a(IBlockAccess iblockaccess, int i, int j, int k) {
2011-01-29 22:50:29 +01:00
this.c(this.d(iblockaccess.getData(i, j, k)));
2011-01-08 14:33:54 +01:00
}
2011-01-14 14:31:10 +01:00
public void c(int i) {
2011-01-08 14:33:54 +01:00
float f = 0.1875F;
2011-01-29 22:50:29 +01:00
this.a(0.0F, 0.0F, 0.0F, 1.0F, 2.0F, 1.0F);
2011-01-08 14:33:54 +01:00
if (i == 0) {
2011-01-29 22:50:29 +01:00
this.a(0.0F, 0.0F, 0.0F, 1.0F, 1.0F, 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 (i == 1) {
2011-01-29 22:50:29 +01:00
this.a(1.0F - f, 0.0F, 0.0F, 1.0F, 1.0F, 1.0F);
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 (i == 2) {
2011-01-29 22:50:29 +01:00
this.a(0.0F, 0.0F, 1.0F - f, 1.0F, 1.0F, 1.0F);
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 (i == 3) {
2011-01-29 22:50:29 +01:00
this.a(0.0F, 0.0F, 0.0F, f, 1.0F, 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.a(world, i, j, k, entityhuman);
2011-01-08 14:33:54 +01:00
}
2011-01-29 22:50:29 +01:00
public boolean a(World world, int i, int j, int k, EntityHuman entityhuman) {
if (this.material == Material.ORE) {
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);
2011-01-08 14:33:54 +01:00
2011-01-29 22:50:29 +01:00
if ((l & 8) != 0) {
if (world.getTypeId(i, j - 1, k) == this.id) {
this.a(world, i, j - 1, k, entityhuman);
}
2011-01-29 22:50:29 +01:00
return true;
} else {
// CraftBukkit start - Interact Door
CraftWorld craftWorld = ((WorldServer) world).getWorld();
CraftServer server = ((WorldServer) world).getServer();
Type eventType = Type.BLOCK_INTERACT;
CraftBlock block = (CraftBlock) craftWorld.getBlockAt(i, j, k);
LivingEntity who = (entityhuman == null) ? null : (LivingEntity) entityhuman.getBukkitEntity();
BlockInteractEvent event = new BlockInteractEvent(eventType, block, who);
server.getPluginManager().callEvent(event);
// The client updates the doors before the server does it's thing.
2011-01-29 22:50:29 +01:00
// Forcibly send correct data.
if (event.isCancelled()) {
((EntityPlayer) entityhuman).a.b(new Packet53BlockChange(i, j, k, (WorldServer) world));
((EntityPlayer) entityhuman).a.b(new Packet53BlockChange(i, j + 1, k, (WorldServer) world));
return true;
}
// CraftBukkit end
2011-01-29 22:50:29 +01:00
if (world.getTypeId(i, j + 1, k) == this.id) {
world.c(i, j + 1, k, (l ^ 4) + 8);
}
world.c(i, j, k, l ^ 4);
world.b(i, j - 1, k, i, j, k);
if (Math.random() < 0.5D) {
2011-02-23 03:37:56 +01:00
world.a((double) i + 0.5D, (double) j + 0.5D, (double) k + 0.5D, "random.door_open", 1.0F, world.k.nextFloat() * 0.1F + 0.9F);
2011-01-29 22:50:29 +01:00
} else {
2011-02-23 03:37:56 +01:00
world.a((double) i + 0.5D, (double) j + 0.5D, (double) k + 0.5D, "random.door_close", 1.0F, world.k.nextFloat() * 0.1F + 0.9F);
2011-01-29 22:50:29 +01:00
}
return true;
}
2011-01-08 14:33:54 +01:00
}
}
public void a(World world, int i, int j, int k, boolean flag) {
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) {
2011-01-29 22:50:29 +01:00
if (world.getTypeId(i, j - 1, k) == this.id) {
this.a(world, i, j - 1, k, flag);
2011-01-08 14:33:54 +01:00
}
} else {
2011-01-29 22:50:29 +01:00
boolean flag1 = (world.getData(i, j, k) & 4) > 0;
if (flag1 != flag) {
if (world.getTypeId(i, j + 1, k) == this.id) {
world.c(i, j + 1, k, (l ^ 4) + 8);
}
world.c(i, j, k, l ^ 4);
world.b(i, j - 1, k, i, j, k);
if (Math.random() < 0.5D) {
2011-02-23 03:37:56 +01:00
world.a((double) i + 0.5D, (double) j + 0.5D, (double) k + 0.5D, "random.door_open", 1.0F, world.k.nextFloat() * 0.1F + 0.9F);
2011-01-29 22:50:29 +01:00
} else {
2011-02-23 03:37:56 +01:00
world.a((double) i + 0.5D, (double) j + 0.5D, (double) k + 0.5D, "random.door_close", 1.0F, world.k.nextFloat() * 0.1F + 0.9F);
2011-01-29 22:50:29 +01:00
}
}
2011-01-08 14:33:54 +01:00
}
}
2011-02-23 03:37:56 +01:00
public void a(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) {
2011-01-29 22:50:29 +01:00
if (world.getTypeId(i, j - 1, k) != this.id) {
2011-01-14 14:31:10 +01:00
world.e(i, j, k, 0);
2011-01-08 14:33:54 +01:00
}
2011-01-29 22:50:29 +01:00
if (l > 0 && Block.byId[l].c()) {
2011-02-23 03:37:56 +01:00
this.a(world, i, j - 1, k, l);
2011-01-08 14:33:54 +01:00
}
} else {
boolean flag = false;
2011-01-29 22:50:29 +01:00
if (world.getTypeId(i, j + 1, k) != this.id) {
2011-01-14 14:31:10 +01:00
world.e(i, j, k, 0);
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 (!world.d(i, j - 1, k)) {
2011-01-14 14:31:10 +01:00
world.e(i, j, k, 0);
2011-01-08 14:33:54 +01:00
flag = true;
2011-01-29 22:50:29 +01:00
if (world.getTypeId(i, j + 1, k) == this.id) {
2011-01-14 14:31:10 +01:00
world.e(i, j + 1, k, 0);
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 (flag) {
2011-02-23 03:37:56 +01:00
if (!world.isStatic) {
this.b_(world, i, j, k, i1);
}
2011-01-29 22:50:29 +01:00
} else if (l > 0 && Block.byId[l].c()) {
2011-01-14 14:31:10 +01:00
boolean flag1 = world.p(i, j, k) || world.p(i, j + 1, k);
2011-01-08 14:33:54 +01:00
2011-01-29 22:50:29 +01:00
this.a(world, i, j, k, flag1);
2011-01-08 14:33:54 +01:00
}
}
}
public int a(int i, Random random) {
2011-01-29 22:50:29 +01:00
return (i & 8) != 0 ? 0 : (this.material == Material.ORE ? Item.IRON_DOOR.id : Item.WOOD_DOOR.id);
2011-01-08 14:33:54 +01:00
}
public MovingObjectPosition a(World world, int i, int j, int k, Vec3D vec3d, Vec3D vec3d1) {
2011-01-29 22:50:29 +01:00
this.a((IBlockAccess) world, i, j, k);
2011-01-08 14:33:54 +01:00
return super.a(world, i, j, k, vec3d, vec3d1);
}
public int d(int i) {
2011-01-29 22:50:29 +01:00
return (i & 4) == 0 ? i - 1 & 3 : i & 3;
2011-01-08 14:33:54 +01:00
}
public boolean a(World world, int i, int j, int k) {
2011-01-29 22:50:29 +01:00
return j >= 127 ? false : world.d(i, j - 1, k) && super.a(world, i, j, k) && super.a(world, i, j + 1, k);
2011-01-08 14:33:54 +01:00
}
}