3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 04:50:05 +01:00
Paper/nms-patches/World.patch

372 Zeilen
16 KiB
Diff

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/World.java
+++ b/net/minecraft/server/World.java
2019-04-23 04:00:00 +02:00
@@ -14,6 +14,22 @@
2018-07-15 02:00:00 +02:00
import org.apache.logging.log4j.Logger;
2019-04-23 04:00:00 +02:00
import org.apache.logging.log4j.util.Supplier;
+// CraftBukkit start
+import com.google.common.collect.Maps;
2018-12-25 22:00:00 +01:00
+import java.util.ArrayList;
+import java.util.Map;
+import org.bukkit.Bukkit;
+import org.bukkit.block.BlockState;
+import org.bukkit.craftbukkit.CraftServer;
+import org.bukkit.craftbukkit.CraftWorld;
2018-07-15 02:00:00 +02:00
+import org.bukkit.craftbukkit.block.CraftBlockState;
+import org.bukkit.craftbukkit.block.data.CraftBlockData;
+import org.bukkit.craftbukkit.event.CraftEventFactory;
+import org.bukkit.event.block.BlockPhysicsEvent;
+import org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason;
2019-04-23 04:00:00 +02:00
+import org.bukkit.event.weather.LightningStrikeEvent;
+// CraftBukkit end
+
2019-12-10 23:00:00 +01:00
public abstract class World implements GeneratorAccess, AutoCloseable {
2019-04-25 04:00:00 +02:00
protected static final Logger LOGGER = LogManager.getLogger();
2019-12-10 23:00:00 +01:00
@@ -22,7 +38,7 @@
public final List<TileEntity> tileEntityListTick = Lists.newArrayList();
protected final List<TileEntity> tileEntityListPending = Lists.newArrayList();
protected final List<TileEntity> tileEntityListUnload = Lists.newArrayList();
- private final Thread serverThread;
2019-12-10 23:00:00 +01:00
+ final Thread serverThread; // CraftBukkit - package private // PAIL
private int c;
protected int i = (new Random()).nextInt();
protected final int j = 1013904223;
2019-12-10 23:00:00 +01:00
@@ -40,7 +56,51 @@
2019-04-23 04:00:00 +02:00
private final WorldBorder worldBorder;
2019-12-10 23:00:00 +01:00
private final BiomeManager biomeManager;
2019-04-23 04:00:00 +02:00
- protected World(WorldData worlddata, DimensionManager dimensionmanager, BiFunction<World, WorldProvider, IChunkProvider> bifunction, GameProfilerFiller gameprofilerfiller, boolean flag) {
+ // CraftBukkit start Added the following
+ private final CraftWorld world;
+ public boolean pvpMode;
+ public boolean keepSpawnInMemory = true;
2019-04-23 04:00:00 +02:00
+ public org.bukkit.generator.ChunkGenerator generator;
+
+ public boolean captureBlockStates = false;
+ public boolean captureTreeGeneration = false;
2018-07-15 02:00:00 +02:00
+ public ArrayList<CraftBlockState> capturedBlockStates = new ArrayList<CraftBlockState>() {
+ @Override
2018-07-15 02:00:00 +02:00
+ public boolean add(CraftBlockState blockState) {
+ Iterator<CraftBlockState> blockStateIterator = this.iterator();
+ while (blockStateIterator.hasNext()) {
+ BlockState blockState1 = blockStateIterator.next();
2018-07-15 02:00:00 +02:00
+ if (blockState1.getLocation().equals(blockState.getLocation())) {
2014-11-29 22:17:57 +01:00
+ return false;
+ }
+ }
+
2018-07-15 02:00:00 +02:00
+ return super.add(blockState);
+ }
+ };
+ public List<EntityItem> captureDrops;
+ public long ticksPerAnimalSpawns;
+ public long ticksPerMonsterSpawns;
+ public boolean populating;
+
+ public CraftWorld getWorld() {
+ return this.world;
+ }
+
+ public CraftServer getServer() {
+ return (CraftServer) Bukkit.getServer();
+ }
+
+ public Chunk getChunkIfLoaded(int x, int z) {
2019-04-23 04:00:00 +02:00
+ return ((ChunkProviderServer) this.chunkProvider).getChunkAt(x, z, false);
+ }
+
2019-04-23 04:00:00 +02:00
+ protected World(WorldData worlddata, DimensionManager dimensionmanager, BiFunction<World, WorldProvider, IChunkProvider> bifunction, GameProfilerFiller gameprofilerfiller, boolean flag, org.bukkit.generator.ChunkGenerator gen, org.bukkit.World.Environment env) {
+ this.generator = gen;
+ this.world = new CraftWorld((WorldServer) this, gen, env);
+ this.ticksPerAnimalSpawns = this.getServer().getTicksPerAnimalSpawns(); // CraftBukkit
+ this.ticksPerMonsterSpawns = this.getServer().getTicksPerMonsterSpawns(); // CraftBukkit
+ // CraftBukkit end
2019-04-23 04:00:00 +02:00
this.methodProfiler = gameprofilerfiller;
this.worldData = worlddata;
this.worldProvider = dimensionmanager.getWorldProvider(this);
@@ -49,6 +109,35 @@
2019-04-23 04:00:00 +02:00
this.worldBorder = this.worldProvider.getWorldBorder();
2019-05-14 02:00:00 +02:00
this.serverThread = Thread.currentThread();
2019-12-10 23:00:00 +01:00
this.biomeManager = new BiomeManager(this, flag ? worlddata.getSeed() : WorldData.c(worlddata.getSeed()), dimensionmanager.getGenLayerZoomer());
2016-03-01 01:20:42 +01:00
+ // CraftBukkit start
+ getWorldBorder().world = (WorldServer) this;
+ // From PlayerList.setPlayerFileData
+ getWorldBorder().a(new IWorldBorderListener() {
+ public void a(WorldBorder worldborder, double d0) {
+ getServer().getHandle().sendAll(new PacketPlayOutWorldBorder(worldborder, PacketPlayOutWorldBorder.EnumWorldBorderAction.SET_SIZE), worldborder.world);
+ }
+
+ public void a(WorldBorder worldborder, double d0, double d1, long i) {
+ getServer().getHandle().sendAll(new PacketPlayOutWorldBorder(worldborder, PacketPlayOutWorldBorder.EnumWorldBorderAction.LERP_SIZE), worldborder.world);
+ }
+
+ public void a(WorldBorder worldborder, double d0, double d1) {
+ getServer().getHandle().sendAll(new PacketPlayOutWorldBorder(worldborder, PacketPlayOutWorldBorder.EnumWorldBorderAction.SET_CENTER), worldborder.world);
+ }
+
+ public void a(WorldBorder worldborder, int i) {
+ getServer().getHandle().sendAll(new PacketPlayOutWorldBorder(worldborder, PacketPlayOutWorldBorder.EnumWorldBorderAction.SET_WARNING_TIME), worldborder.world);
+ }
+
+ public void b(WorldBorder worldborder, int i) {
+ getServer().getHandle().sendAll(new PacketPlayOutWorldBorder(worldborder, PacketPlayOutWorldBorder.EnumWorldBorderAction.SET_WARNING_BLOCKS), worldborder.world);
+ }
+
+ public void b(WorldBorder worldborder, double d0) {}
+
+ public void c(WorldBorder worldborder, double d0) {}
+ });
2016-03-01 01:20:42 +01:00
+ // CraftBukkit end
}
2019-04-23 04:00:00 +02:00
@Override
2019-12-10 23:00:00 +01:00
@@ -105,6 +194,26 @@
2019-04-23 04:00:00 +02:00
@Override
public boolean setTypeAndData(BlockPosition blockposition, IBlockData iblockdata, int i) {
+ // CraftBukkit start - tree generation
+ if (this.captureTreeGeneration) {
2018-07-15 02:00:00 +02:00
+ CraftBlockState blockstate = null;
+ Iterator<CraftBlockState> it = capturedBlockStates.iterator();
+ while (it.hasNext()) {
2018-07-15 02:00:00 +02:00
+ CraftBlockState previous = it.next();
+ if (previous.getPosition().equals(blockposition)) {
+ blockstate = previous;
+ it.remove();
+ break;
+ }
+ }
+ if (blockstate == null) {
2018-07-15 02:00:00 +02:00
+ blockstate = org.bukkit.craftbukkit.block.CraftBlockState.getBlockState(this, blockposition, i);
+ }
2018-07-15 02:00:00 +02:00
+ blockstate.setData(iblockdata);
+ this.capturedBlockStates.add(blockstate);
+ return true;
+ }
+ // CraftBukkit end
2019-05-14 02:00:00 +02:00
if (isOutsideWorld(blockposition)) {
return false;
2015-02-26 23:41:06 +01:00
} else if (!this.isClientSide && this.worldData.getType() == WorldType.DEBUG_ALL_BLOCK_STATES) {
2019-12-10 23:00:00 +01:00
@@ -112,9 +221,23 @@
} else {
Chunk chunk = this.getChunkAtWorldCoords(blockposition);
Block block = iblockdata.getBlock();
2018-10-22 21:00:00 +02:00
- IBlockData iblockdata1 = chunk.setType(blockposition, iblockdata, (i & 64) != 0);
2015-02-26 23:41:06 +01:00
+
+ // CraftBukkit start - capture blockstates
2018-07-15 02:00:00 +02:00
+ CraftBlockState blockstate = null;
+ if (this.captureBlockStates) {
2018-07-15 02:00:00 +02:00
+ blockstate = org.bukkit.craftbukkit.block.CraftBlockState.getBlockState(this, blockposition, i);
+ this.capturedBlockStates.add(blockstate);
+ }
+ // CraftBukkit end
2015-02-26 23:41:06 +01:00
+
2018-10-22 21:00:00 +02:00
+ IBlockData iblockdata1 = chunk.setType(blockposition, iblockdata, (i & 64) != 0, (i & 1024) == 0); // CraftBukkit custom NO_PLACE flag
if (iblockdata1 == null) {
+ // CraftBukkit start - remove blockstate if failed
2014-11-29 22:17:57 +01:00
+ if (this.captureBlockStates) {
+ this.capturedBlockStates.remove(blockstate);
+ }
+ // CraftBukkit end
return false;
} else {
2018-07-15 02:00:00 +02:00
IBlockData iblockdata2 = this.getType(blockposition);
2019-12-10 23:00:00 +01:00
@@ -125,6 +248,7 @@
2018-12-13 01:00:00 +01:00
this.methodProfiler.exit();
}
+ /*
2018-07-15 02:00:00 +02:00
if (iblockdata2 == iblockdata) {
if (iblockdata1 != iblockdata2) {
2019-07-20 01:00:00 +02:00
this.b(blockposition, iblockdata1, iblockdata2);
2019-12-10 23:00:00 +01:00
@@ -151,12 +275,65 @@
2019-04-23 04:00:00 +02:00
this.a(blockposition, iblockdata1, iblockdata2);
}
+ */
+
+ // CraftBukkit start
+ if (!this.captureBlockStates) { // Don't notify clients or update physics while capturing blockstates
+ // Modularize client and physic updates
2018-07-15 02:00:00 +02:00
+ notifyAndUpdatePhysics(blockposition, chunk, iblockdata1, iblockdata, iblockdata2, i);
+ }
+ // CraftBukkit end
return true;
}
}
}
2016-11-17 02:41:03 +01:00
+ // CraftBukkit start - Split off from above in order to directly send client and physic updates
2018-07-15 02:00:00 +02:00
+ public void notifyAndUpdatePhysics(BlockPosition blockposition, Chunk chunk, IBlockData oldBlock, IBlockData newBlock, IBlockData actualBlock, int i) {
+ IBlockData iblockdata = newBlock;
+ IBlockData iblockdata1 = oldBlock;
+ IBlockData iblockdata2 = actualBlock;
+ if (iblockdata2 == iblockdata) {
+ if (iblockdata1 != iblockdata2) {
2019-07-20 01:00:00 +02:00
+ this.b(blockposition, iblockdata1, iblockdata2);
2018-07-15 02:00:00 +02:00
+ }
+
2019-05-27 22:30:00 +02:00
+ if ((i & 2) != 0 && (!this.isClientSide || (i & 4) == 0) && (this.isClientSide || chunk == null || (chunk.getState() != null && chunk.getState().isAtLeast(PlayerChunk.State.TICKING)))) { // allow chunk to be null here as chunk.isReady() is false when we send our notification during block placement
2018-07-15 02:00:00 +02:00
+ this.notify(blockposition, iblockdata1, iblockdata, i);
+ }
+
+ if (!this.isClientSide && (i & 1) != 0) {
+ this.update(blockposition, iblockdata1.getBlock());
+ if (iblockdata.isComplexRedstone()) {
+ this.updateAdjacentComparators(blockposition, newBlock.getBlock());
+ }
+ }
+
+ if ((i & 16) == 0) {
+ int j = i & -2;
+
+ // CraftBukkit start
+ iblockdata1.b(this, blockposition, j); // Don't call an event for the old block to limit event spam
+ CraftWorld world = ((WorldServer) this).getWorld();
+ if (world != null) {
+ BlockPhysicsEvent event = new BlockPhysicsEvent(world.getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ()), CraftBlockData.fromData(iblockdata));
+ this.getServer().getPluginManager().callEvent(event);
+
+ if (event.isCancelled()) {
+ return;
+ }
+ }
+ // CraftBukkit end
2019-04-23 04:00:00 +02:00
+ iblockdata.a(this, blockposition, j);
2018-07-15 02:00:00 +02:00
+ iblockdata.b(this, blockposition, j);
+ }
2019-04-23 04:00:00 +02:00
+
+ this.a(blockposition, iblockdata1, iblockdata2);
+ }
+ }
+ // CraftBukkit end
+
2019-04-23 04:00:00 +02:00
public void a(BlockPosition blockposition, IBlockData iblockdata, IBlockData iblockdata1) {}
2019-04-23 04:00:00 +02:00
@Override
2019-12-10 23:00:00 +01:00
@@ -195,6 +372,11 @@
2019-04-23 04:00:00 +02:00
@Override
2018-07-15 02:00:00 +02:00
public void update(BlockPosition blockposition, Block block) {
if (this.worldData.getType() != WorldType.DEBUG_ALL_BLOCK_STATES) {
+ // CraftBukkit start
+ if (populating) {
+ return;
+ }
+ // CraftBukkit end
2018-07-15 02:00:00 +02:00
this.applyPhysics(blockposition, block);
}
2019-12-10 23:00:00 +01:00
@@ -243,6 +425,17 @@
IBlockData iblockdata = this.getType(blockposition);
try {
+ // CraftBukkit start
+ CraftWorld world = ((WorldServer) this).getWorld();
+ if (world != null) {
+ BlockPhysicsEvent event = new BlockPhysicsEvent(world.getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ()), CraftBlockData.fromData(iblockdata), world.getBlockAt(blockposition1.getX(), blockposition1.getY(), blockposition1.getZ()));
+ this.getServer().getPluginManager().callEvent(event);
+
+ if (event.isCancelled()) {
+ return;
+ }
+ }
+ // CraftBukkit end
2019-04-23 04:00:00 +02:00
iblockdata.doPhysics(this, blockposition, block, blockposition1, false);
} catch (Throwable throwable) {
CrashReport crashreport = CrashReport.a(throwable, "Exception while updating neighbours");
2019-12-10 23:00:00 +01:00
@@ -285,6 +478,17 @@
2019-04-23 04:00:00 +02:00
@Override
public IBlockData getType(BlockPosition blockposition) {
+ // CraftBukkit start - tree generation
+ if (captureTreeGeneration) {
2018-07-15 02:00:00 +02:00
+ Iterator<CraftBlockState> it = capturedBlockStates.iterator();
+ while (it.hasNext()) {
2018-07-15 02:00:00 +02:00
+ CraftBlockState previous = it.next();
+ if (previous.getPosition().equals(blockposition)) {
2018-07-15 02:00:00 +02:00
+ return previous.getHandle();
+ }
+ }
+ }
+ // CraftBukkit end
2019-05-14 02:00:00 +02:00
if (isOutsideWorld(blockposition)) {
2018-07-15 02:00:00 +02:00
return Blocks.VOID_AIR.getBlockData();
} else {
@@ -306,11 +510,11 @@
}
2019-12-17 22:00:00 +01:00
public boolean isDay() {
- return this.worldProvider.getDimensionManager() == DimensionManager.OVERWORLD && this.c < 4;
+ return this.worldProvider.getDimensionManager().getType() == DimensionManager.OVERWORLD && this.c < 4; // CraftBukkit
}
2019-12-17 22:00:00 +01:00
public boolean isNight() {
- return this.worldProvider.getDimensionManager() == DimensionManager.OVERWORLD && !this.isDay();
+ return this.worldProvider.getDimensionManager().getType() == DimensionManager.OVERWORLD && !this.isDay(); // CraftBukkit
}
@Override
2019-12-10 23:00:00 +01:00
@@ -432,9 +636,11 @@
2019-04-23 04:00:00 +02:00
TileEntity tileentity1 = (TileEntity) this.tileEntityListPending.get(i);
2019-04-23 04:00:00 +02:00
if (!tileentity1.isRemoved()) {
+ /* CraftBukkit start - Order matters, moved down
2016-02-29 22:32:46 +01:00
if (!this.tileEntityList.contains(tileentity1)) {
this.a(tileentity1);
}
+ // CraftBukkit end */
if (this.isLoaded(tileentity1.getPosition())) {
2016-02-29 22:32:46 +01:00
Chunk chunk = this.getChunkAtWorldCoords(tileentity1.getPosition());
2019-12-10 23:00:00 +01:00
@@ -442,6 +648,12 @@
2019-04-23 04:00:00 +02:00
chunk.setTileEntity(tileentity1.getPosition(), tileentity1);
this.notify(tileentity1.getPosition(), iblockdata, iblockdata, 3);
+ // CraftBukkit start
+ // From above, don't screw this up - SPIGOT-1746
+ if (!this.tileEntityList.contains(tileentity1)) {
+ this.a(tileentity1);
+ }
+ // CraftBukkit end
}
}
}
2019-12-10 23:00:00 +01:00
@@ -604,6 +816,7 @@
}
}
+ public Map<BlockPosition, TileEntity> capturedTileEntities = Maps.newHashMap();
2016-05-10 13:47:39 +02:00
@Nullable
2019-04-23 04:00:00 +02:00
@Override
public TileEntity getTileEntity(BlockPosition blockposition) {
2019-12-10 23:00:00 +01:00
@@ -612,6 +825,12 @@
2019-05-14 02:00:00 +02:00
} else if (!this.isClientSide && Thread.currentThread() != this.serverThread) {
return null;
} else {
+ // CraftBukkit start
+ if (capturedTileEntities.containsKey(blockposition)) {
+ return capturedTileEntities.get(blockposition);
+ }
+ // CraftBukkit end
+
TileEntity tileentity = null;
2019-04-23 04:00:00 +02:00
if (this.tickingTileEntities) {
2019-12-10 23:00:00 +01:00
@@ -646,6 +865,13 @@
2016-05-10 13:47:39 +02:00
public void setTileEntity(BlockPosition blockposition, @Nullable TileEntity tileentity) {
2019-05-14 02:00:00 +02:00
if (!isOutsideWorld(blockposition)) {
2019-04-23 04:00:00 +02:00
if (tileentity != null && !tileentity.isRemoved()) {
2018-07-15 02:00:00 +02:00
+ // CraftBukkit start
+ if (captureBlockStates) {
2019-12-10 23:00:00 +01:00
+ tileentity.setLocation(this, blockposition);
2018-07-15 02:00:00 +02:00
+ capturedTileEntities.put(blockposition, tileentity);
+ return;
+ }
+ // CraftBukkit end
2019-04-23 04:00:00 +02:00
if (this.tickingTileEntities) {
2019-12-10 23:00:00 +01:00
tileentity.setLocation(this, blockposition);
2019-04-23 04:00:00 +02:00
Iterator iterator = this.tileEntityListPending.iterator();