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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
|
package at.hannibal2.skyhanni.features.garden
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.data.HypixelData
import at.hannibal2.skyhanni.events.GardenToolChangeEvent
import at.hannibal2.skyhanni.events.GuiRenderEvent
import at.hannibal2.skyhanni.features.garden.GardenAPI.Companion.getSpeed
import at.hannibal2.skyhanni.utils.APIUtil
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.LorenzUtils.round
import at.hannibal2.skyhanni.utils.RenderUtils.renderStrings
import at.hannibal2.skyhanni.utils.TimeUtils
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import net.minecraftforge.event.world.WorldEvent
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import net.minecraftforge.fml.common.gameevent.TickEvent
import java.util.*
class EliteFarmingWeight {
@SubscribeEvent
fun onRenderOverlay(event: GuiRenderEvent.GameOverlayRenderEvent) {
if (isEnabled()) {
config.eliteFarmingWeightPos.renderStrings(display, posLabel = "Elite Farming Weight")
}
}
@SubscribeEvent
fun onGardenToolChange(event: GardenToolChangeEvent) {
// Reset speed
weightPerSecond = -1.0
}
@SubscribeEvent
fun onWorldChange(event: WorldEvent.Load) {
// We want to try to connect to the api again after a world switch.
apiError = false
// We ask both api endpoints after every world switch
weight = -1.0
weightPerSecond = -1.0
leaderboardPosition = -1
dirtyCropWeight = true
lastLeaderboardUpdate = 0
nextPlayerWeight = 0.0
nextPlayerName = ""
hasPassedNext = false
}
var tick = 0
@SubscribeEvent
fun onTick(event: TickEvent.ClientTickEvent) {
if (!isEnabled()) return
if (tick++ % 5 != 0) return
update()
}
companion object {
private val config get() = SkyHanniMod.feature.garden
private val localCounter = mutableMapOf<CropType, Long>()
private var display = listOf<String>()
private var profileId = ""
private var lastLeaderboardUpdate = 0L
private var apiError = false
private var leaderboardPosition = -1
private var weight = -2.0
private var localWeight = 0.0
private var weightPerSecond = -1.0
private var dirtyCropWeight = false
private var isLoadingWeight = false
private var isLoadingLeaderboard = false
private var nextPlayerName = ""
private var nextPlayerWeight = 0.0
private var hasPassedNext = false
private fun update() {
if (!GardenAPI.inGarden()) return
if (apiError) {
display = listOf(
"§6Farming Weight§7: §cError!",
"§cCannot load data from Elite Farmers!",
"§eRejoin garden to try again."
)
return
}
if (weight == -2.0) {
display = Collections.singletonList("§6Farming Weight§7: §eLoading..")
return
}
if (weight == -1.0) {
if (!isLoadingWeight) {
val localProfile = HypixelData.profileName
if (localProfile == "") return
isLoadingWeight = true
SkyHanniMod.coroutineScope.launch {
loadWeight(localProfile)
isLoadingWeight = false
}
}
return
}
val weight = getWeight()
val leaderboard = getLeaderboard()
val list = mutableListOf<String>()
list.add("§6Farming Weight§7: $weight$leaderboard")
if (isEtaEnabled() && (weightPerSecond != -1.0 || config.eliteFarmingWeightOvertakeETAAlways)) {
list.add(getETA())
}
display = list
}
private fun getLeaderboard(): String {
if (!config.eliteFarmingWeightLeaderboard) return ""
// Fetching new leaderboard position every 10 minutes
if (System.currentTimeMillis() > lastLeaderboardUpdate + 600_000) {
if (!isLoadingLeaderboard) {
isLoadingLeaderboard = true
SkyHanniMod.coroutineScope.launch {
leaderboardPosition = loadLeaderboardPosition()
lastLeaderboardUpdate = System.currentTimeMillis()
isLoadingLeaderboard = false
}
}
}
return if (leaderboardPosition != -1) {
val format = LorenzUtils.formatInteger(leaderboardPosition)
" §7[§b#$format§7]"
} else {
if (isLoadingLeaderboard) {
" §7[§b#?§7]"
} else ""
}
}
private fun getWeight(): String {
if (dirtyCropWeight) {
val values = calculateCollectionWeight().values
if (values.isNotEmpty()) {
localWeight = values.sum()
dirtyCropWeight = false
}
}
val totalWeight = (localWeight + weight)
return "§e" + LorenzUtils.formatDouble(totalWeight, 2)
}
private fun getETA(): String {
if (weight < 0) return ""
val nextName = if (leaderboardPosition == -1) "#1000" else nextPlayerName
val totalWeight = (localWeight + weight)
val weightUntilOvertake = nextPlayerWeight - totalWeight
if (weightUntilOvertake < 0) {
if (!hasPassedNext) {
if (weightPerSecond > 0) {
LorenzUtils.debug("weightPerSecond: '$weightPerSecond'")
LorenzUtils.chat("§e[SkyHanni] You passed §b$nextName §ein the Farming Weight Leaderboard!")
}
if (leaderboardPosition == -1) {
leaderboardPosition = 1000
} else {
leaderboardPosition--
}
hasPassedNext = true
}
return "§cWaiting for leaderboard update..."
}
if (nextPlayerWeight == 0.0) {
return "§cRejoin the garden to show ETA!"
}
val timeFormat = if (weightPerSecond != -1.0) {
val timeTillOvertake = (weightUntilOvertake / weightPerSecond) * 1000
val format = TimeUtils.formatDuration(timeTillOvertake.toLong())
" §7(§b$format§7)"
} else ""
val weightFormat = LorenzUtils.formatDouble(weightUntilOvertake, 2)
return "§e$weightFormat$timeFormat §7behind §b$nextName"
}
private fun isEnabled() = GardenAPI.inGarden() && config.eliteFarmingWeightDisplay
private fun isEtaEnabled() = config.eliteFarmingWeightOvertakeETA
fun addCrop(crop: CropType, addedCounter: Int) {
val before = getExactWeight()
localCounter[crop] = crop.getLocalCounter() + addedCounter
val after = getExactWeight()
updateWeightPerSecond(crop, before, after, addedCounter)
dirtyCropWeight = true
}
private fun updateWeightPerSecond(crop: CropType, before: Double, after: Double, diff: Int) {
val speed = crop.getSpeed()
if (speed != -1) {
val weightDiff = (after - before) * 1000
weightPerSecond = weightDiff / diff * speed / 1000
}
}
private fun getExactWeight(): Double {
val values = calculateCollectionWeight(false).values
return if (values.isNotEmpty()) {
values.sum()
} else 0.0
}
private suspend fun loadLeaderboardPosition() = try {
val uuid = LorenzUtils.getPlayerUuid()
val showNext = if (isEtaEnabled()) "?showNext=true" else "&q
|