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
|
package at.hannibal2.skyhanni.utils
import at.hannibal2.skyhanni.utils.ItemBlink.checkBlinkItem
import at.hannibal2.skyhanni.utils.ItemUtils.getInternalName
import at.hannibal2.skyhanni.utils.NumberUtil.romanToDecimal
import io.github.moulberry.notenoughupdates.NEUManager
import io.github.moulberry.notenoughupdates.NotEnoughUpdates
import io.github.moulberry.notenoughupdates.recipes.CraftingRecipe
import io.github.moulberry.notenoughupdates.recipes.NeuRecipe
import io.github.moulberry.notenoughupdates.util.ItemResolutionQuery
import net.minecraft.client.Minecraft
import net.minecraft.client.renderer.GlStateManager
import net.minecraft.client.renderer.RenderHelper
import net.minecraft.init.Items
import net.minecraft.item.ItemStack
import net.minecraft.nbt.NBTTagCompound
object NEUItems {
val manager: NEUManager get() = NotEnoughUpdates.INSTANCE.manager
private val itemCache = mutableMapOf<String, ItemStack>()
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 turboBookPattern = "§fTurbo-(?<name>.*) (?<level>.)".toPattern()
fun getInternalName(itemName: String): String {
return getInternalNameOrNull(itemName) ?: throw Error("getInternalName is null for '$itemName'")
}
fun getInternalNameOrNull(itemName: String): String? {
if (itemNameCache.containsKey(itemName)) {
return itemNameCache[itemName]!!
}
val matcher = turboBookPattern.matcher(itemName)
var internalName = if (matcher.matches()) {
val type = matcher.group("name")
val level = matcher.group("level").romanToDecimal()
val name = turboCheck(type).uppercase()
"TURBO_$name;$level"
} else {
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[itemName] = internalName
return internalName
}
private fun turboCheck(text: String): String {
if (text == "Cocoa") return "Coco"
if (text == "Cacti") return "Cactus"
return text
}
fun getInternalName(itemStack: ItemStack): String {
return ItemResolutionQuery(manager)
.withCurrentGuiContext()
.withItemStack(itemStack)
.resolveInternalName() ?: ""
}
fun getInternalNameOrNull(nbt: NBTTagCompound): String? {
return 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 {
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): ItemStack? {
if (itemCache.contains(internalName)) {
return itemCache[internalName]!!.copy()
}
val itemStack = ItemResolutionQuery(manager)
.withKnownInternalName(internalName)
.resolveToItemStack() ?: return null
itemCache[internalName] = itemStack
return itemStack.copy()
}
fun getItemStack(internalName: String): ItemStack {
val stack = getItemStackOrNull(internalName)
if (stack == null) {
val error = "ItemResolutionQuery returns null for internalName '$internalName'"
LorenzUtils.error(error)
throw RuntimeException(error)
}
return stack
}
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
}
}
|