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
|
package at.hannibal2.skyhanni.utils
import at.hannibal2.skyhanni.utils.ItemUtils.getInternalName
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 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.Items
import net.minecraft.item.ItemStack
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, List<NeuRecipe>>()
fun getInternalName(itemName: String): String {
if (itemNameCache.containsKey(itemName)) {
return itemNameCache[itemName]!!
}
val internalName = ItemResolutionQuery.findInternalNameByDisplayName(itemName, false)
itemNameCache[itemName] = internalName
return internalName
}
fun getInternalName(itemStack: ItemStack): String {
return ItemResolutionQuery(manager)
.withCurrentGuiContext()
.withItemStack(itemStack)
.resolveInternalName() ?: ""
}
fun getPrice(internalName: String, useSellingPrice: Boolean = false): Double {
val result = manager.auctionManager.getBazaarOrBin(internalName, useSellingPrice)
// TODO remove workaround
if (result == -1.0) {
if (internalName == "JACK_O_LANTERN") {
return getPrice("PUMPKIN") + 1
}
if (internalName == "GOLDEN_CARROT") {
// 6.8 for some players
return 7.0 // NPC price
}
}
return result
}
fun getItemStack(internalName: String): ItemStack {
if (itemCache.contains(internalName)) {
return itemCache[internalName]!!.copy()
}
val itemStack = ItemResolutionQuery(manager)
.withKnownInternalName(internalName)
.resolveToItemStack()
if (itemStack == null) {
val error = "ItemResolutionQuery returns null for internalName $internalName"
LorenzUtils.error(error)
throw RuntimeException(error)
}
itemCache[internalName] = itemStack
return itemStack.copy()
}
fun isVanillaItem(item: ItemStack) = manager.auctionManager.isVanillaItem(item.getInternalName())
fun ItemStack.renderOnScreen(x: Float, y: Float) {
GlStateManager.pushMatrix()
val isSkull = item === Items.skull
if (isSkull) {
GlStateManager.translate(x - 2, y - 2, 0f)
} else {
GlStateManager.translate(x, y, 0f)
}
val scale = if (isSkull) 0.8f else 0.6f
GlStateManager.scale(scale, scale, 0f)
drawItemStack(this)
GlStateManager.popMatrix()
}
private fun drawItemStack(stack: ItemStack) {
val itemRender = Minecraft.getMinecraft().renderItem
Utils.disableCustomDungColours = true
RenderHelper.enableGUIStandardItemLighting()
Utils.hasEffectOverride = true
itemRender.renderItemAndEffectIntoGUI(stack, 0, 0)
itemRender.renderItemOverlayIntoGUI(Minecraft.getMinecraft().fontRendererObj, stack, 0, 0, null)
Utils.hasEffectOverride = false
RenderHelper.disableStandardItemLighting()
Utils.disableCustomDungColours = false
}
fun getMultiplier(rawId: String, tryCount: Int = 0): Pair<String, Int> {
if (multiplierCache.contains(rawId)) {
return multiplierCache[rawId]!!
}
if (tryCount == 10) {
val message = "Error reading getMultiplier for item '$rawId'"
Error(message).printStackTrace()
LorenzUtils.error(message)
return Pair(rawId, 1)
}
for (recipe in getRecipes(rawId)) {
if (recipe !is CraftingRecipe) continue
val map = mutableMapOf<String, Int>()
for (ingredient in recipe.ingredients) {
val count = ingredient.count.toInt()
val internalItemId = ingredient.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[rawId] = result
result
} else {
Pair(rawId, 1)
}
}
val result = Pair(rawId, 1)
multiplierCache[rawId] = result
return result
}
fun getRecipes(minionId: String): List<NeuRecipe> {
if (recipesCache.contains(minionId)) {
return recipesCache[minionId]!!
}
val recipes = manager.getAvailableRecipesFor(minionId)
recipesCache[minionId] = recipes
return recipes
}
}
|