2011-01-14 20:44:11 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
public class TileEntityFurnace extends TileEntity implements IInventory {
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
private ItemStack[] h = new ItemStack[3];
|
|
|
|
public int e = 0;
|
|
|
|
public int f = 0;
|
|
|
|
public int g = 0;
|
2011-01-14 20:44:11 +01:00
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
public ItemStack[] getContents() {
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public TileEntityFurnace() {}
|
2011-01-14 20:44:11 +01:00
|
|
|
|
|
|
|
public int h_() {
|
2011-01-29 22:50:29 +01:00
|
|
|
return this.h.length;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public ItemStack a(int i) {
|
|
|
|
return this.h[i];
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public ItemStack b(int i, int j) {
|
|
|
|
if (this.h[i] != null) {
|
|
|
|
ItemStack itemstack;
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (this.h[i].count <= j) {
|
|
|
|
itemstack = this.h[i];
|
|
|
|
this.h[i] = null;
|
2011-01-14 20:44:11 +01:00
|
|
|
return itemstack;
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
|
|
|
itemstack = this.h[i].a(j);
|
|
|
|
if (this.h[i].count == 0) {
|
|
|
|
this.h[i] = null;
|
|
|
|
}
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
return itemstack;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public void a(int i, ItemStack itemstack) {
|
|
|
|
this.h[i] = itemstack;
|
|
|
|
if (itemstack != null && itemstack.count > this.c()) {
|
|
|
|
itemstack.count = this.c();
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public String b() {
|
|
|
|
return "Furnace";
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
|
|
|
super.a(nbttagcompound);
|
|
|
|
NBTTagList nbttaglist = nbttagcompound.k("Items");
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
this.h = new ItemStack[this.h_()];
|
|
|
|
|
|
|
|
for (int i = 0; i < nbttaglist.b(); ++i) {
|
|
|
|
NBTTagCompound nbttagcompound1 = (NBTTagCompound) nbttaglist.a(i);
|
|
|
|
byte b0 = nbttagcompound1.b("Slot");
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (b0 >= 0 && b0 < this.h.length) {
|
|
|
|
this.h[b0] = new ItemStack(nbttagcompound1);
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
this.e = nbttagcompound.c("BurnTime");
|
|
|
|
this.g = nbttagcompound.c("CookTime");
|
|
|
|
this.f = this.a(this.h[1]);
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void b(NBTTagCompound nbttagcompound) {
|
|
|
|
super.b(nbttagcompound);
|
2011-01-29 22:50:29 +01:00
|
|
|
nbttagcompound.a("BurnTime", (short) this.e);
|
|
|
|
nbttagcompound.a("CookTime", (short) this.g);
|
2011-01-14 20:44:11 +01:00
|
|
|
NBTTagList nbttaglist = new NBTTagList();
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
for (int i = 0; i < this.h.length; ++i) {
|
|
|
|
if (this.h[i] != null) {
|
2011-01-14 20:44:11 +01:00
|
|
|
NBTTagCompound nbttagcompound1 = new NBTTagCompound();
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
nbttagcompound1.a("Slot", (byte) i);
|
|
|
|
this.h[i].a(nbttagcompound1);
|
|
|
|
nbttaglist.a((NBTBase) nbttagcompound1);
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
nbttagcompound.a("Items", (NBTBase) nbttaglist);
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public int c() {
|
|
|
|
return 64;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean e() {
|
2011-01-29 22:50:29 +01:00
|
|
|
return this.e > 0;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void f() {
|
2011-01-29 22:50:29 +01:00
|
|
|
boolean flag = this.e > 0;
|
2011-01-14 20:44:11 +01:00
|
|
|
boolean flag1 = false;
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (this.e > 0) {
|
|
|
|
--this.e;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (!this.a.isStatic) {
|
|
|
|
if (this.e == 0 && this.i()) {
|
|
|
|
this.f = this.e = this.a(this.h[1]);
|
|
|
|
if (this.e > 0) {
|
2011-01-14 20:44:11 +01:00
|
|
|
flag1 = true;
|
2011-01-29 22:50:29 +01:00
|
|
|
if (this.h[1] != null) {
|
|
|
|
--this.h[1].count;
|
|
|
|
if (this.h[1].count == 0) {
|
|
|
|
this.h[1] = null;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (this.e() && this.i()) {
|
|
|
|
++this.g;
|
|
|
|
if (this.g == 200) {
|
|
|
|
this.g = 0;
|
|
|
|
this.h();
|
2011-01-14 20:44:11 +01:00
|
|
|
flag1 = true;
|
|
|
|
}
|
|
|
|
} else {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.g = 0;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (flag != this.e > 0) {
|
2011-01-14 20:44:11 +01:00
|
|
|
flag1 = true;
|
2011-01-29 22:50:29 +01:00
|
|
|
BlockFurnace.a(this.e > 0, this.a, this.b, this.c, this.d);
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-14 20:44:11 +01:00
|
|
|
if (flag1) {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.d();
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean i() {
|
2011-01-29 22:50:29 +01:00
|
|
|
if (this.h[0] == null) {
|
2011-01-14 20:44:11 +01:00
|
|
|
return false;
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
|
|
|
ItemStack itemstack = FurnaceRecipes.a().a(this.h[0].a().id);
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
return itemstack == null ? false : (this.h[2] == null ? true : (!this.h[2].a(itemstack) ? false : (this.h[2].count < this.c() && this.h[2].count < this.h[2].b() ? true : this.h[2].count < itemstack.b())));
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void h() {
|
2011-01-29 22:50:29 +01:00
|
|
|
if (this.i()) {
|
|
|
|
ItemStack itemstack = FurnaceRecipes.a().a(this.h[0].a().id);
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (this.h[2] == null) {
|
|
|
|
this.h[2] = itemstack.j();
|
|
|
|
} else if (this.h[2].id == itemstack.id) {
|
|
|
|
++this.h[2].count;
|
|
|
|
}
|
|
|
|
|
|
|
|
--this.h[0].count;
|
|
|
|
if (this.h[0].count <= 0) {
|
|
|
|
this.h[0] = null;
|
|
|
|
}
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private int a(ItemStack itemstack) {
|
|
|
|
if (itemstack == null) {
|
|
|
|
return 0;
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
|
|
|
int i = itemstack.a().id;
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
return i < 256 && Block.byId[i].material == Material.WOOD ? 300 : (i == Item.STICK.id ? 100 : (i == Item.COAL.id ? 1600 : (i == Item.LAVA_BUCKET.id ? 20000 : 0)));
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public boolean a_(EntityHuman entityhuman) {
|
|
|
|
return this.a.getTileEntity(this.b, this.c, this.d) != this ? false : entityhuman.d((double) this.b + 0.5D, (double) this.c + 0.5D, (double) this.d + 0.5D) <= 64.0D;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|