blob: 9ec088723a0e4865f745c59f279a40ce58b23a5e (
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.gui.quiver
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.config.features.combat.QuiverDisplayConfig.ShowWhen
import at.hannibal2.skyhanni.data.ArrowType
import at.hannibal2.skyhanni.data.QuiverAPI
import at.hannibal2.skyhanni.data.QuiverAPI.NONE_ARROW_TYPE
import at.hannibal2.skyhanni.events.ConfigLoadEvent
import at.hannibal2.skyhanni.events.GuiRenderEvent
import at.hannibal2.skyhanni.events.ProfileJoinEvent
import at.hannibal2.skyhanni.events.QuiverUpdateEvent
import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule
import at.hannibal2.skyhanni.utils.ConditionalUtils
import at.hannibal2.skyhanni.utils.ItemUtils.getItemRarityOrNull
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.NEUItems
import at.hannibal2.skyhanni.utils.NumberUtil.addSeparators
import at.hannibal2.skyhanni.utils.RenderUtils
import at.hannibal2.skyhanni.utils.RenderUtils.renderRenderables
import at.hannibal2.skyhanni.utils.StringUtils
import at.hannibal2.skyhanni.utils.renderables.Renderable
import net.minecraft.init.Items
import net.minecraft.item.ItemStack
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
@SkyHanniModule
object QuiverDisplay {
private val config get() = SkyHanniMod.feature.combat.quiverConfig.quiverDisplay
private var display = emptyList<Renderable>()
private var arrow: ArrowType? = null
private var amount = QuiverAPI.currentAmount
private var hideAmount = false
@SubscribeEvent
fun onProfileJoin(event: ProfileJoinEvent) {
display = emptyList()
arrow = QuiverAPI.currentArrow
amount = QuiverAPI.currentAmount
updateDisplay()
}
private fun updateDisplay() {
display = drawDisplay()
}
private fun drawDisplay() = buildList {
val arrow = arrow ?: return@buildList
val itemStack = NEUItems.getItemStackOrNull(arrow.internalName.asString()) ?: ItemStack(Items.arrow)
val rarity = itemStack.getItemRarityOrNull()?.chatColorCode ?: "§f"
val arrowDisplayName =
if (hideAmount || arrow == NONE_ARROW_TYPE) arrow.arrow else StringUtils.pluralize(amount, arrow.arrow)
if (config.showIcon.get()) {
add(Renderable.itemStack(itemStack, 1.0))
}
if (!hideAmount) {
add(Renderable.string("§b${amount.addSeparators()}x"))
}
add(Renderable.string(" $rarity$arrowDisplayName"))
}
@SubscribeEvent
fun onQuiverUpdate(event: QuiverUpdateEvent) {
arrow = event.currentArrow
amount = event.currentAmount
hideAmount = QuiverAPI.wearingSkeletonMasterChestplate
updateDisplay()
}
@SubscribeEvent
fun onRenderOverlay(event: GuiRenderEvent.GuiOverlayRenderEvent) {
if (!isEnabled()) return
if (display.isEmpty()) updateDisplay()
val whenToShow = config.whenToShow.get()
if (whenToShow == ShowWhen.ALWAYS ||
whenToShow == ShowWhen.ONLY_BOW_INVENTORY && QuiverAPI.hasBowInInventory() ||
whenToShow == ShowWhen.ONLY_BOW_HAND && QuiverAPI.isHoldingBow()
) {
val content =
Renderable.horizontalContainer(display, 1, verticalAlign = RenderUtils.VerticalAlignment.CENTER)
config.quiverDisplayPos.renderRenderables(listOf(content), posLabel = "Quiver Display")
}
}
@SubscribeEvent
fun onConfigLoad(event: ConfigLoadEvent) {
ConditionalUtils.onToggle(
config.whenToShow,
config.showIcon
) {
updateDisplay()
}
}
fun isEnabled() = LorenzUtils.inSkyBlock && config.enabled
}
|