blob: 0f6817dd10b054f724e8025c3cb90029efedb166 (
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
package at.hannibal2.skyhanni.features.bazaar
import at.hannibal2.skyhanni.events.InventoryCloseEvent
import at.hannibal2.skyhanni.events.InventoryOpenEvent
import at.hannibal2.skyhanni.utils.ItemUtils.getInternalName
import at.hannibal2.skyhanni.utils.ItemUtils.getLore
import at.hannibal2.skyhanni.utils.ItemUtils.name
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.StringUtils.removeColor
import io.github.moulberry.notenoughupdates.NotEnoughUpdates
import net.minecraft.item.ItemStack
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
class BazaarApi {
companion object {
val bazaarMap = mutableMapOf<String, BazaarData>()
var inBazaarInventory = false
fun getCleanBazaarName(name: String): String {
var newName = name
if (newName.endsWith(" Gemstone")) {
return newName.substring(6)
}
if (newName.contains("Turbo-Cocoa ")) {
newName = newName.replace("Cocoa", "Coco")
}
if (newName.contains("Turbo-Cacti ")) {
newName = newName.replace("Cacti", "Cactus")
}
newName = newName.removeColor()
if (!name.contains("Tightly-Tied")) {
newName = newName.replace("-", " ")
}
return newName
}
fun getBazaarDataForName(name: String): BazaarData? {
if (bazaarMap.containsKey(name)) {
val bazaarData = bazaarMap[name]
if (bazaarData != null) {
return bazaarData
}
LorenzUtils.error("Bazaar data not found! '$name'")
}
return null
}
fun getBazaarDataForInternalName(internalName: String) =
bazaarMap.values.firstOrNull { it.apiName == internalName }
fun isBazaarItem(stack: ItemStack) = isBazaarItem(stack.getInternalName())
fun isBazaarItem(internalName: String): Boolean {
val bazaarInfo = NotEnoughUpdates.INSTANCE.manager.auctionManager.getBazaarInfo(internalName)
return bazaarInfo != null
}
}
@SubscribeEvent
fun onInventoryOpen(event: InventoryOpenEvent) {
inBazaarInventory = checkIfInBazaar(event)
}
private fun checkIfInBazaar(event: InventoryOpenEvent): Boolean {
val returnItem = event.inventorySize - 5
for ((slot, item) in event.inventoryItems) {
if (slot == returnItem) {
if (item.name?.removeColor().let { it == "Go Back" }) {
val lore = item.getLore()
if (lore.getOrNull(0)?.removeColor().let { it == "To Bazaar" }) {
return true
}
}
}
}
if (event.inventoryName.startsWith("Bazaar ➜ ")) return true
return when (event.inventoryName) {
"How many do you want?" -> true
"How much do you want to pay?" -> true
"Confirm Buy Order" -> true
"Confirm Instant Buy" -> true
"At what price are you selling?" -> true
"Confirm Sell Offer" -> true
"Order options" -> true
else -> false
}
}
@SubscribeEvent
fun onInventoryClose(event: InventoryCloseEvent) {
inBazaarInventory = false
}
init {
BazaarDataGrabber(bazaarMap).start()
}
}
|