blob: d4980ec506f4dedd47aa758922cc539dca9ef03a (
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
87
88
|
package at.hannibal2.skyhanni.features.combat.mobs
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.data.IslandType
import at.hannibal2.skyhanni.events.LorenzChatEvent
import at.hannibal2.skyhanni.events.LorenzWorldChangeEvent
import at.hannibal2.skyhanni.features.chat.ArachneChatMessageHider
import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule
import at.hannibal2.skyhanni.utils.ChatUtils
import at.hannibal2.skyhanni.utils.LorenzUtils.isInIsland
import at.hannibal2.skyhanni.utils.RegexUtils.matches
import at.hannibal2.skyhanni.utils.SimpleTimeMark
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
@SkyHanniModule
object ArachneKillTimer {
private val config get() = SkyHanniMod.feature.combat.mobs
private val patternGroup = RepoPattern.group("chat.arachne")
/**
* REGEX-TEST: §c[BOSS] Arachne§r§f: A befitting welcome!
*/
private val arachneCallingSpawnedPattern by patternGroup.pattern(
"calling.spawned",
"§c\\[BOSS] Arachne§r§f: A befitting welcome!"
)
/**
* REGEX-TEST: §c[BOSS] Arachne§r§f: With your sacrifice.
*/
private val arachneCrystalSpawnedPattern by patternGroup.pattern(
"crystal.spawned",
"§c\\[BOSS] Arachne§r§f: With your sacrifice."
)
/**
* REGEX-TEST: §f §r§6§lARACHNE DOWN!
*/
private val arachneDeathPattern by patternGroup.pattern(
"dead",
"§f.*§r§6§lARACHNE DOWN!"
)
/**
* REGEX-TEST: §f §r§eYour Damage: §r§a1,155,000 §r§7(Position #1)
*/
private val arachneDamagePattern by patternGroup.pattern(
"damage",
"§f +§r§eYour Damage: §r§a[0-9,]+ §r§7\\(Position #[0-9,]+\\)"
)
private var arachneSpawnedTime = SimpleTimeMark.farPast()
private var arachneKillTime = Duration.ZERO
@SubscribeEvent
fun onChat(event: LorenzChatEvent) {
if (!isEnabled()) return
if (arachneCallingSpawnedPattern.matches(event.message) || arachneCrystalSpawnedPattern.matches(event.message)) {
arachneSpawnedTime = SimpleTimeMark.now()
}
if (arachneDeathPattern.matches(event.message) && arachneSpawnedTime != SimpleTimeMark.farPast()) {
arachneKillTime = arachneSpawnedTime.passedSince()
}
if (ArachneChatMessageHider.arachneCallingPattern.matches(event.message) ||
ArachneChatMessageHider.arachneCrystalPattern.matches(event.message)
) {
arachneSpawnedTime = SimpleTimeMark.farPast()
}
if (arachneKillTime.isPositive() && arachneDamagePattern.matches(event.message)) {
val format = arachneKillTime.format(showMilliSeconds = true)
ChatUtils.chat(" §eArachne took §b$format§e seconds to kill.", prefix = false)
arachneKillTime = Duration.ZERO
arachneSpawnedTime = SimpleTimeMark.farPast()
}
}
@SubscribeEvent
fun onWorldChange(event: LorenzWorldChangeEvent) {
arachneSpawnedTime = SimpleTimeMark.farPast()
}
fun isEnabled() = IslandType.SPIDER_DEN.isInIsland() && config.arachneKillTimer
}
|