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

129 Zeilen
3.3 KiB
Java

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[] items = new ItemStack[9];
2011-02-23 03:37:56 +01:00
private Random b = new Random();
// CraftBukkit start
public ItemStack[] getContents() {
return items;
2011-02-23 03:37:56 +01:00
}
// CraftBukkit end
public TileEntityDispenser() {}
public int getSize() {
2011-02-23 03:37:56 +01:00
return 9;
}
public ItemStack getItem(int i) {
return this.items[i];
2011-02-23 03:37:56 +01:00
}
public ItemStack a(int i, int j) {
if (this.items[i] != null) {
2011-02-23 03:37:56 +01:00
ItemStack itemstack;
if (this.items[i].count <= j) {
itemstack = this.items[i];
this.items[i] = null;
this.update();
2011-02-23 03:37:56 +01:00
return itemstack;
} else {
itemstack = this.items[i].a(j);
if (this.items[i].count == 0) {
this.items[i] = null;
2011-02-23 03:37:56 +01:00
}
this.update();
2011-02-23 03:37:56 +01:00
return itemstack;
}
} else {
return null;
}
}
2011-05-08 11:56:40 +02:00
// CraftBukkit start
public int findDispenseSlot() {
2011-02-23 03:37:56 +01:00
int i = -1;
int j = 1;
for (int k = 0; k < this.items.length; ++k) {
2011-05-08 11:56:40 +02:00
if (this.items[k] != null && this.items[k].count != 0 && this.b.nextInt(j) == 0) {
2011-02-23 03:37:56 +01:00
i = k;
++j;
}
}
2011-05-08 11:56:40 +02:00
return i;
}
public ItemStack b() {
int i = findDispenseSlot();
// CraftBukkit end
2011-02-23 03:37:56 +01:00
if (i >= 0) {
return this.a(i, 1);
} 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-02-23 03:37:56 +01:00
}
this.update();
2011-02-23 03:37:56 +01:00
}
public String getName() {
2011-02-23 03:37:56 +01:00
return "Trap";
}
public void a(NBTTagCompound nbttagcompound) {
super.a(nbttagcompound);
NBTTagList nbttaglist = nbttagcompound.l("Items");
this.items = new ItemStack[this.getSize()];
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.items.length) {
this.items[j] = new ItemStack(nbttagcompound1);
2011-02-23 03:37:56 +01:00
}
}
}
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) {
2011-02-23 03:37:56 +01:00
NBTTagCompound nbttagcompound1 = new NBTTagCompound();
nbttagcompound1.a("Slot", (byte) i);
this.items[i].a(nbttagcompound1);
2011-02-23 03:37:56 +01:00
nbttaglist.a((NBTBase) nbttagcompound1);
}
}
nbttagcompound.a("Items", (NBTBase) nbttaglist);
}
public int getMaxStackSize() {
2011-02-23 03:37:56 +01:00
return 64;
}
public boolean a_(EntityHuman entityhuman) {
return this.world.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-02-23 03:37:56 +01:00
}
}