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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
|
package at.hannibal2.skyhanni.features.garden.composter
import at.hannibal2.skyhanni.config.ConfigUpdaterMigrator
import at.hannibal2.skyhanni.config.enums.OutsideSbFeature
import at.hannibal2.skyhanni.data.IslandType
import at.hannibal2.skyhanni.data.model.TabWidget
import at.hannibal2.skyhanni.events.GuiRenderEvent
import at.hannibal2.skyhanni.events.WidgetUpdateEvent
import at.hannibal2.skyhanni.features.fame.ReminderUtils
import at.hannibal2.skyhanni.features.garden.GardenAPI
import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule
import at.hannibal2.skyhanni.utils.ChatUtils
import at.hannibal2.skyhanni.utils.CollectionUtils.addAsSingletonList
import at.hannibal2.skyhanni.utils.HypixelCommands
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.LorenzUtils.isInIsland
import at.hannibal2.skyhanni.utils.NEUInternalName.Companion.asInternalName
import at.hannibal2.skyhanni.utils.NEUItems.getItemStack
import at.hannibal2.skyhanni.utils.RegexUtils.matchMatcher
import at.hannibal2.skyhanni.utils.RenderUtils.renderStringsAndItems
import at.hannibal2.skyhanni.utils.SimpleTimeMark
import at.hannibal2.skyhanni.utils.SimpleTimeMark.Companion.fromNow
import at.hannibal2.skyhanni.utils.TimeUtils.format
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import java.util.Collections
import kotlin.time.Duration
import kotlin.time.Duration.Companion.minutes
import kotlin.time.Duration.Companion.seconds
@SkyHanniModule
object ComposterDisplay {
private val config get() = GardenAPI.config.composters
private val storage get() = GardenAPI.storage
private var display = emptyList<List<Any>>()
private var composterEmptyTime: Duration? = null
private val bucket by lazy { "BUCKET".asInternalName().getItemStack() }
private var tabListData by ComposterAPI::tabListData
enum class DataType(rawPattern: String, val icon: String) {
ORGANIC_MATTER(" Organic Matter: §r(.*)", "WHEAT"),
FUEL(" Fuel: §r(.*)", "OIL_BARREL"),
TIME_LEFT(" Time Left: §r(.*)", "WATCH"),
STORED_COMPOST(" Stored Compost: §r(.*)", "COMPOST");
val displayItem by lazy { icon.asInternalName().getItemStack() }
val pattern by lazy { rawPattern.toPattern() }
fun addToList(map: Map<DataType, String>): List<Any> {
return listOf(displayItem, map[this]!!)
}
}
@SubscribeEvent
fun onTabListUpdate(event: WidgetUpdateEvent) {
if (!GardenAPI.inGarden()) return
if (!event.isWidget(TabWidget.COMPOSTER)) return
readData(event.lines)
if (tabListData.isNotEmpty()) {
composterEmptyTime = ComposterAPI.estimateEmptyTimeFromTab()
updateDisplay()
sendNotify()
}
}
private fun updateDisplay() {
if (!config.displayEnabled) return
val newDisplay = mutableListOf<List<Any>>()
newDisplay.addAsSingletonList("§bComposter")
newDisplay.add(DataType.TIME_LEFT.addToList(tabListData))
val list = mutableListOf<Any>()
list.addAll(DataType.ORGANIC_MATTER.addToList(tabListData))
list.add(" ")
list.addAll(DataType.FUEL.addToList(tabListData))
newDisplay.add(list)
newDisplay.add(DataType.STORED_COMPOST.addToList(tabListData))
newDisplay.add(addComposterEmptyTime(composterEmptyTime))
display = newDisplay
}
private fun addComposterEmptyTime(emptyTime: Duration?): List<Any> {
return if (emptyTime != null) {
GardenAPI.storage?.composterEmptyTime = emptyTime.fromNow()
val format = emptyTime.format()
listOf(bucket, "§b$format")
} else {
listOf("§cOpen Composter Upgrades!")
}
}
private fun readData(tabList: List<String>) {
var next = false
val newData = mutableMapOf<DataType, String>()
for (line in tabList) {
if (line == "§b§lComposter:") {
next = true
continue
}
if (next) {
if (line == "") break
for (type in DataType.entries) {
type.pattern.matchMatcher(line) {
newData[type] = group(1)
}
}
}
}
for (type in DataType.entries) {
if (!newData.containsKey(type)) {
tabListData = emptyMap()
return
}
}
tabListData = newData
}
private fun sendNotify() {
if (!config.notifyLow.enabled) return
if (ReminderUtils.isBusy()) return
val storage = storage ?: return
if (ComposterAPI.getOrganicMatter() <= config.notifyLow.organicMatter && storage.informedAboutLowMatter.isInPast()) {
if (config.notifyLow.title) {
LorenzUtils.sendTitle("§cYour Organic Matter is low", 4.seconds)
}
ChatUtils.chat("§cYour Organic Matter is low!")
storage.informedAboutLowMatter = 5.0.minutes.fromNow()
}
if (ComposterAPI.getFuel() <= config.notifyLow.fuel && storage.informedAboutLowFuel.isInPast()) {
if (config.notifyLow.title) {
LorenzUtils.sendTitle("§cYour Fuel is low", 4.seconds)
}
ChatUtils.chat("§cYour Fuel is low!")
storage.informedAboutLowFuel = 5.0.minutes.fromNow()
}
}
@SubscribeEvent
fun onRenderOverlay(event: GuiRenderEvent.GuiOverlayRenderEvent) {
if (!LorenzUtils.inSkyBlock && !OutsideSbFeature.COMPOSTER_TIME.isSelected()) return
if (GardenAPI.inGarden() && config.displayEnabled) {
config.displayPos.renderStringsAndItems(display, posLabel = "Composter Display")
}
checkWarningsAndOutsideGarden()
}
private fun checkWarningsAndOutsideGarden() {
val format = GardenAPI.storage?.let {
if (!it.composterEmptyTime.isFarPast()) {
val duration = it.composterEmptyTime.timeUntil()
if (duration > 0.0.seconds) {
if (duration < 20.0.minutes) {
warn("Your composter in the garden is almost empty!")
}
duration.format(maxUnits = 3)
} else {
warn("Your composter is empty!")
"§cComposter is empty!"
}
} else "?"
} ?: "§cJoin SkyBlock to show composter timer."
val inSb = LorenzUtils.inSkyBlock && config.displayOutsideGarden
val outsideSb = !LorenzUtils.inSkyBlock && OutsideSbFeature.COMPOSTER_TIME.isSelected()
if (!GardenAPI.inGarden() && (inSb || outsideSb)) {
val list = Collections.singletonList(listOf(bucket, "§b$format"))
config.outsideGardenPos.renderStringsAndItems(list, posLabel = "Composter Outside Garden")
}
}
private fun warn(warningMessage: String) {
if (!config.warnAlmostClose) return
val storage = GardenAPI.storage ?: return
if (ReminderUtils.isBusy()) return
if (storage.lastComposterEmptyWarningTime.passedSince() >= 2.0.minutes) return
storage.lastComposterEmptyWarningTime = SimpleTimeMark.now()
if (IslandType.GARDEN.isInIsland()) {
ChatUtils.chat(warningMessage)
} else {
ChatUtils.clickToActionOrDisable(
warningMessage,
config::warnAlmostClose,
actionName = "warp to the Garden",
action = { HypixelCommands.warp("garden") },
)
}
LorenzUtils.sendTitle("§eComposter Warning!", 3.seconds)
}
@SubscribeEvent
fun onConfigFix(event: ConfigUpdaterMigrator.ConfigFixEvent) {
event.move(3, "garden.composterDisplayEnabled", "garden.composters.displayEnabled")
event.move(3, "garden.composterDisplayOutsideGarden", "garden.composters.displayOutsideGarden")
event.move(3, "garden.composterWarnAlmostClose", "garden.composters.warnAlmostClose")
event.move(3, "garden.composterDisplayPos", "garden.composters.displayPos")
event.move(3, "garden.composterOutsideGardenPos", "garden.composters.outsideGardenPos")
event.move(3, "garden.composterNotifyLowEnabled", "garden.composters.notifyLow.enabled")
event.move(3, "garden.composterNotifyLowEnabled", "garden.composters.notifyLow.enabled")
event.move(3, "garden.composterNotifyLowTitle", "garden.composters.notifyLow.title")
event.move(3, "garden.composterNotifyLowOrganicMatter", "garden.composters.notifyLow.organicMatter")
event.move(3, "garden.composterNotifyLowFuel", "garden.composters.notifyLow.fuel")
}
}
|