craftbukkit/src/main/java/net/minecraft/server/TileEntityBrewingStand.java

298 lines
8.8 KiB
Java
Raw Normal View History

package net.minecraft.server;
import java.util.List;
// CraftBukkit start
import org.bukkit.craftbukkit.entity.CraftHumanEntity;
import org.bukkit.entity.HumanEntity;
import org.bukkit.event.inventory.BrewEvent;
// CraftBukkit end
2013-03-13 17:33:27 -05:00
public class TileEntityBrewingStand extends TileEntity implements IWorldInventory {
2013-03-20 15:09:23 -05:00
private static final int[] a = new int[] { 3};
2013-11-04 07:07:38 -06:00
private static final int[] i = new int[] { 0, 1, 2};
2013-03-20 15:09:23 -05:00
public ItemStack[] items = new ItemStack[4]; // CraftBukkit - private -> public
public int brewTime; // CraftBukkit - private -> public
2013-11-04 07:07:38 -06:00
private int l;
private Item m;
private String n;
private int lastTick = MinecraftServer.currentTick; // CraftBukkit
public TileEntityBrewingStand() {}
// CraftBukkit start
public List<HumanEntity> transaction = new java.util.ArrayList<HumanEntity>();
2013-03-13 17:33:27 -05:00
private int maxStack = 64;
public void onOpen(CraftHumanEntity who) {
transaction.add(who);
}
public void onClose(CraftHumanEntity who) {
transaction.remove(who);
}
public List<HumanEntity> getViewers() {
return transaction;
}
public ItemStack[] getContents() {
2012-02-29 22:31:04 +01:00
return this.items;
}
public void setMaxStackSize(int size) {
maxStack = size;
}
// CraftBukkit end
2013-11-04 07:07:38 -06:00
public String getInventoryName() {
return this.k_() ? this.n : "container.brewing";
2013-03-13 17:33:27 -05:00
}
2013-11-04 07:07:38 -06:00
public boolean k_() {
return this.n != null && this.n.length() > 0;
2013-03-13 17:33:27 -05:00
}
public void a(String s) {
2013-11-04 07:07:38 -06:00
this.n = s;
}
public int getSize() {
2012-02-29 22:31:04 +01:00
return this.items.length;
}
2013-03-13 17:33:27 -05:00
public void h() {
// CraftBukkit start - Use wall time instead of ticks for brewing
int elapsedTicks = MinecraftServer.currentTick - this.lastTick;
this.lastTick = MinecraftServer.currentTick;
2012-02-29 22:31:04 +01:00
if (this.brewTime > 0) {
this.brewTime -= elapsedTicks;
if (this.brewTime <= 0) { // == -> <=
// CraftBukkit end
2013-11-04 07:07:38 -06:00
this.l();
this.update();
2013-11-04 07:07:38 -06:00
} else if (!this.k()) {
2012-02-29 22:31:04 +01:00
this.brewTime = 0;
this.update();
2013-11-04 07:07:38 -06:00
} else if (this.m != this.items[3].getItem()) {
2012-02-29 22:31:04 +01:00
this.brewTime = 0;
this.update();
}
2013-11-04 07:07:38 -06:00
} else if (this.k()) {
2012-02-29 22:31:04 +01:00
this.brewTime = 400;
2013-11-04 07:07:38 -06:00
this.m = this.items[3].getItem();
}
2013-03-13 17:33:27 -05:00
int i = this.j();
2013-11-04 07:07:38 -06:00
if (i != this.l) {
this.l = i;
2013-03-13 17:33:27 -05:00
this.world.setData(this.x, this.y, this.z, i, 2);
}
2013-03-13 17:33:27 -05:00
super.h();
}
2013-11-04 07:07:38 -06:00
public int i() {
2012-02-29 22:31:04 +01:00
return this.brewTime;
}
2013-11-04 07:07:38 -06:00
private boolean k() {
2012-02-29 22:31:04 +01:00
if (this.items[3] != null && this.items[3].count > 0) {
ItemStack itemstack = this.items[3];
2013-11-04 07:07:38 -06:00
if (!itemstack.getItem().m(itemstack)) {
return false;
} else {
boolean flag = false;
for (int i = 0; i < 3; ++i) {
2013-11-04 07:07:38 -06:00
if (this.items[i] != null && this.items[i].getItem() == Items.POTION) {
2012-02-29 22:31:04 +01:00
int j = this.items[i].getData();
2013-03-13 17:33:27 -05:00
int k = this.c(j, itemstack);
2013-11-04 07:07:38 -06:00
if (!ItemPotion.g(j) && ItemPotion.g(k)) {
flag = true;
break;
}
2013-11-04 07:07:38 -06:00
List list = Items.POTION.c(j);
List list1 = Items.POTION.c(k);
2013-07-01 22:29:43 -05:00
if ((j <= 0 || list != list1) && (list == null || !list.equals(list1) && list1 != null) && j != k) {
flag = true;
break;
}
}
}
return flag;
}
} else {
return false;
}
}
2013-11-04 07:07:38 -06:00
private void l() {
if (this.k()) {
2012-02-29 22:31:04 +01:00
ItemStack itemstack = this.items[3];
2013-03-24 23:22:32 -05:00
// CraftBukkit start
if (getOwner() != null) {
BrewEvent event = new BrewEvent(world.getWorld().getBlockAt(x, y, z), (org.bukkit.inventory.BrewerInventory) this.getOwner().getInventory());
org.bukkit.Bukkit.getPluginManager().callEvent(event);
2013-03-24 23:22:32 -05:00
if (event.isCancelled()) {
return;
}
}
// CraftBukkit end
for (int i = 0; i < 3; ++i) {
2013-11-04 07:07:38 -06:00
if (this.items[i] != null && this.items[i].getItem() == Items.POTION) {
2012-02-29 22:31:04 +01:00
int j = this.items[i].getData();
2013-03-13 17:33:27 -05:00
int k = this.c(j, itemstack);
2013-11-04 07:07:38 -06:00
List list = Items.POTION.c(j);
List list1 = Items.POTION.c(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);
}
2013-11-04 07:07:38 -06:00
} else if (!ItemPotion.g(j) && ItemPotion.g(k)) {
2012-02-29 22:31:04 +01:00
this.items[i].setData(k);
}
}
}
2013-11-04 07:07:38 -06:00
if (itemstack.getItem().u()) {
this.items[3] = new ItemStack(itemstack.getItem().t());
} else {
2012-02-29 22:31:04 +01:00
--this.items[3].count;
if (this.items[3].count <= 0) {
this.items[3] = null;
}
}
}
}
2013-03-13 17:33:27 -05:00
private int c(int i, ItemStack itemstack) {
2013-11-04 07:07:38 -06:00
return itemstack == null ? i : (itemstack.getItem().m(itemstack) ? PotionBrewer.a(i, itemstack.getItem().i(itemstack)) : i);
}
public void a(NBTTagCompound nbttagcompound) {
super.a(nbttagcompound);
2013-11-04 07:07:38 -06:00
NBTTagList nbttaglist = nbttagcompound.getList("Items", 10);
2012-02-29 22:31:04 +01:00
this.items = new ItemStack[this.getSize()];
for (int i = 0; i < nbttaglist.size(); ++i) {
2013-11-04 07:07:38 -06:00
NBTTagCompound nbttagcompound1 = nbttaglist.get(i);
byte b0 = nbttagcompound1.getByte("Slot");
2012-02-29 22:31:04 +01:00
if (b0 >= 0 && b0 < this.items.length) {
2013-01-17 03:28:44 -06:00
this.items[b0] = ItemStack.createStack(nbttagcompound1);
}
}
2012-02-29 22:31:04 +01:00
this.brewTime = nbttagcompound.getShort("BrewTime");
2013-11-04 07:07:38 -06:00
if (nbttagcompound.hasKeyOfType("CustomName", 8)) {
this.n = nbttagcompound.getString("CustomName");
2013-03-13 17:33:27 -05:00
}
}
public void b(NBTTagCompound nbttagcompound) {
super.b(nbttagcompound);
2012-02-29 22:31:04 +01:00
nbttagcompound.setShort("BrewTime", (short) this.brewTime);
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) {
NBTTagCompound nbttagcompound1 = new NBTTagCompound();
nbttagcompound1.setByte("Slot", (byte) i);
2012-02-29 22:31:04 +01:00
this.items[i].save(nbttagcompound1);
nbttaglist.add(nbttagcompound1);
}
}
nbttagcompound.set("Items", nbttaglist);
2013-11-04 07:07:38 -06:00
if (this.k_()) {
nbttagcompound.setString("CustomName", this.n);
2013-03-13 17:33:27 -05:00
}
}
public ItemStack getItem(int i) {
2012-02-29 22:31:04 +01:00
return i >= 0 && i < this.items.length ? this.items[i] : null;
}
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-02-29 22:31:04 +01:00
this.items[i] = null;
return itemstack;
} else {
return null;
}
}
2012-03-01 10:49:23 +00:00
public ItemStack splitWithoutUpdate(int i) {
if (i >= 0 && i < this.items.length) {
ItemStack itemstack = this.items[i];
this.items[i] = null;
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;
}
}
public int getMaxStackSize() {
2012-07-29 02:33:13 -05:00
return this.maxStack; // CraftBukkit
}
2013-03-13 17:33:27 -05:00
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;
}
2012-07-29 02:33:13 -05:00
public void startOpen() {}
2013-11-04 07:07:38 -06:00
public void l_() {}
2013-03-13 17:33:27 -05:00
public boolean b(int i, ItemStack itemstack) {
2013-11-04 07:07:38 -06:00
return i == 3 ? itemstack.getItem().m(itemstack) : itemstack.getItem() == Items.POTION || itemstack.getItem() == Items.GLASS_BOTTLE;
2013-03-13 17:33:27 -05:00
}
public int j() {
int i = 0;
for (int j = 0; j < 3; ++j) {
2012-02-29 22:31:04 +01:00
if (this.items[j] != null) {
i |= 1 << j;
}
}
return i;
}
2013-03-13 17:33:27 -05:00
2013-03-20 15:09:23 -05:00
public int[] getSlotsForFace(int i) {
2013-11-04 07:07:38 -06:00
return i == 1 ? a : TileEntityBrewingStand.i; // CraftBukkit - decompilation error
2013-03-13 17:33:27 -05:00
}
2013-03-20 15:09:23 -05:00
public boolean canPlaceItemThroughFace(int i, ItemStack itemstack, int j) {
return this.b(i, itemstack);
}
public boolean canTakeItemThroughFace(int i, ItemStack itemstack, int j) {
return true;
2013-03-13 17:33:27 -05:00
}
}