-
-
Notifications
You must be signed in to change notification settings - Fork 193
/
MinionFeatures.kt
430 lines (371 loc) · 15.9 KB
/
MinionFeatures.kt
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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
package at.hannibal2.skyhanni.features.minion
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.api.event.HandleEvent
import at.hannibal2.skyhanni.config.ConfigUpdaterMigrator
import at.hannibal2.skyhanni.config.storage.ProfileSpecificStorage
import at.hannibal2.skyhanni.data.ClickType
import at.hannibal2.skyhanni.data.IslandType
import at.hannibal2.skyhanni.data.ProfileStorageData
import at.hannibal2.skyhanni.events.BlockClickEvent
import at.hannibal2.skyhanni.events.EntityClickEvent
import at.hannibal2.skyhanni.events.GuiRenderEvent
import at.hannibal2.skyhanni.events.InventoryCloseEvent
import at.hannibal2.skyhanni.events.InventoryFullyOpenedEvent
import at.hannibal2.skyhanni.events.InventoryUpdatedEvent
import at.hannibal2.skyhanni.events.LorenzChatEvent
import at.hannibal2.skyhanni.events.LorenzRenderWorldEvent
import at.hannibal2.skyhanni.events.LorenzTickEvent
import at.hannibal2.skyhanni.events.LorenzWorldChangeEvent
import at.hannibal2.skyhanni.events.MinionCloseEvent
import at.hannibal2.skyhanni.events.MinionOpenEvent
import at.hannibal2.skyhanni.events.MinionStorageOpenEvent
import at.hannibal2.skyhanni.events.SkyHanniRenderEntityEvent
import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule
import at.hannibal2.skyhanni.utils.BlockUtils.getBlockStateAt
import at.hannibal2.skyhanni.utils.ChatUtils
import at.hannibal2.skyhanni.utils.CollectionUtils.editCopy
import at.hannibal2.skyhanni.utils.ColorUtils.toChromaColor
import at.hannibal2.skyhanni.utils.EntityUtils
import at.hannibal2.skyhanni.utils.InventoryUtils
import at.hannibal2.skyhanni.utils.ItemUtils.cleanName
import at.hannibal2.skyhanni.utils.ItemUtils.getLore
import at.hannibal2.skyhanni.utils.ItemUtils.name
import at.hannibal2.skyhanni.utils.LocationUtils
import at.hannibal2.skyhanni.utils.LocationUtils.distanceTo
import at.hannibal2.skyhanni.utils.LocationUtils.distanceToPlayer
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.LorenzUtils.isInIsland
import at.hannibal2.skyhanni.utils.LorenzVec
import at.hannibal2.skyhanni.utils.NumberUtil.addSeparators
import at.hannibal2.skyhanni.utils.NumberUtil.formatDouble
import at.hannibal2.skyhanni.utils.NumberUtil.romanToDecimal
import at.hannibal2.skyhanni.utils.NumberUtil.romanToDecimalIfNecessary
import at.hannibal2.skyhanni.utils.RegexUtils.find
import at.hannibal2.skyhanni.utils.RegexUtils.matchMatcher
import at.hannibal2.skyhanni.utils.RegexUtils.matches
import at.hannibal2.skyhanni.utils.RenderUtils.drawString
import at.hannibal2.skyhanni.utils.RenderUtils.drawWaypointFilled
import at.hannibal2.skyhanni.utils.RenderUtils.renderString
import at.hannibal2.skyhanni.utils.SimpleTimeMark
import at.hannibal2.skyhanni.utils.SpecialColor
import at.hannibal2.skyhanni.utils.TimeUtils.format
import at.hannibal2.skyhanni.utils.getLorenzVec
import at.hannibal2.skyhanni.utils.repopatterns.RepoPattern
import at.hannibal2.skyhanni.utils.toLorenzVec
import net.minecraft.client.Minecraft
import net.minecraft.client.gui.inventory.GuiChest
import net.minecraft.entity.EntityLivingBase
import net.minecraft.entity.item.EntityArmorStand
import net.minecraft.init.Blocks
import net.minecraftforge.event.entity.player.PlayerInteractEvent
import net.minecraftforge.fml.common.eventhandler.EventPriority
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import java.awt.Color
@SkyHanniModule
object MinionFeatures {
private val config get() = SkyHanniMod.feature.misc.minions
private var lastClickedEntity: LorenzVec? = null
private var newMinion: LorenzVec? = null
private var newMinionName: String? = null
private var lastMinionOpened = 0L
private var lastInventoryClosed = 0L
private var coinsPerDay = ""
private val patternGroup = RepoPattern.group("minion")
private val minionUpgradePattern by patternGroup.pattern(
"chat.upgrade",
"§aYou have upgraded your Minion to Tier (?<tier>.*)"
)
private val minionCoinPattern by patternGroup.pattern(
"chat.coin",
"§aYou received §r§6(.*) coins§r§a!"
)
private val minionTitlePattern by patternGroup.pattern(
"title",
"Minion [^➜]"
)
private val minionCollectItemPattern by patternGroup.pattern(
"item.collect",
"^§aCollect All$"
)
var lastMinion: LorenzVec? = null
private var lastStorage: LorenzVec? = null
var minionInventoryOpen = false
var minionStorageInventoryOpen = false
private var minions: Map<LorenzVec, ProfileSpecificStorage.MinionConfig>?
get() {
return ProfileStorageData.profileSpecific?.minions
}
set(value) {
ProfileStorageData.profileSpecific?.minions = value
}
@SubscribeEvent
fun onPlayerInteract(event: PlayerInteractEvent) {
if (!isEnabled()) return
if (event.action != PlayerInteractEvent.Action.RIGHT_CLICK_BLOCK) return
val lookingAt = event.pos.offset(event.face).toLorenzVec()
val equipped = InventoryUtils.getItemInHand() ?: return
if (equipped.displayName.contains(" Minion ") && lookingAt.getBlockStateAt().block == Blocks.air) {
newMinion = lookingAt.add(0.5, 0.0, 0.5)
newMinionName = getMinionName(equipped.cleanName())
} else {
newMinion = null
newMinionName = null
}
}
@HandleEvent(onlyOnSkyblock = true)
fun onEntityClick(event: EntityClickEvent) {
if (!enableWithHub()) return
if (event.clickType != ClickType.RIGHT_CLICK) return
lastClickedEntity = event.clickedEntity?.getLorenzVec() ?: return
}
@HandleEvent(onlyOnSkyblock = true)
fun onBlockClick(event: BlockClickEvent) {
if (!enableWithHub()) return
if (event.clickType != ClickType.RIGHT_CLICK) return
lastStorage = event.position
}
@SubscribeEvent
fun onRenderLastClickedMinion(event: LorenzRenderWorldEvent) {
if (!enableWithHub()) return
if (!config.lastClickedMinion.display) return
val color = config.lastClickedMinion.color.toChromaColor()
val loc = lastMinion
if (loc != null) {
val time = config.lastClickedMinion.time * 1_000
if (lastMinionOpened + time > System.currentTimeMillis()) {
event.drawWaypointFilled(
loc.add(-0.5, 0.0, -0.5),
color,
true,
extraSize = -0.25,
extraSizeTopY = 0.2,
extraSizeBottomY = 0.0
)
}
}
}
@SubscribeEvent
fun onInventoryOpen(event: InventoryFullyOpenedEvent) {
if (!enableWithHub()) return
if (!minionTitlePattern.find(event.inventoryName)) return
event.inventoryItems[48]?.let {
if (minionCollectItemPattern.matches(it.name)) {
MinionOpenEvent(event.inventoryName, event.inventoryItems).postAndCatch()
return
}
}
MinionStorageOpenEvent(lastStorage, event.inventoryItems).postAndCatch()
minionStorageInventoryOpen = true
}
@SubscribeEvent
fun onInventoryUpdated(event: InventoryUpdatedEvent) {
if (!enableWithHub()) return
if (minionInventoryOpen) {
MinionOpenEvent(event.inventoryName, event.inventoryItems).postAndCatch()
}
}
@SubscribeEvent
fun onMinionOpen(event: MinionOpenEvent) {
removeBuggedMinions()
val minions = minions ?: return
val entity = lastClickedEntity ?: return
val openInventory = event.inventoryName
val name = getMinionName(openInventory)
if (!minions.contains(entity) && LorenzUtils.skyBlockIsland != IslandType.HUB) {
MinionFeatures.minions = minions.editCopy {
this[entity] = ProfileSpecificStorage.MinionConfig().apply {
displayName = name
lastClicked = 0
}
}
} else {
minions[entity]?.let {
if (it.displayName != name) {
it.displayName = name
}
}
}
lastMinion = entity
lastClickedEntity = null
minionInventoryOpen = true
lastMinionOpened = 0
}
fun removeBuggedMinions(isCommand: Boolean = false) {
if (!IslandType.PRIVATE_ISLAND.isInIsland()) return
val minions = minions ?: return
val removedEntities = mutableListOf<LorenzVec>()
for (location in minions.keys) {
if (location.distanceToPlayer() > 30) continue
val entitiesNearby = EntityUtils.getEntities<EntityArmorStand>().map { it.distanceTo(location) }
if (!entitiesNearby.any { it == 0.0 }) {
removedEntities.add(location)
}
}
val size = removedEntities.size
if (size == 0) {
if (isCommand) {
ChatUtils.chat("No bugged minions found nearby.")
}
return
}
this.minions = minions.editCopy {
for (removedEntity in removedEntities) {
remove(removedEntity)
}
ChatUtils.chat("Removed $size wrong/bugged minion locations from your island.")
}
}
@SubscribeEvent
fun onInventoryClose(event: InventoryCloseEvent) {
if (event.reopenSameName) return
minionStorageInventoryOpen = false
if (!minionInventoryOpen) return
val minions = minions ?: return
minionInventoryOpen = false
lastMinionOpened = System.currentTimeMillis()
coinsPerDay = ""
lastInventoryClosed = System.currentTimeMillis()
if (IslandType.PRIVATE_ISLAND.isInIsland()) {
val location = lastMinion ?: return
if (location !in minions) {
minions[location]?.lastClicked = 0
}
}
MinionCloseEvent().postAndCatch()
}
@SubscribeEvent
fun onTick(event: LorenzTickEvent) {
if (!isEnabled()) return
if (coinsPerDay != "") return
if (Minecraft.getMinecraft().currentScreen is GuiChest && config.hopperProfitDisplay) {
coinsPerDay = if (minionInventoryOpen) updateCoinsPerDay() else ""
}
}
private fun getMinionName(oldName: String, newTier: Int = 0): String {
var list = oldName.split(" ").toList()
val last = list.last()
val number = if (newTier != 0) newTier else last.romanToDecimal()
list = list.dropLast(1)
return list.joinToString(" ") + " $number"
}
private fun updateCoinsPerDay(): String {
val loc = lastMinion ?: return "§cNo last minion found! Try reopening the minion view."
val slot = InventoryUtils.getItemsInOpenChest().find { it.slotNumber == 28 } ?: return ""
val stack = slot.stack
val line = stack.getLore().find { it.contains("Held Coins") } ?: return ""
val duration = minions?.get(loc)?.let {
val lastClicked = it.lastClicked
if (lastClicked == 0L) {
return "§cCan't calculate coins/day: No time data available!"
}
System.currentTimeMillis() - lastClicked
} ?: return "§cCan't calculate coins/day: No time data available!"
// §7Held Coins: §b151,389
// TODO use regex
val coins = line.split(": §b")[1].formatDouble()
val coinsPerDay = (coins / (duration.toDouble())) * 1000 * 60 * 60 * 24
val format = coinsPerDay.toInt().addSeparators()
return "§7Coins/day with ${stack.name}§7: §6$format coins"
}
@SubscribeEvent
fun onWorldChange(event: LorenzWorldChangeEvent) {
lastClickedEntity = null
lastMinion = null
lastMinionOpened = 0L
minionInventoryOpen = false
minionStorageInventoryOpen = false
}
@SubscribeEvent
fun onChat(event: LorenzChatEvent) {
if (!isEnabled()) return
val message = event.message
if (minionCoinPattern.matches(message) && System.currentTimeMillis() - lastInventoryClosed < 2_000) {
minions?.get(lastMinion)?.let {
it.lastClicked = System.currentTimeMillis()
}
}
if (message.startsWith("§aYou picked up a minion!") && lastMinion != null) {
minions = minions?.editCopy { remove(lastMinion) }
lastClickedEntity = null
lastMinion = null
lastMinionOpened = 0L
}
if (message.startsWith("§bYou placed a minion!") && newMinion != null) {
minions = minions?.editCopy {
this[newMinion!!] = ProfileSpecificStorage.MinionConfig().apply {
displayName = newMinionName
lastClicked = 0
}
}
newMinion = null
newMinionName = null
}
minionUpgradePattern.matchMatcher(message) {
val newTier = group("tier").romanToDecimalIfNecessary()
minions?.get(lastMinion)?.let {
val minionName = getMinionName(it.displayName, newTier)
it.displayName = minionName
}
}
}
@SubscribeEvent
fun onRenderLastEmptied(event: LorenzRenderWorldEvent) {
if (!isEnabled()) return
val playerLocation = LocationUtils.playerLocation()
val minions = minions ?: return
for (minion in minions) {
val location = minion.key.up()
if (location.distanceToPlayer() > 50) continue
val lastEmptied = minion.value.lastClicked
if (playerLocation.distance(location) >= config.emptiedTime.distance) continue
if (config.nameDisplay) {
val displayName = minion.value.displayName
val name = "§6" + if (config.nameOnlyTier) {
displayName.split(" ").last()
} else displayName
event.drawString(location.up(0.65), name, true)
}
if (config.emptiedTime.display && lastEmptied != 0L) {
val passedSince = SimpleTimeMark(lastEmptied).passedSince()
val format = passedSince.format(longName = true) + " ago"
val text = "§eHopper Emptied: $format"
event.drawString(location.up(1.15), text, true)
}
}
}
@SubscribeEvent(priority = EventPriority.HIGH)
fun onRenderLiving(event: SkyHanniRenderEntityEvent.Specials.Pre<EntityLivingBase>) {
if (!isEnabled()) return
if (!config.hideMobsNametagNearby) return
val entity = event.entity
if (entity !is EntityArmorStand) return
if (!entity.hasCustomName()) return
if (entity.isDead) return
val minions = minions ?: return
if (entity.customNameTag.contains("§c❤")) {
val loc = entity.getLorenzVec()
if (minions.any { it.key.distance(loc) < 5 }) {
event.cancel()
}
}
}
private fun isEnabled() = IslandType.PRIVATE_ISLAND.isInIsland()
private fun enableWithHub() = isEnabled() || IslandType.HUB.isInIsland()
@SubscribeEvent
fun onBackgroundDraw(event: GuiRenderEvent.ChestGuiOverlayRenderEvent) {
if (!LorenzUtils.inSkyBlock) return
if (!minionInventoryOpen) return
if (config.hopperProfitDisplay) {
config.hopperProfitPos.renderString(coinsPerDay, posLabel = "Minion Coins Per Day")
}
}
@SubscribeEvent
fun onConfigFix(event: ConfigUpdaterMigrator.ConfigFixEvent) {
event.move(3, "minions.lastClickedMinionDisplay", "minions.lastClickedMinion.display")
event.move(3, "minions.lastOpenedMinionColor", "minions.lastClickedMinion.color")
event.move(3, "minions.lastOpenedMinionTime", "minions.lastClickedMinion.time")
event.move(3, "minions.emptiedTimeDisplay", "minions.emptiedTime.display")
event.move(3, "minions.distance", "minions.emptiedTime.distance")
event.move(31, "minions", "misc.minions")
}
}