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
|
package at.hannibal2.skyhanni.utils
import at.hannibal2.skyhanni.config.ConfigManager
import at.hannibal2.skyhanni.test.command.CopyErrorCommand
import at.hannibal2.skyhanni.utils.ItemBlink.checkBlinkItem
import at.hannibal2.skyhanni.utils.ItemUtils.getInternalName
import at.hannibal2.skyhanni.utils.NumberUtil.romanToDecimal
import at.hannibal2.skyhanni.utils.StringUtils.matchMatcher
import at.hannibal2.skyhanni.utils.StringUtils.removeColor
import com.google.gson.JsonObject
import com.google.gson.JsonPrimitive
import io.github.moulberry.notenoughupdates.NEUManager
import io.github.moulberry.notenoughupdates.NEUOverlay
import io.github.moulberry.notenoughupdates.NotEnoughUpdates
import io.github.moulberry.notenoughupdates.overlays.AuctionSearchOverlay
import io.github.moulberry.notenoughupdates.overlays.BazaarSearchOverlay
import io.github.moulberry.notenoughupdates.recipes.CraftingRecipe
import io.github.moulberry.notenoughupdates.recipes.NeuRecipe
import io.github.moulberry.notenoughupdates.util.ItemResolutionQuery
import io.github.moulberry.notenoughupdates.util.Utils
import net.minecraft.client.Minecraft
import net.minecraft.client.renderer.GlStateManager
import net.minecraft.client.renderer.RenderHelper
import net.minecraft.init.Blocks
import net.minecraft.init.Items
import net.minecraft.item.ItemStack
import net.minecraft.nbt.NBTTagCompound
import java.util.regex.Pattern
object NEUItems {
val manager: NEUManager get() = NotEnoughUpdates.INSTANCE.manager
private val itemNameCache = mutableMapOf<String, String>() // item name -> internal name
private val multiplierCache = mutableMapOf<String, Pair<String, Int>>()
private val recipesCache = mutableMapOf<String, Set<NeuRecipe>>()
private val enchantmentNamePattern = Pattern.compile("^(?<format>(?:§.)+)(?<name>[^§]+) (?<level>[IVXL]+)$")
var allItemsCache = mapOf<String, String>() // item name -> internal name
var allInternalNames = mutableListOf<String>()
private val fallbackItem by lazy {
Utils.createItemStack(
ItemStack(Blocks.barrier).item,
"§cMissing Repo Item",
"§cYour NEU repo seems to be out of date"
)
}
fun getInternalName(itemName: String): String {
return getInternalNameOrNull(itemName) ?: throw Error("getInternalName is null for '$itemName'")
}
fun getInternalNameOrNullIgnoreCase(itemName: String): String? {
val lowercase = itemName.removeColor().lowercase()
if (itemNameCache.containsKey(lowercase)) {
return itemNameCache[lowercase]!!
}
if (allItemsCache.isEmpty()) {
allItemsCache = readAllNeuItems()
}
allItemsCache[lowercase]?.let {
itemNameCache[lowercase] = it
return it
}
return null
}
fun readAllNeuItems(): Map<String, String> {
allInternalNames.clear()
val map = mutableMapOf<String, String>()
for (internalName in manager.itemInformation.keys) {
val name = manager.createItem(internalName).displayName.removeColor().lowercase()
map[name] = internalName
allInternalNames.add(internalName)
}
return map
}
fun getInternalNameOrNull(itemName: String): String? {
val lowercase = itemName.lowercase()
if (itemNameCache.containsKey(lowercase)) {
return itemNameCache[lowercase]!!
}
if (itemName == "§cmissing repo item") {
itemNameCache[lowercase] = "MISSING_ITEM"
return "MISSING_ITEM"
}
resolveEnchantmentByName(itemName)?.let {
val enchantmentName = fixEnchantmentName(it)
itemNameCache[itemName] = enchantmentName
return enchantmentName
}
var internalName = ItemResolutionQuery.findInternalNameByDisplayName(itemName, false) ?: return null
// This fixes a NEU bug with §9Hay Bale (cosmetic item)
// TODO remove workaround when this is fixed in neu
if (internalName == "HAY_BALE") {
internalName = "HAY_BLOCK"
}
itemNameCache[lowercase] = internalName
return internalName
}
private fun fixEnchantmentName(originalName: String): String {
// Workaround for duplex
"ULTIMATE_DUPLEX;(?<tier>.*)".toPattern().matchMatcher(originalName) {
val tier = group("tier")
return "ULTIMATE_REITERATE;$tier"
}
return originalName
}
private fun turboCheck(text: String): String {
if (text == "Turbo-Cocoa") return "Turbo-Coco"
if (text == "Turbo-Cacti") return "Turbo-Cactus"
return text
}
fun getInternalName(itemStack: ItemStack) = ItemResolutionQuery(manager)
.withCurrentGuiContext()
.withItemStack(itemStack)
.resolveInternalName() ?: ""
fun getInternalNameOrNull(nbt: NBTTagCompound) =
ItemResolutionQuery(manager).withItemNBT(nbt).resolveInternalName()
fun getPriceOrNull(internalName: String, useSellingPrice: Boolean = false): Double? {
val price = getPrice(internalName, useSellingPrice)
if (price == -1.0) {
return null
}
return price
}
fun getPrice(internalName: String): Double {
if (internalName == "WISP_POTION") {
return 20_000.0
}
return getPrice(internalName, false)
}
fun transHypixelNameToInternalName(hypixelId: String): String =
manager.auctionManager.transformHypixelBazaarToNEUItemId(hypixelId)
fun getPrice(internalName: String, useSellingPrice: Boolean): Double {
val result = manager.auctionManager.getBazaarOrBin(internalName, useSellingPrice)
if (result == -1.0) {
if (internalName == "JACK_O_LANTERN") {
return getPrice("PUMPKIN", useSellingPrice) + 1
}
if (internalName == "GOLDEN_CARROT") {
// 6.8 for some players
return 7.0 // NPC price
}
}
return result
}
fun getItemStackOrNull(internalName: String) = ItemResolutionQuery(manager)
.withKnownInternalName(internalName)
.resolveToItemStack()?.copy()
fun getItemStack(internalName: String, definite: Boolean = false): ItemStack = getItemStackOrNull(internalName) ?: run {
if (definite) {
Utils.showOutdatedRepoNotification()
}
CopyErrorCommand.logError(
IllegalStateException("Something went wrong!"),
"Encountered an error getting the item for §7$internalName§c. " +
"This may be because your NEU repo is outdated. Please ask in the SkyHanni " +
"Discord if this is the case"
)
fallbackItem
}
fun isVanillaItem(item: ItemStack) = manager.auctionManager.isVanillaItem(item.getInternalName())
fun ItemStack.renderOnScreen(x: Float, y: Float, scaleMultiplier: Double = 1.0) {
val item = checkBlinkItem()
val isSkull = item.item === Items.skull
val baseScale = (if (isSkull) 0.8f else 0.6f)
val finalScale = baseScale * scaleMultiplier
val diff = ((finalScale - baseScale) * 10).toFloat()
val translateX: Float
val translateY: Float
if (isSkull) {
translateX = x - 2 - diff
translateY = y - 2 - diff
} else {
translateX = x - diff
translateY = y - diff
}
GlStateManager.pushMatrix()
GlStateManager.translate(translateX, translateY, 1F)
GlStateManager.scale(finalScale, finalScale, 1.0)
RenderHelper.enableGUIStandardItemLighting()
Minecraft.getMinecraft().renderItem.renderItemIntoGUI(item, 0, 0)
RenderHelper.disableStandardItemLighting()
GlStateManager.popMatrix()
}
fun getMultiplier(internalName: String, tryCount: Int = 0): Pair<String, Int> {
if (multiplierCache.contains(internalName)) {
return multiplierCache[internalName]!!
}
if (tryCount == 10) {
val message = "Error reading getMultiplier for item '$internalName'"
Error(message).printStackTrace()
LorenzUtils.error(message)
return Pair(internalName, 1)
}
for (recipe in getRecipes(internalName)) {
if (recipe !is CraftingRecipe) continue
val map = mutableMapOf<String, Int>()
for (ingredient in recipe.ingredients) {
val count = ingredient.count.toInt()
var internalItemId = ingredient.internalItemId
// ignore cactus green
if (internalName == "ENCHANTED_CACTUS_GREEN") {
if (internalItemId == "INK_SACK-2") {
internalItemId = "CACTUS"
}
}
// ignore wheat in enchanted cookie
if (internalName == "ENCHANTED_COOKIE") {
if (internalItemId == "WHEAT") {
continue
}
}
// ignore golden carrot in enchanted golden carrot
if (internalName == "ENCHANTED_GOLDEN_CARROT") {
if (internalItemId == "GOLDEN_CARROT") {
continue
}
}
// ignore rabbit hide in leather
if (internalName == "LEATHER") {
if (internalItemId == "RABBIT_HIDE") {
continue
}
}
// println("")
// println("rawId: $rawId")
// println("internalItemId: $internalItemId")
val old = map.getOrDefault(internalItemId, 0)
map[internalItemId] = old + count
}
if (map.size != 1) continue
val current = map.iterator().next().toPair()
val id = current.first
return if (current.second > 1) {
val child = getMultiplier(id, tryCount + 1)
val result = Pair(child.first, child.second * current.second)
multiplierCache[internalName] = result
result
} else {
Pair(internalName, 1)
}
}
val result = Pair(internalName, 1)
multiplierCache[internalName] = result
return result
}
fun getRecipes(minionId: String): Set<NeuRecipe> {
if (recipesCache.contains(minionId)) {
return recipesCache[minionId]!!
}
val recipes = manager.getRecipesFor(minionId)
recipesCache[minionId] = recipes
return recipes
}
fun neuHasFocus(): Boolean {
if (AuctionSearchOverlay.shouldReplace()) return true
if (BazaarSearchOverlay.shouldReplace()) return true
if (InventoryUtils.inStorage()) return true
if (NEUOverlay.searchBarHasFocus) return true
return false
}
// Taken and edited from NEU
private fun resolveEnchantmentByName(enchantmentName: String): String? {
return enchantmentNamePattern.matchMatcher(enchantmentName) {
val name = group("name").trim { it <= ' ' }
val ultimate = group("format").lowercase().contains("§l")
((if (ultimate && name != "Ultimate Wise") "ULTIMATE_" else "")
+ turboCheck(name).replace(" ", "_").replace("-", "_").uppercase()
+ ";" + group("level").romanToDecimal())
}
}
//Uses NEU
fun saveNBTData(item: ItemStack, removeLore: Boolean = true): String {
val jsonObject = manager.getJsonForItem(item)
if (!jsonObject.has("internalname")) {
jsonObject.add("internalname", JsonPrimitive("_"))
}
if (removeLore) {
if (jsonObject.has("lore")) jsonObject.remove("lore")
}
val jsonString = jsonObject.toString()
return StringUtils.encodeBase64(jsonString)
}
fun loadNBTData(encoded: String): ItemStack {
val jsonString = StringUtils.decodeBase64(encoded)
val jsonObject = ConfigManager.gson.fromJson(jsonString, JsonObject::class.java)
return manager.jsonToStack(jsonObject, false)
}
}
|