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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
|
package at.hannibal2.skyhanni.data
import at.hannibal2.skyhanni.api.HotmAPI
import at.hannibal2.skyhanni.api.HotmAPI.MayhemPerk
import at.hannibal2.skyhanni.api.HotmAPI.SkymallPerk
import at.hannibal2.skyhanni.config.storage.ProfileSpecificStorage
import at.hannibal2.skyhanni.data.jsonobjects.local.HotmTree
import at.hannibal2.skyhanni.events.DebugDataCollectEvent
import at.hannibal2.skyhanni.events.InventoryCloseEvent
import at.hannibal2.skyhanni.events.InventoryFullyOpenedEvent
import at.hannibal2.skyhanni.events.IslandChangeEvent
import at.hannibal2.skyhanni.events.LorenzChatEvent
import at.hannibal2.skyhanni.events.ProfileJoinEvent
import at.hannibal2.skyhanni.events.ScoreboardUpdateEvent
import at.hannibal2.skyhanni.features.gui.customscoreboard.ScoreboardPattern
import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule
import at.hannibal2.skyhanni.test.command.ErrorManager
import at.hannibal2.skyhanni.utils.ChatUtils
import at.hannibal2.skyhanni.utils.CollectionUtils.addOrPut
import at.hannibal2.skyhanni.utils.ConditionalUtils.transformIf
import at.hannibal2.skyhanni.utils.DelayedRun
import at.hannibal2.skyhanni.utils.InventoryUtils
import at.hannibal2.skyhanni.utils.ItemUtils.getLore
import at.hannibal2.skyhanni.utils.ItemUtils.name
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.NumberUtil.addSeparators
import at.hannibal2.skyhanni.utils.NumberUtil.formatLong
import at.hannibal2.skyhanni.utils.RegexUtils.indexOfFirstMatch
import at.hannibal2.skyhanni.utils.RegexUtils.matchFirst
import at.hannibal2.skyhanni.utils.RegexUtils.matchMatcher
import at.hannibal2.skyhanni.utils.RegexUtils.matches
import at.hannibal2.skyhanni.utils.StringUtils.allLettersFirstUppercase
import at.hannibal2.skyhanni.utils.repopatterns.RepoPattern
import net.minecraft.inventory.Slot
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import kotlin.math.ceil
import kotlin.math.pow
private fun calculatePeakOfTheMountainLoot(level: Int): Map<HotmReward, Double> = buildMap {
for (i in 1..level) {
when (i) {
1, 5, 7 -> addOrPut(HotmReward.EXTRA_TOKENS, 1.0)
2 -> addOrPut(HotmReward.EXTRA_FORGE_SLOTS, 1.0)
3 -> addOrPut(HotmReward.EXTRA_COMMISSION_SLOTS, 1.0)
4 -> addOrPut(HotmReward.MORE_BASE_MITHRIL_POWER, 1.0)
6 -> addOrPut(HotmReward.MORE_BASE_GEMSTONE_POWER, 2.0)
8 -> addOrPut(HotmReward.MORE_BASE_GLACITE_POWER, 3.0)
9 -> addOrPut(HotmReward.MINESHAFT_CHANCE, 10.0)
10 -> addOrPut(HotmReward.EXTRA_TOKENS, 2.0)
}
}
}
enum class HotmData(
val guiName: String,
val maxLevel: Int,
val costFun: (Int) -> (Double?),
val rewardFun: (Int) -> (Map<HotmReward, Double>),
) {
MINING_SPEED(
"Mining Speed",
50,
{ level -> (level + 1.0).pow(3) },
{ level -> mapOf(HotmReward.MINING_SPEED to level * 20.0) },
),
MINING_FORTUNE(
"Mining Fortune",
50,
{ level -> (level + 1.0).pow(3.05) },
{ level -> mapOf(HotmReward.MINING_FORTUNE to level * 5.0) },
),
QUICK_FORGE(
"Quick Forge",
20,
{ level -> (level + 1.0).pow(4) },
{ level -> mapOf(HotmReward.FORGE_TIME_DECREASE to if (level >= 20) 30.0 else 10.0 + (level * 0.5)) },
),
TITANIUM_INSANIUM(
"Titanium Insanium",
50,
{ level -> (level + 1.0).pow(3.1) },
{ level -> mapOf(HotmReward.TITANIUM_CHANCE to 2.0 + (level * 0.1)) },
),
DAILY_POWDER(
"Daily Powder",
100,
{ level -> 200 + ((level - 1) * 18.0) },
{ level -> mapOf(HotmReward.DAILY_POWDER to (200.0 + ((level - 1.0) * 18.0)) * 2.0) },
),
LUCK_OF_THE_CAVE(
"Luck of the Cave",
45,
{ level -> (level + 1.0).pow(3.07) },
{ level -> mapOf(HotmReward.EXTRA_CHANCE_TRIGGER_RARE_OCCURRENCES to 5.0 + level) },
),
CRYSTALLIZED(
"Crystallized",
30,
{ level -> (level + 1.0).pow(3.4) },
{ level ->
mapOf(
HotmReward.MINING_SPEED to 20.0 + ((level - 1.0) * 6.0),
HotmReward.MINING_FORTUNE to 20.0 + ((level - 1.0) * 5.0),
)
},
),
EFFICIENT_MINER(
"Efficient Miner",
100,
{ level -> (level + 1.0).pow(2.6) },
{ level -> mapOf(HotmReward.AVERAGE_BLOCK_BREAKS to (10.0 + (level * 0.4)) * (1.0 + (level * 0.05))) },
),
ORBITER(
"Orbiter",
80,
{ level -> level * 70.0 },
{ level -> mapOf(HotmReward.CHANCE_EXTRA_XP_ORBS to 0.2 + (level * 0.01)) },
),
SEASONED_MINEMAN(
"Seasoned Mineman",
100,
{ level -> (level + 1.0).pow(2.3) },
{ level -> mapOf(HotmReward.MINING_WISDOM to 5.0 + (level * 0.1)) },
),
MOLE(
"Mole",
190,
{ level -> (level + 1.0).pow(2.2) },
{ level -> mapOf(HotmReward.AVERAGE_BLOCK_BREAKS to 1.0 + ((level + 9.0) * 0.05 * ((level + 8) % 20))) },
),
PROFESSIONAL(
"Professional",
140,
{ level -> (level + 1.0).pow(2.3) },
{ level -> mapOf(HotmReward.MINING_SPEED to 50.0 + (level * 5.0)) },
),
LONESOME_MINER(
"Lonesome Miner",
45,
{ level -> (level + 1.0).pow(3.07) },
{ level -> mapOf(HotmReward.COMBAT_STAT_BOOST to 5.0 + ((level - 1.0) * 0.5)) },
),
GREAT_EXPLORER(
"Great Explorer",
20,
{ level -> (level + 1.0).pow(4.0) },
{ level ->
mapOf(
HotmReward.CHANCE_OF_TREASURE_CHEST to (0.2 * (0.2 + 0.04 * (level - 1.0))),
HotmReward.LOCKS_OF_TREASURE_CHEST to 1 + level * 0.2,
)
},
),
FORTUNATE(
"Fortunate",
20,
{ level -> (level + 1.0).pow(3.05) },
{ level -> mapOf(HotmReward.MINING_FORTUNE to 20.0 + (level * 4.0)) },
),
POWDER_BUFF(
"Powder Buff",
50,
{ level -> (level + 1.0).pow(3.2) },
{ level ->
mapOf(
HotmReward.MORE_MITHRIL_POWER to level.toDouble(),
HotmReward.MORE_GEMSTONE_POWER to level.toDouble(),
)
},
),
MINING_SPEED_II(
"Mining Speed II",
50,
{ level -> (level + 1.0).pow(3.2) },
{ level -> mapOf(HotmReward.MINING_SPEED to level * 40.0) },
),
MINING_FORTUNE_II(
"Mining Fortune II",
50,
{ level -> (level + 1.0).pow(3.2) },
{ level -> mapOf(HotmReward.MINING_FORTUNE to level * 5.0) },
),
// Static
MINING_MADNESS(
"Mining Madness",
1,
{ null },
{
mapOf(
HotmReward.MINING_SPEED to 50.0,
HotmReward.MINING_FORTUNE to 50.0,
)
},
),
SKY_MALL("Sky Mall", 1, { null }, { emptyMap() }),
PRECISION_MINING("Precision Mining", 1, { null }, { mapOf(HotmReward.MINING_SPEED_BOOST to 30.0) }),
FRONT_LOADED(
"Front Loaded",
1,
{ null },
{
mapOf(
HotmReward.MINING_SPEED to 100.0,
HotmReward.MINING_FORTUNE to 100.0,
HotmReward.MORE_BASE_MITHRIL_POWER to 2.0,
HotmReward.MORE_BASE_GEMSTONE_POWER to 2.0,
)
},
),
STAR_POWDER("Star Powder", 1, { null }, { mapOf(HotmReward.MORE_MITHRIL_POWER to 300.0) }),
GOBLIN_KILLER("Goblin Killer", 1, { null }, { emptyMap() }),
// Abilities
PICKOBULUS(
"Pickobulus",
3,
{ null },
{ level ->
mapOf(
HotmReward.ABILITY_RADIUS to ceil(level * 0.5) + 1.0,
HotmReward.ABILITY_COOLDOWN to 130.0 - 10.0 * level,
)
},
),
MINING_SPEED_BOOST(
"Mining Speed Boost",
3,
{ null },
{ level ->
mapOf(
HotmReward.ABILITY_DURATION to level + 1.0,
HotmReward.ABILITY_COOLDOWN to 10.0 + 5.0 * level,
)
},
),
VEIN_SEEKER(
"Vein Seeker",
3,
{ null },
{ level ->
mapOf(
HotmReward.ABILITY_RADIUS to level + 1.0,
HotmReward.ABILITY_DURATION to 10.0 + 2.0 * level,
HotmReward.ABILITY_COOLDOWN to 60.0,
)
},
),
MANIAC_MINER(
"Maniac Miner",
3,
{ null },
{ level ->
mapOf(
HotmReward.ABILITY_DURATION to 5.0 + level * 5.0,
HotmReward.ABILITY_COOLDOWN to 60.0 - level,
)
},
),
PEAK_OF_THE_MOUNTAIN(
"Peak of the Mountain", 10, { null },
{ level -> calculatePeakOfTheMountainLoot(level) },
),
// Mining V3
DAILY_GRIND(
"Daily Grind",
100,
{ level -> 218 + (18 * (level - 1.0)) },
{ level -> mapOf(HotmReward.DAILY_POWDER to 50.0 * level) },
),
DUST_COLLECTOR(
"Dust Collector",
20,
{ level -> (level + 1.0).pow(4) },
{ level -> mapOf(HotmReward.FOSSIL_DUST to 1.0 * level) },
),
WARM_HEARTED(
"Warm Hearted",
50,
{ level -> (level + 1.0).pow(3.1) },
{ level -> mapOf(HotmReward.COLD_RESISTANCE to 0.2 * level) },
),
STRONG_ARM(
"Strong Arm",
100,
{ level -> (level + 1.0).pow(2.3) },
{ level -> mapOf(HotmReward.MINING_SPEED to 5.0 * level) },
),
NO_STONE_UNTURNED(
"No Stone Unturned",
50,
{ level -> (level + 1.0).pow(3.05) },
{ level -> mapOf(HotmReward.UNKNOWN to 0.5 * level) },
),
SUB_ZERO_MINING(
"SubZero Mining",
100,
{ level -> (level + 1.0).pow(2.3) },
{ level -> mapOf(HotmReward.MINING_FORTUNE to 1.0 * level) },
),
SURVEYOR(
"Surveyor",
20,
{ level -> (level + 1.0).pow(4) },
{ level -> mapOf(HotmReward.MINESHAFT_CHANCE to 0.75 * level) },
),
EAGER_ADVENTURER(
"Eager Adventurer",
100,
{ level -> (level + 1.0).pow(2.3) },
{ level -> mapOf(HotmReward.MINING_SPEED to 2.0 * level) },
),
DEAD_MANS_CHEST(
"Dead Man's Chest",
50,
{ level -> (level + 1.0).pow(3.2) },
{ level -> mapOf(HotmReward.UNKNOWN to 1.0 * level) },
),
GIFTS_FROM_THE_DEPARTED(
"Gifts from the Departed",
100,
{ level -> (level + 1.0).pow(2.45) },
{ level -> mapOf(HotmReward.UNKNOWN to 0.2 * level) },
),
EXCAVATOR(
"Excavator",
50,
{ level -> (level + 1.0).pow(3) },
{ level -> mapOf(HotmReward.UNKNOWN to 0.5 * level) },
),
RAGS_TO_RICHES(
"Rags to Riches",
50,
{ level -> (level + 1.0).pow(3.05) },
{ level -> mapOf(HotmReward.MINING_FORTUNE to 2.0 * level) },
),
KEEN_EYE("Keen Eye", 1, { null }, { emptyMap() }),
MINESHAFT_MAYHEM("Mineshaft Mayhem", 1, { null }, { emptyMap() }),
FROZEN_SOLID("Frozen Solid", 1, { null }, { emptyMap() }),
GEMSTONE_INFUSION("Gemstone Infusion", 1, { null }, { emptyMap() }),
HAZARDOUS_MINER("Hazardous Miner", 1, { null }, { emptyMap() }),
;
private val guiNamePattern by patternGroup.pattern("perk.name.${name.lowercase().replace("_", "")}", "§.$guiName")
val printName = name.allLettersFirstUppercase()
/** Level which are actually paid with powder (does exclude [blueEgg])*/
var rawLevel: Int
get() = storage?.perks?.get(this.name)?.level ?: 0
private set(value) {
storage?.perks?.computeIfAbsent(this.name) { HotmTree.HotmPerk() }?.level = value
}
/** Level for which the effect that is present (considers [enabled] and [blueEgg])*/
val activeLevel: Int
get() = if (enabled) effectivLevel else 0
/** Level that considering [blueEgg]*/
val effectivLevel: Int get() = storage?.perks?.get(this.name)?.level?.plus(blueEgg()) ?: 0
val isMaxLevel: Boolean
get() = effectivLevel >= maxLevel // >= to account for +1 from Blue Cheese
private fun blueEgg() = if (this != PEAK_OF_THE_MOUNTAIN && maxLevel != 1 && HotmAPI.isBlueEggActive) 1 else 0
var enabled: Boolean
get() = storage?.perks?.get(this.name)?.enabled ?: false
private set(value) {
storage?.perks?.computeIfAbsent(this.name) { HotmTree.HotmPerk() }?.enabled = value
}
var isUnlocked: Boolean
get() = storage?.perks?.get(this.name)?.isUnlocked ?: false
private set(value) {
storage?.perks?.computeIfAbsent(this.name) { HotmTree.HotmPerk() }?.isUnlocked = value
}
var slot: Slot? = null
private set
fun getLevelUpCost() = costFun(rawLevel)
fun getReward() = if (enabled) rewardFun(activeLevel) else emptyMap()
fun calculateTotalCost(desiredLevel: Int) = (2..desiredLevel).sumOf { level -> costFun(level)?.toInt() ?: 0 }
val totalCostMaxLevel = calculateTotalCost(maxLevel)
// TODO move all object functions into hotm api?
@SkyHanniModule
companion object {
val storage get() = ProfileStorageData.profileSpecific?.mining?.hotmTree
val abilities = listOf(PICKOBULUS, MINING_SPEED_BOOST, VEIN_SEEKER, MANIAC_MINER, HAZARDOUS_MINER, GEMSTONE_INFUSION)
private val inventoryPattern by patternGroup.pattern(
"inventory",
"Heart of the Mountain",
)
/**
* REGEX-TEST: §5§o§7Level 1§8/50 §7(§b0 §l0%§7):skull:
* REGEX-TEST: §7Level 1§8/50
*/
private val levelPattern by patternGroup.pattern(
"perk.level",
"(?:§.)*§(?<color>.)Level (?<level>\\d+).*",
)
private val notUnlockedPattern by patternGroup.pattern(
"perk.notunlocked",
"(§.)*Requires.*|.*Mountain!|(§.)*Click to unlock!|",
)
private val enabledPattern by patternGroup.pattern(
"perk.enable",
"§a§lENABLED|(§.)*SELECTED",
)
private val disabledPattern by patternGroup.pattern(
"perk.disabled",
"§c§lDISABLED|§7§eClick to select!",
) // unused for now since the assumption is when enabled isn't found, it is disabled,
// but the value might be useful in the future or for debugging
val perkCostPattern by patternGroup.pattern(
"perk.cost",
"(?:§.)*§7Cost",
)
private val resetChatPattern by patternGroup.pattern(
"reset.chat",
"§aReset your §r§5Heart of the Mountain§r§a! Your Perks and Abilities have been reset.",
)
private val heartItemPattern by patternGroup.pattern(
"inventory.heart",
"§5Heart of the Mountain",
)
private val resetItemPattern by patternGroup.pattern(
"inventory.reset",
"§cReset Heart of the Mountain",
)
private val heartTokensPattern by patternGroup.pattern(
"inventory.heart.token",
"§7Token of the Mountain: §5(?<token>\\d+)",
)
private val resetTokensPattern by patternGroup.pattern(
"inventory.reset.token",
"\\s+§8- §5(?<token>\\d+) Token of the Mountain",
)
private val skymallPattern by patternGroup.pattern(
"skymall",
"(?:§eNew buff§r§r§r: §r§f|§8 ■ §7)(?<perk>.*)",
)
private val mayhemChatPattern by patternGroup.pattern(
"mayhem",
"§b§lMAYHEM! §r§7(?<perk>.*)",
)
var inInventory = false
var tokens: Int
get() = ProfileStorageData.profileSpecific?.mining?.tokens ?: 0
private set(value) {
ProfileStorageData.profileSpecific?.mining?.tokens = value
}
var availableTokens: Int
get() = ProfileStorageData.profileSpecific?.mining?.availableTokens ?: 0
private set(value) {
ProfileStorageData.profileSpecific?.mining?.availableTokens = value
}
var heartItem: Slot? = null
init {
entries.forEach { it.guiNamePattern }
HotmAPI.Powder.entries.forEach {
it.heartPattern
it.resetPattern
}
HotmAPI.SkymallPerk.entries.forEach {
it.chatPattern
it.itemPattern
}
HotmAPI.MayhemPerk.entries.forEach {
it.chatPattern
}
(0..PEAK_OF_THE_MOUNTAIN.maxLevel).forEach { level ->
val map = mutableMapOf<HotmReward, Double>()
if (level >= 1) map.addOrPut(HotmReward.EXTRA_TOKENS, 1.0)
if (level >= 2) map.addOrPut(HotmReward.EXTRA_FORGE_SLOTS, 1.0)
if (level >= 3) map.addOrPut(HotmReward.EXTRA_COMMISSION_SLOTS, 1.0)
if (level >= 4) map.addOrPut(HotmReward.MORE_BASE_MITHRIL_POWER, 1.0)
if (level >= 5) map.addOrPut(HotmReward.EXTRA_TOKENS, 1.0)
if (level >= 6) map.addOrPut(HotmReward.MORE_BASE_GEMSTONE_POWER, 2.0)
if (level >= 7) map.addOrPut(HotmReward.EXTRA_TOKENS, 1.0)
if (level >= 8) map.addOrPut(HotmReward.MORE_BASE_GLACITE_POWER, 3.0)
if (level >= 9) map.addOrPut(HotmReward.MINESHAFT_CHANCE, 10.0)
if (level >= 10) map.addOrPut(HotmReward.EXTRA_TOKENS, 2.0)
peakOfTheMountainPerks[level] = map
}
}
fun getPerkByNameOrNull(name: String): HotmData? = entries.find { it.guiName == name }
private fun resetTree() = entries.forEach {
it.rawLevel = 0
it.enabled = false
it.isUnlocked = false
HotmAPI.Powder.entries.forEach { it.setCurrent(it.getTotal()) }
availableTokens = tokens
}
private fun Slot.parse() {
val item = this.stack ?: return
if (this.handlePowder()) return
val entry = entries.firstOrNull { it.guiNamePattern.matches(item.name) } ?: return
entry.slot = this
val lore = item.getLore().takeIf { it.isNotEmpty() } ?: return
if (entry != PEAK_OF_THE_MOUNTAIN && notUnlockedPattern.matches(lore.last())) {
entry.rawLevel = 0
entry.enabled = false
entry.isUnlocked = false
return
}
entry.isUnlocked = true
entry.rawLevel = levelPattern.matchMatcher(lore.first()) {
group("level").toInt().transformIf({ group("color") == "b" }, { this.minus(1) })
} ?: entry.maxLevel
// raw level to ignore the blue egg buff
if (entry.rawLevel > entry.maxLevel) {
ErrorManager.skyHanniError(
"Hotm Perk '${entry.name}' over max level",
"name" to entry.name,
"activeLevel" to entry.activeLevel,
"maxLevel" to entry.maxLevel,
)
}
if (entry == PEAK_OF_THE_MOUNTAIN) {
entry.enabled = entry.rawLevel != 0
return
}
entry.enabled = lore.any { enabledPattern.matches(it) }
if (entry == SKY_MALL) handleSkyMall(lore)
}
private fun Slot.handlePowder(): Boolean {
val item = this.stack ?: return false
val isHeartItem = when {
heartItemPattern.matches(item.name) -> true
resetItemPattern.matches(item.name) -> false
else -> return false
}
if (isHeartItem) { // Reset on the heart Item to remove duplication
tokens = 0
availableTokens = 0
HotmAPI.Powder.entries.forEach { it.reset() }
heartItem = this
}
val lore = item.getLore()
val tokenPattern = if (isHeartItem) heartTokensPattern else resetTokensPattern
lore@ for (line in lore) {
HotmAPI.Powder.entries.forEach {
it.pattern(isHeartItem).matchMatcher(line) {
val powder = group("powder").replace(",", "").toLong()
if (isHeartItem) {
it.setCurrent(powder)
}
it.addTotal(powder)
continue@lore
}
}
tokenPattern.matchMatcher(line) {
val token = group("token").toInt()
if (isHeartItem) {
availableTokens = token
}
tokens += token
continue@lore
}
}
return true
}
private val skyMallCurrentEffect by patternGroup.pattern(
"skymall.current",
"§aYour Current Effect",
)
private fun handleSkyMall(lore: List<String>) {
if (!SKY_MALL.enabled || !SKY_MALL.isUnlocked) HotmAPI.skymall = null
else {
val index = skyMallCurrentEffect.indexOfFirstMatch(lore) ?: run {
ErrorManager.logErrorStateWithData(
"Could not read the skymall effect from the hotm tree",
"skyMallCurrentEffect didn't match",
"lore" to lore,
)
return
}
skymallPattern.matchMatcher(lore[index + 1]) {
val perk = group("perk")
HotmAPI.skymall = SkymallPerk.entries.firstOrNull { it.itemPattern.matches(perk) } ?: run {
ErrorManager.logErrorStateWithData(
"Could not read the skymall effect from the hotm tree",
"no itemPattern matched",
"lore" to lore,
"perk" to perk,
)
null
}
}
}
}
@SubscribeEvent
fun onScoreboardUpdate(event: ScoreboardUpdateEvent) {
if (!LorenzUtils.inSkyBlock) return
event.scoreboard.matchFirst(ScoreboardPattern.powderPattern) {
val type = HotmAPI.Powder.entries.firstOrNull { it.displayName == group("type") } ?: return
val amount = group("amount").formatLong()
val difference = amount - type.getCurrent()
if (difference > 0) {
type.gain(difference)
ChatUtils.debug("Gained §a${difference.addSeparators()} §e${type.displayName} Powder")
}
}
}
@SubscribeEvent
fun onInventoryClose(event: InventoryCloseEvent) {
if (!inInventory) return
inInventory = false
entries.forEach { it.slot = null }
heartItem = null
}
@SubscribeEvent
fun onInventoryFullyOpen(event: InventoryFullyOpenedEvent) {
if (!LorenzUtils.inSkyBlock) return
inInventory = inventoryPattern.matches(event.inventoryName)
if (!inInventory) return
DelayedRun.runNextTick {
InventoryUtils.getItemsInOpenChest().forEach { it.parse() }
abilities.filter { it.isUnlocked }.forEach {
it.rawLevel = if (PEAK_OF_THE_MOUNTAIN.rawLevel >= 1) 2 else 1
}
}
}
@SubscribeEvent
fun onChat(event: LorenzChatEvent) {
if (!LorenzUtils.inSkyBlock) return
if (resetChatPattern.matches(event.message)) {
resetTree()
return
}
skymallPattern.matchMatcher(event.message) {
val perk = group("perk")
HotmAPI.skymall = SkymallPerk.entries.firstOrNull { it.chatPattern.matches(perk) } ?: run {
ErrorManager.logErrorStateWithData(
"Could not read the skymall effect from chat",
"no chatPattern matched",
"chat" to event.message,
"perk" to perk,
)
null
}
ChatUtils.debug("setting skymall to ${HotmAPI.skymall}")
return
}
DelayedRun.runNextTick {
mayhemChatPattern.matchMatcher(event.message) {
val perk = group("perk")
HotmAPI.mineshaftMayhem = MayhemPerk.entries.firstOrNull { it.chatPattern.matches(perk) } ?: run {
ErrorManager.logErrorStateWithData(
"Could not read the mayhem effect from chat",
"no chatPattern matched",
"chat" to event.message,
"perk" to perk,
)
null
}
ChatUtils.debug("setting mineshaftMayhem to ${HotmAPI.mineshaftMayhem}")
}
}
}
@SubscribeEvent
fun onWorldSwitch(event: IslandChangeEvent) {
if (HotmAPI.mineshaftMayhem == null) return
HotmAPI.mineshaftMayhem = null
ChatUtils.debug("resetting mineshaftMayhem")
}
@SubscribeEvent
fun onProfileSwitch(event: ProfileJoinEvent) {
HotmAPI.Powder.entries.forEach {
if (it.getStorage() == null) {
ProfileStorageData.profileSpecific?.mining?.powder?.put(
it,
ProfileSpecificStorage.MiningConfig.PowderStorage(),
)
}
}
}
@SubscribeEvent
fun onDebug(event: DebugDataCollectEvent) {
event.title("HotM")
event.addIrrelevant {
add("Tokens : $availableTokens/$tokens")
HotmAPI.Powder.entries.forEach {
add("${it.displayName} Powder: ${it.getCurrent()}/${it.getTotal()}")
}
add("Ability: ${HotmAPI.activeMiningAbility?.printName}")
add("Blue Egg: ${HotmAPI.isBlueEggActive}")
add("SkyMall: ${HotmAPI.skymall}")
add("Mineshaft Mayhem: ${HotmAPI.mineshaftMayhem}")
}
event.title("HotM - Tree")
event.addIrrelevant(
entries.filter { it.isUnlocked }.map {
"${if (it.enabled) "✔" else "✖"} ${it.printName}: ${it.activeLevel}"
},
)
}
}
}
private val peakOfTheMountainPerks = mutableMapOf<Int, Map<HotmReward, Double>>()
private val patternGroup = RepoPattern.group("mining.hotm")
enum class HotmReward {
MINING_SPEED,
MINING_FORTUNE,
MINING_WISDOM,
FORGE_TIME_DECREASE,
TITANIUM_CHANCE,
DAILY_POWDER,
MORE_BASE_MITHRIL_POWER,
MORE_BASE_GEMSTONE_POWER,
MORE_BASE_GLACITE_POWER,
MORE_MITHRIL_POWER,
MORE_GEMSTONE_POWER,
COMBAT_STAT_BOOST,
CHANCE_OF_TREASURE_CHEST,
LOCKS_OF_TREASURE_CHEST,
EXTRA_CHANCE_TRIGGER_RARE_OCCURRENCES,
AVERAGE_BLOCK_BREAKS,
CHANCE_EXTRA_XP_ORBS,
MINING_SPEED_BOOST,
ABILITY_DURATION,
ABILITY_RADIUS,
ABILITY_COOLDOWN,
FOSSIL_DUST,
MINESHAFT_CHANCE,
EXTRA_TOKENS,
EXTRA_FORGE_SLOTS,
EXTRA_COMMISSION_SLOTS,
UNKNOWN,
COLD_RESISTANCE
}
|