summaryrefslogtreecommitdiffstats
path: root/src/main/java/net
diff options
context:
space:
mode:
authorDinnerbone <dinnerbone@dinnerbone.com>2011-01-04 15:54:41 +0000
committerDinnerbone <dinnerbone@dinnerbone.com>2011-01-04 15:54:41 +0000
commit1ed14de10ea452448c9e517415745cc434fc2b1f (patch)
treea4516e04799a71657e920c99ae86cc9ede91f3ab /src/main/java/net
parenta2c944d3c0409568109dfb9ceb1f47f896bf29fd (diff)
downloadcraftbukkit-1ed14de10ea452448c9e517415745cc434fc2b1f.tar
craftbukkit-1ed14de10ea452448c9e517415745cc434fc2b1f.tar.gz
craftbukkit-1ed14de10ea452448c9e517415745cc434fc2b1f.tar.lz
craftbukkit-1ed14de10ea452448c9e517415745cc434fc2b1f.tar.xz
craftbukkit-1ed14de10ea452448c9e517415745cc434fc2b1f.zip
Implemented CHUNK_LOADED
Diffstat (limited to 'src/main/java/net')
-rw-r--r--src/main/java/net/minecraft/server/ChunkProviderServer.java226
1 files changed, 226 insertions, 0 deletions
diff --git a/src/main/java/net/minecraft/server/ChunkProviderServer.java b/src/main/java/net/minecraft/server/ChunkProviderServer.java
new file mode 100644
index 00000000..816ae774
--- /dev/null
+++ b/src/main/java/net/minecraft/server/ChunkProviderServer.java
@@ -0,0 +1,226 @@
+package net.minecraft.server;
+
+
+import java.io.IOException;
+import java.util.*;
+import org.bukkit.craftbukkit.CraftChunk;
+import org.bukkit.craftbukkit.CraftServer;
+import org.bukkit.craftbukkit.CraftWorld;
+import org.bukkit.event.Event.Type;
+import org.bukkit.event.world.ChunkLoadedEvent;
+
+
+public class ChunkProviderServer
+ implements IChunkProvider {
+
+ private Set a;
+ private Chunk b;
+ private IChunkProvider c;
+ private IChunkLoader d;
+ private Map e;
+ private List f;
+ private WorldServer g;
+
+ public ChunkProviderServer(WorldServer worldserver, IChunkLoader ichunkloader, IChunkProvider ichunkprovider) {
+ a = new HashSet();
+ e = new HashMap();
+ f = new ArrayList();
+ b = new Chunk(worldserver, new byte[32768], 0, 0);
+ b.q = true;
+ b.p = true;
+ g = worldserver;
+ d = ichunkloader;
+ c = ichunkprovider;
+ }
+
+ public boolean a(int i, int j) {
+ ChunkCoordinates chunkcoordinates = new ChunkCoordinates(i, j);
+
+ return e.containsKey(chunkcoordinates);
+ }
+
+ public void c(int i, int j) {
+ int k = (i * 16 + 8) - g.m;
+ int l = (j * 16 + 8) - g.o;
+ char c1 = '\200';
+
+ if (k < -c1 || k > c1 || l < -c1 || l > c1) {
+ a.add(new ChunkCoordinates(i, j));
+ }
+ }
+
+ public Chunk d(int i, int j) {
+ ChunkCoordinates chunkcoordinates = new ChunkCoordinates(i, j);
+
+ a.remove(new ChunkCoordinates(i, j));
+ Chunk chunk = (Chunk) e.get(chunkcoordinates);
+
+ if (chunk == null) {
+ chunk = e(i, j);
+ if (chunk == null) {
+ if (c == null) {
+ chunk = b;
+ } else {
+ chunk = c.b(i, j);
+ }
+ }
+ e.put(chunkcoordinates, chunk);
+ f.add(chunk);
+ chunk.c();
+ if (chunk != null) {
+ chunk.d();
+ }
+
+ // Craftbukkit start
+ CraftServer server = g.getServer();
+ if (server != null) {
+ /*
+ * If it's a new world, the first few chunks are generated inside
+ * the World constructor. We can't reliably alter that, so we have
+ * no way of creating a CraftWorld/CraftServer at that point.
+ */
+ CraftWorld world = g.getWorld();
+ CraftChunk cchunk = world.updateChunk(i, j);
+ server.getPluginManager().callEvent(new ChunkLoadedEvent(Type.CHUNK_LOADED, cchunk));
+ }
+ // Craftbukkit end
+
+ if (!chunk.n && a(i + 1, j + 1) && a(i, j + 1) && a(i + 1, j)) {
+ a(this, i, j);
+ }
+ if (a(i - 1, j) && !b(i - 1, j).n && a(i - 1, j + 1) && a(i, j + 1) && a(i - 1, j)) {
+ a(this, i - 1, j);
+ }
+ if (a(i, j - 1) && !b(i, j - 1).n && a(i + 1, j - 1) && a(i, j - 1) && a(i + 1, j)) {
+ a(this, i, j - 1);
+ }
+ if (a(i - 1, j - 1) && !b(i - 1, j - 1).n && a(i - 1, j - 1) && a(i, j - 1) && a(i - 1, j)) {
+ a(this, i - 1, j - 1);
+ }
+ }
+ return chunk;
+ }
+
+ public Chunk b(int i, int j) {
+ ChunkCoordinates chunkcoordinates = new ChunkCoordinates(i, j);
+ Chunk chunk = (Chunk) e.get(chunkcoordinates);
+
+ if (chunk == null) {
+ if (g.x) {
+ return d(i, j);
+ } else {
+ return b;
+ }
+ } else {
+ return chunk;
+ }
+ }
+
+ private Chunk e(int i, int j) {
+ if (d == null) {
+ return null;
+ }
+ try {
+ Chunk chunk = d.a(g, i, j);
+
+ if (chunk != null) {
+ chunk.s = g.e;
+ }
+ return chunk;
+ } catch (Exception exception) {
+ exception.printStackTrace();
+ }
+ return null;
+ }
+
+ private void a(Chunk chunk) {
+ if (d == null) {
+ return;
+ }
+ try {
+ d.b(g, chunk);
+ } catch (Exception exception) {
+ exception.printStackTrace();
+ }
+ }
+
+ private void b(Chunk chunk) {
+ if (d == null) {
+ return;
+ }
+ try {
+ chunk.s = g.e;
+ d.a(g, chunk);
+ } catch (Throwable ioexception) { // Craftbukkit: Cast down to compile
+ ioexception.printStackTrace();
+ }
+ }
+
+ public void a(IChunkProvider ichunkprovider, int i, int j) {
+ Chunk chunk = b(i, j);
+
+ if (!chunk.n) {
+ chunk.n = true;
+ if (c != null) {
+ c.a(ichunkprovider, i, j);
+ chunk.f();
+ }
+ }
+ }
+
+ public boolean a(boolean flag, IProgressUpdate iprogressupdate) {
+ int i = 0;
+
+ for (int j = 0; j < f.size(); j++) {
+ Chunk chunk = (Chunk) f.get(j);
+
+ if (flag && !chunk.p) {
+ a(chunk);
+ }
+ if (!chunk.a(flag)) {
+ continue;
+ }
+ b(chunk);
+ chunk.o = false;
+ if (++i == 24 && !flag) {
+ return false;
+ }
+ }
+
+ if (flag) {
+ if (d == null) {
+ return true;
+ }
+ d.b();
+ }
+ return true;
+ }
+
+ public boolean a() {
+ if (!g.C) {
+ for (int i = 0; i < 100; i++) {
+ if (!a.isEmpty()) {
+ ChunkCoordinates chunkcoordinates = (ChunkCoordinates) a.iterator().next();
+ Chunk chunk = b(chunkcoordinates.a, chunkcoordinates.b);
+
+ chunk.e();
+ b(chunk);
+ a(chunk);
+ a.remove(chunkcoordinates);
+ e.remove(chunkcoordinates);
+ f.remove(chunk);
+ }
+ }
+
+ if (d != null) {
+ d.a();
+ }
+ }
+ return c.a();
+ }
+
+ public boolean b() {
+ return !g.C;
+ }
+}
+