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

164 Zeilen
4.3 KiB
Java

package net.minecraft.server;
import java.util.HashMap;
import java.util.Map;
2012-11-06 13:05:28 +01:00
import java.util.concurrent.Callable;
2012-07-29 09:33:13 +02:00
import org.bukkit.inventory.InventoryHolder; // CraftBukkit
public class TileEntity {
private static Map a = new HashMap();
private static Map b = new HashMap();
public World world; // CraftBukkit - protected -> public
public int x;
public int y;
public int z;
protected boolean o;
public int p = -1;
public Block q;
public TileEntity() {}
private static void a(Class oclass, String s) {
2012-07-29 09:33:13 +02:00
if (a.containsKey(s)) {
throw new IllegalArgumentException("Duplicate id: " + s);
} else {
a.put(s, oclass);
b.put(oclass, s);
}
}
public void b(World world) {
2012-07-29 09:33:13 +02:00
this.world = world;
}
public boolean o() {
2012-07-29 09:33:13 +02:00
return this.world != null;
}
public void a(NBTTagCompound nbttagcompound) {
this.x = nbttagcompound.getInt("x");
this.y = nbttagcompound.getInt("y");
this.z = nbttagcompound.getInt("z");
}
public void b(NBTTagCompound nbttagcompound) {
String s = (String) b.get(this.getClass());
if (s == null) {
throw new RuntimeException(this.getClass() + " is missing a mapping! This is a bug!");
} else {
nbttagcompound.setString("id", s);
nbttagcompound.setInt("x", this.x);
nbttagcompound.setInt("y", this.y);
nbttagcompound.setInt("z", this.z);
}
}
2012-07-29 09:33:13 +02:00
public void g() {}
public static TileEntity c(NBTTagCompound nbttagcompound) {
TileEntity tileentity = null;
try {
Class oclass = (Class) a.get(nbttagcompound.getString("id"));
if (oclass != null) {
tileentity = (TileEntity) oclass.newInstance();
}
} catch (Exception exception) {
exception.printStackTrace();
}
if (tileentity != null) {
tileentity.a(nbttagcompound);
} else {
System.out.println("Skipping TileEntity with id " + nbttagcompound.getString("id"));
}
return tileentity;
}
public int p() {
if (this.p == -1) {
this.p = this.world.getData(this.x, this.y, this.z);
}
return this.p;
}
public void update() {
if (this.world != null) {
this.p = this.world.getData(this.x, this.y, this.z);
this.world.b(this.x, this.y, this.z, this);
}
}
public Block q() {
if (this.q == null) {
this.q = Block.byId[this.world.getTypeId(this.x, this.y, this.z)];
}
return this.q;
}
2012-11-06 13:05:28 +01:00
public Packet getUpdatePacket() {
return null;
}
public boolean r() {
return this.o;
}
public void w_() {
this.o = true;
}
public void s() {
this.o = false;
}
public void b(int i, int j) {}
2012-03-01 11:49:23 +01:00
public void h() {
this.q = null;
this.p = -1;
}
2012-11-06 13:05:28 +01:00
public void a(CrashReportSystemDetails crashreportsystemdetails) {
crashreportsystemdetails.a("Name", (Callable) (new CrashReportTileEntityName(this)));
CrashReportSystemDetails.a(crashreportsystemdetails, this.x, this.y, this.z, this.q.id, this.p);
}
static Map t() {
return b;
}
static {
a(TileEntityFurnace.class, "Furnace");
a(TileEntityChest.class, "Chest");
2012-07-29 09:33:13 +02:00
a(TileEntityEnderChest.class, "EnderChest");
a(TileEntityRecordPlayer.class, "RecordPlayer");
a(TileEntityDispenser.class, "Trap");
a(TileEntitySign.class, "Sign");
a(TileEntityMobSpawner.class, "MobSpawner");
a(TileEntityNote.class, "Music");
a(TileEntityPiston.class, "Piston");
a(TileEntityBrewingStand.class, "Cauldron");
a(TileEntityEnchantTable.class, "EnchantTable");
a(TileEntityEnderPortal.class, "Airportal");
a(TileEntityCommand.class, "Control");
a(TileEntityBeacon.class, "Beacon");
a(TileEntitySkull.class, "Skull");
}
// CraftBukkit start
public InventoryHolder getOwner() {
org.bukkit.block.BlockState state = world.getWorld().getBlockAt(x, y, z).getState();
2012-07-29 09:33:13 +02:00
if (state instanceof InventoryHolder) return (InventoryHolder) state;
return null;
}
// CraftBukkit end
}