3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 20:40:08 +01:00

Fixing missing mandatory comments.

Dieser Commit ist enthalten in:
Erik Broes 2011-02-07 09:43:51 +01:00
Ursprung 8acebcd7d6
Commit 421d1c1c1f
3 geänderte Dateien mit 16 neuen und 17 gelöschten Zeilen

Datei anzeigen

@ -395,7 +395,7 @@ public class Chunk {
if (i != this.j || j != this.k) { if (i != this.j || j != this.k) {
System.out.println("Wrong location! " + entity); System.out.println("Wrong location! " + entity);
System.out.println("" + entity.locX + "," + entity.locZ + "(" + i + "," + j + ") vs " + this.j + "," + this.k); System.out.println("" + entity.locX + "," + entity.locZ + "(" + i + "," + j + ") vs " + this.j + "," + this.k); // CraftBukkit
Thread.dumpStack(); Thread.dumpStack();
} }

Datei anzeigen

@ -17,11 +17,11 @@ import org.bukkit.event.world.ChunkLoadEvent;
public class ChunkProviderServer implements IChunkProvider { public class ChunkProviderServer implements IChunkProvider {
private LongHashset a = new LongHashset(); private LongHashset a = new LongHashset(); // CraftBukkit
private Chunk b; private Chunk b;
private IChunkProvider c; private IChunkProvider c;
private IChunkLoader d; private IChunkLoader d;
private LongHashtable<Chunk> e = new LongHashtable<Chunk>(); private LongHashtable<Chunk> e = new LongHashtable<Chunk>(); // CraftBukkit
private List f = new ArrayList(); private List f = new ArrayList();
private WorldServer g; private WorldServer g;
@ -43,11 +43,11 @@ public class ChunkProviderServer implements IChunkProvider {
return craftChunks; return craftChunks;
} }
// CraftBukkit end
public boolean a(int i, int j) { public boolean a(int i, int j) {
return this.e.containsKey(i, j); return this.e.containsKey(i, j);
} }
// CraftBukkit end
public void c(int i, int j) { public void c(int i, int j) {
int k = i * 16 + 8 - this.g.spawnX; int k = i * 16 + 8 - this.g.spawnX;
@ -55,13 +55,15 @@ public class ChunkProviderServer implements IChunkProvider {
short short1 = 128; short short1 = 128;
if (k < -short1 || k > short1 || l < -short1 || l > short1) { if (k < -short1 || k > short1 || l < -short1 || l > short1) {
this.a.add(i, j); this.a.add(i, j); // CraftBukkit
} }
} }
public Chunk d(int i, int j) { public Chunk d(int i, int j) {
// CraftBukkit start
this.a.remove(i, j); this.a.remove(i, j);
Chunk chunk = (Chunk) this.e.get(i, j); Chunk chunk = (Chunk) this.e.get(i, j);
// CraftBukkit end
if (chunk == null) { if (chunk == null) {
chunk = this.e(i, j); chunk = this.e(i, j);
@ -73,7 +75,7 @@ public class ChunkProviderServer implements IChunkProvider {
} }
} }
this.e.put(i, j, chunk); this.e.put(i, j, chunk); // CraftBukkit
this.f.add(chunk); this.f.add(chunk);
if (chunk != null) { if (chunk != null) {
chunk.c(); chunk.c();
@ -113,7 +115,7 @@ public class ChunkProviderServer implements IChunkProvider {
} }
public Chunk b(int i, int j) { public Chunk b(int i, int j) {
Chunk chunk = (Chunk) this.e.get(i, j); Chunk chunk = (Chunk) this.e.get(i, j); // CraftBukkit
return chunk == null ? (this.g.x ? this.d(i, j) : this.b) : chunk; return chunk == null ? (this.g.x ? this.d(i, j) : this.b) : chunk;
} }
@ -205,12 +207,15 @@ public class ChunkProviderServer implements IChunkProvider {
if (!this.g.C) { if (!this.g.C) {
for (int i = 0; i < 100; ++i) { for (int i = 0; i < 100; ++i) {
if (!this.a.isEmpty()) { if (!this.a.isEmpty()) {
// CraftBukkit start
long chunkcoordinates = this.a.popFirst(); long chunkcoordinates = this.a.popFirst();
Chunk chunk = e.get(chunkcoordinates); Chunk chunk = e.get(chunkcoordinates);
if (chunk == null) continue; if (chunk == null) continue;
// CraftBukkit end
chunk.e(); chunk.e();
this.b(chunk); this.b(chunk);
this.a(chunk); this.a(chunk);
// this.a.remove(chunkcoordinates); // CraftBukkit
this.e.remove(chunkcoordinates); this.e.remove(chunkcoordinates);
this.f.remove(chunk); this.f.remove(chunk);
} }

Datei anzeigen

@ -273,7 +273,7 @@ public class World implements IBlockAccess {
return this.c(i >> 4, j >> 4); return this.c(i >> 4, j >> 4);
} }
//start craftbukkit // CraftBukkit start
Chunk lastChunkAccessed; Chunk lastChunkAccessed;
int lastXAccessed = Integer.MIN_VALUE; int lastXAccessed = Integer.MIN_VALUE;
int lastZAccessed = Integer.MIN_VALUE; int lastZAccessed = Integer.MIN_VALUE;
@ -285,7 +285,7 @@ public class World implements IBlockAccess {
} }
return lastChunkAccessed; return lastChunkAccessed;
} }
//end craftbukkit // CraftBukkit end
public boolean setTypeIdAndData(int i, int j, int k, int l, int i1) { public boolean setTypeIdAndData(int i, int j, int k, int l, int i1) {
if (i >= -32000000 && k >= -32000000 && i < 32000000 && k <= 32000000) { if (i >= -32000000 && k >= -32000000 && i < 32000000 && k <= 32000000) {
@ -1367,12 +1367,7 @@ public class World implements IBlockAccess {
if (!this.f(k1, 64, l1)) { if (!this.f(k1, 64, l1)) {
--y; --y;
} else { } else if (!this.b(k1, l1).g()) {
Chunk chunk = this.b(k1, l1);
if(chunk == null) {
System.out.println(k1 + "," + l1);
}
if (!chunk.g()) {
int i2 = this.A.size(); int i2 = this.A.size();
int j2; int j2;
@ -1404,7 +1399,6 @@ public class World implements IBlockAccess {
} }
} }
} }
}
public void e() { public void e() {
int i = this.a(1.0F); int i = this.a(1.0F);