MCIO Plugins MCIO Plugins
首页
爱发电 (opens new window)
无法下载? (opens new window)

人间工作P

我每天都好困… 最近在学习和进行 VOCALOID 创作
首页
爱发电 (opens new window)
无法下载? (opens new window)
  • PluginBase

  • Item-NBT-API

  • VectorDisplays

    • VectorDisplays 简介
    • 内嵌依赖
      • 添加依赖
      • 悬浮字管理
      • TextRenderer 移植
    • 控件定位
  • 开发文档
  • VectorDisplays
2025-09-22
目录

内嵌依赖

对于想要将 VectorDisplays 嵌入到自己的插件中的开发者,可以按这篇文档进行操作。

注意

如果要将 VectorDisplays 嵌入你的项目中,请在你的项目介绍中声明使用 VectorDisplays,以支持我的工作,谢谢!

示例

本插件由 VectorDisplays (opens new window) 强力驱动!

# 添加依赖

需要先添加依赖(自行替换 $VERSION 为版本号 (opens new window))

// build.gradle(.kts)
repositories {
    mavenCentral()
    maven("https://repo.codemc.io/repository/maven-releases/")
    maven("https://jitpack.io")
}
dependencies {
    compileOnly("net.kyori:adventure-platform-bukkit:4.4.1")
    compileOnly("net.kyori:adventure-text-serializer-plain:4.23.0")
    compileOnly("net.kyori:adventure-text-minimessage:4.23.0")

    implementation("top.mrxiaom.hologram:VectorDisplays-API:$VERSION") // 自行替换版本号
    implementation("com.github.Tofaa2.EntityLib:spigot:2.4.11")
    // packetevents 可选不打包,可以让用户自行添加前置插件
    //implementation("com.github.retrooper:packetevents-spigot:2.9.5")
}
tasks {
    shadowJar {
        // 配置 relocation
        val target = "path.to.your.group"
        relocate("top.mrxiaom.hologram.vector.displays", "${target}.libs.displays")
        relocate("me.tofaa.entitylib", "${target}.libs.entitylib")
        // packetevents 可选不打包,可以让用户自行添加前置插件
        //relocate("com.github.retrooper.packetevents", "${target}.libs.packetevents.api")
        //relocate("io.github.retrooper.packetevents", "${target}.libs.packetevents.impl")
    }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# plugin.yml
# ...添加自动下载依赖声明
libraries:
  - "net.kyori:adventure-platform-bukkit:4.4.1"
  - "net.kyori:adventure-text-serializer-plain:4.23.0"
  - "net.kyori:adventure-text-minimessage:4.23.0"
1
2
3
4
5
6

# 悬浮字管理

在插件主类添加以下内容

public class ExamplePlugin extends JavaPlugin {
    // 暂不支持多实例,请勿创建多个实例
    private final TerminalManager terminalManager;
    public ExamplePlugin() {
        this.terminalManager = new PluginWrapper(this)
                // 可选,可自行实现 FoliaScheduler 替换上去
                .setScheduler(new BukkitScheduler(this))
                .createTerminalManager();
    }
    @Override
    public void onLoad() {
        this.terminalManager.onLoad();
    }
    
    public void onEnable() {
        // 最好在读取配置文件之前执行
        this.terminalManager.onEnable();
    }
    
    public void onDisable() {
        this.terminalManager.onEnable();
    }
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

在插件启用时,将 TextRenderer 传入 HologramFont 里面:

ServerFontManager fontManager;
void onEnable() {
    // ...
    this.fontManager = new ServerFontManager(this);
    HologramFont.setTextRenderer(fontManager.getTextRenderer());
    // 如果有需要,最好在重载配置时,把 charScale 也设置一下,默认值不一定准确
    FileConfiguration config = getConfig();
    String scaleSample = config.getString("font-char-scale.sample-char", " ");
    double sampleCount = config.getDouble("font-char-scale.location-scale", 9.7407407407407407);
    HologramFont.setCharScale(scaleSample, sampleCount);
}
1
2
3
4
5
6
7
8
9
10
11

对于创建 TextRenderer 的方法,详见下文。

# TextRenderer 移植

这是从 Minecraft 客户端移植过来的部分 TextRenderer 功能,主要用于处理文本长度。
例如 getWidth、wrapLines 等等,以便精确计算文本框对齐、自动换行等。

以下示例简单编写管理类进行对接。

import net.kyori.adventure.text.Component;
import net.kyori.adventure.text.serializer.plain.PlainTextComponentSerializer;
import org.bukkit.plugin.java.JavaPlugin;
import top.mrxiaom.hologram.vector.displays.minecraft.font.FontManager;
import top.mrxiaom.hologram.vector.displays.minecraft.font.api.Font;
import top.mrxiaom.hologram.vector.displays.minecraft.font.api.IFontManager;
import top.mrxiaom.hologram.vector.displays.minecraft.font.api.ITextRenderer;
import top.mrxiaom.hologram.vector.displays.minecraft.nms.NMS;
import top.mrxiaom.hologram.vector.displays.minecraft.nms.NMSFactory;

import java.io.InputStream;
import java.util.logging.Level;

public class ServerFontManager {
    private static final PlainTextComponentSerializer plainText = PlainTextComponentSerializer.plainText();
    private final JavaPlugin plugin;
    private final IFontManager manager;
    private final ITextRenderer textRenderer;
    public ServerFontManager(JavaPlugin plugin) {
        this.plugin = plugin;
        NMSFactory factory = NMS.getFactory(); // 如果当前服务端版本不受支持,这里会报错 IllegalStateException
        this.manager = new FontManager(factory);
        this.textRenderer = this.manager.createTextRenderer();
        this.reload();
    }

    public void reload() {
        try {
            // 加载字体文件 font.json (这个资源文件已经在 API 里面了)
            InputStream resource = plugin.getResource("font.json");
            if (resource == null) {
                throw new IllegalStateException("找不到资源文件 font.json");
            }
            // manager.reload 支持传入 File,如有需要可以加载本地文件
            manager.reload(resource);
        } catch (Throwable t) {
            plugin.getLogger().log(Level.WARNING, "重载字体时出现异常", t);
        }
        for (Font font : manager.getFonts()) {
            plugin.getLogger().info("已加载字体: " + font.getKey());
        }
    }
    /**
     * 获取文本宽度
     * @param text 文本
     */
    public double getWidth(String text) {
        int max = 0; // 找出最长的一行的文本宽度
        for (String s : text.split("\n")) {
            int width = textRenderer.getWidth(s);
            if (width > max) max = width;
        }
        return max;
    }

    /**
     * 获取文本宽度
     * @param text 文本
     */
    public double getWidth(Component text) {
        int max = 0; // 找出最长的一行的文本宽度
        for (String s : plainText.serialize(text).split("\n")) {
            int width = textRenderer.getWidth(s);
            if (width > max) max = width;
        }
        return max;
    }

    public ITextRenderer getTextRenderer() {
        return textRenderer;
    }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
上次更新: 2025/10/15, 10:58:27
VectorDisplays 简介
控件定位

← VectorDisplays 简介 控件定位→

Theme fork from Vdoing | Copyright © 2018-2025 人间工作P | 到爱发电支持我

除非特别说明,本站点所有文章均以 CC BY-SA 协议授权

《我的世界》和《Minecraft》是微软公司和 Mojang Synergies AB 的商标,本站点与微软公司等没有从属关系。

  • 跟随系统
  • 浅色模式
  • 深色模式
  • 阅读模式