Language.java 3.72 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package emu.grasscutter.utils;

import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import emu.grasscutter.Grasscutter;

import javax.annotation.Nullable;
import java.io.InputStream;
import java.util.HashMap;
import java.util.Map;

public final class Language {
    private final JsonObject languageData;
    private final Map<String, String> cachedTranslations = new HashMap<>();

    /**
     * Creates a language instance from a code.
     * @param langCode The language code.
     * @return A language instance.
     */
    public static Language getLanguage(String langCode) {
22
        return new Language(langCode + ".json", Grasscutter.getConfig().DefaultLanguage.toLanguageTag() + ".json");
23
24
25
26
27
28
29
30
31
    }

    /**
     * Returns the translated value from the key while substituting arguments.
     * @param key The key of the translated value to return.
     * @param args The arguments to substitute.
     * @return A translated value with arguments substituted.
     */
    public static String translate(String key, Object... args) {
KingRainbow44's avatar
KingRainbow44 committed
32
        String translated = Grasscutter.getLanguage().get(key);
33
        
KingRainbow44's avatar
KingRainbow44 committed
34
35
36
37
38
39
        try {
            return translated.formatted(args);
        } catch (Exception exception) {
            Grasscutter.getLogger().error("Failed to format string: " + key, exception);
            return translated;
        }
40
41
    }

Secretboy's avatar
Secretboy committed
42
43
44
45
    /**
     * Reads a file and creates a language instance.
     * @param fileName The name of the language file.
     */
46
    private Language(String fileName, String fallback) {
Secretboy's avatar
Secretboy committed
47
        @Nullable JsonObject languageData = null;
48

49
        InputStream file = Grasscutter.class.getResourceAsStream("/languages/" + fileName);
50
        if (file == null) { // Provided fallback language.
51
            file = Grasscutter.class.getResourceAsStream("/languages/" + fallback);
52
53
54
            Grasscutter.getLogger().warn("Failed to load language file: " + fileName + ", falling back to: " + fallback);
        }
        if(file == null) { // Fallback the fallback language.
55
            file = Grasscutter.class.getResourceAsStream("/languages/en-US.json");
56
57
            Grasscutter.getLogger().warn("Failed to load language file: " + fallback + ", falling back to: en-US.json");
        }
58
59
60
        if(file == null)
            throw new RuntimeException("Unable to load the primary, fallback, and 'en-US' language files.");
        
61
62
63
        try {
            languageData = Grasscutter.getGsonFactory().fromJson(Utils.readFromInputStream(file), JsonObject.class);
        } catch (Exception exception) {
64
            Grasscutter.getLogger().warn("Failed to load language file: " + fileName, exception);
Secretboy's avatar
Secretboy committed
65
        }
66
67
        
        this.languageData = languageData;
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
    }

    /**
     * Returns the value (as a string) from a nested key.
     * @param key The key to look for.
     * @return The value (as a string) from a nested key.
     */
    public String get(String key) {
        if(this.cachedTranslations.containsKey(key)) {
            return this.cachedTranslations.get(key);
        }
        
        String[] keys = key.split("\\.");
        JsonObject object = this.languageData;

        int index = 0;
84
        String result = "This value does not exist. Please report this to the Discord: " + key;
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102

        while (true) {
            if(index == keys.length) break;
            
            String currentKey = keys[index++];
            if(object.has(currentKey)) {
                JsonElement element = object.get(currentKey);
                if(element.isJsonObject())
                    object = element.getAsJsonObject();
                else {
                    result = element.getAsString(); break;
                }
            } else break;
        }
        
        this.cachedTranslations.put(key, result); return result;
    }
}