mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 10:44:55 -05:00
147 lines
3.4 KiB
JavaScript
147 lines
3.4 KiB
JavaScript
/* eslint-disable max-len */
|
|
const {language} = require('minecraft-data')('1.16.1');
|
|
|
|
const colormap = {
|
|
black: '§0',
|
|
dark_blue: '§1',
|
|
dark_green: '§2',
|
|
dark_aqua: '§3',
|
|
dark_red: '§4',
|
|
dark_purple: '§5',
|
|
gold: '§6',
|
|
gray: '§7',
|
|
dark_gray: '§8',
|
|
blue: '§9',
|
|
green: '§a',
|
|
aqua: '§b',
|
|
red: '§c',
|
|
light_purple: '§d',
|
|
yellow: '§e',
|
|
white: '§f',
|
|
reset: '§r',
|
|
};
|
|
|
|
const ansimap = {
|
|
'§0': '\x1b[0m\x1b[30m',
|
|
'§1': '\x1b[0m\x1b[34m',
|
|
'§2': '\x1b[0m\x1b[32m',
|
|
'§3': '\x1b[0m\x1b[36m',
|
|
'§4': '\x1b[0m\x1b[31m',
|
|
'§5': '\x1b[0m\x1b[35m',
|
|
'§6': '\x1b[0m\x1b[33m',
|
|
'§7': '\x1b[0m\x1b[37m',
|
|
'§8': '\x1b[0m\x1b[90m',
|
|
'§9': '\x1b[0m\x1b[94m',
|
|
'§a': '\x1b[0m\x1b[92m',
|
|
'§b': '\x1b[0m\x1b[96m',
|
|
'§c': '\x1b[0m\x1b[91m',
|
|
'§d': '\x1b[0m\x1b[95m',
|
|
'§e': '\x1b[0m\x1b[93m',
|
|
'§f': '\x1b[0m\x1b[97m',
|
|
'§r': '\x1b[0m',
|
|
'§l': '\x1b[1m',
|
|
'§o': '\x1b[3m',
|
|
'§n': '\x1b[4m',
|
|
'§m': '\x1b[9m',
|
|
'§k': '\x1b[6m',
|
|
};
|
|
|
|
/**
|
|
* Parses a native minecraft text component in string form.
|
|
* @param {string} string - A text component string, such as the chat packet's "message" property.
|
|
* @return {object} Parsed message in { raw, clean, ansi } form.
|
|
*/
|
|
function parseText(string) {
|
|
const json = JSON.parse(string);
|
|
|
|
let raw = parseJson(json, {color: 'reset'});
|
|
if (raw.startsWith('§r')) {
|
|
raw = raw.substring(2);
|
|
}
|
|
const clean = raw.replace(/§.?/g, '');
|
|
const ansi = raw.replace(/§.?/g, (m) => ansimap[m] || '');
|
|
|
|
return {raw, clean, ansi};
|
|
}
|
|
|
|
/**
|
|
* Parses a native minecraft text component in JSON form.
|
|
* @param {object} json - The json message.
|
|
* @param {object} parent - The parent json.
|
|
* @return {string} The parsed raw string.
|
|
*/
|
|
function parseJson(json, parent) {
|
|
if (typeof json === 'string') json = {text: json};
|
|
|
|
json.color ??= parent.color;
|
|
json.bold ??= parent.bold;
|
|
json.italic ??= parent.italic;
|
|
json.underlined ??= parent.underlined;
|
|
json.strikethrough ??= parent.strikethrough;
|
|
json.obfuscated ??= parent.obfuscated;
|
|
|
|
let raw = '';
|
|
let formatting = '';
|
|
|
|
raw += colormap[json.color] ?? '';
|
|
|
|
if (json.bold) {
|
|
formatting += '§l';
|
|
}
|
|
if (json.italic) {
|
|
formatting += '§o';
|
|
}
|
|
if (json.underlined) {
|
|
formatting += '§n';
|
|
}
|
|
if (json.strikethrough) {
|
|
formatting += '§m';
|
|
}
|
|
if (json.obfuscated) {
|
|
formatting += '§k';
|
|
}
|
|
raw += formatting;
|
|
|
|
if (json.text) {
|
|
raw += json.text;
|
|
} else if (json.translate) { // I checked with the native minecraft code. This is how Minecraft does the matching and group indexing. -hhhzzzsss
|
|
if (language[json.translate]) {
|
|
const _with = json.with ?? [];
|
|
let i = 0;
|
|
|
|
raw += language[json.translate].replace(/%(?:(\d+)\$)?(s|%)/g, (g0, g1) => {
|
|
if (g0 === '%%') {
|
|
return '%';
|
|
} else {
|
|
const idx = g1 ? parseInt(g1) : i++;
|
|
if (_with[idx]) {
|
|
return parseJson(_with[idx], json) + formatting;
|
|
} else {
|
|
return '';
|
|
}
|
|
}
|
|
});
|
|
} else {
|
|
raw += json.translate;
|
|
}
|
|
} else if (json.selector) {
|
|
raw += json.selector;
|
|
} else if (json.keybind) {
|
|
raw += json.keybind;
|
|
}
|
|
|
|
// Remove trailing section signs
|
|
let end = raw.length;
|
|
while (raw[end - 1] === '§') end--;
|
|
raw = raw.substring(0, end);
|
|
|
|
if (json.extra) {
|
|
json.extra.forEach((extra) => {
|
|
raw += parseJson(extra, json);
|
|
});
|
|
}
|
|
|
|
return raw;
|
|
}
|
|
|
|
module.exports = parseText;
|