summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/BlockFurnace.java
diff options
context:
space:
mode:
authorTahg <tahgtahv@gmail.com>2011-01-09 15:01:25 -0500
committerTahg <tahgtahv@gmail.com>2011-01-09 15:01:25 -0500
commitd3b87965c3a90386abb21811e11ad8c5a2d62fce (patch)
tree75315bcdf4510ab5938b63f0d26a6929459d6ff2 /src/main/java/net/minecraft/server/BlockFurnace.java
parent45c70131167d6757956f2dd5e0f77cea6620e0b5 (diff)
parent3d8263f9f89dd94c2abdd3293ab62ca3dd0d8f05 (diff)
downloadcraftbukkit-d3b87965c3a90386abb21811e11ad8c5a2d62fce.tar
craftbukkit-d3b87965c3a90386abb21811e11ad8c5a2d62fce.tar.gz
craftbukkit-d3b87965c3a90386abb21811e11ad8c5a2d62fce.tar.lz
craftbukkit-d3b87965c3a90386abb21811e11ad8c5a2d62fce.tar.xz
craftbukkit-d3b87965c3a90386abb21811e11ad8c5a2d62fce.zip
Merge branch 'master' of https://github.com/Bukkit/CraftBukkit
Diffstat (limited to 'src/main/java/net/minecraft/server/BlockFurnace.java')
-rw-r--r--src/main/java/net/minecraft/server/BlockFurnace.java121
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);
+ }
+ }
+}
+