Trtr开发手册

来自Hyacinth
跳转到导航 跳转到搜索


Trtr-Minecraft項目是基於Fabric加載器開發的模組,還需要前置模組Minecraft:Fabric_API/zh。大部分代碼都是基於完全IoC實現的註解編程。

環境

Java的最低版本為Java19,Minecraft的最低版本為1.19.4,Fabric版本最低為0.14.17,Fabric API版本最低為0.75.3+1.19.4。[1]

IoC示例

  主條目:Trtr註解編程

在任意位置(合理的軟體包下)編寫如下代碼,而後直接運行Minecraft,此時不需要自行去註冊這個方塊,Trtr:方塊反射框架會處理好這一切。

以下欄位"IDENTIFIER"和"SETTINGS"必須存在,必須大寫。

@Auto
public class TestBlock extends TrtrBlock {
    @Auto
    public static final Identifier IDENTIFIER = Identifier.of("trtr", "test");
    @Auto
    public static final Settings SETTINGS = FabricBlockSettings.of(Material.STONE, MapColor.GRAY);

    @Auto
    public TestBlock(Settings settings) {
        super(settings);
    }
}

任何被支持的欄位都可以以類似以上的方式被自動處理,而開發者只需要寫更少量的重複代碼。

參考

  1. "gradle.properties at main · cao-awa/the-road-to-reality". 草awa. 2023-03-15. Archived from the original on 2023-03-15. Retrieved 2023-03-16.