blob: 4dcdb0de9cdee710622f8ea17164579f7155b576 (
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.misc
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.data.ScoreboardData
import at.hannibal2.skyhanni.data.jsonobjects.repo.TabListJson
import at.hannibal2.skyhanni.events.GuiRenderEvent
import at.hannibal2.skyhanni.events.RepositoryReloadEvent
import at.hannibal2.skyhanni.events.SecondPassedEvent
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.RegexUtils.matches
import at.hannibal2.skyhanni.utils.RenderUtils.renderString
import at.hannibal2.skyhanni.utils.SkyBlockTime
import at.hannibal2.skyhanni.utils.StringUtils.removeColor
import at.hannibal2.skyhanni.utils.TimeUtils.formatted
import at.hannibal2.skyhanni.utils.repopatterns.RepoPattern
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
class InGameDateDisplay {
private val config get() = SkyHanniMod.feature.gui.inGameDate
private val monthAndDatePattern by RepoPattern.pattern(
"misc.ingametime.date",
".*((Early|Late) )?(Winter|Spring|Summer|Autumn) [0-9]{1,2}(nd|rd|th|st)?.*"
)
private var display = ""
// sun, moon, spooky
private var sunMoonIcons = emptyList<String>()
@SubscribeEvent
fun onRepoReload(event: RepositoryReloadEvent) {
sunMoonIcons = event.getConstant<TabListJson>("TabList").sun_moon_symbols
}
@SubscribeEvent
fun onSecondPassed(event: SecondPassedEvent) {
if (!isEnabled()) return
if (!config.useScoreboard && !event.repeatSeconds(config.refreshSeconds)) return
checkDate()
}
private fun checkDate() {
val date = SkyBlockTime.now()
var theBaseString: String
if (config.useScoreboard) {
val list = ScoreboardData.sidebarLinesFormatted // we need this to grab the moon/sun symbol
val year = "Year ${date.year}"
var monthAndDate = (list.find { monthAndDatePattern.matches(it) } ?: "??").trim()
if (monthAndDate.last().isDigit()) {
monthAndDate = "${monthAndDate}${SkyBlockTime.daySuffix(monthAndDate.takeLast(2).trim().toInt())}"
}
val time = list.find { it.lowercase().contains("am ") || it.lowercase().contains("pm ") } ?: "??"
theBaseString = "$monthAndDate, $year ${time.trim()}".removeColor()
if (!config.includeSunMoon) {
sunMoonIcons.forEach { theBaseString = theBaseString.replace(it, "") }
}
} else {
theBaseString = date.formatted()
if (config.includeSunMoon) {
theBaseString = if ((date.hour >= 6) && (date.hour < 17)) "$theBaseString ☀"
else "$theBaseString ☽"
}
}
if (!config.includeOrdinal) theBaseString = theBaseString.removeOrdinal()
display = theBaseString
}
private fun String.removeOrdinal() = replace("nd", "").replace("rd", "").replace("st", "").replace("th", "")
@SubscribeEvent
fun onRenderOverlay(event: GuiRenderEvent.GuiOverlayRenderEvent) {
if (!isEnabled()) return
config.position.renderString(display, posLabel = "In-game Date Display")
}
fun isEnabled() = LorenzUtils.inSkyBlock && config.enabled
}
|