-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminecraft-text.js
178 lines (152 loc) · 5.69 KB
/
minecraft-text.js
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
// MIT License
// Copyright (c) 2024 Trplnr
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
class MinecraftText extends HTMLElement {
constructor() {
super();
this.defaultStyle = {
color: "white",
bold: false,
italic: false,
underlined: false,
strikethrough: false,
obfuscated: false,
font: "MinecraftSeven",
};
this.lastStyle = { ...this.defaultStyle };
this.attachShadow({ mode: "open" });
this.text = {};
this.currentText = {};
this.obfuscateInterval = null;
this.COLOR_LOOKUP = {
black: "#000000",
dark_blue: "#0000AA",
dark_green: "#00AA00",
dark_aqua: "#00AAAA",
dark_red: "#AA0000",
dark_purple: "#AA00AA",
gold: "#FFAA00",
gray: "#AAAAAA",
dark_gray: "#555555",
blue: "#5555FF",
green: "#55FF55",
aqua: "#55FFFF",
red: "#FF5555",
light_purple: "#FF55FF",
yellow: "#FFFF55",
white: "#FFFFFF",
};
this.fallbackColor = "#000000";
}
updateLastStyles() {
for (let style in this.defaultStyle) {
this.lastStyle[style] =
this.currentText[style] != null
? this.currentText[style]
: this.lastStyle[style];
}
}
applyStyles(element) {
let color = "";
// If the color starts with a '#' signifying that its a hex code but its length isn't 7 then use the fallback color
// If the color is a word but isn't in the color lookup table then use the fallback color
// If the color is a word but and is in the color lookup table then use the color in the lookup table
// If the color is a hex code then use the hex code
if (
(this.lastStyle.color.startsWith("#") &&
this.lastStyle.color.length != 7) ||
(!this.lastStyle.color.startsWith("#") &&
!this.COLOR_LOOKUP.hasOwnProperty(this.lastStyle.color))
)
color = this.fallbackColor;
else if (!this.lastStyle.color.startsWith("#"))
color = this.COLOR_LOOKUP[this.lastStyle.color];
else color = this.lastStyle.color;
element.style.color = color;
element.style.fontWeight = this.lastStyle.bold ? "bold" : "normal";
element.style.fontStyle = this.lastStyle.italic ? "italic" : "normal";
element.style.fontFamily = this.lastStyle.font;
element.style.textDecoration = this.lastStyle.underlined
? `underline ${this.lastStyle.color}`
: "none";
}
parseText(rawText) {
if (rawText == "") return;
if (rawText[0] == "'")
return JSON.parse(rawText.substring(1, rawText.length - 1));
else return JSON.parse(rawText);
}
resolveText(text) {
// [{a}, {b}, {c}] will be converted to {a, extra: [{b}, {c}]}
let temp = {};
if (Array.isArray(text)) {
temp.extra = [];
for (let entry in text[0]) temp[entry] = text[0][entry];
for (let i = 1; i < text.length; i++) {
temp.extra.push(text[i]);
}
} else if (typeof text == "object") temp = { ...text };
this.text = temp;
}
generateRandomString(length) {
const words =
"'\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%^&*()1234567890_-+=`~[]{}:;,.<>/?";
let string = "";
for (let i = 0; i < length; i++)
string += words[Math.floor(Math.random() * words.length)];
return string;
}
obfuscate() {
let obfuscatedElements = this.shadowRoot.querySelectorAll(
"span[is-obfuscated]"
);
if (obfuscatedElements.length == 0) return;
this.obfuscateInterval ??= setInterval(() => this.obfuscate(), 50);
for (let i = 0; i < obfuscatedElements.length; i++) {
obfuscatedElements[i].textContent = this.generateRandomString(
obfuscatedElements[i].textContent.length
);
}
}
display() {
const processText = (text) => {
let span = document.createElement("span");
this.currentText = typeof text == "string" ? text : { ...text };
span.textContent = typeof text == "string" ? this.currentText : this.currentText.text;
this.updateLastStyles();
this.applyStyles(span);
if (this.currentText.obfuscated)
span.setAttribute("is-obfuscated", "true");
this.shadowRoot.appendChild(span);
// Recursively process extras, if they exist
if (this.currentText.extra != null) {
for (let extra of this.currentText.extra) {
processText(extra); // Recursively call processText for each extra
}
}
};
// Start the recursive process with the main text object
processText(this.text);
this.shadowRoot.appendChild(document.createElement("br"));
}
connectedCallback() {
this.resolveText(this.parseText(this.textContent));
this.display();
this.obfuscate();
}
}
customElements.define("minecraft-text", MinecraftText);