2011-01-14 20:44:11 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
public class TileEntityFurnace extends TileEntity implements IInventory {
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
private ItemStack[] items = new ItemStack[3];
|
|
|
|
public int burnTime = 0;
|
2011-02-23 03:37:56 +01:00
|
|
|
public int b = 0;
|
2011-04-20 19:05:14 +02:00
|
|
|
public int cookTime = 0;
|
2011-01-14 20:44:11 +01:00
|
|
|
|
|
|
|
// CraftBukkit start
|
2011-05-01 19:26:47 +02:00
|
|
|
private int lastTick = (int) (System.currentTimeMillis() / 50);
|
2011-01-14 20:44:11 +01:00
|
|
|
public ItemStack[] getContents() {
|
2011-04-20 19:05:14 +02:00
|
|
|
return items;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public TileEntityFurnace() {}
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public int getSize() {
|
|
|
|
return this.items.length;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public ItemStack getItem(int i) {
|
|
|
|
return this.items[i];
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
public ItemStack a(int i, int j) {
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.items[i] != null) {
|
2011-01-29 22:50:29 +01:00
|
|
|
ItemStack itemstack;
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.items[i].count <= j) {
|
|
|
|
itemstack = this.items[i];
|
|
|
|
this.items[i] = null;
|
2011-01-14 20:44:11 +01:00
|
|
|
return itemstack;
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
2011-04-20 19:05:14 +02:00
|
|
|
itemstack = this.items[i].a(j);
|
|
|
|
if (this.items[i].count == 0) {
|
|
|
|
this.items[i] = null;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
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-04-20 19:05:14 +02:00
|
|
|
public void setItem(int i, ItemStack itemstack) {
|
|
|
|
this.items[i] = itemstack;
|
|
|
|
if (itemstack != null && itemstack.count > this.getMaxStackSize()) {
|
|
|
|
itemstack.count = this.getMaxStackSize();
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public String getName() {
|
2011-01-14 20:44:11 +01:00
|
|
|
return "Furnace";
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
|
|
|
super.a(nbttagcompound);
|
2011-02-23 03:37:56 +01:00
|
|
|
NBTTagList nbttaglist = nbttagcompound.l("Items");
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
this.items = new ItemStack[this.getSize()];
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
for (int i = 0; i < nbttaglist.c(); ++i) {
|
2011-01-29 22:50:29 +01:00
|
|
|
NBTTagCompound nbttagcompound1 = (NBTTagCompound) nbttaglist.a(i);
|
2011-02-23 03:37:56 +01:00
|
|
|
byte b0 = nbttagcompound1.c("Slot");
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
if (b0 >= 0 && b0 < this.items.length) {
|
|
|
|
this.items[b0] = new ItemStack(nbttagcompound1);
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
this.burnTime = nbttagcompound.d("BurnTime");
|
|
|
|
this.cookTime = nbttagcompound.d("CookTime");
|
|
|
|
this.b = this.a(this.items[1]);
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void b(NBTTagCompound nbttagcompound) {
|
|
|
|
super.b(nbttagcompound);
|
2011-04-20 19:05:14 +02:00
|
|
|
nbttagcompound.a("BurnTime", (short) this.burnTime);
|
|
|
|
nbttagcompound.a("CookTime", (short) this.cookTime);
|
2011-01-14 20:44:11 +01:00
|
|
|
NBTTagList nbttaglist = new NBTTagList();
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
for (int i = 0; i < this.items.length; ++i) {
|
|
|
|
if (this.items[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);
|
2011-04-20 19:05:14 +02:00
|
|
|
this.items[i].a(nbttagcompound1);
|
2011-01-29 22:50:29 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public int getMaxStackSize() {
|
2011-01-14 20:44:11 +01:00
|
|
|
return 64;
|
|
|
|
}
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
public boolean f() {
|
2011-04-20 19:05:14 +02:00
|
|
|
return this.burnTime > 0;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
public void g_() {
|
2011-04-20 19:05:14 +02:00
|
|
|
boolean flag = this.burnTime > 0;
|
2011-01-14 20:44:11 +01:00
|
|
|
boolean flag1 = false;
|
|
|
|
|
2011-05-01 19:26:47 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
int currentTick = (int) (System.currentTimeMillis() / 50); // CraftBukkit
|
|
|
|
int elapsedTicks = currentTick - this.lastTick;
|
|
|
|
this.lastTick = currentTick;
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.burnTime > 0) {
|
2011-05-01 19:26:47 +02:00
|
|
|
this.burnTime -= elapsedTicks; // CraftBukkit
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
if (!this.world.isStatic) {
|
2011-05-01 19:26:47 +02:00
|
|
|
// CraftBukkit start -- handle multiple elapsed ticks
|
|
|
|
if (this.burnTime <= 0 && this.h()) { // CraftBukkit == to <=
|
|
|
|
this.b = this.a(this.items[1]);
|
|
|
|
this.burnTime += this.b;
|
|
|
|
// CraftBukkit end
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.burnTime > 0) {
|
2011-01-14 20:44:11 +01:00
|
|
|
flag1 = true;
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.items[1] != null) {
|
|
|
|
--this.items[1].count;
|
|
|
|
if (this.items[1].count == 0) {
|
|
|
|
this.items[1] = null;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-03-31 22:40:00 +02:00
|
|
|
if (this.f() && this.h()) {
|
2011-05-01 19:26:47 +02:00
|
|
|
// CraftBukkit start -- handle multiple elapsed ticks
|
|
|
|
this.cookTime += elapsedTicks;
|
|
|
|
if (this.cookTime >= 200) {
|
|
|
|
this.cookTime %= 200;
|
|
|
|
// CraftBukkit end
|
2011-02-23 03:37:56 +01:00
|
|
|
this.g();
|
2011-01-14 20:44:11 +01:00
|
|
|
flag1 = true;
|
|
|
|
}
|
|
|
|
} else {
|
2011-04-20 19:05:14 +02:00
|
|
|
this.cookTime = 0;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
if (flag != this.burnTime > 0) {
|
2011-01-14 20:44:11 +01:00
|
|
|
flag1 = true;
|
2011-04-20 19:05:14 +02:00
|
|
|
BlockFurnace.a(this.burnTime > 0, this.world, this.e, this.f, this.g);
|
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-04-20 19:05:14 +02:00
|
|
|
this.update();
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-31 22:40:00 +02:00
|
|
|
private boolean h() {
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.items[0] == null) {
|
2011-01-14 20:44:11 +01:00
|
|
|
return false;
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
2011-04-20 19:05:14 +02:00
|
|
|
ItemStack itemstack = FurnaceRecipes.a().a(this.items[0].getItem().id);
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-04-16 04:11:13 +02:00
|
|
|
// CraftBukkit - consider resultant count instead of current count
|
2011-06-12 00:02:58 +02:00
|
|
|
return itemstack == null ? false : (this.items[2] == null ? true : (!this.items[2].a(itemstack) ? false : (this.items[2].count + itemstack.count <= this.getMaxStackSize() && this.items[2].count < this.items[2].b() ? true : this.items[2].count + itemstack.count <= itemstack.b())));
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
public void g() {
|
2011-03-31 22:40:00 +02:00
|
|
|
if (this.h()) {
|
2011-04-20 19:05:14 +02:00
|
|
|
ItemStack itemstack = FurnaceRecipes.a().a(this.items[0].getItem().id);
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.items[2] == null) {
|
|
|
|
this.items[2] = itemstack.j();
|
2011-05-14 16:29:42 +02:00
|
|
|
} else if (this.items[2].id == itemstack.id) {
|
|
|
|
// CraftBukkit start - compare damage too
|
|
|
|
if (this.items[2].damage == itemstack.damage) {
|
|
|
|
this.items[2].count += itemstack.count;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
--this.items[0].count;
|
|
|
|
if (this.items[0].count <= 0) {
|
|
|
|
this.items[0] = null;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
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 {
|
2011-04-20 19:05:14 +02:00
|
|
|
int i = itemstack.getItem().id;
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-04-20 22:47:26 +02: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 : (i == Block.SAPLING.id ? 100 : 0))));
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public boolean a_(EntityHuman entityhuman) {
|
2011-04-20 19:05:14 +02:00
|
|
|
return this.world.getTileEntity(this.e, this.f, this.g) != this ? false : entityhuman.d((double) this.e + 0.5D, (double) this.f + 0.5D, (double) this.g + 0.5D) <= 64.0D;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|