2010-12-29 00:52:29 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
import java.util.ArrayList;
|
2012-07-29 09:33:13 +02:00
|
|
|
import java.util.Collection;
|
|
|
|
import java.util.HashSet;
|
|
|
|
import java.util.Iterator;
|
2011-01-29 22:50:29 +01:00
|
|
|
import java.util.List;
|
2012-07-29 09:33:13 +02:00
|
|
|
import java.util.Random;
|
|
|
|
import java.util.Set;
|
|
|
|
import java.util.TreeSet;
|
2011-01-01 09:12:39 +01:00
|
|
|
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit start
|
2012-07-29 09:33:13 +02:00
|
|
|
import org.bukkit.block.BlockState;
|
|
|
|
import org.bukkit.craftbukkit.util.LongHash;
|
|
|
|
|
|
|
|
import org.bukkit.event.block.BlockFormEvent;
|
2011-04-26 01:47:25 +02:00
|
|
|
import org.bukkit.event.weather.LightningStrikeEvent;
|
2012-07-29 09:33:13 +02:00
|
|
|
import org.bukkit.event.weather.ThunderChangeEvent;
|
|
|
|
import org.bukkit.event.weather.WeatherChangeEvent;
|
2010-12-29 00:52:29 +01:00
|
|
|
|
2012-07-22 08:18:00 +02:00
|
|
|
public class WorldServer extends World implements org.bukkit.BlockChangeDelegate {
|
2011-06-12 00:02:58 +02:00
|
|
|
// CraftBukkit end
|
2010-12-29 00:52:29 +01:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
private final MinecraftServer server;
|
|
|
|
public EntityTracker tracker; // CraftBukkit - private final -> public
|
|
|
|
private final PlayerManager manager;
|
2012-10-25 05:53:23 +02:00
|
|
|
private Set M;
|
|
|
|
private TreeSet N;
|
2011-04-20 19:05:14 +02:00
|
|
|
public ChunkProviderServer chunkProviderServer;
|
2011-09-24 23:03:31 +02:00
|
|
|
public boolean savingDisabled;
|
2012-10-25 05:53:23 +02:00
|
|
|
private boolean O;
|
2012-08-25 02:51:51 +02:00
|
|
|
private int emptyTime = 0;
|
2012-10-25 05:53:23 +02:00
|
|
|
private NoteDataList[] Q = new NoteDataList[] { new NoteDataList((EmptyClass2) null), new NoteDataList((EmptyClass2) null)};
|
|
|
|
private int R = 0;
|
|
|
|
private static final StructurePieceTreasure[] S = new StructurePieceTreasure[] { new StructurePieceTreasure(Item.STICK.id, 0, 1, 3, 10), new StructurePieceTreasure(Block.WOOD.id, 0, 1, 3, 10), new StructurePieceTreasure(Block.LOG.id, 0, 1, 3, 10), new StructurePieceTreasure(Item.STONE_AXE.id, 0, 1, 1, 3), new StructurePieceTreasure(Item.WOOD_AXE.id, 0, 1, 1, 5), new StructurePieceTreasure(Item.STONE_PICKAXE.id, 0, 1, 1, 3), new StructurePieceTreasure(Item.WOOD_PICKAXE.id, 0, 1, 1, 5), new StructurePieceTreasure(Item.APPLE.id, 0, 2, 3, 5), new StructurePieceTreasure(Item.BREAD.id, 0, 2, 3, 3)};
|
2012-01-14 21:03:48 +01:00
|
|
|
private IntHashMap entitiesById;
|
2010-12-29 00:52:29 +01:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
public final int dimension;
|
|
|
|
|
|
|
|
public WorldServer(MinecraftServer minecraftserver, IDataManager idatamanager, String s, int i, WorldSettings worldsettings, MethodProfiler methodprofiler, org.bukkit.World.Environment env, org.bukkit.generator.ChunkGenerator gen) {
|
2012-08-03 05:47:41 +02:00
|
|
|
super(idatamanager, s, worldsettings, WorldProvider.byDimension(env.getId()), methodprofiler, gen, env);
|
2012-07-29 09:33:13 +02:00
|
|
|
this.dimension = i;
|
|
|
|
this.pvpMode = minecraftserver.getPvP();
|
|
|
|
// CraftBukkit end
|
2011-04-20 19:05:14 +02:00
|
|
|
this.server = minecraftserver;
|
2012-07-29 09:33:13 +02:00
|
|
|
this.tracker = new EntityTracker(this);
|
|
|
|
this.manager = new PlayerManager(this, minecraftserver.getServerConfigurationManager().o());
|
2012-01-14 21:03:48 +01:00
|
|
|
if (this.entitiesById == null) {
|
|
|
|
this.entitiesById = new IntHashMap();
|
2011-12-01 22:43:54 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
if (this.M == null) {
|
|
|
|
this.M = new HashSet();
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
if (this.N == null) {
|
|
|
|
this.N = new TreeSet();
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
// CraftBukkit start
|
2011-10-02 05:25:21 +02:00
|
|
|
@Override
|
|
|
|
public TileEntity getTileEntity(int i, int j, int k) {
|
|
|
|
TileEntity result = super.getTileEntity(i, j, k);
|
|
|
|
int type = getTypeId(i, j, k);
|
|
|
|
|
|
|
|
if (type == Block.CHEST.id) {
|
|
|
|
if (!(result instanceof TileEntityChest)) {
|
|
|
|
result = fixTileEntity(i, j, k, type, result);
|
|
|
|
}
|
|
|
|
} else if (type == Block.FURNACE.id) {
|
|
|
|
if (!(result instanceof TileEntityFurnace)) {
|
|
|
|
result = fixTileEntity(i, j, k, type, result);
|
|
|
|
}
|
|
|
|
} else if (type == Block.DISPENSER.id) {
|
|
|
|
if (!(result instanceof TileEntityDispenser)) {
|
|
|
|
result = fixTileEntity(i, j, k, type, result);
|
|
|
|
}
|
|
|
|
} else if (type == Block.JUKEBOX.id) {
|
|
|
|
if (!(result instanceof TileEntityRecordPlayer)) {
|
|
|
|
result = fixTileEntity(i, j, k, type, result);
|
|
|
|
}
|
|
|
|
} else if (type == Block.NOTE_BLOCK.id) {
|
|
|
|
if (!(result instanceof TileEntityNote)) {
|
|
|
|
result = fixTileEntity(i, j, k, type, result);
|
|
|
|
}
|
|
|
|
} else if (type == Block.MOB_SPAWNER.id) {
|
|
|
|
if (!(result instanceof TileEntityMobSpawner)) {
|
|
|
|
result = fixTileEntity(i, j, k, type, result);
|
|
|
|
}
|
|
|
|
} else if ((type == Block.SIGN_POST.id) || (type == Block.WALL_SIGN.id)) {
|
|
|
|
if (!(result instanceof TileEntitySign)) {
|
|
|
|
result = fixTileEntity(i, j, k, type, result);
|
|
|
|
}
|
2012-07-29 09:33:13 +02:00
|
|
|
} else if (type == Block.ENDER_CHEST.id) {
|
|
|
|
if (!(result instanceof TileEntityEnderChest)) {
|
|
|
|
result = fixTileEntity(i, j, k, type, result);
|
|
|
|
}
|
2011-10-02 05:25:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
private TileEntity fixTileEntity(int x, int y, int z, int type, TileEntity found) {
|
|
|
|
getServer().getLogger().severe("Block at " + x + "," + y + "," + z + " is " + org.bukkit.Material.getMaterial(type).toString() + " but has " + found + ". "
|
|
|
|
+ "Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.");
|
|
|
|
|
|
|
|
if (Block.byId[type] instanceof BlockContainer) {
|
2012-07-29 09:33:13 +02:00
|
|
|
TileEntity replacement = ((BlockContainer) Block.byId[type]).a(this);
|
2011-10-02 05:25:21 +02:00
|
|
|
setTileEntity(x, y, z, replacement);
|
|
|
|
return replacement;
|
|
|
|
} else {
|
|
|
|
getServer().getLogger().severe("Don't know how to fix for this type... Can't do anything! :(");
|
|
|
|
return found;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
private boolean canSpawn(int x, int z) {
|
|
|
|
if (this.generator != null) {
|
|
|
|
return this.generator.canSpawn(this.getWorld(), x, z);
|
|
|
|
} else {
|
|
|
|
return this.worldProvider.canSpawn(x, z);
|
|
|
|
}
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
// CraftBukkit end
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void doTick() {
|
|
|
|
super.doTick();
|
|
|
|
if (this.getWorldData().isHardcore() && this.difficulty < 3) {
|
|
|
|
this.difficulty = 3;
|
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
this.worldProvider.d.b();
|
2012-07-29 09:33:13 +02:00
|
|
|
if (this.everyoneDeeplySleeping()) {
|
|
|
|
boolean flag = false;
|
|
|
|
|
|
|
|
if (this.allowMonsters && this.difficulty >= 1) {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!flag) {
|
2012-10-25 05:53:23 +02:00
|
|
|
long i = this.worldData.g() + 24000L;
|
2012-07-29 09:33:13 +02:00
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
this.worldData.c(i - i % 24000L);
|
2012-07-29 09:33:13 +02:00
|
|
|
this.d();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-10 06:19:28 +02:00
|
|
|
this.methodProfiler.a("mobSpawner");
|
2012-07-29 09:33:13 +02:00
|
|
|
// CraftBukkit start - Only call spawner if we have players online and the world allows for mobs or animals
|
|
|
|
long time = this.worldData.getTime();
|
2012-10-25 05:53:23 +02:00
|
|
|
if (this.getGameRules().getBoolean("doMobSpawning") && (this.allowMonsters || this.allowAnimals) && (this instanceof WorldServer && this.players.size() > 0)) {
|
|
|
|
SpawnerCreature.spawnEntities(this, this.allowMonsters && (this.ticksPerMonsterSpawns != 0 && time % this.ticksPerMonsterSpawns == 0L), this.allowAnimals && (this.ticksPerAnimalSpawns != 0 && time % this.ticksPerAnimalSpawns == 0L), this.worldData.getTime() % 400L == 0L);
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2012-09-10 06:19:28 +02:00
|
|
|
this.methodProfiler.c("chunkSource");
|
2012-07-29 09:33:13 +02:00
|
|
|
this.chunkProvider.unloadChunks();
|
|
|
|
int j = this.a(1.0F);
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
if (j != this.j) {
|
|
|
|
this.j = j;
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
this.U();
|
2012-07-29 09:33:13 +02:00
|
|
|
this.worldData.b(this.worldData.getTime() + 1L);
|
2012-10-25 05:53:23 +02:00
|
|
|
this.worldData.c(this.worldData.g() + 1L);
|
2012-09-10 06:19:28 +02:00
|
|
|
this.methodProfiler.c("tickPending");
|
2012-07-29 09:33:13 +02:00
|
|
|
this.a(false);
|
2012-09-10 06:19:28 +02:00
|
|
|
this.methodProfiler.c("tickTiles");
|
2012-07-29 09:33:13 +02:00
|
|
|
this.g();
|
2012-09-10 06:19:28 +02:00
|
|
|
this.methodProfiler.c("chunkMap");
|
2012-07-29 09:33:13 +02:00
|
|
|
this.manager.flush();
|
2012-09-10 06:19:28 +02:00
|
|
|
this.methodProfiler.c("village");
|
2012-07-29 09:33:13 +02:00
|
|
|
this.villages.tick();
|
|
|
|
this.siegeManager.a();
|
2012-09-10 06:19:28 +02:00
|
|
|
this.methodProfiler.b();
|
2012-10-25 05:53:23 +02:00
|
|
|
this.U();
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public BiomeMeta a(EnumCreatureType enumcreaturetype, int i, int j, int k) {
|
2012-10-25 05:53:23 +02:00
|
|
|
List list = this.H().getMobsFor(enumcreaturetype, i, j, k);
|
2012-07-29 09:33:13 +02:00
|
|
|
|
|
|
|
return list != null && !list.isEmpty() ? (BiomeMeta) WeightedRandom.a(this.random, (Collection) list) : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void everyoneSleeping() {
|
2012-10-25 05:53:23 +02:00
|
|
|
this.O = !this.players.isEmpty();
|
2012-07-29 09:33:13 +02:00
|
|
|
Iterator iterator = this.players.iterator();
|
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
EntityHuman entityhuman = (EntityHuman) iterator.next();
|
|
|
|
|
|
|
|
if (!entityhuman.isSleeping() && !entityhuman.fauxSleeping) { // CraftBukkit
|
2012-10-25 05:53:23 +02:00
|
|
|
this.O = false;
|
2012-07-29 09:33:13 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void d() {
|
2012-10-25 05:53:23 +02:00
|
|
|
this.O = false;
|
2012-07-29 09:33:13 +02:00
|
|
|
Iterator iterator = this.players.iterator();
|
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
EntityHuman entityhuman = (EntityHuman) iterator.next();
|
|
|
|
|
|
|
|
if (entityhuman.isSleeping()) {
|
|
|
|
entityhuman.a(false, false, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
this.T();
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
private void T() {
|
2012-07-29 09:33:13 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
WeatherChangeEvent weather = new WeatherChangeEvent(this.getWorld(), false);
|
|
|
|
this.getServer().getPluginManager().callEvent(weather);
|
|
|
|
|
|
|
|
ThunderChangeEvent thunder = new ThunderChangeEvent(this.getWorld(), false);
|
|
|
|
this.getServer().getPluginManager().callEvent(thunder);
|
|
|
|
if (!weather.isCancelled()) {
|
|
|
|
this.worldData.setWeatherDuration(0);
|
|
|
|
this.worldData.setStorm(false);
|
|
|
|
}
|
|
|
|
if (!thunder.isCancelled()) {
|
|
|
|
this.worldData.setThunderDuration(0);
|
|
|
|
this.worldData.setThundering(false);
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean everyoneDeeplySleeping() {
|
2012-10-25 05:53:23 +02:00
|
|
|
if (this.O && !this.isStatic) {
|
2012-07-29 09:33:13 +02:00
|
|
|
Iterator iterator = this.players.iterator();
|
|
|
|
|
|
|
|
// CraftBukkit - This allows us to assume that some people are in bed but not really, allowing time to pass in spite of AFKers
|
|
|
|
boolean foundActualSleepers = false;
|
|
|
|
|
|
|
|
EntityHuman entityhuman;
|
|
|
|
|
|
|
|
do {
|
|
|
|
if (!iterator.hasNext()) {
|
|
|
|
return foundActualSleepers; // CraftBukkit
|
|
|
|
}
|
|
|
|
|
|
|
|
entityhuman = (EntityHuman) iterator.next();
|
|
|
|
// CraftBukkit start
|
|
|
|
if (entityhuman.isDeeplySleeping()) {
|
|
|
|
foundActualSleepers = true;
|
|
|
|
}
|
|
|
|
} while (entityhuman.isDeeplySleeping() || entityhuman.fauxSleeping);
|
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void g() {
|
|
|
|
super.g();
|
|
|
|
int i = 0;
|
|
|
|
int j = 0;
|
|
|
|
// CraftBukkit start
|
2012-10-25 05:53:23 +02:00
|
|
|
// Iterator iterator = this.chunkTickList.iterator();
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
for (long chunkCoord : this.chunkTickList.popAll()) {
|
|
|
|
int chunkX = LongHash.msw(chunkCoord);
|
|
|
|
int chunkZ = LongHash.lsw(chunkCoord);
|
|
|
|
// ChunkCoordIntPair chunkcoordintpair = (ChunkCoordIntPair) iterator.next();
|
|
|
|
int k = chunkX * 16;
|
|
|
|
int l = chunkZ * 16;
|
|
|
|
|
2012-09-10 06:19:28 +02:00
|
|
|
this.methodProfiler.a("getChunk");
|
2012-07-29 09:33:13 +02:00
|
|
|
Chunk chunk = this.getChunkAt(chunkX, chunkZ);
|
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
this.a(k, l, chunk);
|
2012-09-10 06:19:28 +02:00
|
|
|
this.methodProfiler.c("tickChunk");
|
2012-07-29 09:33:13 +02:00
|
|
|
chunk.k();
|
2012-09-10 06:19:28 +02:00
|
|
|
this.methodProfiler.c("thunder");
|
2012-07-29 09:33:13 +02:00
|
|
|
int i1;
|
|
|
|
int j1;
|
|
|
|
int k1;
|
|
|
|
int l1;
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
if (this.random.nextInt(100000) == 0 && this.M() && this.L()) {
|
|
|
|
this.k = this.k * 3 + 1013904223;
|
|
|
|
i1 = this.k >> 2;
|
2012-07-29 09:33:13 +02:00
|
|
|
j1 = k + (i1 & 15);
|
|
|
|
k1 = l + (i1 >> 8 & 15);
|
2012-10-25 05:53:23 +02:00
|
|
|
l1 = this.h(j1, k1);
|
2012-07-29 09:33:13 +02:00
|
|
|
if (this.B(j1, l1, k1)) {
|
|
|
|
this.strikeLightning(new EntityLightning(this, (double) j1, (double) l1, (double) k1));
|
2012-10-25 05:53:23 +02:00
|
|
|
this.q = 2;
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-10 06:19:28 +02:00
|
|
|
this.methodProfiler.c("iceandsnow");
|
2012-07-29 09:33:13 +02:00
|
|
|
int i2;
|
|
|
|
|
|
|
|
if (this.random.nextInt(16) == 0) {
|
2012-10-25 05:53:23 +02:00
|
|
|
this.k = this.k * 3 + 1013904223;
|
|
|
|
i1 = this.k >> 2;
|
2012-07-29 09:33:13 +02:00
|
|
|
j1 = i1 & 15;
|
|
|
|
k1 = i1 >> 8 & 15;
|
2012-10-25 05:53:23 +02:00
|
|
|
l1 = this.h(j1 + k, k1 + l);
|
2012-07-29 09:33:13 +02:00
|
|
|
if (this.v(j1 + k, l1 - 1, k1 + l)) {
|
|
|
|
// CraftBukkit start
|
|
|
|
BlockState blockState = this.getWorld().getBlockAt(j1 + k, l1 - 1, k1 + l).getState();
|
|
|
|
blockState.setTypeId(Block.ICE.id);
|
|
|
|
|
|
|
|
BlockFormEvent iceBlockForm = new BlockFormEvent(blockState.getBlock(), blockState);
|
|
|
|
this.getServer().getPluginManager().callEvent(iceBlockForm);
|
|
|
|
if (!iceBlockForm.isCancelled()) {
|
|
|
|
blockState.update(true);
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
if (this.M() && this.w(j1 + k, l1, k1 + l)) {
|
2012-07-29 09:33:13 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
BlockState blockState = this.getWorld().getBlockAt(j1 + k, l1, k1 + l).getState();
|
|
|
|
blockState.setTypeId(Block.SNOW.id);
|
|
|
|
|
|
|
|
BlockFormEvent snow = new BlockFormEvent(blockState.getBlock(), blockState);
|
|
|
|
this.getServer().getPluginManager().callEvent(snow);
|
|
|
|
if (!snow.isCancelled()) {
|
|
|
|
blockState.update(true);
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
if (this.M()) {
|
2012-07-29 09:33:13 +02:00
|
|
|
BiomeBase biomebase = this.getBiome(j1 + k, k1 + l);
|
|
|
|
|
|
|
|
if (biomebase.d()) {
|
|
|
|
i2 = this.getTypeId(j1 + k, l1 - 1, k1 + l);
|
|
|
|
if (i2 != 0) {
|
|
|
|
Block.byId[i2].f(this, j1 + k, l1 - 1, k1 + l);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-10 06:19:28 +02:00
|
|
|
this.methodProfiler.c("tickTiles");
|
2012-07-29 09:33:13 +02:00
|
|
|
ChunkSection[] achunksection = chunk.i();
|
|
|
|
|
|
|
|
j1 = achunksection.length;
|
|
|
|
|
|
|
|
for (k1 = 0; k1 < j1; ++k1) {
|
|
|
|
ChunkSection chunksection = achunksection[k1];
|
|
|
|
|
|
|
|
if (chunksection != null && chunksection.b()) {
|
|
|
|
for (int j2 = 0; j2 < 3; ++j2) {
|
2012-10-25 05:53:23 +02:00
|
|
|
this.k = this.k * 3 + 1013904223;
|
|
|
|
i2 = this.k >> 2;
|
2012-07-29 09:33:13 +02:00
|
|
|
int k2 = i2 & 15;
|
|
|
|
int l2 = i2 >> 8 & 15;
|
|
|
|
int i3 = i2 >> 16 & 15;
|
|
|
|
int j3 = chunksection.a(k2, i3, l2);
|
|
|
|
|
|
|
|
++j;
|
|
|
|
Block block = Block.byId[j3];
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
if (block != null && block.isTicking()) {
|
2012-07-29 09:33:13 +02:00
|
|
|
++i;
|
|
|
|
block.b(this, k2 + k, i3 + chunksection.d(), l2 + l, this.random);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-10 06:19:28 +02:00
|
|
|
this.methodProfiler.b();
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(int i, int j, int k, int l, int i1) {
|
2012-10-25 05:53:23 +02:00
|
|
|
this.a(i, j, k, l, i1, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(int i, int j, int k, int l, int i1, int j1) {
|
2012-07-29 09:33:13 +02:00
|
|
|
NextTickListEntry nextticklistentry = new NextTickListEntry(i, j, k, l);
|
|
|
|
byte b0 = 8;
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
if (this.d && l > 0) {
|
|
|
|
if (Block.byId[l].l()) {
|
|
|
|
if (this.d(nextticklistentry.a - b0, nextticklistentry.b - b0, nextticklistentry.c - b0, nextticklistentry.a + b0, nextticklistentry.b + b0, nextticklistentry.c + b0)) {
|
|
|
|
int k1 = this.getTypeId(nextticklistentry.a, nextticklistentry.b, nextticklistentry.c);
|
2012-07-29 09:33:13 +02:00
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
if (k1 == nextticklistentry.d && k1 > 0) {
|
|
|
|
Block.byId[k1].b(this, nextticklistentry.a, nextticklistentry.b, nextticklistentry.c, this.random);
|
|
|
|
}
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
2012-10-25 05:53:23 +02:00
|
|
|
|
|
|
|
return;
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
i1 = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.d(i - b0, j - b0, k - b0, i + b0, j + b0, k + b0)) {
|
|
|
|
if (l > 0) {
|
|
|
|
nextticklistentry.a((long) i1 + this.worldData.getTime());
|
|
|
|
nextticklistentry.a(j1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.M.contains(nextticklistentry)) {
|
|
|
|
this.M.add(nextticklistentry);
|
|
|
|
this.N.add(nextticklistentry);
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void b(int i, int j, int k, int l, int i1) {
|
|
|
|
NextTickListEntry nextticklistentry = new NextTickListEntry(i, j, k, l);
|
|
|
|
|
|
|
|
if (l > 0) {
|
|
|
|
nextticklistentry.a((long) i1 + this.worldData.getTime());
|
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
if (!this.M.contains(nextticklistentry)) {
|
|
|
|
this.M.add(nextticklistentry);
|
2012-07-29 09:33:13 +02:00
|
|
|
this.N.add(nextticklistentry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-25 02:51:51 +02:00
|
|
|
public void tickEntities() {
|
|
|
|
if (false && this.players.isEmpty()) { // CraftBukkit - this prevents entity cleanup, other issues on servers with no players
|
2012-10-25 05:53:23 +02:00
|
|
|
if (this.emptyTime++ >= 1200) {
|
2012-08-25 02:51:51 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
2012-10-25 05:53:23 +02:00
|
|
|
this.i();
|
2012-08-25 02:51:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
super.tickEntities();
|
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
public void i() {
|
|
|
|
this.emptyTime = 0;
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public boolean a(boolean flag) {
|
2012-10-25 05:53:23 +02:00
|
|
|
int i = this.N.size();
|
2012-07-29 09:33:13 +02:00
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
if (i != this.M.size()) {
|
2012-07-29 09:33:13 +02:00
|
|
|
throw new IllegalStateException("TickNextTick list out of synch");
|
|
|
|
} else {
|
|
|
|
if (i > 1000) {
|
|
|
|
// CraftBukkit start - if the server has too much to process over time, try to alleviate that
|
|
|
|
if (i > 20 * 1000) {
|
|
|
|
i = i / 20;
|
|
|
|
} else {
|
|
|
|
i = 1000;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int j = 0; j < i; ++j) {
|
2012-10-25 05:53:23 +02:00
|
|
|
NextTickListEntry nextticklistentry = (NextTickListEntry) this.N.first();
|
2012-07-29 09:33:13 +02:00
|
|
|
|
|
|
|
if (!flag && nextticklistentry.e > this.worldData.getTime()) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.N.remove(nextticklistentry);
|
2012-10-25 05:53:23 +02:00
|
|
|
this.M.remove(nextticklistentry);
|
2012-07-29 09:33:13 +02:00
|
|
|
byte b0 = 8;
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
if (this.d(nextticklistentry.a - b0, nextticklistentry.b - b0, nextticklistentry.c - b0, nextticklistentry.a + b0, nextticklistentry.b + b0, nextticklistentry.c + b0)) {
|
2012-07-29 09:33:13 +02:00
|
|
|
int k = this.getTypeId(nextticklistentry.a, nextticklistentry.b, nextticklistentry.c);
|
|
|
|
|
|
|
|
if (k == nextticklistentry.d && k > 0) {
|
|
|
|
Block.byId[k].b(this, nextticklistentry.a, nextticklistentry.b, nextticklistentry.c, this.random);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
return !this.N.isEmpty();
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public List a(Chunk chunk, boolean flag) {
|
|
|
|
ArrayList arraylist = null;
|
|
|
|
ChunkCoordIntPair chunkcoordintpair = chunk.l();
|
|
|
|
int i = chunkcoordintpair.x << 4;
|
|
|
|
int j = i + 16;
|
|
|
|
int k = chunkcoordintpair.z << 4;
|
|
|
|
int l = k + 16;
|
2012-10-25 05:53:23 +02:00
|
|
|
Iterator iterator = this.N.iterator();
|
2012-07-29 09:33:13 +02:00
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
NextTickListEntry nextticklistentry = (NextTickListEntry) iterator.next();
|
|
|
|
|
|
|
|
if (nextticklistentry.a >= i && nextticklistentry.a < j && nextticklistentry.c >= k && nextticklistentry.c < l) {
|
|
|
|
if (flag) {
|
2012-10-25 05:53:23 +02:00
|
|
|
this.M.remove(nextticklistentry);
|
2012-07-29 09:33:13 +02:00
|
|
|
iterator.remove();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (arraylist == null) {
|
|
|
|
arraylist = new ArrayList();
|
|
|
|
}
|
|
|
|
|
|
|
|
arraylist.add(nextticklistentry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return arraylist;
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public void entityJoinedWorld(Entity entity, boolean flag) {
|
2011-05-14 16:29:42 +02:00
|
|
|
/* CraftBukkit start - We prevent spawning in general, so this butchering is not needed
|
2012-07-29 09:33:13 +02:00
|
|
|
if (!this.server.getSpawnAnimals() && (entity instanceof EntityAnimal || entity instanceof EntityWaterAnimal)) {
|
2011-05-14 16:29:42 +02:00
|
|
|
entity.die();
|
|
|
|
}
|
|
|
|
// CraftBukkit end */
|
2012-07-29 09:33:13 +02:00
|
|
|
if (!this.server.getSpawnNPCs() && entity instanceof NPC) {
|
2012-01-12 23:10:13 +01:00
|
|
|
entity.die();
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
if (!(entity.passenger instanceof EntityHuman)) {
|
2011-04-20 19:05:14 +02:00
|
|
|
super.entityJoinedWorld(entity, flag);
|
2011-01-11 09:25:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public void vehicleEnteredWorld(Entity entity, boolean flag) {
|
|
|
|
super.entityJoinedWorld(entity, flag);
|
2011-01-11 09:25:13 +01:00
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
protected IChunkProvider j() {
|
2011-11-30 00:17:43 +01:00
|
|
|
IChunkLoader ichunkloader = this.dataManager.createChunkLoader(this.worldProvider);
|
2011-02-23 03:37:56 +01:00
|
|
|
|
2011-06-12 00:02:58 +02:00
|
|
|
// CraftBukkit start
|
2012-07-22 08:18:00 +02:00
|
|
|
org.bukkit.craftbukkit.generator.InternalChunkGenerator gen;
|
2011-06-06 15:52:02 +02:00
|
|
|
|
|
|
|
if (this.generator != null) {
|
2012-07-22 08:18:00 +02:00
|
|
|
gen = new org.bukkit.craftbukkit.generator.CustomChunkGenerator(this, this.getSeed(), this.generator);
|
2011-06-06 15:52:02 +02:00
|
|
|
} else if (this.worldProvider instanceof WorldProviderHell) {
|
2012-07-22 08:18:00 +02:00
|
|
|
gen = new org.bukkit.craftbukkit.generator.NetherChunkGenerator(this, this.getSeed());
|
2011-11-30 00:17:43 +01:00
|
|
|
} else if (this.worldProvider instanceof WorldProviderTheEnd) {
|
2012-07-22 08:18:00 +02:00
|
|
|
gen = new org.bukkit.craftbukkit.generator.SkyLandsChunkGenerator(this, this.getSeed());
|
2011-06-06 15:52:02 +02:00
|
|
|
} else {
|
2012-07-22 08:18:00 +02:00
|
|
|
gen = new org.bukkit.craftbukkit.generator.NormalChunkGenerator(this, this.getSeed());
|
2011-06-06 15:52:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this.chunkProviderServer = new ChunkProviderServer(this, ichunkloader, gen);
|
2011-06-12 00:02:58 +02:00
|
|
|
// CraftBukkit end
|
2011-06-06 15:52:02 +02:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
return this.chunkProviderServer;
|
2011-01-11 09:25:13 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public List getTileEntities(int i, int j, int k, int l, int i1, int j1) {
|
2011-01-11 09:25:13 +01:00
|
|
|
ArrayList arraylist = new ArrayList();
|
2012-07-29 09:33:13 +02:00
|
|
|
Iterator iterator = this.tileEntityList.iterator();
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
while (iterator.hasNext()) {
|
|
|
|
TileEntity tileentity = (TileEntity) iterator.next();
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
if (tileentity.x >= i && tileentity.y >= j && tileentity.z >= k && tileentity.x < l && tileentity.y < i1 && tileentity.z < j1) {
|
2011-01-29 22:50:29 +01:00
|
|
|
arraylist.add(tileentity);
|
2011-01-11 09:25:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
return arraylist;
|
2011-01-11 09:25:13 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public boolean a(EntityHuman entityhuman, int i, int j, int k) {
|
2011-09-15 02:23:52 +02:00
|
|
|
int l = MathHelper.a(i - this.worldData.c());
|
|
|
|
int i1 = MathHelper.a(k - this.worldData.e());
|
2011-01-11 09:25:13 +01:00
|
|
|
|
|
|
|
if (l > i1) {
|
|
|
|
i1 = l;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-05-14 16:29:42 +02:00
|
|
|
// CraftBukkit - Configurable spawn protection
|
2012-10-25 05:53:23 +02:00
|
|
|
return i1 > this.getServer().getSpawnRadius() || this.server.getServerConfigurationManager().isOp(entityhuman.name) || this.server.I();
|
2011-01-11 09:25:13 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected void a(WorldSettings worldsettings) {
|
2012-01-14 21:03:48 +01:00
|
|
|
if (this.entitiesById == null) {
|
|
|
|
this.entitiesById = new IntHashMap();
|
2011-12-01 22:43:54 +01:00
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
if (this.M == null) {
|
|
|
|
this.M = new HashSet();
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
if (this.N == null) {
|
|
|
|
this.N = new TreeSet();
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this.b(worldsettings);
|
|
|
|
super.a(worldsettings);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void b(WorldSettings worldsettings) {
|
|
|
|
if (!this.worldProvider.e()) {
|
|
|
|
this.worldData.setSpawn(0, this.worldProvider.getSeaLevel(), 0);
|
|
|
|
} else {
|
|
|
|
this.isLoading = true;
|
2012-10-25 05:53:23 +02:00
|
|
|
WorldChunkManager worldchunkmanager = this.worldProvider.d;
|
2012-07-29 09:33:13 +02:00
|
|
|
List list = worldchunkmanager.a();
|
|
|
|
Random random = new Random(this.getSeed());
|
|
|
|
ChunkPosition chunkposition = worldchunkmanager.a(0, 0, 256, list, random);
|
|
|
|
int i = 0;
|
|
|
|
int j = this.worldProvider.getSeaLevel();
|
|
|
|
int k = 0;
|
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
if (this.generator != null) {
|
|
|
|
Random rand = new Random(this.getSeed());
|
|
|
|
org.bukkit.Location spawn = this.generator.getFixedSpawnLocation(((WorldServer) this).getWorld(), rand);
|
|
|
|
|
|
|
|
if (spawn != null) {
|
|
|
|
if (spawn.getWorld() != ((WorldServer) this).getWorld()) {
|
|
|
|
throw new IllegalStateException("Cannot set spawn point for " + this.worldData.getName() + " to be in another world (" + spawn.getWorld().getName() + ")");
|
|
|
|
} else {
|
|
|
|
this.worldData.setSpawn(spawn.getBlockX(), spawn.getBlockY(), spawn.getBlockZ());
|
|
|
|
this.isLoading = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
if (chunkposition != null) {
|
|
|
|
i = chunkposition.x;
|
|
|
|
k = chunkposition.z;
|
|
|
|
} else {
|
|
|
|
System.out.println("Unable to find spawn biome");
|
|
|
|
}
|
|
|
|
|
|
|
|
int l = 0;
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
while (!this.canSpawn(i, k)) { // CraftBukkit - use our own canSpawn
|
2012-07-29 09:33:13 +02:00
|
|
|
i += random.nextInt(64) - random.nextInt(64);
|
|
|
|
k += random.nextInt(64) - random.nextInt(64);
|
|
|
|
++l;
|
|
|
|
if (l == 1000) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.worldData.setSpawn(i, j, k);
|
|
|
|
this.isLoading = false;
|
|
|
|
if (worldsettings.c()) {
|
2012-10-25 05:53:23 +02:00
|
|
|
this.k();
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
protected void k() {
|
|
|
|
WorldGenBonusChest worldgenbonuschest = new WorldGenBonusChest(S, 10);
|
2012-07-29 09:33:13 +02:00
|
|
|
|
|
|
|
for (int i = 0; i < 10; ++i) {
|
|
|
|
int j = this.worldData.c() + this.random.nextInt(6) - this.random.nextInt(6);
|
|
|
|
int k = this.worldData.e() + this.random.nextInt(6) - this.random.nextInt(6);
|
2012-10-25 05:53:23 +02:00
|
|
|
int l = this.i(j, k) + 1;
|
2012-07-29 09:33:13 +02:00
|
|
|
|
|
|
|
if (worldgenbonuschest.a(this, this.random, j, l, k)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-12-01 22:43:54 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public ChunkCoordinates getDimensionSpawn() {
|
|
|
|
return this.worldProvider.h();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void save(boolean flag, IProgressUpdate iprogressupdate) throws ExceptionWorldConflict { // CraftBukkit - added throws
|
|
|
|
if (this.chunkProvider.canSave()) {
|
|
|
|
if (iprogressupdate != null) {
|
|
|
|
iprogressupdate.a("Saving level");
|
|
|
|
}
|
|
|
|
|
|
|
|
this.a();
|
|
|
|
if (iprogressupdate != null) {
|
|
|
|
iprogressupdate.c("Saving chunks");
|
|
|
|
}
|
|
|
|
|
|
|
|
this.chunkProvider.saveChunks(flag, iprogressupdate);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void a() throws ExceptionWorldConflict { // CraftBukkit - added throws
|
2012-10-25 05:53:23 +02:00
|
|
|
this.C();
|
2012-07-29 09:33:13 +02:00
|
|
|
this.dataManager.saveWorldData(this.worldData, this.server.getServerConfigurationManager().q());
|
|
|
|
this.worldMaps.a();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void a(Entity entity) {
|
|
|
|
super.a(entity);
|
2012-01-14 21:03:48 +01:00
|
|
|
this.entitiesById.a(entity.id, entity);
|
2012-10-25 05:53:23 +02:00
|
|
|
Entity[] aentity = entity.ao();
|
2011-11-20 09:01:14 +01:00
|
|
|
|
|
|
|
if (aentity != null) {
|
2012-07-29 09:33:13 +02:00
|
|
|
Entity[] aentity1 = aentity;
|
|
|
|
int i = aentity.length;
|
|
|
|
|
|
|
|
for (int j = 0; j < i; ++j) {
|
|
|
|
Entity entity1 = aentity1[j];
|
|
|
|
|
|
|
|
this.entitiesById.a(entity1.id, entity1);
|
2011-11-20 09:01:14 +01:00
|
|
|
}
|
|
|
|
}
|
2011-04-20 22:47:26 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected void b(Entity entity) {
|
|
|
|
super.b(entity);
|
2012-01-14 21:03:48 +01:00
|
|
|
this.entitiesById.d(entity.id);
|
2012-10-25 05:53:23 +02:00
|
|
|
Entity[] aentity = entity.ao();
|
2011-11-20 09:01:14 +01:00
|
|
|
|
|
|
|
if (aentity != null) {
|
2012-07-29 09:33:13 +02:00
|
|
|
Entity[] aentity1 = aentity;
|
|
|
|
int i = aentity.length;
|
|
|
|
|
|
|
|
for (int j = 0; j < i; ++j) {
|
|
|
|
Entity entity1 = aentity1[j];
|
|
|
|
|
|
|
|
this.entitiesById.d(entity1.id);
|
2011-11-20 09:01:14 +01:00
|
|
|
}
|
|
|
|
}
|
2011-01-11 09:25:13 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public Entity getEntity(int i) {
|
2012-02-29 22:31:04 +01:00
|
|
|
return (Entity) this.entitiesById.get(i);
|
2011-04-20 22:47:26 +02:00
|
|
|
}
|
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
public boolean strikeLightning(Entity entity) {
|
2011-06-11 02:37:33 +02:00
|
|
|
// CraftBukkit start
|
2011-06-27 00:25:01 +02:00
|
|
|
LightningStrikeEvent lightning = new LightningStrikeEvent(this.getWorld(), (org.bukkit.entity.LightningStrike) entity.getBukkitEntity());
|
|
|
|
this.getServer().getPluginManager().callEvent(lightning);
|
2011-05-14 16:29:42 +02:00
|
|
|
|
2011-06-11 02:37:33 +02:00
|
|
|
if (lightning.isCancelled()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
if (super.strikeLightning(entity)) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.server.getServerConfigurationManager().sendPacketNearby(entity.locX, entity.locY, entity.locZ, 512.0D, this.dimension, new Packet71Weather(entity));
|
2011-05-14 16:29:42 +02:00
|
|
|
// CraftBukkit end
|
|
|
|
return true;
|
2011-04-20 22:47:26 +02:00
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2011-01-11 09:25:13 +01:00
|
|
|
}
|
|
|
|
|
2012-02-29 22:31:04 +01:00
|
|
|
public void broadcastEntityEffect(Entity entity, byte b0) {
|
2011-01-29 22:50:29 +01:00
|
|
|
Packet38EntityStatus packet38entitystatus = new Packet38EntityStatus(entity.id, b0);
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
this.getTracker().sendPacketToEntity(entity, packet38entitystatus);
|
2011-01-11 09:25:13 +01:00
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
public Explosion createExplosion(Entity entity, double d0, double d1, double d2, float f, boolean flag, boolean flag1) {
|
2011-05-14 16:29:42 +02:00
|
|
|
// CraftBukkit start
|
2012-10-25 05:53:23 +02:00
|
|
|
Explosion explosion = super.createExplosion(entity, d0, d1, d2, f, flag, flag1);
|
2011-01-11 09:25:13 +01:00
|
|
|
|
2011-02-23 13:56:36 +01:00
|
|
|
if (explosion.wasCanceled) {
|
2011-02-07 19:37:08 +01:00
|
|
|
return explosion;
|
|
|
|
}
|
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
/* Remove
|
2011-06-12 00:02:58 +02:00
|
|
|
explosion.a = flag;
|
2012-10-25 05:53:23 +02:00
|
|
|
explosion.b = flag1;
|
2011-06-12 00:02:58 +02:00
|
|
|
explosion.a();
|
|
|
|
explosion.a(false);
|
2012-10-25 05:53:23 +02:00
|
|
|
if (!flag1) {
|
|
|
|
explosion.blocks.clear();
|
|
|
|
}
|
2011-06-27 00:25:01 +02:00
|
|
|
*/
|
2012-10-25 05:53:23 +02:00
|
|
|
// CraftBukkit end - TODO: Check if explosions are still properly implemented
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
Iterator iterator = this.players.iterator();
|
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
EntityHuman entityhuman = (EntityHuman) iterator.next();
|
|
|
|
|
|
|
|
if (entityhuman.e(d0, d1, d2) < 4096.0D) {
|
|
|
|
((EntityPlayer) entityhuman).netServerHandler.sendPacket(new Packet60Explosion(d0, d1, d2, f, explosion.blocks, (Vec3D) explosion.b().get(entityhuman)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-11 09:25:13 +01:00
|
|
|
return explosion;
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void playNote(int i, int j, int k, int l, int i1, int j1) {
|
|
|
|
NoteBlockData noteblockdata = new NoteBlockData(i, j, k, l, i1, j1);
|
2012-10-25 05:53:23 +02:00
|
|
|
Iterator iterator = this.Q[this.R].iterator();
|
2012-07-29 09:33:13 +02:00
|
|
|
|
|
|
|
NoteBlockData noteblockdata1;
|
|
|
|
|
|
|
|
do {
|
|
|
|
if (!iterator.hasNext()) {
|
2012-10-25 05:53:23 +02:00
|
|
|
this.Q[this.R].add(noteblockdata);
|
2012-07-29 09:33:13 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
noteblockdata1 = (NoteBlockData) iterator.next();
|
|
|
|
} while (!noteblockdata1.equals(noteblockdata));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
private void U() {
|
|
|
|
while (!this.Q[this.R].isEmpty()) {
|
|
|
|
int i = this.R;
|
2012-07-29 09:33:13 +02:00
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
this.R ^= 1;
|
|
|
|
Iterator iterator = this.Q[i].iterator();
|
2012-07-29 09:33:13 +02:00
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
NoteBlockData noteblockdata = (NoteBlockData) iterator.next();
|
|
|
|
|
|
|
|
if (this.a(noteblockdata)) {
|
2012-08-09 11:28:04 +02:00
|
|
|
// CraftBukkit - this.worldProvider.dimension -> this.dimension
|
|
|
|
this.server.getServerConfigurationManager().sendPacketNearby((double) noteblockdata.a(), (double) noteblockdata.b(), (double) noteblockdata.c(), 64.0D, this.dimension, new Packet54PlayNoteBlock(noteblockdata.a(), noteblockdata.b(), noteblockdata.c(), noteblockdata.f(), noteblockdata.d(), noteblockdata.e()));
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
this.Q[i].clear();
|
2012-07-29 09:33:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean a(NoteBlockData noteblockdata) {
|
|
|
|
int i = this.getTypeId(noteblockdata.a(), noteblockdata.b(), noteblockdata.c());
|
|
|
|
|
|
|
|
if (i == noteblockdata.f()) {
|
|
|
|
Block.byId[i].b(this, noteblockdata.a(), noteblockdata.b(), noteblockdata.c(), noteblockdata.d(), noteblockdata.e());
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2011-02-23 03:37:56 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public void saveLevel() {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.dataManager.a();
|
2011-04-20 22:47:26 +02:00
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
protected void n() {
|
|
|
|
boolean flag = this.M();
|
2011-04-20 22:47:26 +02:00
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
super.n();
|
|
|
|
if (flag != this.M()) {
|
2011-06-09 08:33:16 +02:00
|
|
|
// CraftBukkit start - only sending weather packets to those affected
|
|
|
|
for (int i = 0; i < this.players.size(); ++i) {
|
2011-06-27 00:25:01 +02:00
|
|
|
if (((EntityPlayer) this.players.get(i)).world == this) {
|
2011-09-15 02:23:52 +02:00
|
|
|
((EntityPlayer) this.players.get(i)).netServerHandler.sendPacket(new Packet70Bed(flag ? 2 : 1, 0));
|
2011-06-09 08:33:16 +02:00
|
|
|
}
|
2011-04-20 22:47:26 +02:00
|
|
|
}
|
2011-06-09 08:33:16 +02:00
|
|
|
// CraftBukkit end
|
2011-04-20 22:47:26 +02:00
|
|
|
}
|
2011-01-14 22:22:14 +01:00
|
|
|
}
|
2012-07-29 09:33:13 +02:00
|
|
|
|
|
|
|
public MinecraftServer getMinecraftServer() {
|
|
|
|
return this.server;
|
|
|
|
}
|
|
|
|
|
|
|
|
public EntityTracker getTracker() {
|
|
|
|
return this.tracker;
|
|
|
|
}
|
|
|
|
|
|
|
|
public PlayerManager getPlayerManager() {
|
|
|
|
return this.manager;
|
|
|
|
}
|
2010-12-29 00:52:29 +01:00
|
|
|
}
|