package appeng.core; import com.google.common.base.Preconditions; import net.fabricmc.loader.api.FabricLoader; import net.minecraft.block.BlockState; import net.minecraft.util.registry.BuiltinRegistries; import net.minecraft.util.registry.Registry; import net.minecraft.world.biome.Biome; import net.minecraft.world.gen.GenerationStep; import net.minecraft.world.gen.decorator.Decorator; import net.minecraft.world.gen.decorator.NopeDecoratorConfig; import net.minecraft.world.gen.decorator.RangeDecoratorConfig; import net.minecraft.world.gen.feature.ConfiguredFeature; import net.minecraft.world.gen.feature.Feature; import net.minecraft.world.gen.feature.OreFeatureConfig; import appeng.api.features.AEFeature; import appeng.mixins.feature.ConfiguredFeaturesAccessor; import appeng.mixins.structure.ConfiguredStructureFeaturesAccessor; import appeng.mixins.structure.StructureFeatureAccessor; import appeng.spatial.SpatialStorageChunkGenerator; import appeng.spatial.SpatialStorageDimensionIds; import appeng.worldgen.BiomeModifier; import appeng.worldgen.ChargedQuartzOreConfig; import appeng.worldgen.ChargedQuartzOreFeature; import appeng.worldgen.meteorite.MeteoriteStructure; /** * Hooks into the very early bootstrapping phase to register things before the * first dynamic registry manager is created. */ public final class AppEngBootstrap { private static boolean initialized; private AppEngBootstrap() { } public synchronized static void initialize() { Preconditions.checkState(!initialized, "Already initialized!"); initialized = true; AEConfig.load(FabricLoader.getInstance().getConfigDirectory()); Api.INSTANCE = new Api(); registerStructures(); ConfiguredFeature quartzOreFeature = registerQuartzOreFeature(); ConfiguredFeature chargedQuartzOreFeature = registerChargedQuartzOreFeature(); // add to all standard biomes // TODO: This means we'll not add these things to newly created biomes BuiltinRegistries.BIOME.forEach(b -> { addMeteoriteWorldGen(b); addQuartzWorldGen(b, quartzOreFeature, chargedQuartzOreFeature); }); registerDimension(); } private static void registerStructures() { // Registering into the registry alone is INSUFFICIENT! // There's a bidirectional map in the Structure class itself primarily for the // purposes of NBT serialization StructureFeatureAccessor.register(MeteoriteStructure.ID.toString(), MeteoriteStructure.INSTANCE, GenerationStep.Feature.TOP_LAYER_MODIFICATION); ConfiguredStructureFeaturesAccessor.register(MeteoriteStructure.ID.toString(), MeteoriteStructure.CONFIGURED_INSTANCE); } private static void addMeteoriteWorldGen(Biome b) { if (!AEConfig.instance().isFeatureEnabled(AEFeature.METEORITE_WORLD_GEN)) { return; } if (b.getCategory() == Biome.Category.THEEND || b.getCategory() == Biome.Category.NETHER) { return; } BiomeModifier modifier = new BiomeModifier(b); modifier.addStructureFeature(MeteoriteStructure.CONFIGURED_INSTANCE); } private static void addQuartzWorldGen(Biome b, ConfiguredFeature quartzOre, ConfiguredFeature chargedQuartz) { if (!AEConfig.instance().isFeatureEnabled(AEFeature.CERTUS_QUARTZ_WORLD_GEN)) { return; } BiomeModifier modifier = new BiomeModifier(b); modifier.addFeature(GenerationStep.Feature.UNDERGROUND_ORES, quartzOre); if (AEConfig.instance().isFeatureEnabled(AEFeature.CHARGED_CERTUS_ORE)) { modifier.addFeature(GenerationStep.Feature.UNDERGROUND_DECORATION, chargedQuartz); } } private static ConfiguredFeature registerQuartzOreFeature() { // Tell Minecraft about our configured quartz ore feature BlockState quartzOreState = Api.instance().definitions().blocks().quartzOre().block().getDefaultState(); return ConfiguredFeaturesAccessor.register(AppEng.makeId("quartz_ore").toString(), Feature.ORE .configure(new OreFeatureConfig(OreFeatureConfig.Rules.BASE_STONE_OVERWORLD, quartzOreState, AEConfig.instance().getQuartzOresPerCluster())) .decorate(Decorator.RANGE.configure(new RangeDecoratorConfig(12, 12, 72))).spreadHorizontally() .repeat(AEConfig.instance().getQuartzOresClusterAmount())); } private static ConfiguredFeature registerChargedQuartzOreFeature() { // Tell Minecraft about our configured charged quartz ore feature Registry.register(Registry.FEATURE, AppEng.makeId("charged_quartz_ore"), ChargedQuartzOreFeature.INSTANCE); BlockState quartzOreState = Api.instance().definitions().blocks().quartzOre().block().getDefaultState(); BlockState chargedQuartzOreState = Api.instance().definitions().blocks().quartzOreCharged().block() .getDefaultState(); return ConfiguredFeaturesAccessor.register(AppEng.makeId("charged_quartz_ore").toString(), ChargedQuartzOreFeature.INSTANCE .configure(new ChargedQuartzOreConfig(quartzOreState, chargedQuartzOreState, AEConfig.instance().getSpawnChargedChance())) .decorate(Decorator.NOPE.configure(NopeDecoratorConfig.INSTANCE))); } private static void registerDimension() { Registry.register(Registry.CHUNK_GENERATOR, SpatialStorageDimensionIds.CHUNK_GENERATOR_ID, SpatialStorageChunkGenerator.CODEC); } }