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

207 Zeilen
7.0 KiB
Java

2011-05-31 19:04:52 +02:00
package net.minecraft.server;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
2011-07-03 08:42:26 +02:00
// CraftBukkit start
import java.util.UUID;
2011-07-03 08:42:26 +02:00
import org.bukkit.Bukkit;
import org.bukkit.craftbukkit.CraftServer;
import org.bukkit.craftbukkit.CraftWorld;
import org.bukkit.craftbukkit.map.CraftMapView;
2011-07-03 08:42:26 +02:00
// CraftBukkit end
2011-05-31 19:04:52 +02:00
public class WorldMap extends WorldMapBase {
public int b;
public int c;
public byte map;
2011-05-31 19:04:52 +02:00
public byte e;
public byte[] f = new byte[16384];
public int g;
public List h = new ArrayList();
private Map j = new HashMap();
public List i = new ArrayList();
2011-07-03 08:42:26 +02:00
// CraftBukkit start
public final CraftMapView mapView;
2011-07-03 08:42:26 +02:00
private CraftServer server;
2011-07-13 06:06:07 +02:00
private UUID uniqueId = null;
2011-07-03 08:42:26 +02:00
// CraftBukkit end
2011-05-31 19:04:52 +02:00
public WorldMap(String s) {
super(s);
// CraftBukkit start
mapView = new CraftMapView(this);
server = (CraftServer) Bukkit.getServer();
// CraftBukkit end
2011-05-31 19:04:52 +02:00
}
public void a(NBTTagCompound nbttagcompound) {
2011-07-03 08:42:26 +02:00
// CraftBukkit start
byte dimension = nbttagcompound.c("dimension");
2011-07-07 21:29:57 +02:00
if (dimension >= 10) {
2011-07-13 06:06:07 +02:00
long least = nbttagcompound.getLong("UUIDLeast");
long most = nbttagcompound.getLong("UUIDMost");
if (least != 0L && most != 0L) {
this.uniqueId = new UUID(most, least);
CraftWorld world = (CraftWorld) server.getWorld(this.uniqueId);
// Check if the stored world details are correct.
if (world == null) {
/* All Maps which do not have their valid world loaded are set to a dimension which hopefully won't be reached.
This is to prevent them being corrupted with the wrong map data. */
dimension = 127;
} else {
dimension = (byte) world.getHandle().dimension;
}
2011-07-07 21:29:57 +02:00
}
2011-07-03 08:42:26 +02:00
}
this.map = dimension;
// CraftBukkit end
2011-05-31 19:04:52 +02:00
this.b = nbttagcompound.e("xCenter");
this.c = nbttagcompound.e("zCenter");
this.e = nbttagcompound.c("scale");
if (this.e < 0) {
this.e = 0;
}
if (this.e > 4) {
this.e = 4;
}
short short1 = nbttagcompound.d("width");
short short2 = nbttagcompound.d("height");
if (short1 == 128 && short2 == 128) {
this.f = nbttagcompound.j("colors");
} else {
byte[] abyte = nbttagcompound.j("colors");
this.f = new byte[16384];
int i = (128 - short1) / 2;
int j = (128 - short2) / 2;
for (int k = 0; k < short2; ++k) {
int l = k + j;
if (l >= 0 || l < 128) {
for (int i1 = 0; i1 < short1; ++i1) {
int j1 = i1 + i;
if (j1 >= 0 || j1 < 128) {
this.f[j1 + l * 128] = abyte[i1 + k * short1];
}
}
}
}
}
}
public void b(NBTTagCompound nbttagcompound) {
2011-07-03 08:42:26 +02:00
// CraftBukkit start
if (this.map >= 10) {
2011-07-13 06:06:07 +02:00
if (this.uniqueId == null) {
2011-07-03 08:42:26 +02:00
for (org.bukkit.World world : server.getWorlds()) {
CraftWorld cWorld = (CraftWorld) world;
if (cWorld.getHandle().dimension == this.map) {
2011-07-13 06:06:07 +02:00
this.uniqueId = cWorld.getUID();
2011-07-03 08:42:26 +02:00
break;
}
}
}
/* Perform a second check to see if a matching world was found, this is a necessary
change incase Maps are forcefully unlinked from a World and lack a UID.*/
if (this.uniqueId != null) {
nbttagcompound.setLong("UUIDLeast", this.uniqueId.getLeastSignificantBits());
nbttagcompound.setLong("UUIDMost", this.uniqueId.getMostSignificantBits());
}
2011-07-03 08:42:26 +02:00
}
// CraftBukkit end
nbttagcompound.a("dimension", this.map);
2011-05-31 19:04:52 +02:00
nbttagcompound.a("xCenter", this.b);
nbttagcompound.a("zCenter", this.c);
nbttagcompound.a("scale", this.e);
nbttagcompound.a("width", (short) 128);
nbttagcompound.a("height", (short) 128);
nbttagcompound.a("colors", this.f);
}
public void a(EntityHuman entityhuman, ItemStack itemstack) {
if (!this.j.containsKey(entityhuman)) {
WorldMapHumanTracker worldmaphumantracker = new WorldMapHumanTracker(this, entityhuman);
this.j.put(entityhuman, worldmaphumantracker);
this.h.add(worldmaphumantracker);
}
this.i.clear();
for (int i = 0; i < this.h.size(); ++i) {
WorldMapHumanTracker worldmaphumantracker1 = (WorldMapHumanTracker) this.h.get(i);
if (!worldmaphumantracker1.trackee.dead && worldmaphumantracker1.trackee.inventory.c(itemstack)) {
float f = (float) (worldmaphumantracker1.trackee.locX - (double) this.b) / (float) (1 << this.e);
float f1 = (float) (worldmaphumantracker1.trackee.locZ - (double) this.c) / (float) (1 << this.e);
2011-05-31 19:04:52 +02:00
byte b0 = 64;
byte b1 = 64;
if (f >= (float) (-b0) && f1 >= (float) (-b1) && f <= (float) b0 && f1 <= (float) b1) {
byte b2 = 0;
byte b3 = (byte) ((int) ((double) (f * 2.0F) + 0.5D));
byte b4 = (byte) ((int) ((double) (f1 * 2.0F) + 0.5D));
2011-06-12 00:02:58 +02:00
// CraftBukkit
byte b5 = (byte) ((int) ((double) (worldmaphumantracker1.trackee.yaw * 16.0F / 360.0F) + 0.5D));
2011-05-31 19:04:52 +02:00
if (this.map < 0) {
2011-05-31 19:04:52 +02:00
int j = this.g / 10;
b5 = (byte) (j * j * 34187121 + j * 121 >> 15 & 15);
}
if (worldmaphumantracker1.trackee.dimension == this.map) {
2011-05-31 19:04:52 +02:00
this.i.add(new WorldMapOrienter(this, b2, b3, b4, b5));
}
}
} else {
this.j.remove(worldmaphumantracker1.trackee);
2011-05-31 19:04:52 +02:00
this.h.remove(worldmaphumantracker1);
}
}
}
public byte[] a(ItemStack itemstack, World world, EntityHuman entityhuman) {
WorldMapHumanTracker worldmaphumantracker = (WorldMapHumanTracker) this.j.get(entityhuman);
if (worldmaphumantracker == null) {
return null;
} else {
byte[] abyte = worldmaphumantracker.a(itemstack);
return abyte;
}
}
public void a(int i, int j, int k) {
super.a();
for (int l = 0; l < this.h.size(); ++l) {
WorldMapHumanTracker worldmaphumantracker = (WorldMapHumanTracker) this.h.get(l);
if (worldmaphumantracker.b[i] < 0 || worldmaphumantracker.b[i] > j) {
worldmaphumantracker.b[i] = j;
}
if (worldmaphumantracker.c[i] < 0 || worldmaphumantracker.c[i] < k) {
worldmaphumantracker.c[i] = k;
}
}
}
}