fix color
This commit is contained in:
parent
94f38309a2
commit
72dc02951a
1 changed files with 46 additions and 36 deletions
|
@ -14,6 +14,7 @@ function parseCommand(message) {
|
|||
|
||||
function inject(bot) {
|
||||
bot.on('systemChat', (packet) => {
|
||||
//console.log(packet)
|
||||
const jsonmsg = JSON.parse(packet.formattedMessage);
|
||||
const msg = parseMinecraftMessage(packet.formattedMessage);
|
||||
const nocolormsg = parseMinecraftMessageNoColor(packet.formattedMessage);
|
||||
|
@ -28,7 +29,7 @@ bot.on('systemChat', (packet) => {
|
|||
|
||||
bot.on('playerChat', (packet) => {
|
||||
let msg, vmsg;
|
||||
// console.log(packet)
|
||||
//console.log(packet)
|
||||
// other
|
||||
const uuid = packet.sender ? packet.sender : undefined;
|
||||
const plainMessage = packet.plainMessage ? packet.plainMessage : undefined;
|
||||
|
@ -46,10 +47,10 @@ bot.on('playerChat', (packet) => {
|
|||
case 1: // /me text
|
||||
msg = `* ${SenderName} ${formattedMessage}`;
|
||||
break;
|
||||
case 2: // someone tell you text
|
||||
case 2: // someone /tell you text
|
||||
msg = `${SenderName} whispers to you: ${formattedMessage}`;
|
||||
break;
|
||||
case 3: // you tell someone text
|
||||
case 3: // you /tell someone text
|
||||
msg = `You whisper to ${TargetName}: ${formattedMessage}`;
|
||||
break;
|
||||
case 4: // player chat
|
||||
|
@ -73,20 +74,21 @@ bot.on('playerChat', (packet) => {
|
|||
if (vmsg !== undefined) bot.emit('custom_systemChat', vmsg, "", "");
|
||||
});
|
||||
|
||||
const ansiCodes = { // color code
|
||||
const ansiColorCodes = {
|
||||
'§0': '\x1B[30m', '§1': '\x1B[34m', '§2': '\x1B[32m', '§3': '\x1B[36m',
|
||||
'§4': '\x1B[31m', '§5': '\x1B[35m', '§6': '\x1B[33m', '§7': '\x1B[37m',
|
||||
'§8': '\x1B[90m', '§9': '\x1B[94m', '§a': '\x1B[92m', '§b': '\x1B[96m',
|
||||
'§c': '\x1B[91m', '§d': '\x1B[95m', '§e': '\x1B[93m', '§f': '\x1B[97m',
|
||||
'§l': '\x1B[1m', '§o': '\x1B[3m', '§n': '\x1B[4m', '§m': '\x1B[9m',
|
||||
'§k': '\x1B[5m', '§r': '\x1B[0m',
|
||||
'black': '\x1B[30m', 'dark_blue': '\x1B[34m', 'dark_green': '\x1B[32m',
|
||||
'dark_aqua': '\x1B[36m', 'dark_red': '\x1B[31m', 'dark_purple': '\x1B[35m',
|
||||
'gold': '\x1B[33m', 'gray': '\x1B[37m', 'dark_gray': '\x1B[90m', 'blue': '\x1B[94m',
|
||||
'green': '\x1B[92m', 'aqua': '\x1B[96m', 'red': '\x1B[91m', 'light_purple': '\x1B[95m',
|
||||
'yellow': '\x1B[93m', 'white': '\x1B[97m', 'bold': '\x1B[1m', 'italic': '\x1B[3m',
|
||||
'underlined': '\x1B[4m', 'strikethrough': '\x1B[9m', 'obfuscated': '\x1B[5m', 'reset': '\x1B[0m', // Color
|
||||
'undefined': '\x1B[0m'
|
||||
'yellow': '\x1B[93m', 'white': '\x1B[97m'
|
||||
};
|
||||
|
||||
const ansiFormatCodes = {
|
||||
'§l': '\x1B[1m', '§o': '\x1B[3m', '§n': '\x1B[4m', '§m': '\x1B[9m', '§k': '\x1B[5m', '§r': '\x1B[0m',
|
||||
'bold': '\x1B[1m', 'italic': '\x1B[3m', 'underlined': '\x1B[4m', 'strikethrough': '\x1B[9m', 'obfuscated': '\x1B[5m', 'reset': '\x1B[0m',
|
||||
};
|
||||
|
||||
function parseMinecraftMessage(component) {
|
||||
|
@ -99,7 +101,6 @@ function parseMinecraftMessage(component) {
|
|||
|
||||
function extractText(comp) {
|
||||
let text = '';
|
||||
|
||||
if (comp.text) {
|
||||
text += comp.text;
|
||||
}
|
||||
|
@ -109,9 +110,26 @@ function parseMinecraftMessage(component) {
|
|||
if (typeof comp === 'string' || typeof comp === 'number') {
|
||||
text += comp;
|
||||
}
|
||||
if (comp.extra) {
|
||||
|
||||
if (comp.extra) {
|
||||
comp.extra.forEach(subComp => {
|
||||
text += extractText(subComp);
|
||||
if (!comp.color) { // fix color
|
||||
text += extractText(subComp);
|
||||
} else {
|
||||
if (comp.color && ansiColorCodes[comp.color] && !comp.color.startsWith('#')) {
|
||||
text += ansiColorCodes[comp.color] + extractText(subComp) + ansiFormatCodes['reset'];
|
||||
} else if (comp.color && comp.color.startsWith('#')) {
|
||||
const hexRegex = /#?([a-fA-F\d]{2})([a-fA-F\d]{2})([a-fA-F\d]{2})/;
|
||||
const hexCodes = hexRegex.exec(comp.color);
|
||||
if (hexCodes) {
|
||||
const red = parseInt(hexCodes[1], 16);
|
||||
const green = parseInt(hexCodes[2], 16);
|
||||
const blue = parseInt(hexCodes[3], 16);
|
||||
const ansiColor = `\u001b[38;2;${red};${green};${blue}m`;
|
||||
text += ansiColorCodes[comp.color] + extractText(subComp) + ansiFormatCodes['reset'];
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
if (comp.translate) {
|
||||
|
@ -121,16 +139,15 @@ function parseMinecraftMessage(component) {
|
|||
withArgs.forEach((arg, index) => {
|
||||
if (arg.length > 10000) return translateString = ''; // anti tellraw translate crash
|
||||
translateString = translateString.replace('%s', arg);
|
||||
const placeholder = new RegExp(`%${index + 1}\\$s`, 'g');
|
||||
const placeholder = new RegExp(`%${index + 1}\\$s`, 'g'); // create tellraw translate crash
|
||||
translateString = translateString.replace(placeholder, arg);
|
||||
|
||||
});
|
||||
}
|
||||
text += translateString;
|
||||
}
|
||||
|
||||
if (comp.color && ansiCodes[comp.color] && !comp.color.startsWith('#')) {
|
||||
text = ansiCodes[comp.color] + text + ansiCodes['reset'];
|
||||
if (comp.color && ansiColorCodes[comp.color] && !comp.color.startsWith('#')) {
|
||||
text = ansiColorCodes[comp.color] + text + ansiFormatCodes['reset'];
|
||||
} else if (comp.color && comp.color.startsWith('#')) {
|
||||
const hexRegex = /#?([a-fA-F\d]{2})([a-fA-F\d]{2})([a-fA-F\d]{2})/;
|
||||
const hexCodes = hexRegex.exec(comp.color);
|
||||
|
@ -139,33 +156,29 @@ function parseMinecraftMessage(component) {
|
|||
const green = parseInt(hexCodes[2], 16);
|
||||
const blue = parseInt(hexCodes[3], 16);
|
||||
const ansiColor = `\u001b[38;2;${red};${green};${blue}m`;
|
||||
text = ansiColor + text + ansiCodes['reset'];
|
||||
text = ansiColor + text + ansiFormatCodes['reset'];
|
||||
}
|
||||
}
|
||||
|
||||
if (comp.bold && comp.bold === 1) {
|
||||
text = ansiCodes['§l'] + text;
|
||||
}
|
||||
if (comp.italic && comp.italic === 1) {
|
||||
text = ansiCodes['§o'] + text;
|
||||
if (comp.bold && comp.bold === 1) {
|
||||
text = ansiFormatCodes['bold'] + text;
|
||||
} // i dont know why add bold, some color dont show, maybe is my issue or code.
|
||||
if (comp.italic && comp.italic === 1) { // useless
|
||||
text = ansiFormatCodes['italic'] + text;
|
||||
}
|
||||
if (comp.underlined && comp.underlined === 1) {
|
||||
text = ansiCodes['§n'] + text;
|
||||
text = ansiFormatCodes['underlined'] + text;
|
||||
}
|
||||
if (comp.strikethrough && comp.strikethrough === 1) {
|
||||
text = ansiCodes['§m'] + text;
|
||||
if (comp.strikethrough && comp.strikethrough === 1) { // useless
|
||||
text = ansiFormatCodes['strikethrough'] + text;
|
||||
}
|
||||
if (comp.obfuscated && comp.obfuscated === 1) {
|
||||
text = ansiCodes['§k'] + text;
|
||||
if (comp.obfuscated && comp.obfuscated === 1) { // useless
|
||||
text = ansiFormatCodes['obfuscated'] + text;
|
||||
}
|
||||
|
||||
return text;
|
||||
}
|
||||
|
||||
return extractText(jsonComponent) + ansiCodes['reset'];
|
||||
return extractText(jsonComponent) + ansiFormatCodes['reset'];
|
||||
}
|
||||
|
||||
|
||||
function parseMinecraftMessageNoColor(component) {
|
||||
let jsonComponent;
|
||||
try {
|
||||
|
@ -212,9 +225,6 @@ function parseMinecraftMessageNoColor(component) {
|
|||
return extractText(jsonComponent);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
module.exports = inject;
|
Loading…
Reference in a new issue