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
|
package at.hannibal2.skyhanni.utils
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.mixins.transformers.AccessorChatComponentText
import at.hannibal2.skyhanni.utils.GuiRenderUtils.darkenColor
import at.hannibal2.skyhanni.utils.NumberUtil.addSeparators
import net.minecraft.client.Minecraft
import net.minecraft.client.gui.GuiUtilRenderComponents
import net.minecraft.util.ChatComponentText
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 {
// TODO USE SH-REPO
private val playerChatPattern = "(?<important>.*?)(?:§[f7r])*: .*".toPattern()
private val chatUsernamePattern =
"^(?:§\\w\\[§\\w\\d+§\\w] )?(?:(?:§\\w)+\\S )?(?<rankedName>(?:§\\w\\[\\w.+] )?(?:§\\w)?(?<username>\\w+))(?: (?:§\\w)?\\[.+?])?".toPattern()
private val whiteSpaceResetPattern = "^(?:\\s|§r)*|(?:\\s|§r)*$".toPattern()
private val whiteSpacePattern = "^\\s*|\\s*$".toPattern()
private val resetPattern = "(?i)§R".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.firstLetterUppercase(): String {
if (isEmpty()) return this
val lowercase = lowercase()
val first = lowercase[0].uppercase()
return first + lowercase.substring(1)
}
private val formattingChars by lazy { "kmolnr".toCharArray() + "kmolnr".uppercase().toCharArray() }
/**
* 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 String.removeColor(keepFormatting: Boolean = false): String {
val builder = StringBuilder(this.length)
var counter = 0
while (counter < this.length) {
if (this[counter] == '§') {
if (!keepFormatting || this[counter + 1] !in formattingChars) {
counter += 2
continue
}
}
builder.append(this[counter])
counter++
}
return builder.toString()
}
/**
* From https://stackoverflow.com/questions/10711494/get-values-in-treemap-whose-string-keys-start-with-a-pattern
*/
fun <T> subMapWithKeysThatAreSuffixes(prefix: String, map: NavigableMap<String?, T>): Map<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 {
return toString().replace("-", "")
}
// TODO find better name for this method
inline fun <T> Pattern.matchMatcher(text: String, consumer: Matcher.() -> T) =
matcher(text).let { if (it.matches()) consumer(it) else 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) {
"§b" + internalCleanPlayerName()
} else this
} else {
internalCleanPlayerName()
}
}
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 stringPattern = "§[0123456789abcdef].*".toPattern()
val matcher = stringPattern.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 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 {
val fr = Minecraft.getMinecraft().fontRendererObj
return GuiUtilRenderComponents.splitText(
ChatComponentText(this), width, fr, 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 createCommaSeparatedList(list: List<String>, delimiterColor: String = ""): String {
if (list.isEmpty()) return ""
if (list.size == 1) return list[0]
if (list.size == 2) return "${list[0]}$delimiterColor and ${list[1]}"
val lastIndex = list.size - 1
val allButLast = list.subList(0, lastIndex).joinToString("$delimiterColor, ")
return "$allButLast$delimiterColor, and ${list[lastIndex]}"
}
fun optionalPlural(number: Int, singular: String, plural: String) =
"${number.addSeparators()} " + canBePlural(number, singular, plural)
fun canBePlural(number: Int, singular: String, plural: String) =
if (number == 1) singular else plural
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
if (component.text_skyhanni().contains(toReplace)) {
component.setText_skyhanni(component.text_skyhanni().replace(toReplace, replacement))
return@modifyFirstChatComponent true
}
return@modifyFirstChatComponent false
}
return@modifyFirstChatComponent false
}
return chatComponent
}
fun String.getPlayerNameFromChatMessage(): String? {
val matcher = matchPlayerChatMessage(this) ?: return null
return matcher.group("username")
}
fun String.getPlayerNameAndRankFromChatMessage(): String? {
val matcher = matchPlayerChatMessage(this) ?: return null
return matcher.group("rankedName")
}
private fun matchPlayerChatMessage(string: String): Matcher? {
var username = ""
var matcher = 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 = chatUsernamePattern.matcher(username)
return if (matcher.matches()) matcher else null
}
fun String.convertToFormatted(): String = this.replace("&&", "§")
fun Pattern.matches(string: String) = matcher(string).matches()
fun Pattern.find(string: String) = matcher(string).find()
fun String.allLettersFirstUppercase() = split("_").joinToString(" ") { it.firstLetterUppercase() }
fun String?.equalsIgnoreColor(string: String?) = this?.let { it.removeColor() == string?.removeColor() } ?: false
}
|