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
|
package at.hannibal2.skyhanni.utils
import at.hannibal2.skyhanni.utils.StringUtils.matchRegex
import at.hannibal2.skyhanni.utils.StringUtils.removeColor
import com.google.gson.GsonBuilder
import com.google.gson.JsonObject
import net.minecraft.client.Minecraft
import net.minecraft.init.Items
import net.minecraft.item.ItemStack
import net.minecraftforge.common.util.Constants
import java.util.*
object ItemUtils {
fun ItemStack.cleanName() = this.displayName.removeColor()
fun isSack(name: String): Boolean =
name.endsWith(" Sack")//TODO use item id or api or something? or dont, its working fine now
fun ItemStack.getLore(): List<String> {
val tagCompound = this.tagCompound ?: return emptyList()
val tagList = tagCompound.getCompoundTag("display").getTagList("Lore", 8)
val list: MutableList<String> = ArrayList()
for (i in 0 until tagList.tagCount()) {
list.add(tagList.getStringTagAt(i))
}
return list
}
fun isCoopSoulBound(stack: ItemStack): Boolean =
stack.getLore().any {
it == "§8§l* §8Co-op Soulbound §8§l*" || it == "§8§l* §8Soulbound §8§l*"
}
fun isSoulBound(stack: ItemStack): Boolean =
stack.getLore().any { it == "§8§l* §8Soulbound §8§l*" }
fun isRecombobulated(stack: ItemStack): Boolean = stack.getLore().any { it.contains("§k") }//TODO use item api
fun isPet(name: String): Boolean = name.matchRegex("\\[Lvl (.*)] (.*)") && !listOf(
"Archer",
"Berserk",
"Mage",
"Tank",
"Healer",
"➡",
).any { name.contains(it) }
fun maxPetLevel(name: String) = if (name.contains("Golden Dragon")) 200 else 100
fun getItemsInInventory(withCursorItem: Boolean = false): List<ItemStack> {
val list: LinkedList<ItemStack> = LinkedList()
val player = Minecraft.getMinecraft().thePlayer
if (player == null) {
LorenzUtils.warning("getItemsInInventoryWithSlots: player is null!")
return list
}
for (slot in player.openContainer.inventorySlots) {
if (slot.hasStack) {
list.add(slot.stack)
}
}
if (withCursorItem) {
if (player.inventory != null) {
if (player.inventory.itemStack != null) {
list.add(player.inventory.itemStack)
}
}
}
return list
}
fun getItemsInInventoryWithSlots(withCursorItem: Boolean = false): Map<ItemStack, Int> {
val map: LinkedHashMap<ItemStack, Int> = LinkedHashMap()
val player = Minecraft.getMinecraft().thePlayer
if (player == null) {
LorenzUtils.warning("getItemsInInventoryWithSlots: player is null!")
return map
}
for (slot in player.openContainer.inventorySlots) {
if (slot.hasStack) {
map[slot.stack] = slot.slotNumber
}
}
if (withCursorItem) {
if (player.inventory != null) {
if (player.inventory.itemStack != null) {
map[player.inventory.itemStack] = -1
}
}
}
return map
}
fun hasAttributes(stack: ItemStack): Boolean {
if (stack.hasTagCompound()) {
val tagCompound = stack.tagCompound
if (tagCompound.hasKey("ExtraAttributes")) {
val extraAttributes = tagCompound.getCompoundTag("ExtraAttributes")
try {
val json = GsonBuilder().create().fromJson(extraAttributes.toString(), JsonObject::class.java)
if (json.has("attributes")) {
return true
}
} catch (_: Exception) {
}
}
}
return false
}
fun ItemStack.getInternalName(): String {
return ItemResolutionQuery()
.withCurrentGuiContext()
.withItemStack(this)
.resolveInternalName() ?: ""
}
fun ItemStack.getSkullTexture(): String? {
if (item != Items.skull) return null
if (tagCompound == null) return null
val nbt = tagCompound
if (!nbt.hasKey("SkullOwner")) return null
return nbt.getCompoundTag("SkullOwner").getCompoundTag("Properties")
.getTagList("textures", Constants.NBT.TAG_COMPOUND).getCompoundTagAt(0).getString("Value")
}
//extra method for shorter name and kotlin nullability logic
var ItemStack.name: String?
get() = this.displayName
set(value) {
setStackDisplayName(value)
}
fun isSkyBlockMenuItem(stack: ItemStack?): Boolean = stack?.getInternalName() == "SKYBLOCK_MENU"
}
|