mirror of
https://github.com/BX-Team/DivineMC.git
synced 2025-12-29 11:49:19 +00:00
431 lines
28 KiB
Diff
431 lines
28 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: NONPLAYT <76615486+NONPLAYT@users.noreply.github.com>
|
|
Date: Tue, 28 Jan 2025 00:54:57 +0300
|
|
Subject: [PATCH] Implement Secure Seed
|
|
|
|
Original license: GPLv3
|
|
Original project: https://github.com/plasmoapp/matter
|
|
|
|
diff --git a/net/minecraft/server/commands/SeedCommand.java b/net/minecraft/server/commands/SeedCommand.java
|
|
index 68a27436bae245a31470483f92a116fa029f3d4e..e182b58486bdf19c72974a19766112c56b2aeeae 100644
|
|
--- a/net/minecraft/server/commands/SeedCommand.java
|
|
+++ b/net/minecraft/server/commands/SeedCommand.java
|
|
@@ -15,6 +15,17 @@ public class SeedCommand {
|
|
long seed = commandContext.getSource().getLevel().getSeed();
|
|
Component component = ComponentUtils.copyOnClickText(String.valueOf(seed));
|
|
commandContext.getSource().sendSuccess(() -> Component.translatable("commands.seed.success", component), false);
|
|
+
|
|
+ // DivineMC start - Implement Secure Seed
|
|
+ if (org.bxteam.divinemc.config.DivineConfig.MiscCategory.enableSecureSeed) {
|
|
+ su.plo.matter.Globals.setupGlobals(commandContext.getSource().getLevel());
|
|
+ String seedStr = su.plo.matter.Globals.seedToString(su.plo.matter.Globals.worldSeed);
|
|
+ Component featureSeedComponent = ComponentUtils.copyOnClickText(seedStr);
|
|
+
|
|
+ commandContext.getSource().sendSuccess(() -> Component.translatable(("Feature seed: %s"), featureSeedComponent), false);
|
|
+ }
|
|
+ // DivineMC end - Implement Secure Seed
|
|
+
|
|
return (int)seed;
|
|
})
|
|
);
|
|
diff --git a/net/minecraft/server/dedicated/DedicatedServerProperties.java b/net/minecraft/server/dedicated/DedicatedServerProperties.java
|
|
index 2a3b10c5e031ef44a2b53bc4fdc6e86c917f75d4..e9fbc5b6116b4cd680a1589d5d56168167a9525b 100644
|
|
--- a/net/minecraft/server/dedicated/DedicatedServerProperties.java
|
|
+++ b/net/minecraft/server/dedicated/DedicatedServerProperties.java
|
|
@@ -138,7 +138,17 @@ public class DedicatedServerProperties extends Settings<DedicatedServerPropertie
|
|
String string = this.get("level-seed", "");
|
|
boolean flag = this.get("generate-structures", true);
|
|
long l = WorldOptions.parseSeed(string).orElse(WorldOptions.randomSeed());
|
|
- this.worldOptions = new WorldOptions(l, flag, false);
|
|
+ // DivineMC start - Implement Secure Seed
|
|
+ if (org.bxteam.divinemc.config.DivineConfig.MiscCategory.enableSecureSeed) {
|
|
+ String featureSeedStr = this.get("feature-level-seed", "");
|
|
+ long[] featureSeed = su.plo.matter.Globals.parseSeed(featureSeedStr)
|
|
+ .orElse(su.plo.matter.Globals.createRandomWorldSeed());
|
|
+
|
|
+ this.worldOptions = new WorldOptions(l, featureSeed, flag, false);
|
|
+ } else {
|
|
+ this.worldOptions = new WorldOptions(l, flag, false);
|
|
+ }
|
|
+ // DivineMC end - Implement Secure Seed
|
|
this.worldDimensionData = new DedicatedServerProperties.WorldDimensionData(
|
|
this.get("generator-settings", property -> GsonHelper.parse(!property.isEmpty() ? property : "{}"), new JsonObject()),
|
|
this.get("level-type", property -> property.toLowerCase(Locale.ROOT), WorldPresets.NORMAL.identifier().toString())
|
|
diff --git a/net/minecraft/server/level/ServerChunkCache.java b/net/minecraft/server/level/ServerChunkCache.java
|
|
index d58f05a6ffd7d445cdeae35bbe81fed9d52ee9f5..dca4059bfc46fddf6de537f71c6abd699b618e1b 100644
|
|
--- a/net/minecraft/server/level/ServerChunkCache.java
|
|
+++ b/net/minecraft/server/level/ServerChunkCache.java
|
|
@@ -610,6 +610,7 @@ public class ServerChunkCache extends ChunkSource implements ca.spottedleaf.moon
|
|
}
|
|
|
|
public ChunkGenerator getGenerator() {
|
|
+ su.plo.matter.Globals.setupGlobals(level); // DivineMC - Implement Secure Seed
|
|
return this.chunkMap.generator();
|
|
}
|
|
|
|
diff --git a/net/minecraft/server/level/ServerLevel.java b/net/minecraft/server/level/ServerLevel.java
|
|
index 45d33ea79d9464a821f1770771d31e53e80bdea7..421ec3dd350ad49b2249779c61aca0f99b96b897 100644
|
|
--- a/net/minecraft/server/level/ServerLevel.java
|
|
+++ b/net/minecraft/server/level/ServerLevel.java
|
|
@@ -661,6 +661,7 @@ public class ServerLevel extends Level implements ServerEntityGetter, WorldGenLe
|
|
chunkGenerator = new org.bukkit.craftbukkit.generator.CustomChunkGenerator(this, chunkGenerator, gen);
|
|
}
|
|
// CraftBukkit end
|
|
+ su.plo.matter.Globals.setupGlobals(this); // DivineMC - Implement Secure Seed
|
|
boolean flag = server.forceSynchronousWrites();
|
|
DataFixer fixerUpper = server.getFixerUpper();
|
|
// Paper - rewrite chunk system
|
|
diff --git a/net/minecraft/world/entity/monster/Slime.java b/net/minecraft/world/entity/monster/Slime.java
|
|
index 29d6d0c9687b835d24fe51c3824deeb67af1ba4f..491cf4cceb272ce023346b2f44146a98fc2457e3 100644
|
|
--- a/net/minecraft/world/entity/monster/Slime.java
|
|
+++ b/net/minecraft/world/entity/monster/Slime.java
|
|
@@ -412,7 +412,11 @@ public class Slime extends Mob implements Enemy {
|
|
}
|
|
|
|
ChunkPos chunkPos = new ChunkPos(pos);
|
|
- boolean flag = level.getMinecraftWorld().paperConfig().entities.spawning.allChunksAreSlimeChunks || WorldgenRandom.seedSlimeChunk(chunkPos.x, chunkPos.z, ((WorldGenLevel) level).getSeed(), level.getMinecraftWorld().spigotConfig.slimeSeed).nextInt(10) == 0; // Paper
|
|
+ // DivineMC start - Implement Secure Seed
|
|
+ boolean flag = level.getMinecraftWorld().paperConfig().entities.spawning.allChunksAreSlimeChunks || org.bxteam.divinemc.config.DivineConfig.MiscCategory.enableSecureSeed
|
|
+ ? level.getChunk(chunkPos.x, chunkPos.z).isSlimeChunk()
|
|
+ : WorldgenRandom.seedSlimeChunk(chunkPos.x, chunkPos.z, ((WorldGenLevel) level).getSeed(), level.getMinecraftWorld().spigotConfig.slimeSeed).nextInt(10) == 0; // Paper
|
|
+ // DivineMC end - Implement Secure Seed
|
|
// Paper start - Replace rules for Height in Slime Chunks
|
|
final double maxHeightSlimeChunk = level.getMinecraftWorld().paperConfig().entities.spawning.slimeSpawnHeight.slimeChunk.maximum;
|
|
if (random.nextInt(10) == 0 && flag && pos.getY() < maxHeightSlimeChunk) {
|
|
diff --git a/net/minecraft/world/level/chunk/ChunkAccess.java b/net/minecraft/world/level/chunk/ChunkAccess.java
|
|
index f2111830b112870c07bf20a0dd52427309d25332..1dfad162acf6ed53f3f12760cd3a707a4e91e810 100644
|
|
--- a/net/minecraft/world/level/chunk/ChunkAccess.java
|
|
+++ b/net/minecraft/world/level/chunk/ChunkAccess.java
|
|
@@ -79,6 +79,10 @@ public abstract class ChunkAccess implements BiomeManager.NoiseBiomeSource, Ligh
|
|
public final Map<BlockPos, BlockEntity> blockEntities = new Object2ObjectOpenHashMap<>();
|
|
protected final LevelHeightAccessor levelHeightAccessor;
|
|
protected final LevelChunkSection[] sections;
|
|
+ // DivineMC start - Implement Secure Seed
|
|
+ private boolean slimeChunk;
|
|
+ private boolean hasComputedSlimeChunk;
|
|
+ // DivineMC end - Implement Secure Seed
|
|
// CraftBukkit start - SPIGOT-6814: move to IChunkAccess to account for 1.17 to 1.18 chunk upgrading.
|
|
private static final org.bukkit.craftbukkit.persistence.CraftPersistentDataTypeRegistry DATA_TYPE_REGISTRY = new org.bukkit.craftbukkit.persistence.CraftPersistentDataTypeRegistry();
|
|
public org.bukkit.craftbukkit.persistence.DirtyCraftPersistentDataContainer persistentDataContainer = new org.bukkit.craftbukkit.persistence.DirtyCraftPersistentDataContainer(ChunkAccess.DATA_TYPE_REGISTRY);
|
|
@@ -187,6 +191,17 @@ public abstract class ChunkAccess implements BiomeManager.NoiseBiomeSource, Ligh
|
|
return GameEventListenerRegistry.NOOP;
|
|
}
|
|
|
|
+ // DivineMC start - Implement Secure Seed
|
|
+ public boolean isSlimeChunk() {
|
|
+ if (!hasComputedSlimeChunk) {
|
|
+ hasComputedSlimeChunk = true;
|
|
+ slimeChunk = su.plo.matter.WorldgenCryptoRandom.seedSlimeChunk(chunkPos.x, chunkPos.z).nextInt(10) == 0;
|
|
+ }
|
|
+
|
|
+ return slimeChunk;
|
|
+ }
|
|
+ // DivineMC end - Implement Secure Seed
|
|
+
|
|
public abstract BlockState getBlockState(final int x, final int y, final int z); // Paper
|
|
|
|
public @Nullable BlockState setBlockState(BlockPos pos, BlockState state) {
|
|
diff --git a/net/minecraft/world/level/chunk/ChunkGenerator.java b/net/minecraft/world/level/chunk/ChunkGenerator.java
|
|
index 78600f4c583056403c93e72ec0996b00ec6d1284..15b9298ca0ea151608f88517fb16e18fe6601275 100644
|
|
--- a/net/minecraft/world/level/chunk/ChunkGenerator.java
|
|
+++ b/net/minecraft/world/level/chunk/ChunkGenerator.java
|
|
@@ -342,7 +342,11 @@ public abstract class ChunkGenerator {
|
|
Registry<Structure> registry = level.registryAccess().lookupOrThrow(Registries.STRUCTURE);
|
|
Map<Integer, List<Structure>> map = registry.stream().collect(Collectors.groupingBy(structure1 -> structure1.step().ordinal()));
|
|
List<FeatureSorter.StepFeatureData> list = this.featuresPerStep.get();
|
|
- WorldgenRandom worldgenRandom = new WorldgenRandom(new XoroshiroRandomSource(RandomSupport.generateUniqueSeed()));
|
|
+ // DivineMC start - Implement Secure Seed
|
|
+ WorldgenRandom worldgenRandom = org.bxteam.divinemc.config.DivineConfig.MiscCategory.enableSecureSeed
|
|
+ ? new su.plo.matter.WorldgenCryptoRandom(blockPos.getX(), blockPos.getZ(), su.plo.matter.Globals.Salt.UNDEFINED, 0)
|
|
+ : new WorldgenRandom(new XoroshiroRandomSource(RandomSupport.generateUniqueSeed()));
|
|
+ // DivineMC end - Implement Secure Seed
|
|
long l = worldgenRandom.setDecorationSeed(level.getSeed(), blockPos.getX(), blockPos.getZ());
|
|
Set<Holder<Biome>> set = new ObjectArraySet<>();
|
|
ChunkPos.rangeClosed(sectionPos.chunk(), 1).forEach(chunkPos -> {
|
|
@@ -557,8 +561,18 @@ public abstract class ChunkGenerator {
|
|
} else {
|
|
ArrayList<StructureSet.StructureSelectionEntry> list1 = new ArrayList<>(list.size());
|
|
list1.addAll(list);
|
|
- WorldgenRandom worldgenRandom = new WorldgenRandom(new LegacyRandomSource(0L));
|
|
- worldgenRandom.setLargeFeatureSeed(structureState.getLevelSeed(), pos.x, pos.z);
|
|
+ // DivineMC start - Implement Secure Seed
|
|
+ WorldgenRandom worldgenRandom;
|
|
+ if (org.bxteam.divinemc.config.DivineConfig.MiscCategory.enableSecureSeed) {
|
|
+ worldgenRandom = new su.plo.matter.WorldgenCryptoRandom(
|
|
+ pos.x, pos.z, su.plo.matter.Globals.Salt.GENERATE_FEATURE, 0
|
|
+ );
|
|
+ } else {
|
|
+ worldgenRandom = new WorldgenRandom(new LegacyRandomSource(0L));
|
|
+
|
|
+ worldgenRandom.setLargeFeatureSeed(structureState.getLevelSeed(), pos.x, pos.z);
|
|
+ }
|
|
+ // DivineMC end - Implement Secure Seed
|
|
int i = 0;
|
|
|
|
for (StructureSet.StructureSelectionEntry structureSelectionEntry1 : list1) {
|
|
diff --git a/net/minecraft/world/level/chunk/ChunkGeneratorStructureState.java b/net/minecraft/world/level/chunk/ChunkGeneratorStructureState.java
|
|
index 784d9de7abecd0816b2a5a6b256ad4e275791fff..cca612027efc11e3b5cb874a6dba4e432c0f76c0 100644
|
|
--- a/net/minecraft/world/level/chunk/ChunkGeneratorStructureState.java
|
|
+++ b/net/minecraft/world/level/chunk/ChunkGeneratorStructureState.java
|
|
@@ -205,14 +205,21 @@ public class ChunkGeneratorStructureState {
|
|
List<CompletableFuture<ChunkPos>> list = new ArrayList<>(count);
|
|
int spread = placement.spread();
|
|
HolderSet<Biome> holderSet = placement.preferredBiomes();
|
|
- RandomSource randomSource = RandomSource.create();
|
|
- // Paper start - Add missing structure set seed configs
|
|
- if (this.conf.strongholdSeed != null && structureSet.is(net.minecraft.world.level.levelgen.structure.BuiltinStructureSets.STRONGHOLDS)) {
|
|
- randomSource.setSeed(this.conf.strongholdSeed);
|
|
- } else {
|
|
- // Paper end - Add missing structure set seed configs
|
|
- randomSource.setSeed(this.concentricRingsSeed);
|
|
- } // Paper - Add missing structure set seed configs
|
|
+ // DivineMC start - Implement Secure Seed
|
|
+ RandomSource randomSource = org.bxteam.divinemc.config.DivineConfig.MiscCategory.enableSecureSeed
|
|
+ ? new su.plo.matter.WorldgenCryptoRandom(0, 0, su.plo.matter.Globals.Salt.STRONGHOLDS, 0)
|
|
+ : RandomSource.create();
|
|
+
|
|
+ if (!org.bxteam.divinemc.config.DivineConfig.MiscCategory.enableSecureSeed) {
|
|
+ // Paper start - Add missing structure set seed configs
|
|
+ if (this.conf.strongholdSeed != null && structureSet.is(net.minecraft.world.level.levelgen.structure.BuiltinStructureSets.STRONGHOLDS)) {
|
|
+ randomSource.setSeed(this.conf.strongholdSeed);
|
|
+ } else {
|
|
+ // Paper end - Add missing structure set seed configs
|
|
+ randomSource.setSeed(this.concentricRingsSeed);
|
|
+ } // Paper - Add missing structure set seed configs
|
|
+ }
|
|
+ // DivineMC end - Implement Secure Seed
|
|
double d = randomSource.nextDouble() * Math.PI * 2.0;
|
|
int i = 0;
|
|
int i1 = 0;
|
|
diff --git a/net/minecraft/world/level/chunk/status/ChunkStep.java b/net/minecraft/world/level/chunk/status/ChunkStep.java
|
|
index aa8c40d49756611537e2698b7f2a861c303ef842..28d70c310e3350804058c12942f11bc2cc867d8c 100644
|
|
--- a/net/minecraft/world/level/chunk/status/ChunkStep.java
|
|
+++ b/net/minecraft/world/level/chunk/status/ChunkStep.java
|
|
@@ -60,6 +60,7 @@ public final class ChunkStep implements ca.spottedleaf.moonrise.patches.chunk_sy
|
|
}
|
|
|
|
public CompletableFuture<ChunkAccess> apply(WorldGenContext worldGenContext, StaticCache2D<GenerationChunkHolder> cache, ChunkAccess chunk) {
|
|
+ su.plo.matter.Globals.setupGlobals(worldGenContext.level()); // DivineMC - Implement Secure Seed
|
|
if (chunk.getPersistedStatus().isBefore(this.targetStatus)) {
|
|
ProfiledDuration profiledDuration = JvmProfiler.INSTANCE
|
|
.onChunkGenerate(chunk.getPos(), worldGenContext.level().dimension(), this.targetStatus.getName());
|
|
diff --git a/net/minecraft/world/level/levelgen/WorldOptions.java b/net/minecraft/world/level/levelgen/WorldOptions.java
|
|
index c92508741439a8d0d833ea02d0104416adb83c92..c4afe1cc270e6d7b4ffeada75da8265b46afd694 100644
|
|
--- a/net/minecraft/world/level/levelgen/WorldOptions.java
|
|
+++ b/net/minecraft/world/level/levelgen/WorldOptions.java
|
|
@@ -9,17 +9,28 @@ import net.minecraft.util.RandomSource;
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
public class WorldOptions {
|
|
+ // DivineMC start - Implement Secure Seed
|
|
+ private static final boolean isSecureSeedEnabled = org.bxteam.divinemc.config.DivineConfig.MiscCategory.enableSecureSeed;
|
|
public static final MapCodec<WorldOptions> CODEC = RecordCodecBuilder.mapCodec(
|
|
- instance -> instance.group(
|
|
+ instance -> isSecureSeedEnabled
|
|
+ ? instance.group(
|
|
Codec.LONG.fieldOf("seed").stable().forGetter(WorldOptions::seed),
|
|
+ Codec.LONG_STREAM.fieldOf("feature_seed").stable().forGetter(WorldOptions::featureSeedStream),
|
|
Codec.BOOL.fieldOf("generate_features").orElse(true).stable().forGetter(WorldOptions::generateStructures),
|
|
Codec.BOOL.fieldOf("bonus_chest").orElse(false).stable().forGetter(WorldOptions::generateBonusChest),
|
|
- Codec.STRING.lenientOptionalFieldOf("legacy_custom_options").stable().forGetter(worldOptions -> worldOptions.legacyCustomOptions)
|
|
- )
|
|
- .apply(instance, instance.stable(WorldOptions::new))
|
|
+ Codec.STRING.lenientOptionalFieldOf("legacy_custom_options").stable().forGetter(generatorOptions -> generatorOptions.legacyCustomOptions)).apply(instance, instance.stable(WorldOptions::new))
|
|
+ : instance.group(
|
|
+ Codec.LONG.fieldOf("seed").stable().forGetter(WorldOptions::seed),
|
|
+ Codec.BOOL.fieldOf("generate_features").orElse(true).stable().forGetter(WorldOptions::generateStructures),
|
|
+ Codec.BOOL.fieldOf("bonus_chest").orElse(false).stable().forGetter(WorldOptions::generateBonusChest),
|
|
+ Codec.STRING.lenientOptionalFieldOf("legacy_custom_options").stable().forGetter(worldOptions -> worldOptions.legacyCustomOptions)).apply(instance, instance.stable(WorldOptions::new))
|
|
);
|
|
- public static final WorldOptions DEMO_OPTIONS = new WorldOptions("North Carolina".hashCode(), true, true);
|
|
+ public static final WorldOptions DEMO_OPTIONS = isSecureSeedEnabled
|
|
+ ? new WorldOptions("North Carolina".hashCode(), su.plo.matter.Globals.createRandomWorldSeed(), true, true)
|
|
+ : new WorldOptions("North Carolina".hashCode(), true, true);
|
|
+ // DivineMC end - Implement Secure Seed
|
|
private final long seed;
|
|
+ private long[] featureSeed = su.plo.matter.Globals.createRandomWorldSeed(); // DivineMC - Implement Secure Seed
|
|
private final boolean generateStructures;
|
|
private final boolean generateBonusChest;
|
|
private final Optional<String> legacyCustomOptions;
|
|
@@ -28,9 +39,21 @@ public class WorldOptions {
|
|
this(seed, generateStructures, generateBonusChest, Optional.empty());
|
|
}
|
|
|
|
+ // DivineMC start - Implement Secure Seed
|
|
+ public WorldOptions(long seed, long[] featureSeed, boolean generateStructures, boolean bonusChest) {
|
|
+ this(seed, featureSeed, generateStructures, bonusChest, Optional.empty());
|
|
+ }
|
|
+
|
|
public static WorldOptions defaultWithRandomSeed() {
|
|
- return new WorldOptions(randomSeed(), true, false);
|
|
+ return isSecureSeedEnabled
|
|
+ ? new WorldOptions(randomSeed(), su.plo.matter.Globals.createRandomWorldSeed(), true, false)
|
|
+ : new WorldOptions(randomSeed(), true, false);
|
|
+ }
|
|
+
|
|
+ private WorldOptions(long seed, java.util.stream.LongStream featureSeed, boolean generateStructures, boolean bonusChest, Optional<String> legacyCustomOptions) {
|
|
+ this(seed, featureSeed.toArray(), generateStructures, bonusChest, legacyCustomOptions);
|
|
}
|
|
+ // DivineMC end - Implement Secure Seed
|
|
|
|
public static WorldOptions testWorldWithRandomSeed() {
|
|
return new WorldOptions(randomSeed(), false, false);
|
|
@@ -43,10 +66,27 @@ public class WorldOptions {
|
|
this.legacyCustomOptions = legacyCustomOptions;
|
|
}
|
|
|
|
+ // DivineMC start - Implement Secure Seed
|
|
+ private WorldOptions(long seed, long[] featureSeed, boolean generateStructures, boolean bonusChest, Optional<String> legacyCustomOptions) {
|
|
+ this(seed, generateStructures, bonusChest, legacyCustomOptions);
|
|
+ this.featureSeed = featureSeed;
|
|
+ }
|
|
+ // DivineMC end - Implement Secure Seed
|
|
+
|
|
public long seed() {
|
|
return this.seed;
|
|
}
|
|
|
|
+ // DivineMC start - Implement Secure Seed
|
|
+ public long[] featureSeed() {
|
|
+ return this.featureSeed;
|
|
+ }
|
|
+
|
|
+ public java.util.stream.LongStream featureSeedStream() {
|
|
+ return java.util.stream.LongStream.of(this.featureSeed);
|
|
+ }
|
|
+ // DivineMC end - Implement Secure Seed
|
|
+
|
|
public boolean generateStructures() {
|
|
return this.generateStructures;
|
|
}
|
|
@@ -59,17 +99,25 @@ public class WorldOptions {
|
|
return this.legacyCustomOptions.isPresent();
|
|
}
|
|
|
|
+ // DivineMC start - Implement Secure Seed
|
|
public WorldOptions withBonusChest(boolean generateBonusChest) {
|
|
- return new WorldOptions(this.seed, this.generateStructures, generateBonusChest, this.legacyCustomOptions);
|
|
+ return isSecureSeedEnabled
|
|
+ ? new WorldOptions(this.seed, this.featureSeed, this.generateStructures, generateBonusChest, this.legacyCustomOptions)
|
|
+ : new WorldOptions(this.seed, this.generateStructures, generateBonusChest, this.legacyCustomOptions);
|
|
}
|
|
|
|
public WorldOptions withStructures(boolean generateStructures) {
|
|
- return new WorldOptions(this.seed, generateStructures, this.generateBonusChest, this.legacyCustomOptions);
|
|
+ return isSecureSeedEnabled
|
|
+ ? new WorldOptions(this.seed, this.featureSeed, generateStructures, this.generateBonusChest, this.legacyCustomOptions)
|
|
+ : new WorldOptions(this.seed, generateStructures, this.generateBonusChest, this.legacyCustomOptions);
|
|
}
|
|
|
|
public WorldOptions withSeed(OptionalLong seed) {
|
|
- return new WorldOptions(seed.orElse(randomSeed()), this.generateStructures, this.generateBonusChest, this.legacyCustomOptions);
|
|
+ return isSecureSeedEnabled
|
|
+ ? new WorldOptions(seed.orElse(randomSeed()), su.plo.matter.Globals.createRandomWorldSeed(), this.generateStructures, this.generateBonusChest, this.legacyCustomOptions)
|
|
+ : new WorldOptions(seed.orElse(randomSeed()), this.generateStructures, this.generateBonusChest, this.legacyCustomOptions);
|
|
}
|
|
+ // DivineMC end - Implement Secure Seed
|
|
|
|
public static OptionalLong parseSeed(String seed) {
|
|
seed = seed.trim();
|
|
diff --git a/net/minecraft/world/level/levelgen/feature/GeodeFeature.java b/net/minecraft/world/level/levelgen/feature/GeodeFeature.java
|
|
index 1489328395e212fc34e6e5462dba9d7a167c9a81..c529393b3b00c3f240a24f6925c1b325a526d387 100644
|
|
--- a/net/minecraft/world/level/levelgen/feature/GeodeFeature.java
|
|
+++ b/net/minecraft/world/level/levelgen/feature/GeodeFeature.java
|
|
@@ -41,7 +41,11 @@ public class GeodeFeature extends Feature<GeodeConfiguration> {
|
|
int i1 = geodeConfiguration.maxGenOffset;
|
|
List<Pair<BlockPos, Integer>> list = Lists.newLinkedList();
|
|
int i2 = geodeConfiguration.distributionPoints.sample(randomSource);
|
|
- WorldgenRandom worldgenRandom = new WorldgenRandom(new LegacyRandomSource(worldGenLevel.getSeed()));
|
|
+ // DivineMC start - Implement Secure Seed
|
|
+ WorldgenRandom worldgenRandom = org.bxteam.divinemc.config.DivineConfig.MiscCategory.enableSecureSeed
|
|
+ ? new su.plo.matter.WorldgenCryptoRandom(0, 0, su.plo.matter.Globals.Salt.GEODE_FEATURE, 0)
|
|
+ : new WorldgenRandom(new LegacyRandomSource(worldGenLevel.getSeed()));
|
|
+ // DivineMC end - Implement Secure Seed
|
|
NormalNoise normalNoise = NormalNoise.create(worldgenRandom, -4, 1.0);
|
|
List<BlockPos> list1 = Lists.newLinkedList();
|
|
double d = (double)i2 / geodeConfiguration.outerWallDistance.getMaxValue();
|
|
diff --git a/net/minecraft/world/level/levelgen/structure/Structure.java b/net/minecraft/world/level/levelgen/structure/Structure.java
|
|
index 8328e864c72b7a358d6bb1f33459b8c4df2ecb1a..95881be2b7a5d16df22e8842acaba037b91a7009 100644
|
|
--- a/net/minecraft/world/level/levelgen/structure/Structure.java
|
|
+++ b/net/minecraft/world/level/levelgen/structure/Structure.java
|
|
@@ -249,6 +249,14 @@ public abstract class Structure {
|
|
}
|
|
|
|
private static WorldgenRandom makeRandom(long seed, ChunkPos chunkPos) {
|
|
+ // DivineMC start - Implement Secure Seed
|
|
+ if (org.bxteam.divinemc.config.DivineConfig.MiscCategory.enableSecureSeed) {
|
|
+ return new su.plo.matter.WorldgenCryptoRandom(
|
|
+ chunkPos.x, chunkPos.z, su.plo.matter.Globals.Salt.GENERATE_FEATURE, seed
|
|
+ );
|
|
+ }
|
|
+ // DivineMC end - Implement Secure Seed
|
|
+
|
|
WorldgenRandom worldgenRandom = new WorldgenRandom(new LegacyRandomSource(0L));
|
|
worldgenRandom.setLargeFeatureSeed(seed, chunkPos.x, chunkPos.z);
|
|
return worldgenRandom;
|
|
diff --git a/net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement.java b/net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement.java
|
|
index ee0d9dddb36b6879fa113299e24f1aa3b2b151cc..3af3bf800215ef78b98a4866df572f3ba263055d 100644
|
|
--- a/net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement.java
|
|
+++ b/net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement.java
|
|
@@ -67,8 +67,17 @@ public class RandomSpreadStructurePlacement extends StructurePlacement {
|
|
public ChunkPos getPotentialStructureChunk(long seed, int regionX, int regionZ) {
|
|
int i = Math.floorDiv(regionX, this.spacing);
|
|
int i1 = Math.floorDiv(regionZ, this.spacing);
|
|
- WorldgenRandom worldgenRandom = new WorldgenRandom(new LegacyRandomSource(0L));
|
|
- worldgenRandom.setLargeFeatureWithSalt(seed, i, i1, this.salt());
|
|
+ // DivineMC start - Implement Secure Seed
|
|
+ WorldgenRandom worldgenRandom;
|
|
+ if (org.bxteam.divinemc.config.DivineConfig.MiscCategory.enableSecureSeed) {
|
|
+ worldgenRandom = new su.plo.matter.WorldgenCryptoRandom(
|
|
+ i, i1, su.plo.matter.Globals.Salt.POTENTIONAL_FEATURE, this.salt
|
|
+ );
|
|
+ } else {
|
|
+ worldgenRandom = new WorldgenRandom(new LegacyRandomSource(0L));
|
|
+ worldgenRandom.setLargeFeatureWithSalt(seed, i, i1, this.salt());
|
|
+ }
|
|
+ // DivineMC end - Implement Secure Seed
|
|
int i2 = this.spacing - this.separation;
|
|
int i3 = this.spreadType.evaluate(worldgenRandom, i2);
|
|
int i4 = this.spreadType.evaluate(worldgenRandom, i2);
|
|
diff --git a/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement.java b/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement.java
|
|
index b3a538f9aebf5b6e965e1140b8fc558eb394605b..892bba74ef5bd670f30d8ab3bdb3b363ec89103d 100644
|
|
--- a/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement.java
|
|
+++ b/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement.java
|
|
@@ -119,8 +119,17 @@ public abstract class StructurePlacement {
|
|
public abstract StructurePlacementType<?> type();
|
|
|
|
private static boolean probabilityReducer(long levelSeed, int regionX, int regionZ, int salt, float frequency, @javax.annotation.Nullable Integer saltOverride) { // Paper - Add missing structure set seed configs; ignore here
|
|
- WorldgenRandom worldgenRandom = new WorldgenRandom(new LegacyRandomSource(0L));
|
|
- worldgenRandom.setLargeFeatureWithSalt(levelSeed, regionX, regionZ, salt);
|
|
+ // DivineMC start - Implement Secure Seed
|
|
+ WorldgenRandom worldgenRandom;
|
|
+ if (org.bxteam.divinemc.config.DivineConfig.MiscCategory.enableSecureSeed) {
|
|
+ worldgenRandom = new su.plo.matter.WorldgenCryptoRandom(
|
|
+ regionX, regionZ, su.plo.matter.Globals.Salt.UNDEFINED, salt
|
|
+ );
|
|
+ } else {
|
|
+ worldgenRandom = new WorldgenRandom(new LegacyRandomSource(0L));
|
|
+ worldgenRandom.setLargeFeatureWithSalt(levelSeed, regionX, regionZ, salt);
|
|
+ }
|
|
+ // DivineMC end - Implement Secure Seed
|
|
return worldgenRandom.nextFloat() < frequency;
|
|
}
|
|
|
|
diff --git a/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement.java b/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement.java
|
|
index ae25d2b544f61bec142e38f299331f67a3f2d8bf..a26621611bd57e47754be7416beba12260d6ecef 100644
|
|
--- a/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement.java
|
|
+++ b/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement.java
|
|
@@ -64,7 +64,11 @@ public class JigsawPlacement {
|
|
ChunkGenerator chunkGenerator = context.chunkGenerator();
|
|
StructureTemplateManager structureTemplateManager = context.structureTemplateManager();
|
|
LevelHeightAccessor levelHeightAccessor = context.heightAccessor();
|
|
- WorldgenRandom worldgenRandom = context.random();
|
|
+ // DivineMC start - Implement Secure Seed
|
|
+ WorldgenRandom worldgenRandom = org.bxteam.divinemc.config.DivineConfig.MiscCategory.enableSecureSeed
|
|
+ ? new su.plo.matter.WorldgenCryptoRandom(context.chunkPos().x, context.chunkPos().z, su.plo.matter.Globals.Salt.JIGSAW_PLACEMENT, 0)
|
|
+ : context.random();
|
|
+ // DivineMC end - Implement Secure Seed
|
|
Registry<StructureTemplatePool> registry = registryAccess.lookupOrThrow(Registries.TEMPLATE_POOL);
|
|
Rotation random = Rotation.getRandom(worldgenRandom);
|
|
StructureTemplatePool structureTemplatePool = startPool.unwrapKey()
|