geforkt von Mirrors/Paper
Allow delegation to vanilla chunk gen
Dieser Commit ist enthalten in:
Ursprung
b7c653f532
Commit
4cb36133b6
85
Spigot-API-Patches/Allow-delegation-to-vanilla-chunk-gen.patch
Normale Datei
85
Spigot-API-Patches/Allow-delegation-to-vanilla-chunk-gen.patch
Normale Datei
@ -0,0 +1,85 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: MiniDigger | Martin <admin@minidigger.dev>
|
||||||
|
Date: Wed, 29 Apr 2020 02:09:17 +0200
|
||||||
|
Subject: [PATCH] Allow delegation to vanilla chunk gen
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/org/bukkit/Bukkit.java b/src/main/java/org/bukkit/Bukkit.java
|
||||||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
|
--- a/src/main/java/org/bukkit/Bukkit.java
|
||||||
|
+++ b/src/main/java/org/bukkit/Bukkit.java
|
||||||
|
@@ -0,0 +0,0 @@ public final class Bukkit {
|
||||||
|
return server.createChunkData(world);
|
||||||
|
}
|
||||||
|
|
||||||
|
+ // Paper start
|
||||||
|
+ /**
|
||||||
|
+ * Create a ChunkData for use in a generator, that is populated by the vanilla generator for that world
|
||||||
|
+ *
|
||||||
|
+ * @param world the world to create the ChunkData for
|
||||||
|
+ * @param x the x coordinate of the chunk
|
||||||
|
+ * @param z the z coordinate of the chunk
|
||||||
|
+ * @return a new ChunkData for the world
|
||||||
|
+ *
|
||||||
|
+ */
|
||||||
|
+ @NotNull
|
||||||
|
+ public static ChunkGenerator.ChunkData createVanillaChunkData(@NotNull World world, int x, int z) {
|
||||||
|
+ return server.createVanillaChunkData(world, x, z);
|
||||||
|
+ }
|
||||||
|
+ // Paper stop
|
||||||
|
+
|
||||||
|
/**
|
||||||
|
* Creates a boss bar instance to display to players. The progress
|
||||||
|
* defaults to 1.0
|
||||||
|
diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java
|
||||||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
|
--- a/src/main/java/org/bukkit/Server.java
|
||||||
|
+++ b/src/main/java/org/bukkit/Server.java
|
||||||
|
@@ -0,0 +0,0 @@ public interface Server extends PluginMessageRecipient {
|
||||||
|
@NotNull
|
||||||
|
public ChunkGenerator.ChunkData createChunkData(@NotNull World world);
|
||||||
|
|
||||||
|
+ // Paper start
|
||||||
|
+ /**
|
||||||
|
+ * Create a ChunkData for use in a generator, that is populated by the vanilla generator for that world
|
||||||
|
+ *
|
||||||
|
+ * @param world the world to create the ChunkData for
|
||||||
|
+ * @param x the x coordinate of the chunk
|
||||||
|
+ * @param z the z coordinate of the chunk
|
||||||
|
+ * @return a new ChunkData for the world
|
||||||
|
+ *
|
||||||
|
+ */
|
||||||
|
+ @NotNull
|
||||||
|
+ ChunkGenerator.ChunkData createVanillaChunkData(@NotNull World world, int x, int z);
|
||||||
|
+ // Paper end
|
||||||
|
+
|
||||||
|
/**
|
||||||
|
* Creates a boss bar instance to display to players. The progress
|
||||||
|
* defaults to 1.0
|
||||||
|
diff --git a/src/main/java/org/bukkit/generator/ChunkGenerator.java b/src/main/java/org/bukkit/generator/ChunkGenerator.java
|
||||||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
|
--- a/src/main/java/org/bukkit/generator/ChunkGenerator.java
|
||||||
|
+++ b/src/main/java/org/bukkit/generator/ChunkGenerator.java
|
||||||
|
@@ -0,0 +0,0 @@ public abstract class ChunkGenerator {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
+ // Paper start
|
||||||
|
+ /**
|
||||||
|
+ * Create a ChunkData for use in a generator, that is populated by the vanilla generator for that world
|
||||||
|
+ *
|
||||||
|
+ * @param world the world to create the ChunkData for
|
||||||
|
+ * @param x the x coordinate of the chunk
|
||||||
|
+ * @param z the z coordinate of the chunk
|
||||||
|
+ * @return a new ChunkData for the world
|
||||||
|
+ *
|
||||||
|
+ */
|
||||||
|
+ @NotNull
|
||||||
|
+ public ChunkData createVanillaChunkData(@NotNull World world, int x, int z) {
|
||||||
|
+ return Bukkit.getServer().createVanillaChunkData(world, x, z);
|
||||||
|
+ }
|
||||||
|
+ // Paper end
|
||||||
|
+
|
||||||
|
/**
|
||||||
|
* Data for a Chunk.
|
||||||
|
*/
|
88
Spigot-Server-Patches/Allow-delegation-to-vanilla-chunk-gen.patch
Normale Datei
88
Spigot-Server-Patches/Allow-delegation-to-vanilla-chunk-gen.patch
Normale Datei
@ -0,0 +1,88 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: MiniDigger | Martin <admin@minidigger.dev>
|
||||||
|
Date: Wed, 29 Apr 2020 02:10:32 +0200
|
||||||
|
Subject: [PATCH] Allow delegation to vanilla chunk gen
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/net/minecraft/server/ChunkConverter.java b/src/main/java/net/minecraft/server/ChunkConverter.java
|
||||||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
|
--- a/src/main/java/net/minecraft/server/ChunkConverter.java
|
||||||
|
+++ b/src/main/java/net/minecraft/server/ChunkConverter.java
|
||||||
|
@@ -0,0 +0,0 @@ import org.apache.logging.log4j.Logger;
|
||||||
|
public class ChunkConverter {
|
||||||
|
|
||||||
|
private static final Logger LOGGER = LogManager.getLogger();
|
||||||
|
- public static final ChunkConverter a = new ChunkConverter();
|
||||||
|
+ public static final ChunkConverter a = new ChunkConverter(); public static ChunkConverter getEmptyConverter() { return a; } // Paper - obfhelper
|
||||||
|
private static final EnumDirection8[] c = EnumDirection8.values();
|
||||||
|
private final EnumSet<EnumDirection8> d;
|
||||||
|
private final int[][] e;
|
||||||
|
@@ -0,0 +0,0 @@ public class ChunkConverter {
|
||||||
|
if ((Integer) iblockdata.get(BlockProperties.an) >= j) {
|
||||||
|
generatoraccess.setTypeAndData(blockposition, (IBlockData) iblockdata.set(BlockProperties.an, j), 18);
|
||||||
|
if (i != 7) {
|
||||||
|
- EnumDirection[] aenumdirection = null.f;
|
||||||
|
+ EnumDirection[] aenumdirection = f; // Paper - decomp fix
|
||||||
|
int k = aenumdirection.length;
|
||||||
|
|
||||||
|
for (int l = 0; l < k; ++l) {
|
||||||
|
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
||||||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
||||||
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
||||||
|
@@ -0,0 +0,0 @@ public final class CraftServer implements Server {
|
||||||
|
return new CraftChunkData(world);
|
||||||
|
}
|
||||||
|
|
||||||
|
+ // Paper start
|
||||||
|
+ @Override
|
||||||
|
+ public ChunkGenerator.ChunkData createVanillaChunkData(World world, int x, int z) {
|
||||||
|
+ // get empty object
|
||||||
|
+ CraftChunkData data = (CraftChunkData) createChunkData(world);
|
||||||
|
+ // do bunch of vanilla shit
|
||||||
|
+ net.minecraft.server.WorldServer nmsWorld = ((CraftWorld) world).getHandle();
|
||||||
|
+ net.minecraft.server.ProtoChunk protoChunk = new net.minecraft.server.ProtoChunk(new net.minecraft.server.ChunkCoordIntPair(x, z), net.minecraft.server.ChunkConverter.getEmptyConverter(), nmsWorld);
|
||||||
|
+ List<net.minecraft.server.IChunkAccess> list = new ArrayList<>();
|
||||||
|
+ list.add(protoChunk);
|
||||||
|
+ net.minecraft.server.RegionLimitedWorldAccess genRegion = new net.minecraft.server.RegionLimitedWorldAccess(nmsWorld, list);
|
||||||
|
+ // call vanilla generator, one feature after another. Order here is important!
|
||||||
|
+ net.minecraft.server.ChunkGenerator<?> chunkGenerator = ((CraftWorld) world).getHandle().worldProvider.getChunkGenerator();
|
||||||
|
+ chunkGenerator.createBiomes(protoChunk);
|
||||||
|
+ chunkGenerator.buildNoise(genRegion, protoChunk);
|
||||||
|
+ chunkGenerator.buildBase(genRegion, protoChunk);
|
||||||
|
+ // copy over generated sections
|
||||||
|
+ data.setRawChunkData(protoChunk.getSections());
|
||||||
|
+ // hooray!
|
||||||
|
+ return data;
|
||||||
|
+ }
|
||||||
|
+ // Paper end
|
||||||
|
+
|
||||||
|
@Override
|
||||||
|
public BossBar createBossBar(String title, BarColor color, BarStyle style, BarFlag... flags) {
|
||||||
|
return new CraftBossBar(title, color, style, flags);
|
||||||
|
diff --git a/src/main/java/org/bukkit/craftbukkit/generator/CraftChunkData.java b/src/main/java/org/bukkit/craftbukkit/generator/CraftChunkData.java
|
||||||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
|
--- a/src/main/java/org/bukkit/craftbukkit/generator/CraftChunkData.java
|
||||||
|
+++ b/src/main/java/org/bukkit/craftbukkit/generator/CraftChunkData.java
|
||||||
|
@@ -0,0 +0,0 @@ import org.bukkit.material.MaterialData;
|
||||||
|
*/
|
||||||
|
public final class CraftChunkData implements ChunkGenerator.ChunkData {
|
||||||
|
private final int maxHeight;
|
||||||
|
- private final ChunkSection[] sections;
|
||||||
|
+ private ChunkSection[] sections; // Paper - remove final
|
||||||
|
private Set<BlockPosition> tiles;
|
||||||
|
private World world; // Paper - Anti-Xray - Add world
|
||||||
|
|
||||||
|
@@ -0,0 +0,0 @@ public final class CraftChunkData implements ChunkGenerator.ChunkData {
|
||||||
|
return sections;
|
||||||
|
}
|
||||||
|
|
||||||
|
+ // Paper start
|
||||||
|
+ public void setRawChunkData(ChunkSection[] sections) {
|
||||||
|
+ this.sections = sections;
|
||||||
|
+ }
|
||||||
|
+ // Paper end
|
||||||
|
+
|
||||||
|
Set<BlockPosition> getTiles() {
|
||||||
|
return tiles;
|
||||||
|
}
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren