2011-01-14 20:44:11 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
public class TileEntityChest extends TileEntity implements IInventory {
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
private ItemStack[] items = new ItemStack[27]; // CraftBukkit
|
2011-09-15 02:23:52 +02:00
|
|
|
public boolean a = false;
|
|
|
|
public TileEntityChest b;
|
|
|
|
public TileEntityChest c;
|
|
|
|
public TileEntityChest d;
|
|
|
|
public TileEntityChest e;
|
|
|
|
public float f;
|
|
|
|
public float g;
|
|
|
|
public int h;
|
2012-01-14 21:03:48 +01:00
|
|
|
private int ticks;
|
2011-01-14 20:44:11 +01:00
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
public ItemStack[] getContents() {
|
2011-06-27 00:25:01 +02:00
|
|
|
return this.items;
|
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-04-20 19:05:14 +02:00
|
|
|
public int getSize() {
|
2011-02-23 03:37:56 +01:00
|
|
|
return 27;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public ItemStack getItem(int i) {
|
|
|
|
return this.items[i];
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
public ItemStack splitStack(int i, int j) {
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.items[i] != null) {
|
2011-01-29 22:50:29 +01:00
|
|
|
ItemStack itemstack;
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.items[i].count <= j) {
|
|
|
|
itemstack = this.items[i];
|
|
|
|
this.items[i] = null;
|
|
|
|
this.update();
|
2011-01-14 20:44:11 +01:00
|
|
|
return itemstack;
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
2011-04-20 19:05:14 +02:00
|
|
|
itemstack = this.items[i].a(j);
|
|
|
|
if (this.items[i].count == 0) {
|
|
|
|
this.items[i] = null;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
this.update();
|
2011-01-29 22:50:29 +01:00
|
|
|
return itemstack;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public void setItem(int i, ItemStack itemstack) {
|
|
|
|
this.items[i] = itemstack;
|
|
|
|
if (itemstack != null && itemstack.count > this.getMaxStackSize()) {
|
|
|
|
itemstack.count = this.getMaxStackSize();
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
this.update();
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public String getName() {
|
2011-01-14 20:44:11 +01:00
|
|
|
return "Chest";
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
|
|
|
super.a(nbttagcompound);
|
2011-11-30 00:17:43 +01:00
|
|
|
NBTTagList nbttaglist = nbttagcompound.getList("Items");
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
this.items = new ItemStack[this.getSize()];
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
for (int i = 0; i < nbttaglist.size(); ++i) {
|
|
|
|
NBTTagCompound nbttagcompound1 = (NBTTagCompound) nbttaglist.get(i);
|
|
|
|
int j = nbttagcompound1.getByte("Slot") & 255;
|
2011-01-14 20:44:11 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
if (j >= 0 && j < this.items.length) {
|
2011-09-15 02:23:52 +02:00
|
|
|
this.items[j] = ItemStack.a(nbttagcompound1);
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void b(NBTTagCompound nbttagcompound) {
|
|
|
|
super.b(nbttagcompound);
|
|
|
|
NBTTagList nbttaglist = new NBTTagList();
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
for (int i = 0; i < this.items.length; ++i) {
|
|
|
|
if (this.items[i] != null) {
|
2011-01-14 20:44:11 +01:00
|
|
|
NBTTagCompound nbttagcompound1 = new NBTTagCompound();
|
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
nbttagcompound1.setByte("Slot", (byte) i);
|
2011-09-15 02:23:52 +02:00
|
|
|
this.items[i].b(nbttagcompound1);
|
2011-11-30 00:17:43 +01:00
|
|
|
nbttaglist.add(nbttagcompound1);
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
nbttagcompound.set("Items", nbttaglist);
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public int getMaxStackSize() {
|
2011-01-14 20:44:11 +01:00
|
|
|
return 64;
|
|
|
|
}
|
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
public boolean a(EntityHuman entityhuman) {
|
2011-09-21 11:01:44 +02:00
|
|
|
if (this.world == null) return true; // CraftBukkit
|
2011-07-08 14:25:53 +02:00
|
|
|
return this.world.getTileEntity(this.x, this.y, this.z) != this ? false : entityhuman.e((double) this.x + 0.5D, (double) this.y + 0.5D, (double) this.z + 0.5D) <= 64.0D;
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
public void d() {
|
|
|
|
super.d();
|
2011-09-15 02:23:52 +02:00
|
|
|
this.a = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void h() {
|
|
|
|
if (!this.a) {
|
|
|
|
this.a = true;
|
|
|
|
this.b = null;
|
|
|
|
this.c = null;
|
|
|
|
this.d = null;
|
|
|
|
this.e = null;
|
|
|
|
if (this.world.getTypeId(this.x - 1, this.y, this.z) == Block.CHEST.id) {
|
2011-09-21 14:38:41 +02:00
|
|
|
this.d = (TileEntityChest) this.world.getTileEntity(this.x - 1, this.y, this.z);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.world.getTypeId(this.x + 1, this.y, this.z) == Block.CHEST.id) {
|
2011-09-21 14:38:41 +02:00
|
|
|
this.c = (TileEntityChest) this.world.getTileEntity(this.x + 1, this.y, this.z);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.world.getTypeId(this.x, this.y, this.z - 1) == Block.CHEST.id) {
|
2011-09-21 14:38:41 +02:00
|
|
|
this.b = (TileEntityChest) this.world.getTileEntity(this.x, this.y, this.z - 1);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.world.getTypeId(this.x, this.y, this.z + 1) == Block.CHEST.id) {
|
2011-09-21 14:38:41 +02:00
|
|
|
this.e = (TileEntityChest) this.world.getTileEntity(this.x, this.y, this.z + 1);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2011-09-21 14:38:41 +02:00
|
|
|
if (this.b != null) {
|
2011-11-20 09:01:14 +01:00
|
|
|
this.b.d();
|
2011-09-21 14:38:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.e != null) {
|
2011-11-20 09:01:14 +01:00
|
|
|
this.e.d();
|
2011-09-21 14:38:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.c != null) {
|
2011-11-20 09:01:14 +01:00
|
|
|
this.c.d();
|
2011-09-21 14:38:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.d != null) {
|
2011-11-20 09:01:14 +01:00
|
|
|
this.d.d();
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-18 01:03:58 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
private TileEntityChest getTileEntity(int x, int y, int z) {
|
2011-09-21 11:01:44 +02:00
|
|
|
if (this.world == null) return null; // CraftBukkit
|
2011-09-18 01:03:58 +02:00
|
|
|
TileEntity entity = this.world.getTileEntity(x, y, z);
|
|
|
|
|
|
|
|
if (entity instanceof TileEntityChest) {
|
|
|
|
return (TileEntityChest)entity;
|
|
|
|
} else {
|
2011-09-19 22:58:47 +02:00
|
|
|
String name = "null";
|
|
|
|
if (entity != null) {
|
|
|
|
name = entity.toString();
|
|
|
|
}
|
|
|
|
world.getServer().getLogger().severe("Block at " + x + "," + y + "," + z + " is a chest but has a " + name);
|
2011-09-18 01:03:58 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
public void l_() {
|
|
|
|
super.l_();
|
2011-09-21 11:01:44 +02:00
|
|
|
if (this.world == null) return; // CraftBukkit
|
2011-09-15 02:23:52 +02:00
|
|
|
this.h();
|
2012-01-14 21:03:48 +01:00
|
|
|
if (++this.ticks % (20 * 4) == 0) { // CraftBukkit
|
2011-09-15 02:23:52 +02:00
|
|
|
this.world.playNote(this.x, this.y, this.z, 1, this.h);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.g = this.f;
|
|
|
|
float f = 0.1F;
|
|
|
|
double d0;
|
|
|
|
|
|
|
|
if (this.h > 0 && this.f == 0.0F && this.b == null && this.d == null) {
|
2011-11-20 09:01:14 +01:00
|
|
|
double d1 = (double) this.x + 0.5D;
|
|
|
|
|
|
|
|
d0 = (double) this.z + 0.5D;
|
2011-09-15 02:23:52 +02:00
|
|
|
if (this.e != null) {
|
2011-11-20 09:01:14 +01:00
|
|
|
d0 += 0.5D;
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.c != null) {
|
2011-11-20 09:01:14 +01:00
|
|
|
d1 += 0.5D;
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
this.world.makeSound(d1, (double) this.y + 0.5D, d0, "random.chestopen", 0.5F, this.world.random.nextFloat() * 0.1F + 0.9F);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.h == 0 && this.f > 0.0F || this.h > 0 && this.f < 1.0F) {
|
2011-11-20 09:01:14 +01:00
|
|
|
float f1 = this.f;
|
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
if (this.h > 0) {
|
|
|
|
this.f += f;
|
|
|
|
} else {
|
|
|
|
this.f -= f;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.f > 1.0F) {
|
|
|
|
this.f = 1.0F;
|
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
float f2 = 0.5F;
|
|
|
|
|
|
|
|
if (this.f < f2 && f1 >= f2 && this.b == null && this.d == null) {
|
|
|
|
d0 = (double) this.x + 0.5D;
|
|
|
|
double d2 = (double) this.z + 0.5D;
|
|
|
|
|
|
|
|
if (this.e != null) {
|
|
|
|
d2 += 0.5D;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.c != null) {
|
|
|
|
d0 += 0.5D;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.world.makeSound(d0, (double) this.y + 0.5D, d2, "random.chestclosed", 0.5F, this.world.random.nextFloat() * 0.1F + 0.9F);
|
|
|
|
}
|
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
if (this.f < 0.0F) {
|
|
|
|
this.f = 0.0F;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void b(int i, int j) {
|
|
|
|
if (i == 1) {
|
|
|
|
this.h = j;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
public void f() {
|
2011-09-15 02:23:52 +02:00
|
|
|
++this.h;
|
2011-09-21 11:01:44 +02:00
|
|
|
if (this.world == null) return; // CraftBukkit
|
2011-09-15 02:23:52 +02:00
|
|
|
this.world.playNote(this.x, this.y, this.z, 1, this.h);
|
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
public void g() {
|
2011-09-15 02:23:52 +02:00
|
|
|
--this.h;
|
2011-09-21 11:01:44 +02:00
|
|
|
if (this.world == null) return; // CraftBukkit
|
2011-09-15 02:23:52 +02:00
|
|
|
this.world.playNote(this.x, this.y, this.z, 1, this.h);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void i() {
|
2011-11-20 09:01:14 +01:00
|
|
|
this.d();
|
2011-09-15 02:23:52 +02:00
|
|
|
this.h();
|
|
|
|
super.i();
|
|
|
|
}
|
2011-01-14 20:44:11 +01:00
|
|
|
}
|