Paper/src/main/java/net/minecraft/server/TileEntityChest.java
2013-11-30 19:26:12 -06:00

407 Zeilen
12 KiB
Java

package net.minecraft.server;
import java.util.Iterator;
import java.util.List;
// CraftBukkit start
import org.bukkit.craftbukkit.entity.CraftHumanEntity;
import org.bukkit.entity.HumanEntity;
// CraftBukkit end
public class TileEntityChest extends TileEntity implements IInventory {
private ItemStack[] items = new ItemStack[27]; // CraftBukkit - 36 -> 27
public boolean a;
public TileEntityChest i;
public TileEntityChest j;
public TileEntityChest k;
public TileEntityChest l;
public float m;
public float n;
public int o;
private int ticks;
private int r = -1;
private String s;
public TileEntityChest() {}
// CraftBukkit start
public List<HumanEntity> transaction = new java.util.ArrayList<HumanEntity>();
private int maxStack = MAX_STACK;
public ItemStack[] getContents() {
return this.items;
}
public void onOpen(CraftHumanEntity who) {
transaction.add(who);
}
public void onClose(CraftHumanEntity who) {
transaction.remove(who);
}
public List<HumanEntity> getViewers() {
return transaction;
}
public void setMaxStackSize(int size) {
maxStack = size;
}
// CraftBukkit end
public int getSize() {
return 27;
}
public ItemStack getItem(int i) {
return this.items[i];
}
public ItemStack splitStack(int i, int j) {
if (this.items[i] != null) {
ItemStack itemstack;
if (this.items[i].count <= j) {
itemstack = this.items[i];
this.items[i] = null;
this.update();
return itemstack;
} else {
itemstack = this.items[i].a(j);
if (this.items[i].count == 0) {
this.items[i] = null;
}
this.update();
return itemstack;
}
} else {
return null;
}
}
public ItemStack splitWithoutUpdate(int i) {
if (this.items[i] != null) {
ItemStack itemstack = this.items[i];
this.items[i] = null;
return itemstack;
} 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();
}
this.update();
}
public String getInventoryName() {
return this.k_() ? this.s : "container.chest";
}
public boolean k_() {
return this.s != null && this.s.length() > 0;
}
public void a(String s) {
this.s = s;
}
public void a(NBTTagCompound nbttagcompound) {
super.a(nbttagcompound);
NBTTagList nbttaglist = nbttagcompound.getList("Items", 10);
this.items = new ItemStack[this.getSize()];
if (nbttagcompound.hasKeyOfType("CustomName", 8)) {
this.s = nbttagcompound.getString("CustomName");
}
for (int i = 0; i < nbttaglist.size(); ++i) {
NBTTagCompound nbttagcompound1 = nbttaglist.get(i);
int j = nbttagcompound1.getByte("Slot") & 255;
if (j >= 0 && j < this.items.length) {
this.items[j] = ItemStack.createStack(nbttagcompound1);
}
}
}
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) {
NBTTagCompound nbttagcompound1 = new NBTTagCompound();
nbttagcompound1.setByte("Slot", (byte) i);
this.items[i].save(nbttagcompound1);
nbttaglist.add(nbttagcompound1);
}
}
nbttagcompound.set("Items", nbttaglist);
if (this.k_()) {
nbttagcompound.setString("CustomName", this.s);
}
}
public int getMaxStackSize() {
return maxStack; // CraftBukkit
}
public boolean a(EntityHuman entityhuman) {
if (this.world == null) return true; // CraftBukkit
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;
}
public void u() {
super.u();
this.a = false;
}
private void a(TileEntityChest tileentitychest, int i) {
if (tileentitychest.r()) {
this.a = false;
} else if (this.a) {
switch (i) {
case 0:
if (this.l != tileentitychest) {
this.a = false;
}
break;
case 1:
if (this.k != tileentitychest) {
this.a = false;
}
break;
case 2:
if (this.i != tileentitychest) {
this.a = false;
}
break;
case 3:
if (this.j != tileentitychest) {
this.a = false;
}
}
}
}
public void i() {
if (!this.a) {
this.a = true;
this.i = null;
this.j = null;
this.k = null;
this.l = null;
if (this.a(this.x - 1, this.y, this.z)) {
this.k = (TileEntityChest) this.world.getTileEntity(this.x - 1, this.y, this.z);
}
if (this.a(this.x + 1, this.y, this.z)) {
this.j = (TileEntityChest) this.world.getTileEntity(this.x + 1, this.y, this.z);
}
if (this.a(this.x, this.y, this.z - 1)) {
this.i = (TileEntityChest) this.world.getTileEntity(this.x, this.y, this.z - 1);
}
if (this.a(this.x, this.y, this.z + 1)) {
this.l = (TileEntityChest) this.world.getTileEntity(this.x, this.y, this.z + 1);
}
if (this.i != null) {
this.i.a(this, 0);
}
if (this.l != null) {
this.l.a(this, 2);
}
if (this.j != null) {
this.j.a(this, 1);
}
if (this.k != null) {
this.k.a(this, 3);
}
}
}
private boolean a(int i, int j, int k) {
Block block = this.world.getType(i, j, k);
return block instanceof BlockChest && ((BlockChest) block).a == this.j();
}
public void h() {
super.h();
if (this.world == null) return; // CraftBukkit
this.i();
++this.ticks;
float f;
if (!this.world.isStatic && this.o != 0 && (this.ticks + this.x + this.y + this.z) % 200 == 0) {
this.o = 0;
f = 5.0F;
List list = this.world.a(EntityHuman.class, AxisAlignedBB.a().a((double) ((float) this.x - f), (double) ((float) this.y - f), (double) ((float) this.z - f), (double) ((float) (this.x + 1) + f), (double) ((float) (this.y + 1) + f), (double) ((float) (this.z + 1) + f)));
Iterator iterator = list.iterator();
while (iterator.hasNext()) {
EntityHuman entityhuman = (EntityHuman) iterator.next();
if (entityhuman.activeContainer instanceof ContainerChest) {
IInventory iinventory = ((ContainerChest) entityhuman.activeContainer).e();
if (iinventory == this || iinventory instanceof InventoryLargeChest && ((InventoryLargeChest) iinventory).a((IInventory) this)) {
++this.o;
}
}
}
}
this.n = this.m;
f = 0.1F;
double d0;
if (this.o > 0 && this.m == 0.0F && this.i == null && this.k == null) {
double d1 = (double) this.x + 0.5D;
d0 = (double) this.z + 0.5D;
if (this.l != null) {
d0 += 0.5D;
}
if (this.j != null) {
d1 += 0.5D;
}
this.world.makeSound(d1, (double) this.y + 0.5D, d0, "random.chestopen", 0.5F, this.world.random.nextFloat() * 0.1F + 0.9F);
}
if (this.o == 0 && this.m > 0.0F || this.o > 0 && this.m < 1.0F) {
float f1 = this.m;
if (this.o > 0) {
this.m += f;
} else {
this.m -= f;
}
if (this.m > 1.0F) {
this.m = 1.0F;
}
float f2 = 0.5F;
if (this.m < f2 && f1 >= f2 && this.i == null && this.k == null) {
d0 = (double) this.x + 0.5D;
double d2 = (double) this.z + 0.5D;
if (this.l != null) {
d2 += 0.5D;
}
if (this.j != 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);
}
if (this.m < 0.0F) {
this.m = 0.0F;
}
}
}
public boolean c(int i, int j) {
if (i == 1) {
this.o = j;
return true;
} else {
return super.c(i, j);
}
}
public void startOpen() {
if (this.o < 0) {
this.o = 0;
}
int oldPower = Math.max(0, Math.min(15, this.o)); // CraftBukkit - Get power before new viewer is added
++this.o;
if (this.world == null) return; // CraftBukkit
this.world.playNote(this.x, this.y, this.z, this.q(), 1, this.o);
// CraftBukkit start - Call redstone event
if (this.q() == Blocks.TRAPPED_CHEST) {
int newPower = Math.max(0, Math.min(15, this.o));
if (oldPower != newPower) {
org.bukkit.craftbukkit.event.CraftEventFactory.callRedstoneChange(world, this.x, this.y, this.z, oldPower, newPower);
}
}
// CraftBukkit end
this.world.applyPhysics(this.x, this.y, this.z, this.q());
this.world.applyPhysics(this.x, this.y - 1, this.z, this.q());
}
public void l_() {
if (this.q() instanceof BlockChest) {
int oldPower = Math.max(0, Math.min(15, this.o)); // CraftBukkit - Get power before new viewer is added
--this.o;
if (this.world == null) return; // CraftBukkit
this.world.playNote(this.x, this.y, this.z, this.q(), 1, this.o);
// CraftBukkit start - Call redstone event
if (this.q() == Blocks.TRAPPED_CHEST) {
int newPower = Math.max(0, Math.min(15, this.o));
if (oldPower != newPower) {
org.bukkit.craftbukkit.event.CraftEventFactory.callRedstoneChange(world, this.x, this.y, this.z, oldPower, newPower);
}
}
// CraftBukkit end
this.world.applyPhysics(this.x, this.y, this.z, this.q());
this.world.applyPhysics(this.x, this.y - 1, this.z, this.q());
}
}
public boolean b(int i, ItemStack itemstack) {
return true;
}
public void s() {
super.s();
this.u();
this.i();
}
public int j() {
if (this.r == -1) {
if (this.world == null || !(this.q() instanceof BlockChest)) {
return 0;
}
this.r = ((BlockChest) this.q()).a;
}
return this.r;
}
}