Paper/src/main/java/net/minecraft/server/InventorySubcontainer.java

103 Zeilen
2.3 KiB
Java

package net.minecraft.server;
import java.util.List;
2012-07-29 09:33:13 +02:00
public abstract class InventorySubcontainer implements IInventory { // CraftBukkit - abstract
2012-02-29 22:31:04 +01:00
private String a;
private int b;
2012-07-29 09:33:13 +02:00
protected ItemStack[] items; // CraftBukkit - protected
private List d;
2013-03-13 23:33:27 +01:00
private boolean e;
2013-03-13 23:33:27 +01:00
public InventorySubcontainer(String s, boolean flag, int i) {
this.a = s;
2013-03-13 23:33:27 +01:00
this.e = flag;
this.b = i;
2012-02-29 22:31:04 +01:00
this.items = new ItemStack[i];
}
public ItemStack getItem(int i) {
2012-02-29 22:31:04 +01:00
return this.items[i];
}
public ItemStack splitStack(int i, int j) {
2012-02-29 22:31:04 +01:00
if (this.items[i] != null) {
ItemStack itemstack;
2012-02-29 22:31:04 +01:00
if (this.items[i].count <= j) {
itemstack = this.items[i];
this.items[i] = null;
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;
}
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;
}
}
public void setItem(int i, ItemStack itemstack) {
2012-02-29 22:31:04 +01:00
this.items[i] = itemstack;
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;
}
2013-03-13 23:33:27 +01:00
public boolean c() {
return this.e;
}
public int getMaxStackSize() {
2012-07-29 09:33:13 +02:00
return 64;
}
public void update() {
if (this.d != null) {
2012-11-06 13:05:28 +01:00
for (int i = 0; i < this.d.size(); ++i) {
((IInventoryListener) this.d.get(i)).a(this);
}
}
}
2013-03-13 23:33:27 +01:00
public boolean a(EntityHuman entityhuman) {
return true;
}
2012-07-29 09:33:13 +02:00
public void startOpen() {}
2013-03-13 23:33:27 +01:00
public void g() {}
public boolean b(int i, ItemStack itemstack) {
return true;
}
}