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
|
package at.hannibal2.skyhanni.data
import at.hannibal2.skyhanni.api.event.HandleEvent
import at.hannibal2.skyhanni.events.BlockClickEvent
import at.hannibal2.skyhanni.events.ColdUpdateEvent
import at.hannibal2.skyhanni.events.DebugDataCollectEvent
import at.hannibal2.skyhanni.events.IslandChangeEvent
import at.hannibal2.skyhanni.events.LorenzChatEvent
import at.hannibal2.skyhanni.events.LorenzTickEvent
import at.hannibal2.skyhanni.events.LorenzWorldChangeEvent
import at.hannibal2.skyhanni.events.PlaySoundEvent
import at.hannibal2.skyhanni.events.ScoreboardUpdateEvent
import at.hannibal2.skyhanni.events.ServerBlockChangeEvent
import at.hannibal2.skyhanni.events.mining.OreMinedEvent
import at.hannibal2.skyhanni.events.player.PlayerDeathEvent
import at.hannibal2.skyhanni.events.skyblock.ScoreboardAreaChangeEvent
import at.hannibal2.skyhanni.features.gui.customscoreboard.ScoreboardPattern
import at.hannibal2.skyhanni.features.mining.OreBlock
import at.hannibal2.skyhanni.features.mining.isTitanium
import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule
import at.hannibal2.skyhanni.utils.CollectionUtils.countBy
import at.hannibal2.skyhanni.utils.LocationUtils.distanceToPlayer
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.LorenzUtils.inAnyIsland
import at.hannibal2.skyhanni.utils.LorenzUtils.isInIsland
import at.hannibal2.skyhanni.utils.LorenzVec
import at.hannibal2.skyhanni.utils.NumberUtil.formatInt
import at.hannibal2.skyhanni.utils.RegexUtils.firstMatcher
import at.hannibal2.skyhanni.utils.RegexUtils.matchMatcher
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 io.netty.util.internal.ConcurrentSet
import net.minecraft.init.Blocks
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import java.util.concurrent.ConcurrentLinkedQueue
import kotlin.math.absoluteValue
import kotlin.time.Duration.Companion.milliseconds
import kotlin.time.Duration.Companion.seconds
@SkyHanniModule
object MiningAPI {
private val group = RepoPattern.group("data.miningapi")
private val glaciteAreaPattern by group.pattern("area.glacite", "Glacite Tunnels|Great Glacite Lake")
private val dwarvenBaseCampPattern by group.pattern("area.basecamp", "Dwarven Base Camp")
// TODO add regex test
private val coldResetPattern by group.pattern(
"cold.reset",
"§6The warmth of the campfire reduced your §r§b❄ Cold §r§6to §r§a0§r§6!|§c ☠ §r§7You froze to death§r§7\\.",
)
private val pickbobulusGroup = group.group("pickobulus")
/**
* REGEX-TEST: §aYou used your §r§6Pickobulus §r§aPickaxe Ability!
*/
private val pickobulusUsePattern by pickbobulusGroup.pattern(
"use",
"§aYou used your §r§6Pickobulus §r§aPickaxe Ability!",
)
// TODO add regex test
private val pickobulusEndPattern by pickbobulusGroup.pattern(
"end",
"§7Your §r§aPickobulus §r§7destroyed §r§e(?<amount>[\\d,.]+) §r§7blocks!",
)
/**
* REGEX-TEST: §7Your §r§aPickobulus §r§7didn't destroy any blocks!
*/
private val pickobulusFailPattern by pickbobulusGroup.pattern(
"fail",
"§7Your §r§aPickobulus §r§7didn't destroy any blocks!"
)
private data class MinedBlock(val ore: OreBlock, var confirmed: Boolean) {
val time: SimpleTimeMark = SimpleTimeMark.now()
}
// normal mining
private val recentClickedBlocks = ConcurrentSet<Pair<LorenzVec, SimpleTimeMark>>()
private val surroundingMinedBlocks = ConcurrentLinkedQueue<Pair<MinedBlock, LorenzVec>>()
private var lastInitSound = SimpleTimeMark.farPast()
private var initBlockPos: LorenzVec? = null
private var waitingForInitSound = true
private var waitingForEffMinerSound = false
private var waitingForEffMinerBlock = false
// pickobulus
private var lastPickobulusUse = SimpleTimeMark.farPast()
private var lastPickobulusExplosion = SimpleTimeMark.farPast()
private var pickobulusExplosionPos: LorenzVec? = null
private val pickobulusMinedBlocks = ConcurrentLinkedQueue<Pair<LorenzVec, OreBlock>>()
private val pickobulusActive get() = lastPickobulusUse.passedSince() < 2.seconds
private var pickobulusWaitingForSound = false
private var pickobulusWaitingForBlock = false
// oreblock data
var inGlacite = false
var inTunnels = false
var inMineshaft = false
var inDwarvenMines = false
var inCrystalHollows = false
var inCrimsonIsle = false
var inEnd = false
var inSpidersDen = false
var currentAreaOreBlocks = setOf<OreBlock>()
private set
private val allowedSoundNames = setOf("dig.glass", "dig.stone", "dig.gravel", "dig.cloth", "random.orb")
var cold: Int = 0
private set
var lastColdUpdate = SimpleTimeMark.farPast()
private set
var lastColdReset = SimpleTimeMark.farPast()
private set
fun inGlaciteArea() = inGlacialTunnels() || IslandType.MINESHAFT.isInIsland()
fun inDwarvenBaseCamp() = IslandType.DWARVEN_MINES.isInIsland() && dwarvenBaseCampPattern.matches(LorenzUtils.skyBlockArea)
fun inRegularDwarven() = IslandType.DWARVEN_MINES.isInIsland() && !inGlacialTunnels()
fun inCrystalHollows() = IslandType.CRYSTAL_HOLLOWS.isInIsland()
fun inMineshaft() = IslandType.MINESHAFT.isInIsland()
fun inGlacialTunnels() = IslandType.DWARVEN_MINES.isInIsland() && glaciteAreaPattern.matches(LorenzUtils.skyBlockArea)
fun inCustomMiningIsland() = inAnyIsland(
IslandType.DWARVEN_MINES,
IslandType.MINESHAFT,
IslandType.CRYSTAL_HOLLOWS,
IslandType.THE_END,
IslandType.CRIMSON_ISLE,
IslandType.SPIDER_DEN,
)
fun inColdIsland() = inAnyIsland(IslandType.DWARVEN_MINES, IslandType.MINESHAFT)
@SubscribeEvent
fun onScoreboardChange(event: ScoreboardUpdateEvent) {
val newCold = ScoreboardPattern.coldPattern.firstMatcher(event.scoreboard) {
group("cold").toInt().absoluteValue
} ?: return
if (newCold != cold) {
updateCold(newCold)
}
}
@SubscribeEvent
fun onBlockClick(event: BlockClickEvent) {
if (!inCustomMiningIsland()) return
if (event.clickType != ClickType.LEFT_CLICK) return
if (OreBlock.getByStateOrNull(event.getBlockState) == null) return
recentClickedBlocks += event.position to SimpleTimeMark.now()
}
@SubscribeEvent
fun onChat(event: LorenzChatEvent) {
if (!inColdIsland()) return
if (coldResetPattern.matches(event.message)) {
updateCold(0)
lastColdReset = SimpleTimeMark.now()
return
}
if (pickobulusUsePattern.matches(event.message)) {
lastPickobulusUse = SimpleTimeMark.now()
return
}
if (pickobulusFailPattern.matches(event.message)) {
resetPickobulusEvent()
pickobulusMinedBlocks.clear()
return
}
pickobulusEndPattern.matchMatcher(event.message) {
val amount = group("amount").formatInt()
resetPickobulusEvent()
val blocks = pickobulusMinedBlocks.take(amount).countBy { it.second }
if (blocks.isNotEmpty()) OreMinedEvent(null, blocks).post()
pickobulusMinedBlocks.clear()
return
}
}
@SubscribeEvent
fun onPlayerDeath(event: PlayerDeathEvent) {
if (event.name == LorenzUtils.getPlayerName()) {
updateCold(0)
lastColdReset = SimpleTimeMark.now()
}
}
@SubscribeEvent
fun onPlaySound(event: PlaySoundEvent) {
if (!inCustomMiningIsland()) return
if (event.soundName == "random.explode" && lastPickobulusUse.passedSince() < 5.seconds) {
lastPickobulusExplosion = SimpleTimeMark.now()
pickobulusExplosionPos = event.location
pickobulusWaitingForSound = true
return
}
if (event.soundName !in allowedSoundNames) return
if (pickobulusActive && pickobulusWaitingForSound) {
pickobulusWaitingForSound = false
pickobulusWaitingForBlock = true
return
}
if (waitingForInitSound) {
if (event.soundName != "random.orb" && event.pitch == 0.7936508f) {
val pos = event.location.roundLocationToBlock()
if (recentClickedBlocks.none { it.first == pos }) return
waitingForInitSound = false
waitingForEffMinerBlock = true
initBlockPos = event.location.roundLocationToBlock()
lastInitSound = SimpleTimeMark.now()
}
return
}
if (waitingForEffMinerSound) {
val lastBlock = surroundingMinedBlocks.lastOrNull()?.first ?: return
if (lastBlock.confirmed) return
waitingForEffMinerSound = false
lastBlock.confirmed = true
waitingForEffMinerBlock = true
}
}
@SubscribeEvent
fun onBlockChange(event: ServerBlockChangeEvent) {
if (!inCustomMiningIsland()) return
val oldState = event.oldState
val newState = event.newState
val oldBlock = oldState.block
val newBlock = newState.block
if (oldState == newState) return
if (oldBlock == Blocks.air || oldBlock == Blocks.bedrock) return
if (newBlock != Blocks.air && newBlock != Blocks.bedrock && !isTitanium(newState)) return
val pos = event.location
if (pickobulusActive && pickobulusWaitingForBlock) {
val explosionPos = pickobulusExplosionPos ?: return
if (explosionPos.distance(pos) > 15) return
val ore = OreBlock.getByStateOrNull(oldState) ?: return
if (pickobulusMinedBlocks.any { it.first == pos }) return
pickobulusMinedBlocks += pos to ore
pickobulusWaitingForBlock = false
pickobulusWaitingForSound = true
return
}
if (lastInitSound.passedSince() > 100.milliseconds) return
if (pos.distanceToPlayer() > 7) return
val ore = OreBlock.getByStateOrNull(oldState) ?: return
if (initBlockPos == pos) {
surroundingMinedBlocks += MinedBlock(ore, true) to pos
runEvent()
return
}
if (waitingForEffMinerBlock) {
if (surroundingMinedBlocks.any { it.second == pos }) return
waitingForEffMinerBlock = false
surroundingMinedBlocks += MinedBlock(ore, false) to pos
waitingForEffMinerSound = true
return
}
}
@SubscribeEvent
fun onTick(event: LorenzTickEvent) {
if (!inCustomMiningIsland()) return
if (currentAreaOreBlocks.isEmpty()) return
// if somehow you take more than 20 seconds to mine a single block, congrats
recentClickedBlocks.removeIf { it.second.passedSince() >= 20.seconds }
surroundingMinedBlocks.removeIf { it.first.time.passedSince() >= 20.seconds }
if (!waitingForInitSound && lastInitSound.passedSince() > 200.milliseconds) {
resetOreEvent()
}
if (!lastPickobulusUse.isFarPast() && lastPickobulusUse.passedSince() > 5.seconds) {
resetPickobulusEvent()
pickobulusMinedBlocks.clear()
}
}
@HandleEvent
fun onAreaChange(event: ScoreboardAreaChangeEvent) {
if (!inCustomMiningIsland()) return
updateLocation()
}
@SubscribeEvent
fun onIslandChange(event: IslandChangeEvent) {
updateLocation()
}
private fun runEvent() {
resetOreEvent()
if (surroundingMinedBlocks.isEmpty()) return
val originalBlock = surroundingMinedBlocks.firstOrNull { it.first.confirmed }?.first ?: run {
surroundingMinedBlocks.clear()
recentClickedBlocks.clear()
return
}
val extraBlocks = surroundingMinedBlocks.filter { it.first.confirmed }.countBy { it.first.ore }
OreMinedEvent(originalBlock.ore, extraBlocks).post()
surroundingMinedBlocks.clear()
recentClickedBlocks.removeIf { it.second.passedSince() >= originalBlock.time.passedSince() }
}
@SubscribeEvent
fun onWorldChange(event: LorenzWorldChangeEvent) {
if (cold != 0) updateCold(0)
lastColdReset = SimpleTimeMark.now()
recentClickedBlocks.clear()
surroundingMinedBlocks.clear()
pickobulusMinedBlocks.clear()
currentAreaOreBlocks = setOf()
resetOreEvent()
resetPickobulusEvent()
}
private fun resetOreEvent() {
lastInitSound = SimpleTimeMark.farPast()
waitingForInitSound = true
initBlockPos = null
waitingForEffMinerSound = false
waitingForEffMinerBlock = false
}
private fun resetPickobulusEvent() {
lastPickobulusUse = SimpleTimeMark.farPast()
lastPickobulusExplosion = SimpleTimeMark.farPast()
pickobulusExplosionPos = null
pickobulusWaitingForSound = false
pickobulusWaitingForBlock = false
}
@SubscribeEvent
fun onDebugDataCollect(event: DebugDataCollectEvent) {
event.title("Mining API")
if (!inCustomMiningIsland()) {
event.addIrrelevant("not in a mining island")
return
}
event.addData {
if (lastInitSound.isFarPast()) {
add("lastInitSound: never")
} else {
add("lastInitSound: ${lastInitSound.passedSince().format()}")
}
add("waitingForInitSound: $waitingForInitSound")
add("waitingForInitBlockPos: $initBlockPos")
add("waitingForEffMinerSound: $waitingForEffMinerSound")
add("waitingForEffMinerBlock: $waitingForEffMinerBlock")
add("recentlyClickedBlocks: ${recentClickedBlocks.joinToString { "(${it.first.toCleanString()}" }}")
}
}
private fun updateCold(newCold: Int) {
// Hypixel sends cold data once in scoreboard even after resetting it
if (cold == 0 && lastColdUpdate.passedSince() < 1.seconds) return
lastColdUpdate = SimpleTimeMark.now()
ColdUpdateEvent(newCold).postAndCatch()
cold = newCold
}
private fun updateLocation() {
inGlacite = inGlaciteArea()
inTunnels = inGlacialTunnels()
inMineshaft = inMineshaft()
inDwarvenMines = inRegularDwarven()
inCrystalHollows = inCrystalHollows()
inCrimsonIsle = IslandType.CRIMSON_ISLE.isInIsland()
inEnd = IslandType.THE_END.isInIsland()
inSpidersDen = IslandType.SPIDER_DEN.isInIsland()
currentAreaOreBlocks = OreBlock.entries.filter { it.checkArea() }.toSet()
}
}
|