2011-01-29 22:50:29 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
public class InventoryLargeChest implements IInventory {
|
|
|
|
|
|
|
|
private String a;
|
|
|
|
private IInventory b;
|
|
|
|
private IInventory c;
|
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
public ItemStack[] getContents() {
|
2011-06-27 00:25:01 +02:00
|
|
|
ItemStack[] result = new ItemStack[this.getSize()];
|
2011-01-29 22:50:29 +01:00
|
|
|
for (int i = 0; i < result.length; i++) {
|
2011-06-27 00:25:01 +02:00
|
|
|
result[i] = this.getItem(i);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
public InventoryLargeChest(String s, IInventory iinventory, IInventory iinventory1) {
|
|
|
|
this.a = s;
|
2011-09-15 02:23:52 +02:00
|
|
|
if (iinventory == null) {
|
|
|
|
iinventory = iinventory1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (iinventory1 == null) {
|
|
|
|
iinventory1 = iinventory;
|
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
this.b = iinventory;
|
|
|
|
this.c = iinventory1;
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public int getSize() {
|
|
|
|
return this.b.getSize() + this.c.getSize();
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public String getName() {
|
2011-01-29 22:50:29 +01:00
|
|
|
return this.a;
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public ItemStack getItem(int i) {
|
|
|
|
return i >= this.b.getSize() ? this.c.getItem(i - this.b.getSize()) : this.b.getItem(i);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
public ItemStack splitStack(int i, int j) {
|
|
|
|
return i >= this.b.getSize() ? this.c.splitStack(i - this.b.getSize(), j) : this.b.splitStack(i, j);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public void setItem(int i, ItemStack itemstack) {
|
|
|
|
if (i >= this.b.getSize()) {
|
|
|
|
this.c.setItem(i - this.b.getSize(), itemstack);
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
2011-04-20 19:05:14 +02:00
|
|
|
this.b.setItem(i, itemstack);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public int getMaxStackSize() {
|
|
|
|
return this.b.getMaxStackSize();
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public void update() {
|
|
|
|
this.b.update();
|
|
|
|
this.c.update();
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
public boolean a(EntityHuman entityhuman) {
|
|
|
|
return this.b.a(entityhuman) && this.c.a(entityhuman);
|
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
public void f() {
|
|
|
|
this.b.f();
|
|
|
|
this.c.f();
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
public void g() {
|
|
|
|
this.b.g();
|
|
|
|
this.c.g();
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
}
|