3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-18 14:00:05 +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-02-23 13:56:36 +01:00
private ItemStack[] a = new ItemStack[27]; // CraftBukkit
// CraftBukkit start
public ItemStack[] getContents() {
2011-02-23 03:37:56 +01:00
return a;
}
// CraftBukkit end
2011-01-29 22:50:29 +01:00
public TileEntityChest() {}
2011-02-23 03:37:56 +01:00
public int m_() {
return 27;
}
2011-02-23 03:37:56 +01:00
public ItemStack c_(int i) {
return this.a[i];
}
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-02-23 03:37:56 +01:00
if (this.a[i].count <= j) {
itemstack = this.a[i];
this.a[i] = null;
this.h();
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-02-23 03:37:56 +01:00
this.h();
2011-01-29 22:50:29 +01:00
return itemstack;
}
} 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-29 22:50:29 +01:00
2011-02-23 03:37:56 +01:00
this.h();
}
2011-02-23 03:37:56 +01:00
public String c() {
return "Chest";
}
public void a(NBTTagCompound nbttagcompound) {
super.a(nbttagcompound);
2011-02-23 03:37:56 +01:00
NBTTagList nbttaglist = nbttagcompound.l("Items");
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) {
NBTTagCompound nbttagcompound1 = (NBTTagCompound) nbttaglist.a(i);
2011-02-23 03:37:56 +01:00
int j = nbttagcompound1.c("Slot") & 255;
2011-02-23 03:37:56 +01:00
if (j >= 0 && j < this.a.length) {
this.a[j] = new ItemStack(nbttagcompound1);
}
}
}
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) {
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-29 22:50:29 +01:00
nbttagcompound.a("Items", (NBTBase) nbttaglist);
}
2011-02-23 03:37:56 +01:00
public int n_() {
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;
}
}