2011-01-14 20:44:11 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
public class TileEntityChest extends TileEntity implements IInventory {
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
private ItemStack[] a = new ItemStack[27]; //Craftbukkit
|
2011-01-14 20:44:11 +01:00
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
public ItemStack[] getContents() {
|
2011-02-23 03:37:56 +01:00
|
|
|
return a;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public TileEntityChest() {}
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
public int m_() {
|
|
|
|
return 27;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
public ItemStack c_(int i) {
|
|
|
|
return this.a[i];
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
public ItemStack a(int i, int j) {
|
|
|
|
if (this.a[i] != null) {
|
2011-01-29 22:50:29 +01:00
|
|
|
ItemStack itemstack;
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
if (this.a[i].count <= j) {
|
|
|
|
itemstack = this.a[i];
|
|
|
|
this.a[i] = null;
|
|
|
|
this.h();
|
2011-01-14 20:44:11 +01:00
|
|
|
return itemstack;
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
2011-02-23 03:37:56 +01:00
|
|
|
itemstack = this.a[i].a(j);
|
|
|
|
if (this.a[i].count == 0) {
|
|
|
|
this.a[i] = null;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
this.h();
|
2011-01-29 22:50:29 +01:00
|
|
|
return itemstack;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(int i, ItemStack itemstack) {
|
2011-02-23 03:37:56 +01:00
|
|
|
this.a[i] = itemstack;
|
|
|
|
if (itemstack != null && itemstack.count > this.n_()) {
|
|
|
|
itemstack.count = this.n_();
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
this.h();
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
public String c() {
|
2011-01-14 20:44:11 +01:00
|
|
|
return "Chest";
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
|
|
|
super.a(nbttagcompound);
|
2011-02-23 03:37:56 +01:00
|
|
|
NBTTagList nbttaglist = nbttagcompound.l("Items");
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
this.a = new ItemStack[this.m_()];
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
for (int i = 0; i < nbttaglist.c(); ++i) {
|
2011-01-14 20:44:11 +01:00
|
|
|
NBTTagCompound nbttagcompound1 = (NBTTagCompound) nbttaglist.a(i);
|
2011-02-23 03:37:56 +01:00
|
|
|
int j = nbttagcompound1.c("Slot") & 255;
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
if (j >= 0 && j < this.a.length) {
|
|
|
|
this.a[j] = new ItemStack(nbttagcompound1);
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void b(NBTTagCompound nbttagcompound) {
|
|
|
|
super.b(nbttagcompound);
|
|
|
|
NBTTagList nbttaglist = new NBTTagList();
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
for (int i = 0; i < this.a.length; ++i) {
|
|
|
|
if (this.a[i] != null) {
|
2011-01-14 20:44:11 +01:00
|
|
|
NBTTagCompound nbttagcompound1 = new NBTTagCompound();
|
|
|
|
|
|
|
|
nbttagcompound1.a("Slot", (byte) i);
|
2011-02-23 03:37:56 +01:00
|
|
|
this.a[i].a(nbttagcompound1);
|
2011-01-29 22:50:29 +01:00
|
|
|
nbttaglist.a((NBTBase) nbttagcompound1);
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
nbttagcompound.a("Items", (NBTBase) nbttaglist);
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
public int n_() {
|
2011-01-14 20:44:11 +01:00
|
|
|
return 64;
|
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public boolean a_(EntityHuman entityhuman) {
|
2011-02-23 03:37:56 +01:00
|
|
|
return this.d.getTileEntity(this.e, this.f, this.g) != this ? false : entityhuman.d((double) this.e + 0.5D, (double) this.f + 0.5D, (double) this.g + 0.5D) <= 64.0D;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|