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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
|
package at.hannibal2.skyhanni.utils
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.data.hypixel.chat.event.SystemMessageEvent
import at.hannibal2.skyhanni.mixins.transformers.AccessorChatComponentText
import at.hannibal2.skyhanni.utils.GuiRenderUtils.darkenColor
import at.hannibal2.skyhanni.utils.NumberUtil.addSeparators
import at.hannibal2.skyhanni.utils.RegexUtils.findAll
import net.minecraft.client.Minecraft
import net.minecraft.client.gui.GuiUtilRenderComponents
import net.minecraft.event.ClickEvent
import net.minecraft.event.HoverEvent
import net.minecraft.util.ChatComponentText
import net.minecraft.util.ChatStyle
import net.minecraft.util.EnumChatFormatting
import net.minecraft.util.IChatComponent
import java.util.Base64
import java.util.NavigableMap
import java.util.UUID
import java.util.function.Predicate
import java.util.regex.Matcher
import java.util.regex.Pattern
object StringUtils {
private val whiteSpaceResetPattern = "^(?:\\s|§r)*|(?:\\s|§r)*$".toPattern()
private val whiteSpacePattern = "^\\s*|\\s*$".toPattern()
private val resetPattern = "(?i)§R".toPattern()
private val sFormattingPattern = "(?i)§S".toPattern()
private val stringColorPattern = "§[0123456789abcdef].*".toPattern()
private val asciiPattern = "[^\\x00-\\x7F]".toPattern()
private val minecraftColorCodesPattern = "(?i)(§[0-9a-fklmnor])+".toPattern()
fun String.trimWhiteSpaceAndResets(): String = whiteSpaceResetPattern.matcher(this).replaceAll("")
fun String.trimWhiteSpace(): String = whiteSpacePattern.matcher(this).replaceAll("")
fun String.removeResets(): String = resetPattern.matcher(this).replaceAll("")
fun String.removeSFormattingCode(): String = sFormattingPattern.matcher(this).replaceAll("")
fun String.removeNonAscii(): String = asciiPattern.matcher(this).replaceAll("")
fun String.firstLetterUppercase(): String {
if (isEmpty()) return this
val lowercase = lowercase()
val first = lowercase[0].uppercase()
return first + lowercase.substring(1)
}
private val formattingChars = "kmolnrKMOLNR".toSet()
private val colorChars = "abcdefABCDEF0123456789".toSet()
/**
* Removes color and optionally formatting codes from the given string, leaving plain text.
*
* @param keepFormatting Boolean indicating whether to retain non-color formatting codes (default: false).
* @return A string with color codes removed (and optionally formatting codes if specified).
*/
fun CharSequence.removeColor(keepFormatting: Boolean = false): String {
// Glossary:
// Formatting indicator: The '§' character indicating the beginning of a formatting sequence
// Formatting code: The character following a formatting indicator which specifies what color or text style this sequence corresponds to
// Formatting sequence: The combination of a formatting indicator and code that changes the color or format of a string
// Flag for whether there is a text style (non-color and non-reset formatting code) currently being applied
var isFormatted = false
// Find the first formatting indicator
var nextFormattingSequence = indexOf('§')
// If this string does not contain any formatting indicators, just return this string directly
if (nextFormattingSequence < 0) return this.toString()
// Let's create a new string, and pre-allocate enough space to store this entire string
val cleanedString = StringBuilder(this.length)
// Read index stores the position in `this` which we have written up until now
// a/k/a where we need to start reading from
var readIndex = 0
// As long as there still is a formatting indicator left in our string
while (nextFormattingSequence >= 0) {
// Write everything from the read index up to the next formatting indicator into our clean string
cleanedString.append(this, readIndex, nextFormattingSequence)
// Get the formatting code (note: this may not be a valid formatting code)
val formattingCode = this.getOrNull(nextFormattingSequence + 1)
// If the next formatting sequence's code indicates a non-color format and we should keep those
if (keepFormatting && formattingCode in formattingChars) {
// Update formatted flag based on whether this is a reset or a style format code
isFormatted = formattingCode?.lowercaseChar() != 'r'
// Set the readIndex to the formatting indicator, so that the next loop will start writing from that paragraph symbol
readIndex = nextFormattingSequence
// Find the next § symbol after the formatting sequence
nextFormattingSequence = indexOf('§', startIndex = readIndex + 1)
} else {
// If this formatting sequence should be skipped (either a color code, or !keepFormatting or an incomplete formatting sequence without a code)
// If being formatted and color code encountered, reset the current formatting code
if (isFormatted && formattingCode in colorChars) {
cleanedString.append("§r")
isFormatted = false
}
// Set the readIndex to after this formatting sequence, so that the next loop will skip over it before writing the string
readIndex = nextFormattingSequence + 2
// Find the next § symbol after the formatting sequence
nextFormattingSequence = indexOf('§', startIndex = readIndex)
// If the next read would be out of bound, reset the readIndex to the very end of the string, resulting in a "" string to be appended
readIndex = readIndex.coerceAtMost(this.length)
}
}
// Finally, after the last formatting sequence was processed, copy over the last sequence of the string
cleanedString.append(this, readIndex, this.length)
// And turn the string builder into a string
return cleanedString.toString()
}
/**
* From https://stackoverflow.com/questions/10711494/get-values-in-treemap-whose-string-keys-start-with-a-pattern
*/
fun <T> subMapOfStringsStartingWith(prefix: String, map: NavigableMap<String, T>): NavigableMap<String, T> {
if ("" == prefix) return map
val lastKey = nextLexicographicallyStringWithSameLength(prefix)
return map.subMap(prefix, true, lastKey, false)
}
fun nextLexicographicallyStringWithSameLength(input: String): String {
val lastCharPosition = input.length - 1
val inputWithoutLastChar = input.substring(0, lastCharPosition)
val lastChar = input[lastCharPosition]
val incrementedLastChar = (lastChar.code + 1).toChar()
return inputWithoutLastChar + incrementedLastChar
}
fun UUID.toDashlessUUID(): String = toString().replace("-", "")
@Deprecated("Use the new one instead", ReplaceWith("RegexUtils.matchMatcher(text, consumer)"))
inline fun <T> Pattern.matchMatcher(text: String, consumer: Matcher.() -> T) =
matcher(text).let { if (it.matches()) consumer(it) else null }
@Deprecated("Use the new one instead", ReplaceWith("RegexUtils.matchMatcher(text, consumer)"))
inline fun <T> Pattern.findMatcher(text: String, consumer: Matcher.() -> T) =
matcher(text).let { if (it.find()) consumer(it) else null }
@Deprecated("Use the new one instead", ReplaceWith("RegexUtils.matchFirst(pattern, consumer)"))
inline fun <T> Sequence<String>.matchFirst(pattern: Pattern, consumer: Matcher.() -> T): T? =
toList().matchFirst(pattern, consumer)
@Deprecated("Use the new one instead", ReplaceWith("RegexUtils.matchFirst(pattern, consumer)"))
inline fun <T> List<String>.matchFirst(pattern: Pattern, consumer: Matcher.() -> T): T? {
for (line in this) {
pattern.matcher(line).let { if (it.matches()) return consumer(it) }
}
return null
}
@Deprecated("Use the new one instead", ReplaceWith("RegexUtils.matchAll(pattern, consumer)"))
inline fun <T> List<String>.matchAll(pattern: Pattern, consumer: Matcher.() -> T): T? {
for (line in this) {
pattern.matcher(line).let { if (it.find()) consumer(it) }
}
return null
}
private fun String.internalCleanPlayerName(): String {
val split = trim().split(" ")
return if (split.size > 1) {
split[1].removeColor()
} else {
split[0].removeColor()
}
}
fun String.cleanPlayerName(displayName: Boolean = false): String {
return if (displayName) {
if (SkyHanniMod.feature.chat.playerMessage.playerRankHider) {
// TODO custom color
"§b" + internalCleanPlayerName()
} else this
} else {
internalCleanPlayerName()
}
}
@Deprecated("Use the new one instead", ReplaceWith("RegexUtils.matchMatchers(text, consumer)"))
inline fun <T> List<Pattern>.matchMatchers(text: String, consumer: Matcher.() -> T): T? {
for (pattern in iterator()) {
pattern.matchMatcher<T>(text) {
return consumer()
}
}
return null
}
fun getColor(string: String, default: Int, darker: Boolean = true): Int {
val matcher = stringColorPattern.matcher(string)
if (matcher.matches()) {
val colorInt = Minecraft.getMinecraft().fontRendererObj.getColorCode(string[1])
return if (darker) {
colorInt.darkenColor()
} else {
"ff${Integer.toHexString(colorInt)}".toLong(radix = 16).toInt()
}
}
return default
}
fun String.substringBeforeLastOrNull(needle: String): String? {
val index = this.lastIndexOf(needle)
if (index < 0) return null
return this.substring(0, index)
}
fun encodeBase64(input: String) = Base64.getEncoder().encodeToString(input.toByteArray())
fun decodeBase64(input: String) = Base64.getDecoder().decode(input).decodeToString()
fun addFormat(text: String, format: String): String {
if (text.length < 2) return text
val rawText = text.substring(2)
return if (rawText == text.removeColor()) {
val originalColor = text.substring(0, 2)
"$originalColor$format$rawText"
} else {
"$format$text"
}
}
fun String.removeWordsAtEnd(i: Int) = split(" ").dropLast(i).joinToString(" ")
fun String.splitLines(width: Int): String = GuiUtilRenderComponents.splitText(
ChatComponentText(this),
width,
Minecraft.getMinecraft().fontRendererObj,
false,
false,
).joinToString("\n") {
val text = it.formattedText
val formatCode = Regex("(?:§[a-f0-9l-or]|\\s)*")
formatCode.matchAt(text, 0)?.let { matcher ->
val codes = matcher.value.replace("\\s".toRegex(), "")
codes + text.removeRange(matcher.range)
} ?: text
}
/**
* Creates a comma-separated list using natural formatting (a, b, and c).
* @param list - the list of strings to join into a string, containing 0 or more elements.
* @param delimiterColor - the color code of the delimiter, inserted before each delimiter (commas and "and").
* @return a string representing the list joined with the Oxford comma and the word "and".
*/
fun List<String>.createCommaSeparatedList(delimiterColor: String = ""): String {
if (this.isEmpty()) return ""
if (this.size == 1) return this[0]
if (this.size == 2) return "${this[0]}$delimiterColor and ${this[1]}"
val lastIndex = this.size - 1
val allButLast = this.subList(0, lastIndex).joinToString("$delimiterColor, ")
return "$allButLast$delimiterColor, and ${this[lastIndex]}"
}
fun pluralize(number: Int, singular: String, plural: String? = null, withNumber: Boolean = false): String {
val pluralForm = plural ?: "${singular}s"
var str = if (number == 1 || number == -1) singular else pluralForm
if (withNumber) str = "${number.addSeparators()} $str"
return str
}
fun progressBar(percentage: Double, steps: Int = 24): Any {
//'§5§o§2§l§m §l§m §l§m §l§m §l§m §l§m §l§m §l§m §l§m §l§m §f§l§m §l§m §l§m §l§m §l§m §l§m §l§m §l§m §l§m §l§m §l§m §l§m §l§m §l§m §l§m §r §e348,144.3§6/§e936k'
val prefix = "§5§o§2"
val step = "§l§m "
val missing = "§f"
val end = "§r"
val builder = StringBuilder()
var inMissingArea = false
builder.append(prefix)
for (i in 0..steps) {
val toDouble = i.toDouble()
val stepPercentage = toDouble / steps
if (stepPercentage >= percentage && !inMissingArea) {
builder.append(missing)
inMissingArea = true
}
builder.append(step)
}
builder.append(end)
return builder.toString()
}
fun String.capAtMinecraftLength(limit: Int) =
capAtLength(limit) { Minecraft.getMinecraft().fontRendererObj.getCharWidth(it) }
private fun String.capAtLength(limit: Int, lengthJudger: (Char) -> Int): String {
var i = 0
return takeWhile {
i += lengthJudger(it)
i < limit
}
}
// recursively goes through the chat component until an action is completed
fun modifyFirstChatComponent(chatComponent: IChatComponent, action: Predicate<IChatComponent>): Boolean {
if (action.test(chatComponent)) {
return true
}
for (sibling in chatComponent.siblings) {
if (modifyFirstChatComponent(sibling, action)) {
return true
}
}
return false
}
// replaces a word without breaking any chat components
fun replaceFirstChatText(chatComponent: IChatComponent, toReplace: String, replacement: String): IChatComponent {
modifyFirstChatComponent(chatComponent) { component ->
if (component is ChatComponentText) {
component as AccessorChatComponentText
val componentText = component.text_skyhanni()
if (componentText.contains(toReplace)) {
component.setText_skyhanni(componentText.replace(toReplace, replacement))
return@modifyFirstChatComponent true
}
return@modifyFirstChatComponent false
}
return@modifyFirstChatComponent false
}
return chatComponent
}
fun String.getPlayerNameFromChatMessage(): String? = matchPlayerChatMessage(this)?.group("username")
fun String.getPlayerNameAndRankFromChatMessage(): String? = matchPlayerChatMessage(this)?.group("rankedName")
private fun matchPlayerChatMessage(string: String): Matcher? {
var username = ""
var matcher = UtilsPatterns.playerChatPattern.matcher(string)
if (matcher.matches()) {
username = matcher.group("important").removeResets()
}
if (username == "") return null
if (username.contains("[NPC]")) {
return null
}
if (username.contains(">")) {
username = username.substring(username.indexOf('>') + 1).trim()
}
username = username.removePrefix("§dFrom ")
username = username.removePrefix("§dTo ")
matcher = UtilsPatterns.chatUsernamePattern.matcher(username)
return if (matcher.matches()) matcher else null
}
fun String.convertToFormatted(): String = this.replace("&&", "§")
@Deprecated("Use the new one instead", ReplaceWith("RegexUtils.matches(string)"))
fun Pattern.matches(string: String?): Boolean = string?.let { matcher(it).matches() } ?: false
@Deprecated("Use the new one instead", ReplaceWith("RegexUtils.anyMatches(list)"))
fun Pattern.anyMatches(list: List<String>?): Boolean = list?.any { this.matches(it) } ?: false
@Deprecated("Use the new one instead", ReplaceWith("RegexUtils.anyMatches(list)"))
fun Pattern.anyMatches(list: Sequence<String>?): Boolean = anyMatches(list?.toList())
@Deprecated("Use the new one instead", ReplaceWith("RegexUtils.find(string)"))
fun Pattern.find(string: String?) = string?.let { matcher(it).find() } ?: false
fun String.allLettersFirstUppercase() = split("_").joinToString(" ") { it.firstLetterUppercase() }
fun String?.equalsIgnoreColor(string: String?) = this?.let { it.removeColor() == string?.removeColor() } ?: false
fun String.isRoman(): Boolean = UtilsPatterns.isRomanPattern.matches(this)
fun isEmpty(message: String): Boolean = message.removeColor().trimWhiteSpaceAndResets().isEmpty()
fun generateRandomId() = UUID.randomUUID().toString()
fun String.insert(pos: Int, chars: CharSequence): String = this.substring(0, pos) + chars + this.substring(pos)
fun String.insert(pos: Int, char: Char): String = this.substring(0, pos) + char + this.substring(pos)
fun replaceIfNeeded(
original: ChatComponentText,
newText: String,
): ChatComponentText? {
return replaceIfNeeded(original, ChatComponentText(newText))
}
private val colorMap = EnumChatFormatting.entries.associateBy { it.toString()[1] }
fun enumChatFormattingByCode(char: Char): EnumChatFormatting? {
return colorMap[char]
}
fun doLookTheSame(left: IChatComponent, right: IChatComponent): Boolean {
class ChatIterator(var component: IChatComponent) {
var queue = mutableListOf<IChatComponent>()
var idx = 0
var colorOverride = ChatStyle()
fun next(): Pair<Char, ChatStyle>? {
while (true) {
while (idx >= component.unformattedTextForChat.length) {
queue.addAll(0, component.siblings)
colorOverride = ChatStyle()
component = queue.removeFirstOrNull() ?: return null
}
val char = component.unformattedTextForChat[idx++]
if (char == '§' && idx < component.unformattedTextForChat.length) {
val formattingChar = component.unformattedTextForChat[idx++]
val formatting = enumChatFormattingByCode(formattingChar) ?: continue
when (formatting) {
EnumChatFormatting.OBFUSCATED -> {
colorOverride.setObfuscated(true)
}
EnumChatFormatting.BOLD -> {
colorOverride.setBold(true)
}
EnumChatFormatting.STRIKETHROUGH -> {
colorOverride.setStrikethrough(true)
}
EnumChatFormatting.UNDERLINE -> {
colorOverride.setUnderlined(true)
}
EnumChatFormatting.ITALIC -> {
colorOverride.setItalic(true)
}
else -> {
colorOverride = ChatStyle().setColor(formatting)
}
}
} else {
return Pair(char, colorOverride.setParentStyle(component.chatStyle))
}
}
}
}
val leftIt = ChatIterator(left)
val rightIt = ChatIterator(right)
while (true) {
val leftChar = leftIt.next()
val rightChar = rightIt.next()
if (leftChar == null && rightChar == null) return true
if (leftChar != rightChar) return false
}
}
fun <T : IChatComponent> replaceIfNeeded(
original: T,
newText: T,
): T? {
if (doLookTheSame(original, newText)) return null
return newText
}
private fun addComponent(foundCommands: MutableList<IChatComponent>, message: IChatComponent) {
val clickEvent = message.chatStyle.chatClickEvent
if (clickEvent != null) {
if (foundCommands.size == 1 && foundCommands[0].chatStyle.chatClickEvent.value == clickEvent.value) {
return
}
foundCommands.add(message)
}
}
/**
* Applies a transformation on the message of a SystemMessageEvent if possible.
*/
fun SystemMessageEvent.applyIfPossible(transform: (String) -> String) {
val original = chatComponent.formattedText
val new = transform(original)
if (new == original) return
val clickEvents = mutableListOf<ClickEvent>()
val hoverEvents = mutableListOf<HoverEvent>()
chatComponent.findAllEvents(clickEvents, hoverEvents)
if (clickEvents.size > 1 || hoverEvents.size > 1) return
chatComponent = ChatComponentText(new)
if (clickEvents.size == 1) chatComponent.chatStyle.chatClickEvent = clickEvents.first()
if (hoverEvents.size == 1) chatComponent.chatStyle.chatHoverEvent = hoverEvents.first()
}
private fun IChatComponent.findAllEvents(
clickEvents: MutableList<ClickEvent>,
hoverEvents: MutableList<HoverEvent>,
) {
siblings.forEach { it.findAllEvents(clickEvents, hoverEvents) }
val clickEvent = chatStyle.chatClickEvent
val hoverEvent = chatStyle.chatHoverEvent
if (clickEvent?.action != null && clickEvents.none { it.value == clickEvent.value }) {
clickEvents.add(clickEvent)
}
if (hoverEvent?.action != null && hoverEvents.none { it.value == hoverEvent.value }) {
hoverEvents.add(hoverEvent)
}
}
fun String.replaceAll(oldValue: String, newValue: String, ignoreCase: Boolean = false): String {
var text = this
while (true) {
val newText = text.replace(oldValue, newValue, ignoreCase = ignoreCase)
if (newText == text) {
return text
}
text = newText
}
}
/**
* Removes starting and ending reset formattings that don't sever a benefit at all.
*/
fun String.stripHypixelMessage(): String {
var message = this
while (message.startsWith("§r")) {
message = message.substring(2)
}
while (message.endsWith("§r")) {
message = message.substring(0, message.length - 2)
}
return message
}
fun String.applyFormattingFrom(original: ComponentSpan): IChatComponent {
val text = ChatComponentText(this)
text.chatStyle = original.sampleStyleAtStart()
return text
}
fun String.applyFormattingFrom(original: IChatComponent): IChatComponent {
val text = ChatComponentText(this)
text.chatStyle = original.chatStyle
return text
}
fun String.toCleanChatComponent(): IChatComponent = ChatComponentText(this)
fun IChatComponent.cleanPlayerName(displayName: Boolean = false): IChatComponent =
formattedText.cleanPlayerName(displayName).applyFormattingFrom(this)
fun IChatComponent.contains(string: String): Boolean = formattedText.contains(string)
fun String.width(): Int = Minecraft.getMinecraft().fontRendererObj.getStringWidth(this)
fun String.lastColorCode(): String? = minecraftColorCodesPattern.findAll(this).lastOrNull()
}
|