13
0
geforkt von Mirrors/Paper
Paper/src/main/java/net/minecraft/server/Chunk.java

924 Zeilen
27 KiB
Java

2011-02-01 23:49:28 +01:00
package net.minecraft.server;
import java.util.ArrayList;
2011-09-15 02:23:52 +02:00
import java.util.Arrays;
2011-02-01 23:49:28 +01:00
import java.util.HashMap;
2011-06-30 00:02:25 +02:00
import java.util.Iterator;
2011-02-01 23:49:28 +01:00
import java.util.List;
import java.util.Map;
import java.util.Random;
2011-11-20 09:01:14 +01:00
import org.bukkit.Bukkit; // CraftBukkit
2011-02-01 23:49:28 +01:00
public class Chunk {
public static boolean a;
2012-03-01 11:49:23 +01:00
private ChunkSection[] sections;
private byte[] q;
public int[] b;
public boolean[] c;
public boolean d;
public World world;
2012-03-01 11:49:23 +01:00
public int[] heightMap;
public final int x;
public final int z;
2012-03-01 11:49:23 +01:00
private boolean r;
public Map tileEntities;
public List[] entitySlices;
public boolean done;
2012-03-01 11:49:23 +01:00
public boolean l;
public boolean m;
public long n;
private int s;
boolean o;
2011-02-01 23:49:28 +01:00
public Chunk(World world, int i, int j) {
2012-03-01 11:49:23 +01:00
this.sections = new ChunkSection[16];
this.q = new byte[256];
this.b = new int[256];
this.c = new boolean[256];
this.r = false;
this.tileEntities = new HashMap();
this.done = false;
2012-03-01 11:49:23 +01:00
this.l = false;
this.m = false;
this.n = 0L;
this.s = 4096;
this.o = false;
this.entitySlices = new List[16];
this.world = world;
this.x = i;
this.z = j;
2012-03-01 11:49:23 +01:00
this.heightMap = new int[256];
2011-02-01 23:49:28 +01:00
for (int k = 0; k < this.entitySlices.length; ++k) {
this.entitySlices[k] = new ArrayList();
2011-02-01 23:49:28 +01:00
}
2012-03-01 11:49:23 +01:00
Arrays.fill(this.b, -999);
Arrays.fill(this.q, (byte) -1);
2011-09-15 02:23:52 +02:00
2011-02-01 23:49:28 +01:00
// CraftBukkit start
if (!(this instanceof EmptyChunk)) {
org.bukkit.craftbukkit.CraftWorld cworld = this.world.getWorld();
this.bukkitChunk = (cworld == null) ? null : cworld.popPreservedChunk(i, j);
if (this.bukkitChunk == null) {
this.bukkitChunk = new org.bukkit.craftbukkit.CraftChunk(this);
}
}
2011-02-01 23:49:28 +01:00
}
public org.bukkit.Chunk bukkitChunk;
// CraftBukkit end
public Chunk(World world, byte[] abyte, int i, int j) {
this(world, i, j);
2012-03-01 11:49:23 +01:00
int k = abyte.length / 256;
for (int l = 0; l < 16; ++l) {
for (int i1 = 0; i1 < 16; ++i1) {
for (int j1 = 0; j1 < k; ++j1) {
byte b0 = abyte[l << 11 | i1 << 7 | j1];
if (b0 != 0) {
int k1 = j1 >> 4;
if (this.sections[k1] == null) {
this.sections[k1] = new ChunkSection(k1 << 4);
}
this.sections[k1].a(l, j1 & 15, i1, b0);
}
}
}
}
2011-02-01 23:49:28 +01:00
}
public boolean a(int i, int j) {
return i == this.x && j == this.z;
2011-02-01 23:49:28 +01:00
}
public int b(int i, int j) {
2012-03-01 11:49:23 +01:00
return this.heightMap[j << 4 | i];
2011-02-01 23:49:28 +01:00
}
2012-03-01 11:49:23 +01:00
public int g() {
for (int i = this.sections.length - 1; i >= 0; --i) {
if (this.sections[i] != null) {
return this.sections[i].c();
}
}
return 0;
}
public ChunkSection[] h() {
return this.sections;
}
2011-02-01 23:49:28 +01:00
public void initLighting() {
2012-03-01 11:49:23 +01:00
int i = this.g();
2011-02-01 23:49:28 +01:00
int j;
int k;
for (j = 0; j < 16; ++j) {
2012-03-01 11:49:23 +01:00
k = 0;
2011-09-15 05:13:14 +02:00
2012-03-01 11:49:23 +01:00
while (k < 16) {
this.b[j + (k << 4)] = -999;
int l = i + 16 - 1;
2011-02-01 23:49:28 +01:00
2012-03-01 11:49:23 +01:00
while (true) {
if (l > 0) {
if (this.b(j, l - 1, k) == 0) {
--l;
continue;
}
2011-02-01 23:49:28 +01:00
2012-03-01 11:49:23 +01:00
this.heightMap[k << 4 | j] = l;
}
2011-02-01 23:49:28 +01:00
2012-03-01 11:49:23 +01:00
if (!this.world.worldProvider.e) {
l = 15;
int i1 = i + 16 - 1;
2011-02-01 23:49:28 +01:00
2012-03-01 11:49:23 +01:00
do {
l -= this.b(j, i1, k);
if (l > 0) {
ChunkSection chunksection = this.sections[i1 >> 4];
2011-02-01 23:49:28 +01:00
2012-03-01 11:49:23 +01:00
if (chunksection != null) {
chunksection.c(j, i1 & 15, k, l);
this.world.o((this.x << 4) + j, i1, (this.z << 4) + k);
}
}
--i1;
} while (i1 > 0 && l > 0);
}
++k;
break;
2011-02-01 23:49:28 +01:00
}
}
}
2012-03-01 11:49:23 +01:00
this.l = true;
2011-02-01 23:49:28 +01:00
for (j = 0; j < 16; ++j) {
for (k = 0; k < 16; ++k) {
2012-03-01 11:49:23 +01:00
this.e(j, k);
2011-02-01 23:49:28 +01:00
}
}
}
public void loadNOP() {}
2011-02-01 23:49:28 +01:00
2012-03-01 11:49:23 +01:00
private void e(int i, int j) {
this.c[i + j * 16] = true;
this.r = true;
2011-11-20 09:01:14 +01:00
}
2012-03-01 11:49:23 +01:00
private void o() {
MethodProfiler.a("recheckGaps");
if (this.world.areChunksLoaded(this.x * 16 + 8, 0, this.z * 16 + 8, 16)) {
2011-11-20 09:01:14 +01:00
for (int i = 0; i < 16; ++i) {
for (int j = 0; j < 16; ++j) {
2012-03-01 11:49:23 +01:00
if (this.c[i + j * 16]) {
this.c[i + j * 16] = false;
2011-11-20 09:01:14 +01:00
int k = this.b(i, j);
int l = this.x * 16 + i;
int i1 = this.z * 16 + j;
int j1 = this.world.getHighestBlockYAt(l - 1, i1);
int k1 = this.world.getHighestBlockYAt(l + 1, i1);
int l1 = this.world.getHighestBlockYAt(l, i1 - 1);
int i2 = this.world.getHighestBlockYAt(l, i1 + 1);
if (k1 < j1) {
j1 = k1;
2011-09-15 02:23:52 +02:00
}
2011-11-20 09:01:14 +01:00
if (l1 < j1) {
j1 = l1;
2011-09-15 02:23:52 +02:00
}
2011-11-20 09:01:14 +01:00
if (i2 < j1) {
j1 = i2;
2011-09-15 02:23:52 +02:00
}
2011-02-01 23:49:28 +01:00
2012-03-01 11:49:23 +01:00
this.g(l, i1, j1);
this.g(l - 1, i1, k);
this.g(l + 1, i1, k);
this.g(l, i1 - 1, k);
this.g(l, i1 + 1, k);
2011-09-15 02:23:52 +02:00
}
}
}
2012-03-01 11:49:23 +01:00
this.r = false;
2011-09-15 02:23:52 +02:00
}
2012-03-01 11:49:23 +01:00
MethodProfiler.a();
2011-02-01 23:49:28 +01:00
}
2012-03-01 11:49:23 +01:00
private void g(int i, int j, int k) {
int l = this.world.getHighestBlockYAt(i, j);
2011-02-01 23:49:28 +01:00
if (l > k) {
2011-09-15 02:23:52 +02:00
this.d(i, j, k, l + 1);
2011-02-01 23:49:28 +01:00
} else if (l < k) {
2011-09-15 02:23:52 +02:00
this.d(i, j, l, k + 1);
}
}
private void d(int i, int j, int k, int l) {
2012-03-01 11:49:23 +01:00
if (l > k && this.world.areChunksLoaded(i, 0, j, 16)) {
2011-11-20 09:01:14 +01:00
for (int i1 = k; i1 < l; ++i1) {
this.world.b(EnumSkyBlock.SKY, i, i1, j);
2011-09-15 02:23:52 +02:00
}
2011-11-20 09:01:14 +01:00
2012-03-01 11:49:23 +01:00
this.l = true;
2011-02-01 23:49:28 +01:00
}
}
2012-03-01 11:49:23 +01:00
private void h(int i, int j, int k) {
int l = this.heightMap[k << 4 | i] & 0xFF; // CraftBukkit
2011-02-01 23:49:28 +01:00
int i1 = l;
if (j > l) {
i1 = j;
}
2011-09-15 02:23:52 +02:00
2012-03-01 11:49:23 +01:00
while (i1 > 0 && this.b(i, i1 - 1, k) == 0) {
--i1;
2011-02-01 23:49:28 +01:00
}
if (i1 != l) {
this.world.g(i, k, i1, l);
2012-03-01 11:49:23 +01:00
this.heightMap[k << 4 | i] = i1;
int j1 = this.x * 16 + i;
int k1 = this.z * 16 + k;
2011-02-01 23:49:28 +01:00
int l1;
int i2;
2012-03-01 11:49:23 +01:00
if (!this.world.worldProvider.e) {
ChunkSection chunksection;
2011-02-01 23:49:28 +01:00
2011-11-20 09:01:14 +01:00
if (i1 < l) {
2012-03-01 11:49:23 +01:00
for (l1 = i1; l1 < l; ++l1) {
chunksection = this.sections[l1 >> 4];
if (chunksection != null) {
chunksection.c(i, l1 & 15, k, 15);
this.world.o((this.x << 4) + i, l1, (this.z << 4) + k);
}
2011-11-20 09:01:14 +01:00
}
} else {
2012-03-01 11:49:23 +01:00
for (l1 = l; l1 < i1; ++l1) {
chunksection = this.sections[l1 >> 4];
if (chunksection != null) {
chunksection.c(i, l1 & 15, k, 0);
this.world.o((this.x << 4) + i, l1, (this.z << 4) + k);
}
2011-11-20 09:01:14 +01:00
}
2011-02-01 23:49:28 +01:00
}
2012-03-01 11:49:23 +01:00
l1 = 15;
while (i1 > 0 && l1 > 0) {
2011-11-20 09:01:14 +01:00
--i1;
2012-03-01 11:49:23 +01:00
i2 = this.b(i, i1, k);
if (i2 == 0) {
i2 = 1;
}
l1 -= i2;
if (l1 < 0) {
l1 = 0;
2011-11-20 09:01:14 +01:00
}
2012-03-01 11:49:23 +01:00
ChunkSection chunksection1 = this.sections[i1 >> 4];
if (chunksection1 != null) {
chunksection1.c(i, i1 & 15, k, l1);
2011-11-20 09:01:14 +01:00
}
2011-02-01 23:49:28 +01:00
}
}
2012-03-01 11:49:23 +01:00
l1 = this.heightMap[k << 4 | i];
i2 = l;
int j2 = l1;
2011-02-01 23:49:28 +01:00
2012-03-01 11:49:23 +01:00
if (l1 < l) {
i2 = l1;
j2 = l;
2011-11-20 09:01:14 +01:00
}
2012-03-01 11:49:23 +01:00
if (!this.world.worldProvider.e) {
this.d(j1 - 1, k1, i2, j2);
this.d(j1 + 1, k1, i2, j2);
this.d(j1, k1 - 1, i2, j2);
this.d(j1, k1 + 1, i2, j2);
this.d(j1, k1, i2, j2);
2011-02-01 23:49:28 +01:00
}
2012-03-01 11:49:23 +01:00
this.l = true;
2011-02-01 23:49:28 +01:00
}
}
2012-03-01 11:49:23 +01:00
public int b(int i, int j, int k) {
return Block.lightBlock[this.getTypeId(i, j, k)];
}
public int getTypeId(int i, int j, int k) {
2012-03-02 21:13:53 +01:00
if (j >> 4 >= sections.length) return 0; // CraftBukkit - added until next release
2012-03-01 11:49:23 +01:00
ChunkSection chunksection = this.sections[j >> 4];
return chunksection != null ? chunksection.a(i, j & 15, k) : 0;
}
public int getData(int i, int j, int k) {
2012-03-02 21:13:53 +01:00
if (j >> 4 >= sections.length) return 0; // CraftBukkit - added until next release
2012-03-01 11:49:23 +01:00
ChunkSection chunksection = this.sections[j >> 4];
return chunksection != null ? chunksection.b(i, j & 15, k) : 0;
}
public boolean a(int i, int j, int k, int l) {
return this.a(i, j, k, l, 0);
2011-02-01 23:49:28 +01:00
}
public boolean a(int i, int j, int k, int l, int i1) {
2011-09-15 02:23:52 +02:00
int j1 = k << 4 | i;
2012-03-01 11:49:23 +01:00
if (j >= this.b[j1] - 1) {
this.b[j1] = -999;
2011-09-15 02:23:52 +02:00
}
2012-03-01 11:49:23 +01:00
int k1 = this.heightMap[j1];
int l1 = this.getTypeId(i, j, k);
2011-02-01 23:49:28 +01:00
2012-03-01 11:49:23 +01:00
if (l1 == l && this.getData(i, j, k) == i1) {
2011-02-01 23:49:28 +01:00
return false;
} else {
2012-03-01 11:49:23 +01:00
ChunkSection chunksection = this.sections[j >> 4];
boolean flag = false;
if (chunksection == null) {
if (l == 0) {
return false;
}
chunksection = this.sections[j >> 4] = new ChunkSection(j >> 4 << 4);
flag = j >= k1;
}
chunksection.a(i, j & 15, k, l);
2011-11-20 09:01:14 +01:00
int i2 = this.x * 16 + i;
int j2 = this.z * 16 + k;
2011-09-15 05:13:14 +02:00
2011-11-20 09:01:14 +01:00
if (l1 != 0) {
if (!this.world.isStatic) {
Block.byId[l1].remove(this.world, i2, j, j2);
} else if (Block.byId[l1] instanceof BlockContainer && l1 != l) {
2012-03-01 11:49:23 +01:00
this.world.q(i2, j, j2);
2011-11-20 09:01:14 +01:00
}
2011-02-01 23:49:28 +01:00
}
2012-03-10 04:18:04 +01:00
if (chunksection.a(i, j & 15, k) != l) return false; // CraftBukkit - remove next update
2012-03-01 11:49:23 +01:00
chunksection.b(i, j & 15, k, i1);
if (flag) {
this.initLighting();
} else {
if (Block.lightBlock[l & 4095] > 0) {
if (j > k1) {
this.h(i, j + 1, k);
2011-02-01 23:49:28 +01:00
}
2011-09-15 02:23:52 +02:00
} else if (j == k1 - 1) {
2012-03-01 11:49:23 +01:00
this.h(i, j, k);
2011-02-01 23:49:28 +01:00
}
2012-03-01 11:49:23 +01:00
this.e(i, k);
2011-02-01 23:49:28 +01:00
}
2011-09-15 02:23:52 +02:00
TileEntity tileentity;
2011-02-01 23:49:28 +01:00
if (l != 0) {
2011-09-15 02:23:52 +02:00
if (!this.world.isStatic) {
Block.byId[l].onPlace(this.world, i2, j, j2);
2011-09-15 02:23:52 +02:00
}
if (Block.byId[l] instanceof BlockContainer) {
2012-03-01 11:49:23 +01:00
tileentity = this.e(i, j, k);
2011-09-15 02:23:52 +02:00
if (tileentity == null) {
tileentity = ((BlockContainer) Block.byId[l]).a_();
2012-01-12 23:10:13 +01:00
this.world.setTileEntity(i2, j, j2, tileentity);
2011-09-15 02:23:52 +02:00
}
if (tileentity != null) {
2012-03-01 11:49:23 +01:00
tileentity.h();
2011-09-15 02:23:52 +02:00
}
}
2011-11-20 09:01:14 +01:00
} else if (l1 > 0 && Block.byId[l1] instanceof BlockContainer) {
2012-03-01 11:49:23 +01:00
tileentity = this.e(i, j, k);
2011-09-15 02:23:52 +02:00
if (tileentity != null) {
2012-03-01 11:49:23 +01:00
tileentity.h();
2011-09-15 02:23:52 +02:00
}
2011-02-01 23:49:28 +01:00
}
2012-03-01 11:49:23 +01:00
this.l = true;
2011-02-01 23:49:28 +01:00
return true;
}
}
2012-03-01 11:49:23 +01:00
public boolean b(int i, int j, int k, int l) {
ChunkSection chunksection = this.sections[j >> 4];
2011-09-15 02:23:52 +02:00
2012-03-01 11:49:23 +01:00
if (chunksection == null) {
2011-02-01 23:49:28 +01:00
return false;
} else {
2012-03-01 11:49:23 +01:00
int i1 = chunksection.b(i, j & 15, k);
2011-09-15 02:23:52 +02:00
2012-03-01 11:49:23 +01:00
if (i1 == l) {
return false;
} else {
this.l = true;
chunksection.b(i, j & 15, k, l);
int j1 = chunksection.a(i, j & 15, k);
2011-09-15 02:23:52 +02:00
2012-03-01 11:49:23 +01:00
if (j1 > 0 && Block.byId[j1] instanceof BlockContainer) {
TileEntity tileentity = this.e(i, j, k);
2011-09-15 02:23:52 +02:00
if (tileentity != null) {
2012-03-01 11:49:23 +01:00
tileentity.h();
tileentity.p = l;
2011-09-15 02:23:52 +02:00
}
}
2011-02-01 23:49:28 +01:00
2012-03-01 11:49:23 +01:00
return true;
2011-09-15 02:23:52 +02:00
}
}
2011-02-01 23:49:28 +01:00
}
2012-02-29 22:31:04 +01:00
public int getBrightness(EnumSkyBlock enumskyblock, int i, int j, int k) {
2012-03-01 11:49:23 +01:00
ChunkSection chunksection = this.sections[j >> 4];
return chunksection == null ? enumskyblock.c : (enumskyblock == EnumSkyBlock.SKY ? chunksection.c(i, j & 15, k) : (enumskyblock == EnumSkyBlock.BLOCK ? chunksection.d(i, j & 15, k) : enumskyblock.c));
2011-02-01 23:49:28 +01:00
}
public void a(EnumSkyBlock enumskyblock, int i, int j, int k, int l) {
2012-03-01 11:49:23 +01:00
ChunkSection chunksection = this.sections[j >> 4];
if (chunksection == null) {
chunksection = this.sections[j >> 4] = new ChunkSection(j >> 4 << 4);
this.initLighting();
}
this.l = true;
2011-02-01 23:49:28 +01:00
if (enumskyblock == EnumSkyBlock.SKY) {
2012-03-01 11:49:23 +01:00
if (!this.world.worldProvider.e) {
chunksection.c(i, j & 15, k, l);
2011-11-20 09:01:14 +01:00
}
2011-02-01 23:49:28 +01:00
} else {
if (enumskyblock != EnumSkyBlock.BLOCK) {
return;
}
2012-03-01 11:49:23 +01:00
chunksection.d(i, j & 15, k, l);
2011-02-01 23:49:28 +01:00
}
}
public int c(int i, int j, int k, int l) {
2012-03-01 11:49:23 +01:00
ChunkSection chunksection = this.sections[j >> 4];
2011-02-01 23:49:28 +01:00
2012-03-01 11:49:23 +01:00
if (chunksection == null) {
return !this.world.worldProvider.e && l < EnumSkyBlock.SKY.c ? EnumSkyBlock.SKY.c - l : 0;
} else {
int i1 = this.world.worldProvider.e ? 0 : chunksection.c(i, j & 15, k);
if (i1 > 0) {
a = true;
}
2011-02-01 23:49:28 +01:00
2012-03-01 11:49:23 +01:00
i1 -= l;
int j1 = chunksection.d(i, j & 15, k);
2011-02-01 23:49:28 +01:00
2012-03-01 11:49:23 +01:00
if (j1 > i1) {
i1 = j1;
}
2011-02-01 23:49:28 +01:00
2012-03-01 11:49:23 +01:00
return i1;
}
2011-02-01 23:49:28 +01:00
}
public void a(Entity entity) {
2012-03-01 11:49:23 +01:00
this.m = true;
int i = MathHelper.floor(entity.locX / 16.0D);
int j = MathHelper.floor(entity.locZ / 16.0D);
2011-02-01 23:49:28 +01:00
if (i != this.x || j != this.z) {
// CraftBukkit start
Bukkit.getLogger().warning("Wrong location for " + entity + " in world '" + world.getWorld().getName() + "'!");
// Thread.dumpStack();
Bukkit.getLogger().warning("Entity is at " + entity.locX + "," + entity.locZ + " (chunk " + i + "," + j + ") but was stored in chunk " + this.x + "," + this.z);
// CraftBukkit end
2011-02-01 23:49:28 +01:00
}
int k = MathHelper.floor(entity.locY / 16.0D);
2011-02-01 23:49:28 +01:00
if (k < 0) {
k = 0;
}
if (k >= this.entitySlices.length) {
k = this.entitySlices.length - 1;
2011-02-01 23:49:28 +01:00
}
2012-01-12 23:10:13 +01:00
entity.bZ = true;
entity.ca = this.x;
entity.cb = k;
entity.cc = this.z;
this.entitySlices[k].add(entity);
2011-02-01 23:49:28 +01:00
}
public void b(Entity entity) {
2012-01-12 23:10:13 +01:00
this.a(entity, entity.cb);
2011-02-01 23:49:28 +01:00
}
public void a(Entity entity, int i) {
if (i < 0) {
i = 0;
}
if (i >= this.entitySlices.length) {
i = this.entitySlices.length - 1;
2011-02-01 23:49:28 +01:00
}
this.entitySlices[i].remove(entity);
2011-02-01 23:49:28 +01:00
}
2012-03-01 11:49:23 +01:00
public boolean d(int i, int j, int k) {
return j >= this.heightMap[k << 4 | i];
2011-02-01 23:49:28 +01:00
}
2012-03-01 11:49:23 +01:00
public TileEntity e(int i, int j, int k) {
2011-02-01 23:49:28 +01:00
ChunkPosition chunkposition = new ChunkPosition(i, j, k);
TileEntity tileentity = (TileEntity) this.tileEntities.get(chunkposition);
2011-02-01 23:49:28 +01:00
if (tileentity == null) {
int l = this.getTypeId(i, j, k);
2011-02-01 23:49:28 +01:00
2012-03-01 11:49:23 +01:00
if (l <= 0 || !Block.byId[l].n()) {
2011-02-01 23:49:28 +01:00
return null;
}
2011-09-15 02:23:52 +02:00
if (tileentity == null) {
tileentity = ((BlockContainer) Block.byId[l]).a_();
this.world.setTileEntity(this.x * 16 + i, j, this.z * 16 + k, tileentity);
}
2011-02-01 23:49:28 +01:00
tileentity = (TileEntity) this.tileEntities.get(chunkposition);
2011-02-01 23:49:28 +01:00
}
2011-11-20 09:01:14 +01:00
if (tileentity != null && tileentity.l()) {
2011-06-30 00:02:25 +02:00
this.tileEntities.remove(chunkposition);
return null;
} else {
return tileentity;
}
2011-02-01 23:49:28 +01:00
}
public void a(TileEntity tileentity) {
int i = tileentity.x - this.x * 16;
int j = tileentity.y;
int k = tileentity.z - this.z * 16;
2011-02-01 23:49:28 +01:00
this.a(i, j, k, tileentity);
2012-03-01 11:49:23 +01:00
if (this.d) {
this.world.tileEntityList.add(tileentity);
2011-06-30 00:02:25 +02:00
}
2011-02-01 23:49:28 +01:00
}
public void a(int i, int j, int k, TileEntity tileentity) {
ChunkPosition chunkposition = new ChunkPosition(i, j, k);
tileentity.world = this.world;
tileentity.x = this.x * 16 + i;
tileentity.y = j;
tileentity.z = this.z * 16 + k;
if (this.getTypeId(i, j, k) != 0 && Block.byId[this.getTypeId(i, j, k)] instanceof BlockContainer) {
2011-11-20 09:01:14 +01:00
tileentity.m();
this.tileEntities.put(chunkposition, tileentity);
2011-11-20 09:01:14 +01:00
// CraftBukkit start
2011-02-01 23:49:28 +01:00
} else {
System.out.println("Attempted to place a tile entity (" + tileentity + ") at " + tileentity.x + "," + tileentity.y + "," + tileentity.z
+ " (" + org.bukkit.Material.getMaterial(getTypeId(i, j, k)) + ") where there was no entity tile!");
System.out.println("Chunk coordinates: " + (this.x * 16) + "," + (this.z * 16));
new Exception().printStackTrace();
// CraftBukkit end
2011-02-01 23:49:28 +01:00
}
}
2012-03-01 11:49:23 +01:00
public void f(int i, int j, int k) {
2011-02-01 23:49:28 +01:00
ChunkPosition chunkposition = new ChunkPosition(i, j, k);
2012-03-01 11:49:23 +01:00
if (this.d) {
2011-06-30 00:02:25 +02:00
TileEntity tileentity = (TileEntity) this.tileEntities.remove(chunkposition);
if (tileentity != null) {
2012-03-01 11:49:23 +01:00
tileentity.j();
2011-06-30 00:02:25 +02:00
}
2011-02-01 23:49:28 +01:00
}
}
public void addEntities() {
2012-03-01 11:49:23 +01:00
this.d = true;
2011-06-30 00:02:25 +02:00
this.world.a(this.tileEntities.values());
2011-02-01 23:49:28 +01:00
for (int i = 0; i < this.entitySlices.length; ++i) {
this.world.a(this.entitySlices[i]);
2011-02-01 23:49:28 +01:00
}
}
public void removeEntities() {
2012-03-01 11:49:23 +01:00
this.d = false;
2011-06-30 00:02:25 +02:00
Iterator iterator = this.tileEntities.values().iterator();
while (iterator.hasNext()) {
TileEntity tileentity = (TileEntity) iterator.next();
2011-09-15 02:23:52 +02:00
this.world.a(tileentity);
2011-06-30 00:02:25 +02:00
}
for (int i = 0; i < this.entitySlices.length; ++i) {
2011-05-14 16:29:42 +02:00
// CraftBukkit start
java.util.Iterator<Object> iter = this.entitySlices[i].iterator();
while (iter.hasNext()) {
Entity entity = (Entity) iter.next();
int cx = org.bukkit.Location.locToBlock(entity.locX) >> 4;
int cz = org.bukkit.Location.locToBlock(entity.locZ) >> 4;
2011-05-14 16:29:42 +02:00
// Do not pass along players, as doing so can get them stuck outside of time.
// (which for example disables inventory icon updates and prevents block breaking)
if (entity instanceof EntityPlayer && (cx != this.x || cz != this.z)) {
iter.remove();
}
}
2011-05-14 16:29:42 +02:00
// CraftBukkit end
this.world.b(this.entitySlices[i]);
2011-02-01 23:49:28 +01:00
}
}
2012-03-01 11:49:23 +01:00
public void e() {
this.l = true;
2011-02-01 23:49:28 +01:00
}
public void a(Entity entity, AxisAlignedBB axisalignedbb, List list) {
int i = MathHelper.floor((axisalignedbb.b - 2.0D) / 16.0D);
int j = MathHelper.floor((axisalignedbb.e + 2.0D) / 16.0D);
2011-02-01 23:49:28 +01:00
if (i < 0) {
i = 0;
}
if (j >= this.entitySlices.length) {
j = this.entitySlices.length - 1;
2011-02-01 23:49:28 +01:00
}
for (int k = i; k <= j; ++k) {
List list1 = this.entitySlices[k];
2011-02-01 23:49:28 +01:00
for (int l = 0; l < list1.size(); ++l) {
Entity entity1 = (Entity) list1.get(l);
if (entity1 != entity && entity1.boundingBox.a(axisalignedbb)) {
list.add(entity1);
2012-03-01 11:49:23 +01:00
Entity[] aentity = entity1.ba();
2011-11-20 09:01:14 +01:00
if (aentity != null) {
for (int i1 = 0; i1 < aentity.length; ++i1) {
entity1 = aentity[i1];
if (entity1 != entity && entity1.boundingBox.a(axisalignedbb)) {
list.add(entity1);
}
}
}
2011-02-01 23:49:28 +01:00
}
}
}
}
public void a(Class oclass, AxisAlignedBB axisalignedbb, List list) {
int i = MathHelper.floor((axisalignedbb.b - 2.0D) / 16.0D);
int j = MathHelper.floor((axisalignedbb.e + 2.0D) / 16.0D);
2011-02-01 23:49:28 +01:00
if (i < 0) {
i = 0;
2011-11-20 09:01:14 +01:00
} else if (i >= this.entitySlices.length) {
i = this.entitySlices.length - 1;
2011-02-01 23:49:28 +01:00
}
if (j >= this.entitySlices.length) {
j = this.entitySlices.length - 1;
2011-11-20 09:01:14 +01:00
} else if (j < 0) {
j = 0;
2011-02-01 23:49:28 +01:00
}
for (int k = i; k <= j; ++k) {
List list1 = this.entitySlices[k];
2011-02-01 23:49:28 +01:00
for (int l = 0; l < list1.size(); ++l) {
Entity entity = (Entity) list1.get(l);
if (oclass.isAssignableFrom(entity.getClass()) && entity.boundingBox.a(axisalignedbb)) {
list.add(entity);
}
}
}
}
public boolean a(boolean flag) {
2012-03-01 11:49:23 +01:00
if (flag) {
if (this.m && this.world.getTime() != this.n) {
2011-02-01 23:49:28 +01:00
return true;
}
2012-03-01 11:49:23 +01:00
} else if (this.m && this.world.getTime() >= this.n + 600L) {
return true;
2011-02-01 23:49:28 +01:00
}
2012-03-01 11:49:23 +01:00
return this.l;
2011-02-01 23:49:28 +01:00
}
public Random a(long i) {
return new Random(this.world.getSeed() + (long) (this.x * this.x * 4987142) + (long) (this.x * 5947611) + (long) (this.z * this.z) * 4392871L + (long) (this.z * 389711) ^ i);
2011-02-01 23:49:28 +01:00
}
2011-11-20 09:01:14 +01:00
public boolean isEmpty() {
return false;
}
2012-03-01 11:49:23 +01:00
public void i() {
ChunkSection[] achunksection = this.sections;
int i = achunksection.length;
for (int j = 0; j < i; ++j) {
ChunkSection chunksection = achunksection[j];
if (chunksection != null) {
chunksection.e();
}
}
2011-09-15 02:23:52 +02:00
}
public void a(IChunkProvider ichunkprovider, IChunkProvider ichunkprovider1, int i, int j) {
if (!this.done && ichunkprovider.isChunkLoaded(i + 1, j + 1) && ichunkprovider.isChunkLoaded(i, j + 1) && ichunkprovider.isChunkLoaded(i + 1, j)) {
ichunkprovider.getChunkAt(ichunkprovider1, i, j);
}
if (ichunkprovider.isChunkLoaded(i - 1, j) && !ichunkprovider.getOrCreateChunk(i - 1, j).done && ichunkprovider.isChunkLoaded(i - 1, j + 1) && ichunkprovider.isChunkLoaded(i, j + 1) && ichunkprovider.isChunkLoaded(i - 1, j + 1)) {
ichunkprovider.getChunkAt(ichunkprovider1, i - 1, j);
}
if (ichunkprovider.isChunkLoaded(i, j - 1) && !ichunkprovider.getOrCreateChunk(i, j - 1).done && ichunkprovider.isChunkLoaded(i + 1, j - 1) && ichunkprovider.isChunkLoaded(i + 1, j - 1) && ichunkprovider.isChunkLoaded(i + 1, j)) {
ichunkprovider.getChunkAt(ichunkprovider1, i, j - 1);
}
if (ichunkprovider.isChunkLoaded(i - 1, j - 1) && !ichunkprovider.getOrCreateChunk(i - 1, j - 1).done && ichunkprovider.isChunkLoaded(i, j - 1) && ichunkprovider.isChunkLoaded(i - 1, j)) {
ichunkprovider.getChunkAt(ichunkprovider1, i - 1, j - 1);
}
}
2012-03-01 11:49:23 +01:00
public int d(int i, int j) {
2011-09-15 02:23:52 +02:00
int k = i | j << 4;
2012-03-01 11:49:23 +01:00
int l = this.b[k];
2011-09-15 02:23:52 +02:00
if (l == -999) {
2012-03-01 11:49:23 +01:00
int i1 = this.g() + 15;
2011-09-15 02:23:52 +02:00
l = -1;
while (i1 > 0 && l == -1) {
int j1 = this.getTypeId(i, i1, j);
Material material = j1 == 0 ? Material.AIR : Block.byId[j1].material;
if (!material.isSolid() && !material.isLiquid()) {
--i1;
} else {
l = i1 + 1;
}
}
2012-03-01 11:49:23 +01:00
this.b[k] = l;
2011-09-15 02:23:52 +02:00
}
return l;
2011-02-01 23:49:28 +01:00
}
2011-03-31 22:40:00 +02:00
2012-03-01 11:49:23 +01:00
public void j() {
if (this.r && !this.world.worldProvider.e) {
this.o();
2011-11-20 09:01:14 +01:00
}
}
2012-03-01 11:49:23 +01:00
public ChunkCoordIntPair k() {
2011-11-20 09:01:14 +01:00
return new ChunkCoordIntPair(this.x, this.z);
2011-03-31 22:40:00 +02:00
}
2012-03-01 11:49:23 +01:00
public boolean c(int i, int j) {
if (i < 0) {
i = 0;
}
if (j >= 256) {
j = 255;
}
for (int k = i; k <= j; k += 16) {
ChunkSection chunksection = this.sections[k >> 4];
if (chunksection != null && !chunksection.a()) {
return false;
}
}
return true;
}
public void a(ChunkSection[] achunksection) {
this.sections = achunksection;
}
public BiomeBase a(int i, int j, WorldChunkManager worldchunkmanager) {
int k = this.q[j << 4 | i] & 255;
if (k == 255) {
BiomeBase biomebase = worldchunkmanager.getBiome((this.x << 4) + i, (this.z << 4) + j);
k = biomebase.id;
this.q[j << 4 | i] = (byte) (k & 255);
}
return BiomeBase.biomes[k] == null ? BiomeBase.PLAINS : BiomeBase.biomes[k];
}
public byte[] l() {
return this.q;
}
public void a(byte[] abyte) {
this.q = abyte;
}
public void m() {
this.s = 0;
}
public void n() {
for (int i = 0; i < 8; ++i) {
if (this.s >= 4096) {
return;
}
int j = this.s % 16;
int k = this.s / 16 % 16;
int l = this.s / 256;
++this.s;
int i1 = (this.x << 4) + k;
int j1 = (this.z << 4) + l;
for (int k1 = 0; k1 < 16; ++k1) {
int l1 = (j << 4) + k1;
if (this.sections[j] == null && (k1 == 0 || k1 == 15 || k == 0 || k == 15 || l == 0 || l == 15) || this.sections[j] != null && this.sections[j].a(k, k1, l) == 0) {
if (Block.lightEmission[this.world.getTypeId(i1, l1 - 1, j1)] > 0) {
this.world.v(i1, l1 - 1, j1);
}
if (Block.lightEmission[this.world.getTypeId(i1, l1 + 1, j1)] > 0) {
this.world.v(i1, l1 + 1, j1);
}
if (Block.lightEmission[this.world.getTypeId(i1 - 1, l1, j1)] > 0) {
this.world.v(i1 - 1, l1, j1);
}
if (Block.lightEmission[this.world.getTypeId(i1 + 1, l1, j1)] > 0) {
this.world.v(i1 + 1, l1, j1);
}
if (Block.lightEmission[this.world.getTypeId(i1, l1, j1 - 1)] > 0) {
this.world.v(i1, l1, j1 - 1);
}
if (Block.lightEmission[this.world.getTypeId(i1, l1, j1 + 1)] > 0) {
this.world.v(i1, l1, j1 + 1);
}
this.world.v(i1, l1, j1);
}
}
}
}
2011-02-01 23:49:28 +01:00
}