2012-01-17 17:08:54 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
2012-02-29 19:56:35 +01:00
|
|
|
// CraftBukkit start
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.craftbukkit.entity.CraftHumanEntity;
|
|
|
|
import org.bukkit.entity.HumanEntity;
|
|
|
|
import org.bukkit.event.inventory.BrewEvent;
|
|
|
|
import org.bukkit.inventory.BrewerInventory;
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2012-01-17 17:08:54 +01:00
|
|
|
public class TileEntityBrewingStand extends TileEntity implements IInventory {
|
|
|
|
|
2012-02-29 22:31:04 +01:00
|
|
|
public ItemStack[] items = new ItemStack[4]; // CraftBukkit private -> public
|
|
|
|
public int brewTime; // CraftBukkit private -> public
|
2012-01-17 17:08:54 +01:00
|
|
|
private int c;
|
|
|
|
private int d;
|
|
|
|
|
|
|
|
public TileEntityBrewingStand() {}
|
|
|
|
|
|
|
|
// CraftBukkit start
|
2012-02-29 19:56:35 +01:00
|
|
|
public List<HumanEntity> transaction = new ArrayList<HumanEntity>();
|
|
|
|
|
|
|
|
public void onOpen(CraftHumanEntity who) {
|
|
|
|
transaction.add(who);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onClose(CraftHumanEntity who) {
|
|
|
|
transaction.remove(who);
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<HumanEntity> getViewers() {
|
|
|
|
return transaction;
|
|
|
|
}
|
|
|
|
|
2012-01-17 17:08:54 +01:00
|
|
|
public ItemStack[] getContents() {
|
2012-02-29 22:31:04 +01:00
|
|
|
return this.items;
|
2012-01-17 17:08:54 +01:00
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
public String getName() {
|
|
|
|
return "Brewing Stand";
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getSize() {
|
2012-02-29 22:31:04 +01:00
|
|
|
return this.items.length;
|
2012-01-17 17:08:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void l_() {
|
2012-02-29 22:31:04 +01:00
|
|
|
if (this.brewTime > 0) {
|
|
|
|
--this.brewTime;
|
|
|
|
if (this.brewTime == 0) {
|
2012-01-17 17:08:54 +01:00
|
|
|
this.p();
|
|
|
|
this.update();
|
|
|
|
} else if (!this.o()) {
|
2012-02-29 22:31:04 +01:00
|
|
|
this.brewTime = 0;
|
2012-01-17 17:08:54 +01:00
|
|
|
this.update();
|
2012-02-29 22:31:04 +01:00
|
|
|
} else if (this.d != this.items[3].id) {
|
|
|
|
this.brewTime = 0;
|
2012-01-17 17:08:54 +01:00
|
|
|
this.update();
|
|
|
|
}
|
|
|
|
} else if (this.o()) {
|
2012-02-29 22:31:04 +01:00
|
|
|
this.brewTime = 400;
|
|
|
|
this.d = this.items[3].id;
|
2012-01-17 17:08:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int i = this.n();
|
|
|
|
|
|
|
|
if (i != this.c) {
|
|
|
|
this.c = i;
|
|
|
|
this.world.setData(this.x, this.y, this.z, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
super.l_();
|
|
|
|
}
|
|
|
|
|
|
|
|
public int h() {
|
2012-02-29 22:31:04 +01:00
|
|
|
return this.brewTime;
|
2012-01-17 17:08:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private boolean o() {
|
2012-02-29 22:31:04 +01:00
|
|
|
if (this.items[3] != null && this.items[3].count > 0) {
|
|
|
|
ItemStack itemstack = this.items[3];
|
2012-01-17 17:08:54 +01:00
|
|
|
|
|
|
|
if (!Item.byId[itemstack.id].n()) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
boolean flag = false;
|
|
|
|
|
|
|
|
for (int i = 0; i < 3; ++i) {
|
2012-02-29 22:31:04 +01:00
|
|
|
if (this.items[i] != null && this.items[i].id == Item.POTION.id) {
|
|
|
|
int j = this.items[i].getData();
|
2012-01-17 17:08:54 +01:00
|
|
|
int k = this.b(j, itemstack);
|
|
|
|
|
|
|
|
if (!ItemPotion.c(j) && ItemPotion.c(k)) {
|
|
|
|
flag = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
List list = Item.POTION.b(j);
|
|
|
|
List list1 = Item.POTION.b(k);
|
|
|
|
|
|
|
|
if ((j <= 0 || list != list1) && (list == null || !list.equals(list1) && list1 != null) && j != k) {
|
|
|
|
flag = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return flag;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void p() {
|
|
|
|
if (this.o()) {
|
2012-02-29 22:31:04 +01:00
|
|
|
ItemStack itemstack = this.items[3];
|
2012-01-17 17:08:54 +01:00
|
|
|
|
2012-02-29 19:56:35 +01:00
|
|
|
// CraftBukkit start - fire BREW event
|
|
|
|
BrewEvent event = new BrewEvent(world.getWorld().getBlockAt(x, y, z), (BrewerInventory) this.getOwner().getInventory());
|
|
|
|
Bukkit.getPluginManager().callEvent(event);
|
|
|
|
if(event.isCancelled()) return;
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2012-01-17 17:08:54 +01:00
|
|
|
for (int i = 0; i < 3; ++i) {
|
2012-02-29 22:31:04 +01:00
|
|
|
if (this.items[i] != null && this.items[i].id == Item.POTION.id) {
|
|
|
|
int j = this.items[i].getData();
|
2012-01-17 17:08:54 +01:00
|
|
|
int k = this.b(j, itemstack);
|
|
|
|
List list = Item.POTION.b(j);
|
|
|
|
List list1 = Item.POTION.b(k);
|
|
|
|
|
|
|
|
if ((j <= 0 || list != list1) && (list == null || !list.equals(list1) && list1 != null)) {
|
|
|
|
if (j != k) {
|
2012-02-29 22:31:04 +01:00
|
|
|
this.items[i].setData(k);
|
2012-01-17 17:08:54 +01:00
|
|
|
}
|
|
|
|
} else if (!ItemPotion.c(j) && ItemPotion.c(k)) {
|
2012-02-29 22:31:04 +01:00
|
|
|
this.items[i].setData(k);
|
2012-01-17 17:08:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Item.byId[itemstack.id].k()) {
|
2012-02-29 22:31:04 +01:00
|
|
|
this.items[3] = new ItemStack(Item.byId[itemstack.id].j());
|
2012-01-17 17:08:54 +01:00
|
|
|
} else {
|
2012-02-29 22:31:04 +01:00
|
|
|
--this.items[3].count;
|
|
|
|
if (this.items[3].count <= 0) {
|
|
|
|
this.items[3] = null;
|
2012-01-17 17:08:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private int b(int i, ItemStack itemstack) {
|
|
|
|
return itemstack == null ? i : (Item.byId[itemstack.id].n() ? PotionBrewer.a(i, Item.byId[itemstack.id].m()) : i);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
|
|
|
super.a(nbttagcompound);
|
|
|
|
NBTTagList nbttaglist = nbttagcompound.getList("Items");
|
|
|
|
|
2012-02-29 22:31:04 +01:00
|
|
|
this.items = new ItemStack[this.getSize()];
|
2012-01-17 17:08:54 +01:00
|
|
|
|
|
|
|
for (int i = 0; i < nbttaglist.size(); ++i) {
|
|
|
|
NBTTagCompound nbttagcompound1 = (NBTTagCompound) nbttaglist.get(i);
|
|
|
|
byte b0 = nbttagcompound1.getByte("Slot");
|
|
|
|
|
2012-02-29 22:31:04 +01:00
|
|
|
if (b0 >= 0 && b0 < this.items.length) {
|
|
|
|
this.items[b0] = ItemStack.a(nbttagcompound1);
|
2012-01-17 17:08:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-29 22:31:04 +01:00
|
|
|
this.brewTime = nbttagcompound.getShort("BrewTime");
|
2012-01-17 17:08:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void b(NBTTagCompound nbttagcompound) {
|
|
|
|
super.b(nbttagcompound);
|
2012-02-29 22:31:04 +01:00
|
|
|
nbttagcompound.setShort("BrewTime", (short) this.brewTime);
|
2012-01-17 17:08:54 +01:00
|
|
|
NBTTagList nbttaglist = new NBTTagList();
|
|
|
|
|
2012-02-29 22:31:04 +01:00
|
|
|
for (int i = 0; i < this.items.length; ++i) {
|
|
|
|
if (this.items[i] != null) {
|
2012-01-17 17:08:54 +01:00
|
|
|
NBTTagCompound nbttagcompound1 = new NBTTagCompound();
|
|
|
|
|
|
|
|
nbttagcompound1.setByte("Slot", (byte) i);
|
2012-02-29 22:31:04 +01:00
|
|
|
this.items[i].save(nbttagcompound1);
|
2012-01-17 17:08:54 +01:00
|
|
|
nbttaglist.add(nbttagcompound1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nbttagcompound.set("Items", nbttaglist);
|
|
|
|
}
|
|
|
|
|
|
|
|
public ItemStack getItem(int i) {
|
2012-02-29 22:31:04 +01:00
|
|
|
return i >= 0 && i < this.items.length ? this.items[i] : null;
|
2012-01-17 17:08:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public ItemStack splitStack(int i, int j) {
|
2012-02-29 22:31:04 +01:00
|
|
|
if (i >= 0 && i < this.items.length) {
|
|
|
|
ItemStack itemstack = this.items[i];
|
2012-01-17 17:08:54 +01:00
|
|
|
|
2012-02-29 22:31:04 +01:00
|
|
|
this.items[i] = null;
|
2012-01-17 17:08:54 +01:00
|
|
|
return itemstack;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setItem(int i, ItemStack itemstack) {
|
2012-02-29 22:31:04 +01:00
|
|
|
if (i >= 0 && i < this.items.length) {
|
|
|
|
this.items[i] = itemstack;
|
2012-01-17 17:08:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getMaxStackSize() {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean a(EntityHuman entityhuman) {
|
|
|
|
return this.world.getTileEntity(this.x, this.y, this.z) != this ? false : entityhuman.e((double) this.x + 0.5D, (double) this.y + 0.5D, (double) this.z + 0.5D) <= 64.0D;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void f() {}
|
|
|
|
|
|
|
|
public void g() {}
|
|
|
|
|
|
|
|
public int n() {
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
for (int j = 0; j < 3; ++j) {
|
2012-02-29 22:31:04 +01:00
|
|
|
if (this.items[j] != null) {
|
2012-01-17 17:08:54 +01:00
|
|
|
i |= 1 << j;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|