Imported from mc-dev:

- TileEntity
- Container
- ContainerFurnace
- ContainerDispenser
- ContainerChest
- ContainerEnchantTableSubcontainer
- ContainerEnchantTableInventory
- ContainerBrewingStand
This commit is contained in:
Celtic Minstrel
2012-02-25 23:56:31 -05:00
committed by EvilSeph
parent d20091e64c
commit 10e593649c
8 changed files with 856 additions and 0 deletions

View File

@@ -0,0 +1,65 @@
package net.minecraft.server;
public class ContainerDispenser extends Container {
private TileEntityDispenser a;
public ContainerDispenser(IInventory iinventory, TileEntityDispenser tileentitydispenser) {
this.a = tileentitydispenser;
int i;
int j;
for (i = 0; i < 3; ++i) {
for (j = 0; j < 3; ++j) {
this.a(new Slot(tileentitydispenser, j + i * 3, 62 + j * 18, 17 + i * 18));
}
}
for (i = 0; i < 3; ++i) {
for (j = 0; j < 9; ++j) {
this.a(new Slot(iinventory, j + i * 9 + 9, 8 + j * 18, 84 + i * 18));
}
}
for (i = 0; i < 9; ++i) {
this.a(new Slot(iinventory, i, 8 + i * 18, 142));
}
}
public boolean b(EntityHuman entityhuman) {
return this.a.a(entityhuman);
}
public ItemStack a(int i) {
ItemStack itemstack = null;
Slot slot = (Slot) this.e.get(i);
if (slot != null && slot.c()) {
ItemStack itemstack1 = slot.getItem();
itemstack = itemstack1.cloneItemStack();
if (i < 9) {
if (!this.a(itemstack1, 9, 45, true)) {
return null;
}
} else if (!this.a(itemstack1, 0, 9, false)) {
return null;
}
if (itemstack1.count == 0) {
slot.c((ItemStack) null);
} else {
slot.d();
}
if (itemstack1.count == itemstack.count) {
return null;
}
slot.b(itemstack1);
}
return itemstack;
}
}