diff options
author | durron597 <martin.jared@gmail.com> | 2011-01-08 08:33:54 -0500 |
---|---|---|
committer | durron597 <martin.jared@gmail.com> | 2011-01-08 08:33:54 -0500 |
commit | eb4b30185fb79aa07fc74e955134df1e5be35859 (patch) | |
tree | 91196cbe0f4a941ae914fd987ac1967330fb6adc /src/main/java/net/minecraft/server/BlockFurnace.java | |
parent | fab66092e2e5379c4f3fa9cf37f37320c8ac0e18 (diff) | |
download | craftbukkit-eb4b30185fb79aa07fc74e955134df1e5be35859.tar craftbukkit-eb4b30185fb79aa07fc74e955134df1e5be35859.tar.gz craftbukkit-eb4b30185fb79aa07fc74e955134df1e5be35859.tar.lz craftbukkit-eb4b30185fb79aa07fc74e955134df1e5be35859.tar.xz craftbukkit-eb4b30185fb79aa07fc74e955134df1e5be35859.zip |
Added BLOCK_INTERACT event
Diffstat (limited to 'src/main/java/net/minecraft/server/BlockFurnace.java')
-rw-r--r-- | src/main/java/net/minecraft/server/BlockFurnace.java | 121 |
1 files changed, 121 insertions, 0 deletions
diff --git a/src/main/java/net/minecraft/server/BlockFurnace.java b/src/main/java/net/minecraft/server/BlockFurnace.java new file mode 100644 index 00000000..64df942c --- /dev/null +++ b/src/main/java/net/minecraft/server/BlockFurnace.java @@ -0,0 +1,121 @@ +package net.minecraft.server; + + +import java.util.Random; + +import org.bukkit.craftbukkit.CraftBlock; +import org.bukkit.craftbukkit.CraftPlayer; +import org.bukkit.event.Event.Type; +import org.bukkit.event.block.BlockInteractEvent; + + +public class BlockFurnace extends BlockContainer { + + private final boolean a; + + protected BlockFurnace(int i, boolean flag) { + super(i, Material.d); + a = flag; + bg = 45; + } + + public int a(int i, Random random) { + return Block.aB.bh; + } + + public void e(World world, int i, int j, int k) { + super.e(world, i, j, k); + g(world, i, j, k); + } + + private void g(World world, int i, int j, int k) { + int l = world.a(i, j, k - 1); + int i1 = world.a(i, j, k + 1); + int j1 = world.a(i - 1, j, k); + int k1 = world.a(i + 1, j, k); + byte byte0 = 3; + + if (Block.o[l] && !Block.o[i1]) { + byte0 = 3; + } + if (Block.o[i1] && !Block.o[l]) { + byte0 = 2; + } + if (Block.o[j1] && !Block.o[k1]) { + byte0 = 5; + } + if (Block.o[k1] && !Block.o[j1]) { + byte0 = 4; + } + world.b(i, j, k, byte0); + } + + public int a(int i) { + if (i == 1) { + return Block.t.bh; + } + if (i == 0) { + return Block.t.bh; + } + if (i == 3) { + return bg - 1; + } else { + return bg; + } + } + + public boolean a(World world, int i, int j, int k, EntityPlayer entityplayer) { + if (world.z) { + return true; + } else { + // Craftbukkit start - Interact Furnace + CraftBlock block = (CraftBlock) ((WorldServer) world).getWorld().getBlockAt(i, j, k); + CraftPlayer player = new CraftPlayer(((WorldServer) world).getServer(), (EntityPlayerMP) entityplayer); + BlockInteractEvent bie = new BlockInteractEvent(Type.BLOCK_INTERACT, block, player); + + ((WorldServer) world).getServer().getPluginManager().callEvent(bie); + + if (bie.isCancelled()) return true; + + TileEntityFurnace tileentityfurnace = (TileEntityFurnace) world.l(i, j, k); + + entityplayer.a(tileentityfurnace); + return true; + } + } + + public static void a(boolean flag, World world, int i, int j, int k) { + int l = world.b(i, j, k); + TileEntity tileentity = world.l(i, j, k); + + if (flag) { + world.d(i, j, k, Block.aC.bh); + } else { + world.d(i, j, k, Block.aB.bh); + } + world.b(i, j, k, l); + world.a(i, j, k, tileentity); + } + + protected TileEntity a_() { + return new TileEntityFurnace(); + } + + public void a(World world, int i, int j, int k, EntityLiving entityliving) { + int l = MathHelper.b((double) ((entityliving.v * 4F) / 360F) + 0.5D) & 3; + + if (l == 0) { + world.b(i, j, k, 2); + } + if (l == 1) { + world.b(i, j, k, 5); + } + if (l == 2) { + world.b(i, j, k, 3); + } + if (l == 3) { + world.b(i, j, k, 4); + } + } +} + |