blob: 1dd620a98dc1d090cc3fc0908569682ecbaf8971 (
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
|
package at.hannibal2.skyhanni.features.event.winter
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.events.GuiRenderEvent
import at.hannibal2.skyhanni.events.LorenzChatEvent
import at.hannibal2.skyhanni.events.ProfileJoinEvent
import at.hannibal2.skyhanni.events.SecondPassedEvent
import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.NEUInternalName.Companion.asInternalName
import at.hannibal2.skyhanni.utils.NEUItems.getItemStack
import at.hannibal2.skyhanni.utils.RegexUtils.matches
import at.hannibal2.skyhanni.utils.RenderUtils.addItemIcon
import at.hannibal2.skyhanni.utils.RenderUtils.renderSingleLineWithItems
import at.hannibal2.skyhanni.utils.TimeUtils.format
import at.hannibal2.skyhanni.utils.repopatterns.RepoPattern
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import kotlin.time.Duration.Companion.minutes
import kotlin.time.Duration.Companion.seconds
@SkyHanniModule
object JyrreTimer {
private val config get() = SkyHanniMod.feature.event.winter.jyrreTimer
private val drankBottlePattern by RepoPattern.pattern(
"event.winter.drank.jyrre",
"§aYou drank a §r§6Refined Bottle of Jyrre §r§aand gained §r§b\\+300✎ Intelligence §r§afor §r§b60 minutes§r§a!"
)
private var display = emptyList<Any>()
private var duration = 0.seconds
@SubscribeEvent
fun onProfileJoin(event: ProfileJoinEvent) {
resetDisplay()
}
private fun resetDisplay() {
if (display.isEmpty()) return
display = if (config.showInactive) drawDisplay() else emptyList()
duration = 0.seconds
}
@SubscribeEvent
fun onChat(event: LorenzChatEvent) {
if (!isEnabled() || !drankBottlePattern.matches(event.message)) return
duration = 60.minutes
}
@SubscribeEvent
fun onRenderOverlay(event: GuiRenderEvent.GuiOverlayRenderEvent) {
if (!isEnabled()) return
config.pos.renderSingleLineWithItems(display, posLabel = "Refined Jyrre Timer")
}
@SubscribeEvent
fun onSecondPassed(event: SecondPassedEvent) {
if (!isEnabled()) return
if (display.isNotEmpty() && !config.showInactive && duration <= 0.seconds) {
resetDisplay()
return
}
display = drawDisplay()
}
private val displayIcon by lazy { "REFINED_BOTTLE_OF_JYRRE".asInternalName().getItemStack() }
fun drawDisplay(): MutableList<Any> {
duration -= 1.seconds
return mutableListOf<Any>().apply {
addItemIcon(displayIcon)
add("§aJyrre Boost: ")
if (duration <= 0.seconds && config.showInactive) {
add("§cInactive!")
} else {
val format = duration.format()
add("§b$format")
}
}
}
private fun isEnabled() = LorenzUtils.inSkyBlock && config.enabled
}
|