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

100 Zeilen
2.7 KiB
Java

package net.minecraft.server;
public class TileEntityChest extends TileEntity implements IInventory {
private ItemStack[] items = new ItemStack[27]; // CraftBukkit
// CraftBukkit start
public ItemStack[] getContents() {
return this.items;
}
// CraftBukkit end
2011-01-29 22:50:29 +01:00
public TileEntityChest() {}
public int getSize() {
2011-02-23 03:37:56 +01:00
return 27;
}
public ItemStack getItem(int i) {
return this.items[i];
}
public ItemStack splitStack(int i, int j) {
if (this.items[i] != null) {
2011-01-29 22:50:29 +01:00
ItemStack itemstack;
if (this.items[i].count <= j) {
itemstack = this.items[i];
this.items[i] = null;
this.update();
return itemstack;
2011-01-29 22:50:29 +01:00
} else {
itemstack = this.items[i].a(j);
if (this.items[i].count == 0) {
this.items[i] = null;
2011-01-29 22:50:29 +01:00
}
this.update();
2011-01-29 22:50:29 +01:00
return itemstack;
}
} else {
return null;
}
}
public void setItem(int i, ItemStack itemstack) {
this.items[i] = itemstack;
if (itemstack != null && itemstack.count > this.getMaxStackSize()) {
itemstack.count = this.getMaxStackSize();
}
2011-01-29 22:50:29 +01:00
this.update();
}
public String getName() {
return "Chest";
}
public void a(NBTTagCompound nbttagcompound) {
super.a(nbttagcompound);
2011-02-23 03:37:56 +01:00
NBTTagList nbttaglist = nbttagcompound.l("Items");
this.items = new ItemStack[this.getSize()];
2011-01-29 22:50:29 +01:00
2011-02-23 03:37:56 +01:00
for (int i = 0; i < nbttaglist.c(); ++i) {
NBTTagCompound nbttagcompound1 = (NBTTagCompound) nbttaglist.a(i);
2011-02-23 03:37:56 +01:00
int j = nbttagcompound1.c("Slot") & 255;
if (j >= 0 && j < this.items.length) {
this.items[j] = new ItemStack(nbttagcompound1);
}
}
}
public void b(NBTTagCompound nbttagcompound) {
super.b(nbttagcompound);
NBTTagList nbttaglist = new NBTTagList();
for (int i = 0; i < this.items.length; ++i) {
if (this.items[i] != null) {
NBTTagCompound nbttagcompound1 = new NBTTagCompound();
nbttagcompound1.a("Slot", (byte) i);
this.items[i].a(nbttagcompound1);
2011-01-29 22:50:29 +01:00
nbttaglist.a((NBTBase) nbttagcompound1);
}
}
2011-01-29 22:50:29 +01:00
nbttagcompound.a("Items", (NBTBase) nbttaglist);
}
public int getMaxStackSize() {
return 64;
}
2011-01-29 22:50:29 +01:00
public boolean a_(EntityHuman entityhuman) {
return this.world.getTileEntity(this.x, this.y, this.z) != this ? false : entityhuman.d((double) this.x + 0.5D, (double) this.y + 0.5D, (double) this.z + 0.5D) <= 64.0D;
}
}