2011-02-05 19:15:04 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
import java.util.Iterator;
|
|
|
|
|
2011-02-05 19:15:04 +01:00
|
|
|
public class WorldManager implements IWorldAccess {
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
private MinecraftServer server;
|
2011-06-12 00:02:58 +02:00
|
|
|
public WorldServer world; // CraftBukkit - private -> public
|
2011-02-05 19:15:04 +01:00
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
public WorldManager(MinecraftServer minecraftserver, WorldServer worldserver) {
|
2011-04-20 19:05:14 +02:00
|
|
|
this.server = minecraftserver;
|
2011-05-26 14:48:22 +02:00
|
|
|
this.world = worldserver;
|
2011-02-05 19:15:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void a(String s, double d0, double d1, double d2, double d3, double d4, double d5) {}
|
|
|
|
|
|
|
|
public void a(Entity entity) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.world.getTracker().track(entity);
|
2011-02-05 19:15:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void b(Entity entity) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.world.getTracker().untrackEntity(entity);
|
2011-02-05 19:15:04 +01:00
|
|
|
}
|
|
|
|
|
2012-09-11 02:42:26 +02:00
|
|
|
// CraftBukkit start - Add source entity for a sound.
|
|
|
|
public void a(String s, double d0, double d1, double d2, float f, float f1, Entity sourceentity) {
|
|
|
|
this.server.getServerConfigurationManager().sendPacketNearby(d0, d1, d2, f > 1.0F ? (double) (16.0F * f) : 16.0D, this.world.dimension, new Packet62NamedSoundEffect(s, d0, d1, d2, f, f1), sourceentity);
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void a(String s, double d0, double d1, double d2, float f, float f1) {
|
|
|
|
// CraftBukkit - this.world.dimension
|
|
|
|
this.server.getServerConfigurationManager().sendPacketNearby(d0, d1, d2, f > 1.0F ? (double) (16.0F * f) : 16.0D, this.world.dimension, new Packet62NamedSoundEffect(s, d0, d1, d2, f, f1));
|
|
|
|
}
|
2011-02-05 19:15:04 +01:00
|
|
|
|
|
|
|
public void a(int i, int j, int k, int l, int i1, int j1) {}
|
|
|
|
|
|
|
|
public void a(int i, int j, int k) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.world.getPlayerManager().flagDirty(i, j, k);
|
2011-02-05 19:15:04 +01:00
|
|
|
}
|
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
public void b(int i, int j, int k) {}
|
|
|
|
|
2011-02-05 19:15:04 +01:00
|
|
|
public void a(String s, int i, int j, int k) {}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void a(EntityHuman entityhuman, int i, int j, int k, int l, int i1) {
|
|
|
|
// CraftBukkit - this.world.dimension
|
|
|
|
this.server.getServerConfigurationManager().sendPacketNearby(entityhuman, (double) j, (double) k, (double) l, 64.0D, this.world.dimension, new Packet61WorldEvent(i, j, k, l, i1));
|
2011-02-05 19:15:04 +01:00
|
|
|
}
|
2011-05-26 14:48:22 +02:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void a(int i, int j, int k, int l, int i1) {
|
|
|
|
Iterator iterator = this.server.getServerConfigurationManager().players.iterator();
|
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
EntityPlayer entityplayer = (EntityPlayer) iterator.next();
|
|
|
|
|
|
|
|
if (entityplayer != null && entityplayer.world == this.world && entityplayer.id != i) {
|
|
|
|
double d0 = (double) j - entityplayer.locX;
|
|
|
|
double d1 = (double) k - entityplayer.locY;
|
|
|
|
double d2 = (double) l - entityplayer.locZ;
|
|
|
|
|
|
|
|
if (d0 * d0 + d1 * d1 + d2 * d2 < 1024.0D) {
|
|
|
|
entityplayer.netServerHandler.sendPacket(new Packet55BlockBreakAnimation(i, j, k, l, i1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-05-26 14:48:22 +02:00
|
|
|
}
|
2011-02-05 19:15:04 +01:00
|
|
|
}
|