aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/polyfrost/oneconfig/lwjgl/font/FontManager.java
blob: 20a8cc72db9b2a99707867fd1a9504cc830e47cd (plain)
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
package io.polyfrost.oneconfig.lwjgl.font;

import io.polyfrost.oneconfig.lwjgl.IOUtil;

import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.ArrayList;

import static org.lwjgl.nanovg.NanoVG.nvgCreateFontMem;

public class FontManager {
    public static FontManager INSTANCE = new FontManager();
    private final ArrayList<Font> fonts = new ArrayList<>();

    public void initialize(long vg) {
        fonts.add(new Font("inter-bold", "/assets/oneconfig/font/Inter-Bold.ttf"));
        fonts.add(new Font("mc-regular", "/assets/oneconfig/font/Minecraft-Regular.otf"));
        for (Font font : fonts) {
            int loaded = -1;
            try {
                ByteBuffer buffer = IOUtil.resourceToByteBuffer(font.getFileName());
                loaded = nvgCreateFontMem(vg, font.getName(), buffer, 0);
                font.setBuffer(buffer);
            } catch (IOException e) {
                e.printStackTrace();
            }
            if (loaded == -1) {
                throw new RuntimeException("Failed to initialize font " + font.getName());
            } else {
                font.setLoaded(true);
            }
        }
    }
}