tutorial:jigsaw_old
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
tutorial:jigsaw_old [2024/08/25 13:43] – removed - external edit (Unknown date) 127.0.0.1 | tutorial:jigsaw_old [2024/08/25 13:43] (current) – ↷ Page name changed from tutorial:jigsaw to tutorial:jigsaw_old solidblock | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Jigsaws ====== | ||
+ | Jigsaws are good for advanced structures such as dungeons & villages, and allow you to spend more time on actually building content vs. messing with procedural generation code. | ||
+ | A repository with the finished code from this tutorial can be found [[https:// | ||
+ | A full example with structure files and more can be found [[https:// | ||
+ | |||
+ | ===== Creating a StructureFeature ===== | ||
+ | |||
+ | A '' | ||
+ | |||
+ | //Note: while Feature is the proper name for something generated in the world, we'll refer to our addition as a Structure. This is to distinguish between a StructureFeature and a standard Feature.// | ||
+ | |||
+ | We'll keep the constructor as-is. The '' | ||
+ | |||
+ | <code java [enable_line_numbers=" | ||
+ | public ExampleFeature(Codec< | ||
+ | super(codec); | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | // | ||
+ | |||
+ | <code java [enable_line_numbers=" | ||
+ | @Override | ||
+ | protected boolean shouldStartAt(ChunkGenerator chunkGenerator, | ||
+ | return chunkRandom.nextInt(150) == 0; // 1 in 150 | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Finally, // | ||
+ | <code java [enable_line_numbers=" | ||
+ | @Override | ||
+ | public StructureStartFactory< | ||
+ | return Start::new; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ==== Creating a ExampleFeature.Start class ==== | ||
+ | |||
+ | '' | ||
+ | <code java [enable_line_numbers=" | ||
+ | public static class Start extends StructureStart< | ||
+ | |||
+ | Start(StructureFeature< | ||
+ | super(feature, | ||
+ | } | ||
+ | |||
+ | @Override | ||
+ | public void init(ChunkGenerator chunkGenerator, | ||
+ | | ||
+ | |||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Now all we have to do is add our starting piece in our '' | ||
+ | <code java [enable_line_numbers=" | ||
+ | @Override | ||
+ | public void init(ChunkGenerator chunkGenerator, | ||
+ | | ||
+ | BlockPos pos = new BlockPos(x * 16, 80, z * 16); | ||
+ | |||
+ | boolean randomYPos = false; | ||
+ | boolean calculateMaxYFromPiecePositions = false; | ||
+ | |||
+ | ExamplePiece.init(); | ||
+ | |||
+ | StructurePoolBasedGenerator.method_30419(config.getStartPool(), | ||
+ | pos, children, random, calculateMaxYFromPiecePositions, | ||
+ | |||
+ | setBoundingBoxFromChildren(); | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | The Identifier is the starting pool to select from, the int is the size of the entire structure (with 7 being "7 squares out"), and the 3rd argument is a factory for the piece we'll register in a second. | ||
+ | |||
+ | Our finalized '' | ||
+ | <code java [enable_line_numbers=" | ||
+ | public class ExampleFeature extends StructureFeature< | ||
+ | |||
+ | public ExampleFeature(Codec< | ||
+ | super(codec); | ||
+ | } | ||
+ | |||
+ | @Override | ||
+ | public StructureStartFactory< | ||
+ | return Start::new; | ||
+ | } | ||
+ | |||
+ | @Override | ||
+ | protected boolean shouldStartAt(ChunkGenerator chunkGenerator, | ||
+ | return chunkRandom.nextInt(150) == 0; // 1 in 150 | ||
+ | } | ||
+ | |||
+ | public static class Start extends StructureStart< | ||
+ | |||
+ | Start(StructureFeature< | ||
+ | super(feature, | ||
+ | } | ||
+ | |||
+ | @Override | ||
+ | public void init(ChunkGenerator chunkGenerator, | ||
+ | | ||
+ | BlockPos pos = new BlockPos(x * 16, 80, z * 16); | ||
+ | |||
+ | boolean randomYPos = false; | ||
+ | boolean calculateMaxYFromPiecePositions = false; | ||
+ | |||
+ | ExamplePiece.init(); | ||
+ | |||
+ | StructurePoolBasedGenerator.addPieces(config.startPool, | ||
+ | pos, children, random, calculateMaxYFromPiecePositions, | ||
+ | |||
+ | setBoundingBoxFromChildren(); | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ===== Creating a Piece ===== | ||
+ | This portion is very simple. A piece represents one section or element in your full structure. You'll need to create a basic piece class, and we'll register it later: | ||
+ | <code java [enable_line_numbers=" | ||
+ | public class ExamplePiece extends PoolStructurePiece { | ||
+ | |||
+ | ExamplePiece(StructureManager structureManager_1, | ||
+ | super(TutorialJigsaws.EXAMPLE_PIECE, | ||
+ | } | ||
+ | |||
+ | public ExamplePiece(StructureManager manager, CompoundTag tag) { | ||
+ | super(manager, | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Where '' | ||
+ | |||
+ | |||
+ | In a static block at the top of our class, we're going to register our structure pools using '' | ||
+ | <code java [enable_line_numbers=" | ||
+ | public static void init() { } | ||
+ | |||
+ | static { | ||
+ | StructurePoolBasedGenerator.REGISTRY.add( | ||
+ | new StructurePool( | ||
+ | TutorialJigsaws.BASE_POOL, | ||
+ | new Identifier(" | ||
+ | ImmutableList.of( | ||
+ | Pair.of(new LegacySinglePoolElement(" | ||
+ | Pair.of(new LegacySinglePoolElement(" | ||
+ | ), | ||
+ | StructurePool.Projection.RIGID | ||
+ | ) | ||
+ | ); | ||
+ | |||
+ | StructurePoolBasedGenerator.REGISTRY.add( | ||
+ | new StructurePool( | ||
+ | TutorialJigsaws.COLOR_POOL, | ||
+ | new Identifier(" | ||
+ | ImmutableList.of( | ||
+ | Pair.of(new LegacySinglePoolElement(" | ||
+ | Pair.of(new LegacySinglePoolElement(" | ||
+ | Pair.of(new LegacySinglePoolElement(" | ||
+ | Pair.of(new LegacySinglePoolElement(" | ||
+ | ), | ||
+ | StructurePool.Projection.RIGID | ||
+ | ) | ||
+ | ); | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Here, we're registering 2 pools (base & color) and then adding their respective children to them. The StructurePool constructor is as follows: | ||
+ | * registry name of the pool, same as target pool at top of a jigsaw | ||
+ | * @Draylar if you know what this one does | ||
+ | * a list of pool elements | ||
+ | * the projection type of the pool | ||
+ | |||
+ | For the list of elements, we add Pairs((com.mojang.datafixers.util)) of pool elements and integers. The string passed into the element is the location of the structure in the data directory, and the int is the weight of the element within the entire target pool. Using 1 for each element ensures each one will be picked evenly. | ||
+ | |||
+ | The projection is how the pool is placed in the world. Rigid means it will be placed directly as is, and terrain matching means it will be bent to sit on top of the terrain. The latter may be good for a wheat field structure that moves with the terrain shape, whereas the first would be better for houses with solid floors. | ||
+ | |||
+ | |||
+ | ==== Jigsaws and pieces ==== | ||
+ | |||
+ | To understand what happens here, we'll have to dive into jigsaws (https:// | ||
+ | |||
+ | Structure Blocks are a simple way of saving a structure to a .nbt file for future use. Jigsaws are a component of structure blocks that assemble multiple structures into a single one; similar to normal jigsaws, each piece of the structure connects at a jigsaw block, which is like a connection wedge in a puzzle piece. We'll assume you're familiar with saving structures-- if you aren' | ||
+ | |||
+ | The jigsaw menu consists of 3 fields: | ||
+ | |||
+ | * target pool | ||
+ | * attachment type | ||
+ | * turns into | ||
+ | |||
+ | {{ https:// | ||
+ | |||
+ | When thinking about this as a puzzle, the target pool is the group of puzzle pieces you can search through. If you have a total of 10 pieces, one target pool may have 7 of the total pieces. This field is how a jigsaw specifies, "Hi, I'd like a piece from group B to connect to me!" In the case of a village, this may be a road saying, "Give me a house!" | ||
+ | |||
+ | The attachment type can be seen as a more specific filter within target pools-- a jigsaw can only connect to other jigsaws with the same attachment type. This is like the type of connector on a puzzle piece. The usages for this are a little bit more specific. | ||
+ | |||
+ | Finally, the "turns into" field is simply what the jigsaw is replaced with after it finds a match. If the jigsaw is inside your cobblestone floor, it should probably turn into cobblestone. | ||
+ | |||
+ | Here's an example implementation: | ||
+ | |||
+ | {{ https:// | ||
+ | |||
+ | Our finalized structure will consist of multiple colored squares connecting to each other. It will have a white or a black square in the center, and orange, magenta, light blue, and lime squares branching off on the sides randomly. Here is the setup of our 2 initial squares: | ||
+ | |||
+ | {{ https:// | ||
+ | |||
+ | This jigsaw will ask for any other jigsaw that: | ||
+ | * is in the // | ||
+ | * has an attachment type of // | ||
+ | It then turns into white concrete to match the rest of the platform. | ||
+ | |||
+ | For demo purposes, we've made 2 starting platforms: one is white, and one is black. The only difference is what they turn into. We'll save these as structure files using structure blocks: | ||
+ | |||
+ | {{ https:// | ||
+ | |||
+ | For our randomized edge platforms, we've made 4 extra squares of different colors. Again, despite being used for a different purpose, the jigsaw construction is //the same// aside from the "turns into" field. | ||
+ | |||
+ | {{ https:// | ||
+ | |||
+ | We now have 6 saved '' | ||
+ | |||
+ | {{ https:// | ||
+ | |||
+ | For usage, we'll move these to '' | ||
+ | |||
+ | {{ https:// | ||
+ | |||
+ | The setup is complete! We now have 6 total squares. Let's briefly recap the goal: | ||
+ | * have a white or black square selected as the center for our structure | ||
+ | * have a pool of the 4 other colors | ||
+ | * branch off from the center square with our 4 extra colors | ||
+ | |||
+ | Let's head back to our '' | ||
+ | <code java [enable_line_numbers=" | ||
+ | private static final Identifier BASE_POOL = new Identifier(" | ||
+ | private static final Identifier COLOR_POOL = new Identifier(" | ||
+ | </ | ||
+ | |||
+ | Remember: every jigsaw ends up searching through the color pool, but we still have a base pool! This is to keep our black & white squares out of the outside generated squares. It's also going to be our origin pool, where we randomly select 1 structure from to begin our generation. | ||
+ | |||
+ | ===== Registering Everything ===== | ||
+ | We'll need to register our structure as a structure feature, and also register our piece. | ||
+ | <code java [enable_line_numbers=" | ||
+ | public static final StructureFeature< | ||
+ | " | ||
+ | new ExampleFeature(StructurePoolFeatureConfig.CODEC), | ||
+ | GenerationStep.Feature.SURFACE_STRUCTURES | ||
+ | ); | ||
+ | |||
+ | public static final StructurePieceType EXAMPLE_PIECE = StructurePieceType.register( | ||
+ | ExamplePiece:: | ||
+ | " | ||
+ | ); | ||
+ | </ | ||
+ | |||
+ | ===== Spawning Our Structure ===== | ||
+ | Finally, we'll have to spawn our structure. A basic example which adds it to every biome is: | ||
+ | <code java [enable_line_numbers=" | ||
+ | public static final ConfiguredStructureFeature< | ||
+ | = FEATURE.configure(new StructurePoolFeatureConfig(BASE_POOL, | ||
+ | |||
+ | static { | ||
+ | StructuresConfigAccessor.setDefaultStructures( | ||
+ | new ImmutableMap.Builder< | ||
+ | .putAll(StructuresConfig.DEFAULT_STRUCTURES) | ||
+ | .put(TutorialJigsaws.FEATURE, | ||
+ | .build() | ||
+ | ); | ||
+ | } | ||
+ | |||
+ | @Override | ||
+ | public void onInitialize() { | ||
+ | Registry.BIOME.forEach(biome -> { | ||
+ | biome.addStructureFeature(FEATURE_CONFIGURED); | ||
+ | }); | ||
+ | } | ||
+ | </ | ||
+ | ===== Finished! ===== | ||
+ | As you can see, we have a single white square in the center, with boxes going off the edges. Note that the radius in this screenshot was increased to 14 instead of the 7 used in the tutorial. | ||
+ | |||
+ | {{ https:// | ||
+ | ===== Jigsaw Tips ===== | ||
+ | Ideally, you do not want structure pieces to be bigger than 32x32x32, so breaking them into chunk-sized pieces is the best option. | ||
+ | You cannot generate other structure pieces of the same pool through jigsaws. So, if you have a piece in pool A and you try to generate another piece, you will have to have another pool. |