3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-17 21:40:08 +01:00
Paper/src/main/java/net/minecraft/server/TileEntityChest.java

100 Zeilen
2.5 KiB
Java

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