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
|
export const colorCodes: { [key: string]: string } = {
'0': '#000000', // black
'1': '#0000be', // blue
'2': '#00be00', // green
'3': '#00bebe', // cyan
'4': '#be0000', // red
'5': '#be00be', // magenta
'6': '#ffaa00', // gold
'7': '#bebebe', // light gray
'8': '#3f3f3f', // dark gray
'9': '#3f3ffe', // light blue
'a': '#3ffe3f', // light green
'b': '#3ffefe', // light cyan
'c': '#fe3f3f', // light red
'd': '#fe3ffe', // light magenta
'e': '#fefe3f', // yellow
'f': '#ffffff', // white
}
const specialCodes: { [key: string]: string } = {
'l': 'font-weight: bold'
}
const colorCodeCharacter = '§'
export function formattingCodeToHtml(formatted: string): string {
let htmlOutput = ''
// we store the hex code, not the formatting code
let currentColor = null
// we store the css code, not the formatting code
const activeSpecialCodes: string[] = []
function reset() {
if (currentColor) {
htmlOutput += '</span>'
currentColor = null
}
while (activeSpecialCodes.pop()) {
htmlOutput += '</span>'
}
}
while (formatted.length > 0) {
const character = formatted[0]
formatted = formatted.slice(1)
// if it encounters § (or whatever colorCodeCharacter is), then read the next character
if (character === colorCodeCharacter) {
const colorCharacter = formatted[0]
formatted = formatted.slice(1)
if (colorCodes[colorCharacter]) {
if (currentColor !== colorCodes[colorCharacter]) { // make sure the color is different than the active one
// if there's already a color, close that tag
if (currentColor) htmlOutput += '</span>'
currentColor = colorCodes[colorCharacter]
htmlOutput += `<span style="color: ${currentColor}">`
}
} else if (specialCodes[colorCharacter]) {
if (!activeSpecialCodes.includes(specialCodes[colorCharacter])) {
activeSpecialCodes.push(specialCodes[colorCharacter])
htmlOutput += `<span style="${specialCodes[colorCharacter]}">`
}
} else if (colorCharacter === 'r') {
reset()
}
} else {
htmlOutput += character
}
}
reset()
return htmlOutput
}
export function removeFormattingCode(formatted: string): string {
return formatted.replace(new RegExp(colorCodeCharacter + '.', 'g'), '')
}
function moveStringToEnd(word: string, thing: string) {
if (thing.startsWith(`${word}_`))
thing = thing.substr(`${word}_`.length) + `_${word}`
return thing
}
function millisecondsToTime(totalMilliseconds: number) {
const totalSeconds = totalMilliseconds / 1000
const totalMinutes = totalSeconds / 60
const totalHours = totalMinutes / 60
const totalDays = totalHours / 24
const milliseconds = Math.floor(totalMilliseconds) % 1000
const seconds = Math.floor(totalSeconds) % 60
const minutes = Math.floor(totalMinutes) % 60
const hours = Math.floor(totalHours) % 24
const days = Math.floor(totalDays)
const stringUnits: string[] = []
if (days > 1) stringUnits.push(`${days} days`)
else if (days == 1) stringUnits.push(`${days} day`)
if (hours > 1) stringUnits.push(`${hours} hours`)
else if (hours == 1) stringUnits.push(`${hours} hour`)
if (minutes > 1) stringUnits.push(`${minutes} minutes`)
else if (minutes == 1) stringUnits.push(`${minutes} minute`)
if (seconds > 1) stringUnits.push(`${seconds} seconds`)
else if (seconds == 1) stringUnits.push(`${seconds} second`)
if (milliseconds > 1) stringUnits.push(`${milliseconds} milliseconds`)
else if (milliseconds == 1) stringUnits.push(`${milliseconds} millisecond`)
return stringUnits.slice(0, 2).join(' and ')
}
export function cleanNumber(number: number, unit?: string): string {
switch (unit) {
case 'time':
return millisecondsToTime(number)
case 'date':
return (new Date(number * 1000)).toUTCString()
}
return number.toLocaleString() + (unit ? (' ' + unit) : '')
}
export function clean(thing: string | number) {
if (typeof thing === 'number') {
return cleanNumber(thing)
} else {
for (const string of ['deaths', 'kills', 'collection', 'skill'])
thing = moveStringToEnd(string, thing)
return thing
.replace(/^./, thing[0].toUpperCase())
.replace(/_/g, ' ')
}
}
export function toRomanNumerals(number: number) {
return ['', 'I', 'II', 'III', 'IV', 'V', 'VI', 'VII', 'VIII', 'IX', 'X', 'XI', 'XII', 'XIII', 'XIV', 'XV', 'XVI', 'XVII', 'XVIII', 'XIX', 'XX'][number]
}
export function shuffle<T>(a: T[]): T[] {
for (let i = a.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1))
;[a[i], a[j]] = [a[j], a[i]]
}
return a
}
|