2012-02-26 05:56:31 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2012-02-29 19:56:35 +01:00
|
|
|
import java.util.ArrayList;
|
2012-02-26 05:56:31 +01:00
|
|
|
import java.util.List;
|
|
|
|
|
2012-02-29 19:56:35 +01:00
|
|
|
// CraftBukkit start
|
|
|
|
import org.bukkit.craftbukkit.entity.CraftHumanEntity;
|
|
|
|
import org.bukkit.entity.HumanEntity;
|
|
|
|
import org.bukkit.inventory.InventoryHolder;
|
|
|
|
// CraftBukkit end
|
2012-02-26 05:56:31 +01:00
|
|
|
|
2012-02-29 19:56:35 +01:00
|
|
|
public class ContainerEnchantTableSubcontainer implements IInventory {
|
2012-02-29 22:31:04 +01:00
|
|
|
|
2012-02-26 05:56:31 +01:00
|
|
|
private String a;
|
|
|
|
private int b;
|
2012-02-29 22:31:04 +01:00
|
|
|
private ItemStack[] items;
|
2012-02-26 05:56:31 +01:00
|
|
|
private List d;
|
|
|
|
|
2012-02-29 19:56:35 +01:00
|
|
|
// CraftBukkit start
|
|
|
|
public List<HumanEntity> transaction = new ArrayList<HumanEntity>();
|
|
|
|
|
|
|
|
public ItemStack[] getContents() {
|
2012-02-29 22:31:04 +01:00
|
|
|
return this.items;
|
2012-02-29 19:56:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void onOpen(CraftHumanEntity who) {
|
|
|
|
transaction.add(who);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onClose(CraftHumanEntity who) {
|
|
|
|
transaction.remove(who);
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<HumanEntity> getViewers() {
|
|
|
|
return transaction;
|
|
|
|
}
|
|
|
|
|
|
|
|
public InventoryHolder getOwner() {
|
|
|
|
return null; // TODO: Enchanting tables don't really have an owner? Maybe they should?
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2012-02-26 05:56:31 +01:00
|
|
|
public ContainerEnchantTableSubcontainer(String s, int i) {
|
|
|
|
this.a = s;
|
|
|
|
this.b = i;
|
2012-02-29 22:31:04 +01:00
|
|
|
this.items = new ItemStack[i];
|
2012-02-26 05:56:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public ItemStack getItem(int i) {
|
2012-02-29 22:31:04 +01:00
|
|
|
return this.items[i];
|
2012-02-26 05:56:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public ItemStack splitStack(int i, int j) {
|
2012-02-29 22:31:04 +01:00
|
|
|
if (this.items[i] != null) {
|
2012-02-26 05:56:31 +01:00
|
|
|
ItemStack itemstack;
|
|
|
|
|
2012-02-29 22:31:04 +01:00
|
|
|
if (this.items[i].count <= j) {
|
|
|
|
itemstack = this.items[i];
|
|
|
|
this.items[i] = null;
|
2012-02-26 05:56:31 +01:00
|
|
|
this.update();
|
|
|
|
return itemstack;
|
|
|
|
} else {
|
2012-02-29 22:31:04 +01:00
|
|
|
itemstack = this.items[i].a(j);
|
|
|
|
if (this.items[i].count == 0) {
|
|
|
|
this.items[i] = null;
|
2012-02-26 05:56:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
this.update();
|
|
|
|
return itemstack;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
public ItemStack splitWithoutUpdate(int i) {
|
|
|
|
if (this.items[i] != null) {
|
|
|
|
ItemStack itemstack = this.items[i];
|
|
|
|
|
|
|
|
this.items[i] = null;
|
|
|
|
return itemstack;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-26 05:56:31 +01:00
|
|
|
public void setItem(int i, ItemStack itemstack) {
|
2012-02-29 22:31:04 +01:00
|
|
|
this.items[i] = itemstack;
|
2012-02-26 05:56:31 +01:00
|
|
|
if (itemstack != null && itemstack.count > this.getMaxStackSize()) {
|
|
|
|
itemstack.count = this.getMaxStackSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.update();
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getSize() {
|
|
|
|
return this.b;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getName() {
|
|
|
|
return this.a;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getMaxStackSize() {
|
|
|
|
return 64;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void update() {
|
|
|
|
if (this.d != null) {
|
|
|
|
for (int i = 0; i < this.d.size(); ++i) {
|
|
|
|
((IInventoryListener) this.d.get(i)).a(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean a(EntityHuman entityhuman) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void f() {}
|
|
|
|
|
|
|
|
public void g() {}
|
|
|
|
}
|