blob: b3605094a3dd5e352cc61e4970b6a2ea72e2741e (
plain)
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
|
package at.hannibal2.skyhanni.utils
import at.hannibal2.skyhanni.test.command.ErrorManager
class NEUInternalName private constructor(private val internalName: String) {
companion object {
private val map = mutableMapOf<String, NEUInternalName>()
val NONE = "NONE".asInternalName()
val MISSING_ITEM = "MISSING_ITEM".asInternalName()
val WISP_POTION = "WISP_POTION".asInternalName()
val SKYBLOCK_COIN = "SKYBLOCK_COIN".asInternalName()
fun String.asInternalName(): NEUInternalName {
val internalName = uppercase().replace(" ", "_")
return map.getOrPut(internalName) { NEUInternalName(internalName) }
}
fun fromItemNameOrNull(itemName: String): NEUInternalName? =
ItemNameResolver.getInternalNameOrNull(itemName.removeSuffix(" Pet"))
fun fromItemName(itemName: String): NEUInternalName =
fromItemNameOrNull(itemName) ?: ErrorManager.skyHanniError(
"NEUInternalName is null for item name: '$itemName'",
"inventoryName" to InventoryUtils.openInventoryName()
)
}
fun asString() = internalName
override fun equals(other: Any?): Boolean {
if (other is NEUInternalName) {
return internalName == other.internalName
}
return super.equals(other)
}
override fun toString(): String = "internalName:$internalName"
override fun hashCode(): Int = internalName.hashCode()
fun equals(other: String) = internalName == other
fun contains(other: String) = internalName.contains(other)
fun startsWith(other: String) = internalName.startsWith(other)
fun endsWith(other: String) = internalName.endsWith(other)
fun replace(oldValue: String, newValue: String) =
internalName.replace(oldValue.uppercase(), newValue.uppercase()).asInternalName()
}
|