zh_cn:tutorial:primer
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
zh_cn:tutorial:primer [2022/10/22 11:24] – created solidblock | zh_cn:tutorial:primer [2024/08/27 05:03] (current) – [Minecraft 模组编写基础] solidblock | ||
---|---|---|---|
Line 3: | Line 3: | ||
// | // | ||
- | 本文档是给模组编写的初学者使用的,比如还不知道 | + | 本文档是给模组编写的初学者使用的,比如还不知道 |
===== Minecraft 模组编写的前提 ===== | ===== Minecraft 模组编写的前提 ===== | ||
- | - 你必须知道代码编写的基础。如果你从没接触过代码,你应该先知道如何使用代码。这里所说的基础,包括变量、函数、类和方法等,以及一些面向对象的概念,如继承、多态、类型强转。要是不知道,先搜索。 | + | * 你必须知道代码编写的基础。如果你从没接触过代码,你应该先知道如何使用代码。这里所说的基础,包括变量、函数、类和方法等,以及一些面向对象的概念,如继承、多态、类型强转。要是不知道,先搜索。 |
- | - 你应该要有一些编程语言的经验,例如 Java、C、C++ 和 C#。Java 的语法和 C 系列的比较类似。 | + | |
- | - 熟悉 Java 的语法,例如 lambda 方法、泛型(你应该知道这些是什么),以及一些语法糖,这些语法应该会在学习的时候一并遇到。 | + | |
- | - 你必须知道如何使用 Internet 查找问题与答案,以及如何在网络论坛或者群里提问求助。 | + | |
===== 模组编写是什么? ===== | ===== 模组编写是什么? ===== | ||
Line 26: | Line 26: | ||
* **Fabric Installer**-- 将 Fabric Loader 安装到最终用户的 Minecraft 安装的工具。 | * **Fabric Installer**-- 将 Fabric Loader 安装到最终用户的 Minecraft 安装的工具。 | ||
- | To more easily understand what is going on in Minecraft's code, when you mod with Fabric, you will also have access to Minecraft's source code. Since Java is a compiled language, we need to decompile the code before it can be read. This turns it from Java bytecode into human-readable | + | 为了更好的理解 |
- | * the **intermediary** | + | * **intermediary **映射器是一个程序,它将会给予 |
- | * **yarn** is the final step in the deobfuscation process. | + | * **Yarn** 是反混淆过程中的最后一步。Yarn 是一个自由的、开源的社区驱动的 |
- | Not everything in the Minecraft | + | 但是,在反编译的 |
===== 代码结构 ===== | ===== 代码结构 ===== | ||
- | Minecraft: Java Edition is a huge project, with years and years of code built on top of each other. It can seem chaotic (because it is), but there are a few key concepts that are (mostly) consistent across the board. | + | Minecraft Java 版是一个巨大的项目,多年来的代码都是建立在彼此之上的。它可能看起来很混乱(因为它就是的),但有几个关键的概念是(大部分)一致的,贯穿始终。 |
- | === 注册表 === | + | ==== 注册表 |
- | Most " | + | 很多游戏中的(方块、物品、UI、实体、区块生成器等的)“特性”(你想添加的)在游戏被加载时候将会被加载进注册表。比如,每一个'' |
- | === 端 === | + | ==== 端 ==== |
- | Minecraft's processing is split between two threads, commonly called | + | Minecraft |
- | The client and server must agree on certain things: what blocks are in the world, what is inside chests, player position, etc. Since these are handled by the server, it dictates to the client what these values should be, and the client displays them to the person playing the game. Anything handled by the client does not have to be told to the server at all-- this includes what blocks and entities look like (resource packs), and how to draw the world (shaders). This is the distinction between clientside mods (like shaders), serverside mods (like those that run minigames), and both-sided mods (those that add things like machines or new blocks and items). | + | |
- | It is important to not call client-only code (i.e., relating to rendering) on the server, and server-only code on the client. This is the purpose of the ubiquitous | + | |
===== 下一步 ===== | ===== 下一步 ===== | ||
- | Once you've achieved the prerequisites and have read this document, it's time to get started! Check out the [[introduction]] | + | 一旦你达到了先决条件并阅读了本文档,就可以开始了!查看 |
zh_cn/tutorial/primer.1666437891.txt.gz · Last modified: 2022/10/22 11:24 by solidblock