minecraft-src/net/minecraft/data/worldgen/SavannaVillagePools.java
2025-07-04 01:41:11 +03:00

281 lines
17 KiB
Java

package net.minecraft.data.worldgen;
import com.google.common.collect.ImmutableList;
import com.mojang.datafixers.util.Pair;
import net.minecraft.core.Holder;
import net.minecraft.core.HolderGetter;
import net.minecraft.core.registries.Registries;
import net.minecraft.data.worldgen.placement.VillagePlacements;
import net.minecraft.resources.ResourceKey;
import net.minecraft.world.level.levelgen.placement.PlacedFeature;
import net.minecraft.world.level.levelgen.structure.pools.StructurePoolElement;
import net.minecraft.world.level.levelgen.structure.pools.StructureTemplatePool;
import net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessorList;
public class SavannaVillagePools {
public static final ResourceKey<StructureTemplatePool> START = Pools.createKey("village/savanna/town_centers");
private static final ResourceKey<StructureTemplatePool> TERMINATORS_KEY = Pools.createKey("village/savanna/terminators");
private static final ResourceKey<StructureTemplatePool> ZOMBIE_TERMINATORS_KEY = Pools.createKey("village/savanna/zombie/terminators");
public static void bootstrap(BootstrapContext<StructureTemplatePool> context) {
HolderGetter<PlacedFeature> holderGetter = context.lookup(Registries.PLACED_FEATURE);
Holder<PlacedFeature> holder = holderGetter.getOrThrow(VillagePlacements.ACACIA_VILLAGE);
Holder<PlacedFeature> holder2 = holderGetter.getOrThrow(VillagePlacements.PILE_HAY_VILLAGE);
Holder<PlacedFeature> holder3 = holderGetter.getOrThrow(VillagePlacements.PILE_MELON_VILLAGE);
HolderGetter<StructureProcessorList> holderGetter2 = context.lookup(Registries.PROCESSOR_LIST);
Holder<StructureProcessorList> holder4 = holderGetter2.getOrThrow(ProcessorLists.ZOMBIE_SAVANNA);
Holder<StructureProcessorList> holder5 = holderGetter2.getOrThrow(ProcessorLists.STREET_SAVANNA);
Holder<StructureProcessorList> holder6 = holderGetter2.getOrThrow(ProcessorLists.FARM_SAVANNA);
HolderGetter<StructureTemplatePool> holderGetter3 = context.lookup(Registries.TEMPLATE_POOL);
Holder<StructureTemplatePool> holder7 = holderGetter3.getOrThrow(Pools.EMPTY);
Holder<StructureTemplatePool> holder8 = holderGetter3.getOrThrow(TERMINATORS_KEY);
Holder<StructureTemplatePool> holder9 = holderGetter3.getOrThrow(ZOMBIE_TERMINATORS_KEY);
context.register(
START,
new StructureTemplatePool(
holder7,
ImmutableList.of(
Pair.of(StructurePoolElement.legacy("village/savanna/town_centers/savanna_meeting_point_1"), 100),
Pair.of(StructurePoolElement.legacy("village/savanna/town_centers/savanna_meeting_point_2"), 50),
Pair.of(StructurePoolElement.legacy("village/savanna/town_centers/savanna_meeting_point_3"), 150),
Pair.of(StructurePoolElement.legacy("village/savanna/town_centers/savanna_meeting_point_4"), 150),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/town_centers/savanna_meeting_point_1", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/town_centers/savanna_meeting_point_2", holder4), 1),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/town_centers/savanna_meeting_point_3", holder4), 3),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/town_centers/savanna_meeting_point_4", holder4), 3)
),
StructureTemplatePool.Projection.RIGID
)
);
Pools.register(
context,
"village/savanna/streets",
new StructureTemplatePool(
holder8,
ImmutableList.of(
Pair.of(StructurePoolElement.legacy("village/savanna/streets/corner_01", holder5), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/streets/corner_03", holder5), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/streets/straight_02", holder5), 4),
Pair.of(StructurePoolElement.legacy("village/savanna/streets/straight_04", holder5), 7),
Pair.of(StructurePoolElement.legacy("village/savanna/streets/straight_05", holder5), 3),
Pair.of(StructurePoolElement.legacy("village/savanna/streets/straight_06", holder5), 4),
Pair.of(StructurePoolElement.legacy("village/savanna/streets/straight_08", holder5), 4),
Pair.of(StructurePoolElement.legacy("village/savanna/streets/straight_09", holder5), 4),
Pair.of(StructurePoolElement.legacy("village/savanna/streets/straight_10", holder5), 4),
Pair.of(StructurePoolElement.legacy("village/savanna/streets/straight_11", holder5), 4),
Pair.of(StructurePoolElement.legacy("village/savanna/streets/crossroad_02", holder5), 1),
Pair.of(StructurePoolElement.legacy("village/savanna/streets/crossroad_03", holder5), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/streets/crossroad_04", holder5), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/streets/crossroad_05", holder5), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/streets/crossroad_06", holder5), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/streets/crossroad_07", holder5), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/streets/split_01", holder5), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/streets/split_02", holder5), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/streets/turn_01", holder5), 3)
),
StructureTemplatePool.Projection.TERRAIN_MATCHING
)
);
Pools.register(
context,
"village/savanna/zombie/streets",
new StructureTemplatePool(
holder9,
ImmutableList.of(
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/streets/corner_01", holder5), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/streets/corner_03", holder5), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/streets/straight_02", holder5), 4),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/streets/straight_04", holder5), 7),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/streets/straight_05", holder5), 3),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/streets/straight_06", holder5), 4),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/streets/straight_08", holder5), 4),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/streets/straight_09", holder5), 4),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/streets/straight_10", holder5), 4),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/streets/straight_11", holder5), 4),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/streets/crossroad_02", holder5), 1),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/streets/crossroad_03", holder5), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/streets/crossroad_04", holder5), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/streets/crossroad_05", holder5), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/streets/crossroad_06", holder5), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/streets/crossroad_07", holder5), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/streets/split_01", holder5), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/streets/split_02", holder5), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/streets/turn_01", holder5), 3)
),
StructureTemplatePool.Projection.TERRAIN_MATCHING
)
);
Pools.register(
context,
"village/savanna/houses",
new StructureTemplatePool(
holder8,
ImmutableList.of(
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_small_house_1"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_small_house_2"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_small_house_3"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_small_house_4"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_small_house_5"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_small_house_6"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_small_house_7"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_small_house_8"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_medium_house_1"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_medium_house_2"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_butchers_shop_1"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_butchers_shop_2"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_tool_smith_1"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_fletcher_house_1"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_shepherd_1"), 7),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_armorer_1"), 1),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_fisher_cottage_1"), 3),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_tannery_1"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_cartographer_1"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_library_1"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_mason_1"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_weaponsmith_1"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_weaponsmith_2"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_temple_1"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_temple_2"), 3),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_large_farm_1", holder6), 4),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_large_farm_2", holder6), 6),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_small_farm", holder6), 4),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_animal_pen_1"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_animal_pen_2"), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_animal_pen_3"), 2),
Pair.of(StructurePoolElement.empty(), 5)
),
StructureTemplatePool.Projection.RIGID
)
);
Pools.register(
context,
"village/savanna/zombie/houses",
new StructureTemplatePool(
holder9,
ImmutableList.of(
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/houses/savanna_small_house_1", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/houses/savanna_small_house_2", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/houses/savanna_small_house_3", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/houses/savanna_small_house_4", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/houses/savanna_small_house_5", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/houses/savanna_small_house_6", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/houses/savanna_small_house_7", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/houses/savanna_small_house_8", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/houses/savanna_medium_house_1", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/houses/savanna_medium_house_2", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_butchers_shop_1", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_butchers_shop_2", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_tool_smith_1", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_fletcher_house_1", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_shepherd_1", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_armorer_1", holder4), 1),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_fisher_cottage_1", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_tannery_1", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_cartographer_1", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_library_1", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_mason_1", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_weaponsmith_1", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_weaponsmith_2", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_temple_1", holder4), 1),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_temple_2", holder4), 3),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_large_farm_1", holder4), 4),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/houses/savanna_large_farm_2", holder4), 4),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_small_farm", holder4), 4),
Pair.of(StructurePoolElement.legacy("village/savanna/houses/savanna_animal_pen_1", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/houses/savanna_animal_pen_2", holder4), 2),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/houses/savanna_animal_pen_3", holder4), 2),
Pair.of(StructurePoolElement.empty(), 5)
),
StructureTemplatePool.Projection.RIGID
)
);
context.register(
TERMINATORS_KEY,
new StructureTemplatePool(
holder7,
ImmutableList.of(
Pair.of(StructurePoolElement.legacy("village/plains/terminators/terminator_01", holder5), 1),
Pair.of(StructurePoolElement.legacy("village/plains/terminators/terminator_02", holder5), 1),
Pair.of(StructurePoolElement.legacy("village/plains/terminators/terminator_03", holder5), 1),
Pair.of(StructurePoolElement.legacy("village/plains/terminators/terminator_04", holder5), 1),
Pair.of(StructurePoolElement.legacy("village/savanna/terminators/terminator_05", holder5), 1)
),
StructureTemplatePool.Projection.TERRAIN_MATCHING
)
);
context.register(
ZOMBIE_TERMINATORS_KEY,
new StructureTemplatePool(
holder7,
ImmutableList.of(
Pair.of(StructurePoolElement.legacy("village/plains/terminators/terminator_01", holder5), 1),
Pair.of(StructurePoolElement.legacy("village/plains/terminators/terminator_02", holder5), 1),
Pair.of(StructurePoolElement.legacy("village/plains/terminators/terminator_03", holder5), 1),
Pair.of(StructurePoolElement.legacy("village/plains/terminators/terminator_04", holder5), 1),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/terminators/terminator_05", holder5), 1)
),
StructureTemplatePool.Projection.TERRAIN_MATCHING
)
);
Pools.register(
context,
"village/savanna/trees",
new StructureTemplatePool(holder7, ImmutableList.of(Pair.of(StructurePoolElement.feature(holder), 1)), StructureTemplatePool.Projection.RIGID)
);
Pools.register(
context,
"village/savanna/decor",
new StructureTemplatePool(
holder7,
ImmutableList.of(
Pair.of(StructurePoolElement.legacy("village/savanna/savanna_lamp_post_01"), 4),
Pair.of(StructurePoolElement.feature(holder), 4),
Pair.of(StructurePoolElement.feature(holder2), 4),
Pair.of(StructurePoolElement.feature(holder3), 1),
Pair.of(StructurePoolElement.empty(), 4)
),
StructureTemplatePool.Projection.RIGID
)
);
Pools.register(
context,
"village/savanna/zombie/decor",
new StructureTemplatePool(
holder7,
ImmutableList.of(
Pair.of(StructurePoolElement.legacy("village/savanna/savanna_lamp_post_01", holder4), 4),
Pair.of(StructurePoolElement.feature(holder), 4),
Pair.of(StructurePoolElement.feature(holder2), 4),
Pair.of(StructurePoolElement.feature(holder3), 1),
Pair.of(StructurePoolElement.empty(), 4)
),
StructureTemplatePool.Projection.RIGID
)
);
Pools.register(
context,
"village/savanna/villagers",
new StructureTemplatePool(
holder7,
ImmutableList.of(
Pair.of(StructurePoolElement.legacy("village/savanna/villagers/nitwit"), 1),
Pair.of(StructurePoolElement.legacy("village/savanna/villagers/baby"), 1),
Pair.of(StructurePoolElement.legacy("village/savanna/villagers/unemployed"), 10)
),
StructureTemplatePool.Projection.RIGID
)
);
Pools.register(
context,
"village/savanna/zombie/villagers",
new StructureTemplatePool(
holder7,
ImmutableList.of(
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/villagers/nitwit"), 1),
Pair.of(StructurePoolElement.legacy("village/savanna/zombie/villagers/unemployed"), 10)
),
StructureTemplatePool.Projection.RIGID
)
);
}
}