2011-02-23 03:37:56 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
import java.util.Random;
|
|
|
|
|
|
|
|
public class TileEntityDispenser extends TileEntity implements IInventory {
|
|
|
|
|
|
|
|
private ItemStack[] a = new ItemStack[9];
|
|
|
|
private Random b = new Random();
|
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
public ItemStack[] getContents() {
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
public TileEntityDispenser() {}
|
|
|
|
|
2011-03-31 22:40:00 +02:00
|
|
|
public int q_() {
|
2011-02-23 03:37:56 +01:00
|
|
|
return 9;
|
|
|
|
}
|
|
|
|
|
|
|
|
public ItemStack c_(int i) {
|
|
|
|
return this.a[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
public ItemStack a(int i, int j) {
|
|
|
|
if (this.a[i] != null) {
|
|
|
|
ItemStack itemstack;
|
|
|
|
|
|
|
|
if (this.a[i].count <= j) {
|
|
|
|
itemstack = this.a[i];
|
|
|
|
this.a[i] = null;
|
2011-03-31 22:40:00 +02:00
|
|
|
this.i();
|
2011-02-23 03:37:56 +01:00
|
|
|
return itemstack;
|
|
|
|
} else {
|
|
|
|
itemstack = this.a[i].a(j);
|
|
|
|
if (this.a[i].count == 0) {
|
|
|
|
this.a[i] = null;
|
|
|
|
}
|
|
|
|
|
2011-03-31 22:40:00 +02:00
|
|
|
this.i();
|
2011-02-23 03:37:56 +01:00
|
|
|
return itemstack;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public ItemStack b() {
|
|
|
|
int i = -1;
|
|
|
|
int j = 1;
|
|
|
|
|
|
|
|
for (int k = 0; k < this.a.length; ++k) {
|
|
|
|
if (this.a[k] != null && this.b.nextInt(j) == 0) {
|
|
|
|
i = k;
|
|
|
|
++j;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i >= 0) {
|
|
|
|
return this.a(i, 1);
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(int i, ItemStack itemstack) {
|
|
|
|
this.a[i] = itemstack;
|
2011-03-31 22:40:00 +02:00
|
|
|
if (itemstack != null && itemstack.count > this.r_()) {
|
|
|
|
itemstack.count = this.r_();
|
2011-02-23 03:37:56 +01:00
|
|
|
}
|
|
|
|
|
2011-03-31 22:40:00 +02:00
|
|
|
this.i();
|
2011-02-23 03:37:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public String c() {
|
|
|
|
return "Trap";
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
|
|
|
super.a(nbttagcompound);
|
|
|
|
NBTTagList nbttaglist = nbttagcompound.l("Items");
|
|
|
|
|
2011-03-31 22:40:00 +02:00
|
|
|
this.a = new ItemStack[this.q_()];
|
2011-02-23 03:37:56 +01:00
|
|
|
|
|
|
|
for (int i = 0; i < nbttaglist.c(); ++i) {
|
|
|
|
NBTTagCompound nbttagcompound1 = (NBTTagCompound) nbttaglist.a(i);
|
|
|
|
int j = nbttagcompound1.c("Slot") & 255;
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
for (int i = 0; i < this.a.length; ++i) {
|
|
|
|
if (this.a[i] != null) {
|
|
|
|
NBTTagCompound nbttagcompound1 = new NBTTagCompound();
|
|
|
|
|
|
|
|
nbttagcompound1.a("Slot", (byte) i);
|
|
|
|
this.a[i].a(nbttagcompound1);
|
|
|
|
nbttaglist.a((NBTBase) nbttagcompound1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nbttagcompound.a("Items", (NBTBase) nbttaglist);
|
|
|
|
}
|
|
|
|
|
2011-03-31 22:40:00 +02:00
|
|
|
public int r_() {
|
2011-02-23 03:37:56 +01:00
|
|
|
return 64;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean a_(EntityHuman entityhuman) {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|