2011-02-01 20:26:07 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public class PlayerManager {
|
|
|
|
|
|
|
|
private List a = new ArrayList();
|
|
|
|
private PlayerList b = new PlayerList();
|
|
|
|
private List c = new ArrayList();
|
|
|
|
private MinecraftServer d;
|
2011-02-23 03:37:56 +01:00
|
|
|
private final int[][] e = new int[][] { { 1, 0}, { 0, 1}, { -1, 0}, { 0, -1}};
|
2011-02-01 20:26:07 +01:00
|
|
|
|
2011-02-23 13:56:36 +01:00
|
|
|
// CraftBukkit start
|
|
|
|
public WorldServer world;
|
|
|
|
|
|
|
|
// CraftBukkit - change of method signature
|
2011-02-06 23:53:48 +01:00
|
|
|
public PlayerManager(MinecraftServer minecraftserver, WorldServer world) {
|
2011-02-01 20:26:07 +01:00
|
|
|
this.d = minecraftserver;
|
2011-02-23 13:56:36 +01:00
|
|
|
this.world = world;
|
2011-02-01 20:26:07 +01:00
|
|
|
}
|
2011-02-23 13:56:36 +01:00
|
|
|
// CraftBukkit end
|
2011-02-01 20:26:07 +01:00
|
|
|
|
|
|
|
public void a() {
|
|
|
|
for (int i = 0; i < this.c.size(); ++i) {
|
|
|
|
((PlayerInstance) this.c.get(i)).a();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.c.clear();
|
|
|
|
}
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
private PlayerInstance a(int i, int j, boolean flag) {
|
2011-02-01 20:26:07 +01:00
|
|
|
long k = (long) i + 2147483647L | (long) j + 2147483647L << 32;
|
|
|
|
PlayerInstance playerinstance = (PlayerInstance) this.b.a(k);
|
|
|
|
|
|
|
|
if (playerinstance == null && flag) {
|
2011-02-07 00:47:44 +01:00
|
|
|
playerinstance = new PlayerInstance(this, i, j);
|
2011-02-01 20:26:07 +01:00
|
|
|
this.b.a(k, playerinstance);
|
|
|
|
}
|
|
|
|
|
|
|
|
return playerinstance;
|
|
|
|
}
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
public void a(int i, int j, int k) {
|
2011-02-01 20:26:07 +01:00
|
|
|
int l = i >> 4;
|
|
|
|
int i1 = k >> 4;
|
2011-02-23 03:37:56 +01:00
|
|
|
PlayerInstance playerinstance = this.a(l, i1, false);
|
2011-02-01 20:26:07 +01:00
|
|
|
|
|
|
|
if (playerinstance != null) {
|
|
|
|
playerinstance.a(i & 15, j, k & 15);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(EntityPlayer entityplayer) {
|
|
|
|
int i = (int) entityplayer.locX >> 4;
|
|
|
|
int j = (int) entityplayer.locZ >> 4;
|
|
|
|
|
|
|
|
entityplayer.d = entityplayer.locX;
|
|
|
|
entityplayer.e = entityplayer.locZ;
|
2011-02-23 03:37:56 +01:00
|
|
|
int k = 0;
|
|
|
|
byte b0 = 10;
|
|
|
|
int l = 0;
|
|
|
|
int i1 = 0;
|
2011-02-01 20:26:07 +01:00
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
this.a(i, j, true).a(entityplayer);
|
2011-02-01 21:40:52 +01:00
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
int j1;
|
2011-02-01 21:40:52 +01:00
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
for (j1 = 1; j1 <= b0 * 2; ++j1) {
|
|
|
|
for (int k1 = 0; k1 < 2; ++k1) {
|
|
|
|
int[] aint = this.e[k++ % 4];
|
2011-02-01 21:40:52 +01:00
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
for (int l1 = 0; l1 < j1; ++l1) {
|
|
|
|
l += aint[0];
|
|
|
|
i1 += aint[1];
|
|
|
|
this.a(i + l, j + i1, true).a(entityplayer);
|
2011-02-01 21:40:52 +01:00
|
|
|
}
|
2011-02-01 20:26:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
k %= 4;
|
|
|
|
|
|
|
|
for (j1 = 0; j1 < b0 * 2; ++j1) {
|
|
|
|
l += this.e[k][0];
|
|
|
|
i1 += this.e[k][1];
|
|
|
|
this.a(i + l, j + i1, true).a(entityplayer);
|
2011-02-01 21:40:52 +01:00
|
|
|
}
|
|
|
|
|
2011-02-01 20:26:07 +01:00
|
|
|
this.a.add(entityplayer);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void b(EntityPlayer entityplayer) {
|
|
|
|
int i = (int) entityplayer.d >> 4;
|
|
|
|
int j = (int) entityplayer.e >> 4;
|
|
|
|
|
|
|
|
for (int k = i - 10; k <= i + 10; ++k) {
|
|
|
|
for (int l = j - 10; l <= j + 10; ++l) {
|
2011-02-23 03:37:56 +01:00
|
|
|
PlayerInstance playerinstance = this.a(k, l, false);
|
2011-02-01 20:26:07 +01:00
|
|
|
|
|
|
|
if (playerinstance != null) {
|
|
|
|
playerinstance.b(entityplayer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.a.remove(entityplayer);
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean a(int i, int j, int k, int l) {
|
|
|
|
int i1 = i - k;
|
|
|
|
int j1 = j - l;
|
|
|
|
|
|
|
|
return i1 >= -10 && i1 <= 10 ? j1 >= -10 && j1 <= 10 : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void c(EntityPlayer entityplayer) {
|
|
|
|
int i = (int) entityplayer.locX >> 4;
|
|
|
|
int j = (int) entityplayer.locZ >> 4;
|
|
|
|
double d0 = entityplayer.d - entityplayer.locX;
|
|
|
|
double d1 = entityplayer.e - entityplayer.locZ;
|
|
|
|
double d2 = d0 * d0 + d1 * d1;
|
|
|
|
|
|
|
|
if (d2 >= 64.0D) {
|
|
|
|
int k = (int) entityplayer.d >> 4;
|
|
|
|
int l = (int) entityplayer.e >> 4;
|
|
|
|
int i1 = i - k;
|
|
|
|
int j1 = j - l;
|
|
|
|
|
2011-02-25 13:46:31 +01:00
|
|
|
// Craftbukkit start
|
2011-02-28 21:30:33 +01:00
|
|
|
if (i1 > 10 || i1 < -10 || j1 > 10 || j1 < -10) {
|
|
|
|
b(entityplayer);
|
|
|
|
a(entityplayer);
|
|
|
|
return;
|
2011-02-25 13:46:31 +01:00
|
|
|
}
|
|
|
|
// Craftbukkit end
|
|
|
|
|
2011-02-01 20:26:07 +01:00
|
|
|
if (i1 != 0 || j1 != 0) {
|
|
|
|
for (int k1 = i - 10; k1 <= i + 10; ++k1) {
|
|
|
|
for (int l1 = j - 10; l1 <= j + 10; ++l1) {
|
|
|
|
if (!this.a(k1, l1, k, l)) {
|
2011-02-23 03:37:56 +01:00
|
|
|
this.a(k1, l1, true).a(entityplayer);
|
2011-02-01 20:26:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.a(k1 - i1, l1 - j1, i, j)) {
|
2011-02-23 03:37:56 +01:00
|
|
|
PlayerInstance playerinstance = this.a(k1 - i1, l1 - j1, false);
|
2011-02-01 20:26:07 +01:00
|
|
|
|
|
|
|
if (playerinstance != null) {
|
|
|
|
playerinstance.b(entityplayer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
entityplayer.d = entityplayer.locX;
|
|
|
|
entityplayer.e = entityplayer.locZ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public int b() {
|
|
|
|
return 144;
|
|
|
|
}
|
|
|
|
|
|
|
|
static MinecraftServer a(PlayerManager playermanager) {
|
|
|
|
return playermanager.d;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PlayerList b(PlayerManager playermanager) {
|
|
|
|
return playermanager.b;
|
|
|
|
}
|
|
|
|
|
|
|
|
static List c(PlayerManager playermanager) {
|
|
|
|
return playermanager.c;
|
|
|
|
}
|
|
|
|
}
|