2016-06-09 05:57:14 +02:00
|
|
|
From 9ce6203dee54a1bdca4a16b5bf8feb683d917fce Mon Sep 17 00:00:00 2001
|
2016-03-01 00:09:49 +01:00
|
|
|
From: Byteflux <byte@byteflux.net>
|
|
|
|
Date: Wed, 2 Mar 2016 02:17:54 -0600
|
|
|
|
Subject: [PATCH] Generator Settings
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2016-05-17 04:07:12 +02:00
|
|
|
index e4e5487..7525bcb 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2016-05-17 04:07:12 +02:00
|
|
|
@@ -170,4 +170,28 @@ public class PaperWorldConfig {
|
2016-03-01 00:09:49 +01:00
|
|
|
disableEndCredits = getBoolean("game-mechanics.disable-end-credits", false);
|
|
|
|
log("End credits disabled: " + disableEndCredits);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean generateCanyon;
|
|
|
|
+ public boolean generateCaves;
|
|
|
|
+ public boolean generateDungeon;
|
|
|
|
+ public boolean generateFortress;
|
|
|
|
+ public boolean generateMineshaft;
|
|
|
|
+ public boolean generateMonument;
|
|
|
|
+ public boolean generateStronghold;
|
|
|
|
+ public boolean generateTemple;
|
|
|
|
+ public boolean generateVillage;
|
|
|
|
+ public boolean generateFlatBedrock;
|
|
|
|
+
|
|
|
|
+ private void generatorSettings() {
|
|
|
|
+ generateCanyon = getBoolean("generator-settings.canyon", true);
|
|
|
|
+ generateCaves = getBoolean("generator-settings.caves", true);
|
|
|
|
+ generateDungeon = getBoolean("generator-settings.dungeon", true);
|
|
|
|
+ generateFortress = getBoolean("generator-settings.fortress", true);
|
|
|
|
+ generateMineshaft = getBoolean("generator-settings.mineshaft", true);
|
|
|
|
+ generateMonument = getBoolean("generator-settings.monument", true);
|
|
|
|
+ generateStronghold = getBoolean("generator-settings.stronghold", true);
|
|
|
|
+ generateTemple = getBoolean("generator-settings.temple", true);
|
|
|
|
+ generateVillage = getBoolean("generator-settings.village", true);
|
|
|
|
+ generateFlatBedrock = getBoolean("generator-settings.flat-bedrock", false);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/BiomeBase.java b/src/main/java/net/minecraft/server/BiomeBase.java
|
2016-06-09 05:57:14 +02:00
|
|
|
index ab04f9c..bf4f06c 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/BiomeBase.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/BiomeBase.java
|
2016-05-12 04:07:46 +02:00
|
|
|
@@ -178,7 +178,7 @@ public abstract class BiomeBase {
|
2016-03-01 00:09:49 +01:00
|
|
|
BlockPosition.MutableBlockPosition blockposition_mutableblockposition = new BlockPosition.MutableBlockPosition();
|
|
|
|
|
|
|
|
for (int l1 = 255; l1 >= 0; --l1) {
|
|
|
|
- if (l1 <= random.nextInt(5)) {
|
|
|
|
+ if (l1 <= (world.paperConfig.generateFlatBedrock ? 0 : random.nextInt(5))) { // Paper - Configurable flat bedrock
|
|
|
|
chunksnapshot.a(k1, l1, j1, BiomeBase.c);
|
|
|
|
} else {
|
|
|
|
IBlockData iblockdata2 = chunksnapshot.a(k1, l1, j1);
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/BiomeMesa.java b/src/main/java/net/minecraft/server/BiomeMesa.java
|
2016-06-09 05:57:14 +02:00
|
|
|
index 8bcc0f3..62abbbd 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/BiomeMesa.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/BiomeMesa.java
|
2016-06-09 05:57:14 +02:00
|
|
|
@@ -103,7 +103,7 @@ public class BiomeMesa extends BiomeBase {
|
|
|
|
chunksnapshot.a(l, i2, k, BiomeMesa.a);
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
|
2016-06-09 05:57:14 +02:00
|
|
|
- if (i2 <= random.nextInt(5)) {
|
|
|
|
+ if (i2 <= (world.paperConfig.generateFlatBedrock ? 0 : random.nextInt(5))) { // Paper - Configurable flat bedrock
|
|
|
|
chunksnapshot.a(l, i2, k, BiomeMesa.c);
|
|
|
|
} else if (l1 < 15) {
|
|
|
|
IBlockData iblockdata2 = chunksnapshot.a(l, i2, k);
|
2016-03-01 00:09:49 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/ChunkProviderFlat.java b/src/main/java/net/minecraft/server/ChunkProviderFlat.java
|
2016-05-12 04:07:46 +02:00
|
|
|
index aa35a24..ea6a00e 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/ChunkProviderFlat.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/ChunkProviderFlat.java
|
2016-05-12 04:07:46 +02:00
|
|
|
@@ -26,7 +26,7 @@ public class ChunkProviderFlat implements ChunkGenerator {
|
2016-03-01 00:09:49 +01:00
|
|
|
if (flag) {
|
|
|
|
Map map = this.d.b();
|
|
|
|
|
|
|
|
- if (map.containsKey("village")) {
|
|
|
|
+ if (map.containsKey("village") && world.paperConfig.generateVillage) { // Paper
|
|
|
|
Map map1 = (Map) map.get("village");
|
|
|
|
|
|
|
|
if (!map1.containsKey("size")) {
|
2016-05-12 04:07:46 +02:00
|
|
|
@@ -36,19 +36,19 @@ public class ChunkProviderFlat implements ChunkGenerator {
|
2016-03-01 00:09:49 +01:00
|
|
|
this.e.add(new WorldGenVillage(map1));
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (map.containsKey("biome_1")) {
|
|
|
|
+ if (map.containsKey("biome_1") && world.paperConfig.generateTemple) { // Paper
|
|
|
|
this.e.add(new WorldGenLargeFeature((Map) map.get("biome_1")));
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (map.containsKey("mineshaft")) {
|
|
|
|
+ if (map.containsKey("mineshaft") && world.paperConfig.generateMineshaft) { // Paper
|
|
|
|
this.e.add(new WorldGenMineshaft((Map) map.get("mineshaft")));
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (map.containsKey("stronghold")) {
|
|
|
|
+ if (map.containsKey("stronghold") && world.paperConfig.generateStronghold) { // Paper
|
|
|
|
this.e.add(new WorldGenStronghold((Map) map.get("stronghold")));
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (map.containsKey("oceanmonument")) {
|
|
|
|
+ if (map.containsKey("oceanmonument") && world.paperConfig.generateMonument) { // Paper
|
|
|
|
this.e.add(new WorldGenMonument((Map) map.get("oceanmonument")));
|
|
|
|
}
|
|
|
|
}
|
2016-05-12 04:07:46 +02:00
|
|
|
@@ -61,7 +61,7 @@ public class ChunkProviderFlat implements ChunkGenerator {
|
2016-03-01 00:09:49 +01:00
|
|
|
this.i = new WorldGenLakes(Blocks.LAVA);
|
|
|
|
}
|
|
|
|
|
|
|
|
- this.g = this.d.b().containsKey("dungeon");
|
|
|
|
+ this.g = world.paperConfig.generateDungeon && this.d.b().containsKey("dungeon"); // Paper
|
|
|
|
int j = 0;
|
|
|
|
int k = 0;
|
|
|
|
boolean flag1 = true;
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/ChunkProviderGenerate.java b/src/main/java/net/minecraft/server/ChunkProviderGenerate.java
|
2016-06-09 05:57:14 +02:00
|
|
|
index db49131..534fd9f 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/ChunkProviderGenerate.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/ChunkProviderGenerate.java
|
2016-05-12 04:07:46 +02:00
|
|
|
@@ -158,32 +158,32 @@ public class ChunkProviderGenerate implements ChunkGenerator {
|
2016-03-01 00:09:49 +01:00
|
|
|
this.a(i, j, chunksnapshot);
|
|
|
|
this.C = this.n.getWorldChunkManager().getBiomeBlock(this.C, i * 16, j * 16, 16, 16);
|
|
|
|
this.a(i, j, chunksnapshot, this.C);
|
|
|
|
- if (this.s.r) {
|
|
|
|
+ if (this.s.r && this.n.paperConfig.generateCaves) { // Paper
|
|
|
|
this.v.a(this.n, i, j, chunksnapshot);
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (this.s.z) {
|
|
|
|
+ if (this.s.z && this.n.paperConfig.generateCanyon) { // Paper
|
|
|
|
this.A.a(this.n, i, j, chunksnapshot);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.o) {
|
|
|
|
- if (this.s.w) {
|
|
|
|
+ if (this.s.w && this.n.paperConfig.generateMineshaft) { // Paper
|
|
|
|
this.y.a(this.n, i, j, chunksnapshot);
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (this.s.v) {
|
|
|
|
+ if (this.s.v&& this.n.paperConfig.generateVillage) { // Paper
|
|
|
|
this.x.a(this.n, i, j, chunksnapshot);
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (this.s.u) {
|
|
|
|
+ if (this.s.u && this.n.paperConfig.generateStronghold) { // Paper
|
|
|
|
this.w.a(this.n, i, j, chunksnapshot);
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (this.s.x) {
|
|
|
|
+ if (this.s.x && this.n.paperConfig.generateTemple) { // Paper
|
|
|
|
this.z.a(this.n, i, j, chunksnapshot);
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (this.s.y) {
|
|
|
|
+ if (this.s.y && this.n.paperConfig.generateMonument) { // Paper
|
|
|
|
this.B.a(this.n, i, j, chunksnapshot);
|
|
|
|
}
|
|
|
|
}
|
2016-06-09 05:57:14 +02:00
|
|
|
@@ -318,23 +318,23 @@ public class ChunkProviderGenerate implements ChunkGenerator {
|
2016-03-01 00:09:49 +01:00
|
|
|
ChunkCoordIntPair chunkcoordintpair = new ChunkCoordIntPair(i, j);
|
|
|
|
|
|
|
|
if (this.o) {
|
|
|
|
- if (this.s.w) {
|
|
|
|
+ if (this.s.w && this.n.paperConfig.generateMineshaft) { // Paper
|
|
|
|
this.y.a(this.n, this.i, chunkcoordintpair);
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (this.s.v) {
|
|
|
|
+ if (this.s.v && this.n.paperConfig.generateVillage) { // Paper
|
|
|
|
flag = this.x.a(this.n, this.i, chunkcoordintpair);
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (this.s.u) {
|
|
|
|
+ if (this.s.u && this.n.paperConfig.generateStronghold) { // Paper
|
|
|
|
this.w.a(this.n, this.i, chunkcoordintpair);
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (this.s.x) {
|
|
|
|
+ if (this.s.x && this.n.paperConfig.generateTemple) { // Paper
|
|
|
|
this.z.a(this.n, this.i, chunkcoordintpair);
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (this.s.y) {
|
|
|
|
+ if (this.s.y && this.n.paperConfig.generateMonument) { // Paper
|
|
|
|
this.B.a(this.n, this.i, chunkcoordintpair);
|
|
|
|
}
|
|
|
|
}
|
2016-06-09 05:57:14 +02:00
|
|
|
@@ -359,7 +359,7 @@ public class ChunkProviderGenerate implements ChunkGenerator {
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (this.s.s) {
|
|
|
|
+ if (this.s.s && this.n.paperConfig.generateDungeon) { // Paper
|
|
|
|
for (k1 = 0; k1 < this.s.t; ++k1) {
|
|
|
|
l1 = this.i.nextInt(16) + 8;
|
|
|
|
i2 = this.i.nextInt(256);
|
2016-06-09 05:57:14 +02:00
|
|
|
@@ -424,23 +424,23 @@ public class ChunkProviderGenerate implements ChunkGenerator {
|
2016-03-01 00:09:49 +01:00
|
|
|
|
|
|
|
public void recreateStructures(Chunk chunk, int i, int j) {
|
|
|
|
if (this.o) {
|
|
|
|
- if (this.s.w) {
|
|
|
|
+ if (this.s.w && this.n.paperConfig.generateMineshaft) { // Paper
|
|
|
|
this.y.a(this.n, i, j, (ChunkSnapshot) null);
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (this.s.v) {
|
|
|
|
+ if (this.s.v && this.n.paperConfig.generateVillage) { // Paper
|
|
|
|
this.x.a(this.n, i, j, (ChunkSnapshot) null);
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (this.s.u) {
|
|
|
|
+ if (this.s.u && this.n.paperConfig.generateStronghold) { // Paper
|
|
|
|
this.w.a(this.n, i, j, (ChunkSnapshot) null);
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (this.s.x) {
|
|
|
|
+ if (this.s.x && this.n.paperConfig.generateTemple) { // Paper
|
|
|
|
this.z.a(this.n, i, j, (ChunkSnapshot) null);
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (this.s.y) {
|
|
|
|
+ if (this.s.y && this.n.paperConfig.generateMonument) { // Paper
|
|
|
|
this.B.a(this.n, i, j, (ChunkSnapshot) null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/ChunkProviderHell.java b/src/main/java/net/minecraft/server/ChunkProviderHell.java
|
2016-06-09 05:57:14 +02:00
|
|
|
index 6e6ecd8..e95175e 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/ChunkProviderHell.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/ChunkProviderHell.java
|
2016-06-09 05:57:14 +02:00
|
|
|
@@ -151,7 +151,10 @@ public class ChunkProviderHell implements ChunkGenerator {
|
2016-03-01 00:09:49 +01:00
|
|
|
IBlockData iblockdata1 = ChunkProviderHell.b;
|
|
|
|
|
|
|
|
for (int l1 = 127; l1 >= 0; --l1) {
|
|
|
|
- if (l1 < 127 - this.p.nextInt(5) && l1 > this.p.nextInt(5)) {
|
|
|
|
+ // Paper start - Configurable flat bedrock worldgen
|
|
|
|
+ if (l1 < 127 - (n.paperConfig.generateFlatBedrock ? 0 : this.p.nextInt(5)) &&
|
|
|
|
+ l1 > (n.paperConfig.generateFlatBedrock ? 0 : this.p.nextInt(5))) {
|
|
|
|
+ // Paper end
|
|
|
|
IBlockData iblockdata2 = chunksnapshot.a(i1, l1, l);
|
|
|
|
|
|
|
|
if (iblockdata2.getBlock() != null && iblockdata2.getMaterial() != Material.AIR) {
|
2016-06-09 05:57:14 +02:00
|
|
|
@@ -380,6 +383,6 @@ public class ChunkProviderHell implements ChunkGenerator {
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void recreateStructures(Chunk chunk, int i, int j) {
|
2016-06-09 05:57:14 +02:00
|
|
|
- this.I.a(this.n, i, j, (ChunkSnapshot) null);
|
|
|
|
+ if (this.n.paperConfig.generateFortress) this.I.a(this.n, i, j, (ChunkSnapshot) null);
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/StructureGenerator.java b/src/main/java/net/minecraft/server/StructureGenerator.java
|
2016-06-09 05:57:14 +02:00
|
|
|
index 8dd434c..4248a36 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/StructureGenerator.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/StructureGenerator.java
|
2016-05-12 04:07:46 +02:00
|
|
|
@@ -89,6 +89,7 @@ public abstract class StructureGenerator extends WorldGenBase {
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean b(BlockPosition blockposition) {
|
|
|
|
+ if (this.g == null) return false; // Paper
|
|
|
|
this.a(this.g);
|
|
|
|
return this.c(blockposition) != null;
|
|
|
|
}
|
2016-05-12 04:07:46 +02:00
|
|
|
@@ -116,6 +117,7 @@ public abstract class StructureGenerator extends WorldGenBase {
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
|
2016-05-12 04:07:46 +02:00
|
|
|
public synchronized boolean b(World world, BlockPosition blockposition) { // CraftBukkit - synchronized
|
2016-03-01 00:09:49 +01:00
|
|
|
+ if (this.g == null) return false; // Paper
|
|
|
|
this.a(world);
|
|
|
|
Iterator iterator = this.c.values().iterator();
|
|
|
|
|
|
|
|
--
|
2016-06-09 05:57:14 +02:00
|
|
|
2.8.3
|
2016-03-01 00:09:49 +01:00
|
|
|
|