zh_cn:tutorial:jigsaw_old
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
zh_cn:tutorial:jigsaw_old [2024/08/25 13:43] – removed - external edit (Unknown date) 127.0.0.1 | zh_cn:tutorial:jigsaw_old [2024/08/25 13:43] (current) – ↷ Page name changed from zh_cn:tutorial:jigsaw to zh_cn:tutorial:jigsaw_old solidblock | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== 拼图 ====== | ||
+ | 拼图非常适合用于地牢和村庄等高级结构,并且可以让您花费更多的时间在实际构建内容上,而不是将其与程序生成代码搞混。 | ||
+ | 可以找到带有完成代码的存储库 [[https:// | ||
+ | |||
+ | ==== 创建一个结构特征 ==== | ||
+ | '' | ||
+ | |||
+ | // | ||
+ | |||
+ | 我们将按原样保留构造函数。'' | ||
+ | |||
+ | <code java [enable_line_numbers=" | ||
+ | public ExampleFeature(Function< | ||
+ | super(config); | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | // | ||
+ | <code java [enable_line_numbers=" | ||
+ | @Override | ||
+ | public boolean shouldStartAt(ChunkGenerator<?> | ||
+ | return true; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | //getName// 是您的结构的名称。 它用于几件事,包括: | ||
+ | | ||
+ | | ||
+ | | ||
+ | 原版约定是适当大写的标题。'' | ||
+ | <code java [enable_line_numbers=" | ||
+ | @Override | ||
+ | public String getName() { | ||
+ | return " | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | // | ||
+ | <code java [enable_line_numbers=" | ||
+ | @Override | ||
+ | public int getRadius() { | ||
+ | return 2; | ||
+ | } | ||
+ | </ | ||
+ | 最后,// | ||
+ | <code java [enable_line_numbers=" | ||
+ | @Override | ||
+ | public StructureStartFactory getStructureStartFactory() { | ||
+ | return ExampleStructureStart:: | ||
+ | } | ||
+ | </ | ||
+ | 我们完成的'' | ||
+ | <code java [enable_line_numbers=" | ||
+ | import com.mojang.datafixers.Dynamic; | ||
+ | import net.minecraft.world.gen.chunk.ChunkGenerator; | ||
+ | import net.minecraft.world.gen.feature.DefaultFeatureConfig; | ||
+ | import net.minecraft.world.gen.feature.StructureFeature; | ||
+ | |||
+ | import java.util.Random; | ||
+ | import java.util.function.Function; | ||
+ | |||
+ | public class ExampleFeature extends StructureFeature< | ||
+ | |||
+ | public ExampleFeature(Function< | ||
+ | super(config); | ||
+ | } | ||
+ | |||
+ | @Override | ||
+ | public boolean shouldStartAt(ChunkGenerator<?> | ||
+ | return true; | ||
+ | } | ||
+ | |||
+ | @Override | ||
+ | public StructureStartFactory getStructureStartFactory() { | ||
+ | return ExampleStructureStart:: | ||
+ | } | ||
+ | |||
+ | @Override | ||
+ | public String getName() { | ||
+ | return " | ||
+ | } | ||
+ | |||
+ | @Override | ||
+ | public int getRadius() { | ||
+ | return 2; | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ==== 创建一个StructureStart类 ===== | ||
+ | '' | ||
+ | <code java [enable_line_numbers=" | ||
+ | public class ExampleStructureStart extends StructureStart { | ||
+ | |||
+ | ExampleStructureStart(StructureFeature<?> | ||
+ | super(feature, | ||
+ | } | ||
+ | |||
+ | @Override | ||
+ | public void initialize(ChunkGenerator<?> | ||
+ | | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | 要了解这里发生的情况,我们必须深入研究拼图 (https:// | ||
+ | |||
+ | 结构放块是一种将结构保存到.nbt文件以供将来使用的简单方法。 拼图是结构块的组成部分,将多个结构组装成一个结构。 与普通的拼图游戏类似,结构的每一块都在拼图块处连接,就像拼图块中的连接楔子一样。 我们假设您熟悉保存结构-如果不熟悉,请先阅读结构块页面,然后再进行任何操作。 | ||
+ | |||
+ | 拼图菜单包含3个: | ||
+ | *目标池 | ||
+ | *附件类型 | ||
+ | *转成 | ||
+ | {{https:// | ||
+ | |||
+ | 将其视为难题时, | ||
+ | |||
+ | 附件类型可以看作是目标池中更具体的过滤器-拼图只能连接到具有相同附件类型的其他拼图。 这就像拼图块上的连接器类型。 用法更加具体. | ||
+ | |||
+ | 最后,“turns into”字段只是拼图找到匹配项后所替换的内容。 如果拼图位于您的鹅卵石地板内,它可能会变成原石. | ||
+ | 这是一个示例实现:给定的拼图将从// | ||
+ | |||
+ | {{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. | ||
+ | |||
+ | In a static block at the bottom of our class, we're going to register our structure pools using '' | ||
+ | <code java [enable_line_numbers=" | ||
+ | static { | ||
+ | StructurePoolBasedGenerator.REGISTRY.add( | ||
+ | new StructurePool( | ||
+ | BASE_POOL, | ||
+ | new Identifier(" | ||
+ | ImmutableList.of( | ||
+ | Pair.of(new SinglePoolElement(" | ||
+ | Pair.of(new SinglePoolElement(" | ||
+ | ), | ||
+ | StructurePool.Projection.RIGID | ||
+ | ) | ||
+ | ); | ||
+ | |||
+ | StructurePoolBasedGenerator.REGISTRY.add( | ||
+ | new StructurePool( | ||
+ | COLOR_POOL, | ||
+ | new Identifier(" | ||
+ | ImmutableList.of( | ||
+ | Pair.of(new SinglePoolElement(" | ||
+ | Pair.of(new SinglePoolElement(" | ||
+ | Pair.of(new SinglePoolElement(" | ||
+ | Pair.of(new SinglePoolElement(" | ||
+ | ), | ||
+ | StructurePool.Projection.RIGID | ||
+ | ) | ||
+ | ); | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | 在这里,我们要注册2个池(基础和颜色),然后将它们各自的子级添加到它们中。 StructurePool构造函数如下: | ||
+ | *池的注册表名称,与竖锯顶部的目标池相同 | ||
+ | *@Draylar,如果您知道这是做什么的 | ||
+ | *池元素列表 | ||
+ | *池的投影类型 | ||
+ | 对于元素列表,我们添加池元素和整数的Pairs((com.mojang.datafixers.util))。 传递到元素的字符串是结构在数据目录中的位置,而int是元素在整个目标池中的权重。 对每个元素使用1可以确保每个元素被均匀地拾取. | ||
+ | |||
+ | 投影是如何将池放置在世界上的。 刚性表示将直接按原样放置,而地形匹配则表示将其弯曲以位于地形顶部。 后者可能适合随地形变化的麦田结构,而前者则适合具有坚固地板的房屋。 | ||
+ | |||
+ | 现在,我们要做的就是在'' | ||
+ | <code java [enable_line_numbers=" | ||
+ | @Override | ||
+ | public void initialize(ChunkGenerator<?> | ||
+ | StructurePoolBasedGenerator.addPieces(BASE_POOL, | ||
+ | setBoundingBoxFromChildren(); | ||
+ | } | ||
+ | </ | ||
+ | Identifier是可供选择的起始池,int是整个结构的大小(其中7为“7 squares out”),第3个参数是我们将在第二秒注册的零件的工厂. | ||
+ | |||
+ | ==== 创作作品 ==== | ||
+ | 这部分非常简单。 一块代表整个结构中的一个部分或元素。 您需要创建一个基本的计件类,稍后我们将进行注册: | ||
+ | <code java [enable_line_numbers=" | ||
+ | public class ExamplePiece extends PoolStructurePiece { | ||
+ | |||
+ | ExamplePiece(StructureManager structureManager_1, | ||
+ | super(ExampleMod.EXAMPLE_PIECE, | ||
+ | } | ||
+ | |||
+ | public ExamplePiece(StructureManager manager, CompoundTag tag) { | ||
+ | super(manager, | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | 其中'' | ||
+ | |||
+ | ==== 注册所有 ==== | ||
+ | 我们需要将结构既注册为特征// | ||
+ | <code java [enable_line_numbers=" | ||
+ | public static final StructureFeature< | ||
+ | Registry.FEATURE, | ||
+ | new Identifier(" | ||
+ | new ExampleFeature(DefaultFeatureConfig:: | ||
+ | ); | ||
+ | |||
+ | public static final StructureFeature< | ||
+ | Registry.STRUCTURE_FEATURE, | ||
+ | new Identifier(" | ||
+ | EXAMPLE_FEATURE | ||
+ | ); | ||
+ | |||
+ | public static final StructurePieceType EXAMPLE_PIECE = Registry.register( | ||
+ | Registry.STRUCTURE_PIECE, | ||
+ | new Identifier(" | ||
+ | ExamplePiece:: | ||
+ | ); | ||
+ | </ | ||
+ | |||
+ | ==== 生成我们的结构 ==== | ||
+ | 最后,我们必须生成我们的结构。 将其添加到每个生物群系的一个基本示例是: | ||
+ | <code java [enable_line_numbers=" | ||
+ | Registry.BIOME.forEach(biome -> { | ||
+ | biome.addFeature(GenerationStep.Feature.RAW_GENERATION, | ||
+ | biome.addStructureFeature(EXAMPLE_FEATURE, | ||
+ | }); | ||
+ | </ | ||
+ | |||
+ | === 完成! === | ||
+ | 如您所见,我们在中心有一个白色正方形,框在边缘之外。 请注意,此屏幕截图中的半径已增加到14,而不是本教程中使用的7。 | ||
+ | {{https:// |