blob: b42a331fef9be7b0db365cd652ad85a9c000c9ab (
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
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
|
package at.hannibal2.skyhanni.features.bazaar
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.events.BazaarOpenedProductEvent
import at.hannibal2.skyhanni.events.InventoryCloseEvent
import at.hannibal2.skyhanni.features.bazaar.BazaarApi.Companion.getBazaarData
import at.hannibal2.skyhanni.utils.InventoryUtils
import at.hannibal2.skyhanni.utils.ItemUtils.getInternalName
import at.hannibal2.skyhanni.utils.ItemUtils.getNameWithEnchantment
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.NEUInternalName
import at.hannibal2.skyhanni.utils.NumberUtil
import at.hannibal2.skyhanni.utils.RenderUtils.renderString
import io.github.moulberry.notenoughupdates.events.SlotClickEvent
import net.minecraft.item.ItemStack
import net.minecraftforge.client.event.GuiScreenEvent
import net.minecraftforge.fml.common.eventhandler.EventPriority
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
class BazaarBestSellMethod {
private var display = ""
// Working with the last clicked item manually because
// the open inventory event happen while the recent clicked item in the inventory is not in the inventory or in the cursor slot
private var lastClickedItem: ItemStack? = null
private var nextCloseWillResetItem = false
@SubscribeEvent
fun onInventoryClose(event: InventoryCloseEvent) {
display = ""
if (lastClickedItem != null) {
if (nextCloseWillResetItem) {
lastClickedItem = null
}
nextCloseWillResetItem = !nextCloseWillResetItem
}
}
@SubscribeEvent
fun onBazaarOpenedProduct(event: BazaarOpenedProductEvent) {
if (!isEnabled()) return
display = updateDisplay(event.openedProduct)
}
private fun updateDisplay(internalName: NEUInternalName): String {
try {
var having = InventoryUtils.countItemsInLowerInventory { it.getInternalName() == internalName }
lastClickedItem?.let {
if (it.getInternalName() == internalName) {
having += it.stackSize
}
}
if (having <= 0) return ""
val data = internalName.getBazaarData() ?: return ""
val totalDiff = (data.buyPrice - data.sellPrice) * having
val result = NumberUtil.format(totalDiff.toInt())
val name = internalName.getNameWithEnchantment()
return "$name§7 sell difference: §6$result coins"
} catch (e: Error) {
e.printStackTrace()
return ""
}
}
@SubscribeEvent(priority = EventPriority.LOWEST)
fun renderOverlay(event: GuiScreenEvent.BackgroundDrawnEvent) {
if (!isEnabled()) return
SkyHanniMod.feature.bazaar.bestSellMethodPos.renderString(display, posLabel = "Bazaar Best Sell Method")
}
@SubscribeEvent(priority = EventPriority.HIGH)
fun onStackClick(event: SlotClickEvent) {
lastClickedItem = event.slot?.stack
nextCloseWillResetItem = false
}
private fun isEnabled() = LorenzUtils.inSkyBlock && SkyHanniMod.feature.bazaar.bestSellMethod
}
|