aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorJ10a1n15 <45315647+j10a1n15@users.noreply.github.com>2024-03-19 10:15:03 +0100
committerGitHub <noreply@github.com>2024-03-19 10:15:03 +0100
commitdc391b540873a9e34d3f9bb75b7b9e84690357e2 (patch)
tree93a1fb29f2e278db1ea9bc6f9134fcd75a1a16fc /src/main
parentab060b5823d5eb5946aa80eea12c77896ece8fed (diff)
downloadskyhanni-dc391b540873a9e34d3f9bb75b7b9e84690357e2.tar.gz
skyhanni-dc391b540873a9e34d3f9bb75b7b9e84690357e2.tar.bz2
skyhanni-dc391b540873a9e34d3f9bb75b7b9e84690357e2.zip
Improvement + Fix: Custom Scoreboard Fixes Part 4 (#1212)
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/MaxwellAPI.kt6
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/CustomScoreboard.kt13
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardEvents.kt12
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardPattern.kt2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/UnknownLinesHandler.kt1
5 files changed, 11 insertions, 23 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/MaxwellAPI.kt b/src/main/java/at/hannibal2/skyhanni/data/MaxwellAPI.kt
index 98c410b86..e584efd80 100644
--- a/src/main/java/at/hannibal2/skyhanni/data/MaxwellAPI.kt
+++ b/src/main/java/at/hannibal2/skyhanni/data/MaxwellAPI.kt
@@ -125,13 +125,13 @@ object MaxwellAPI {
if (tunings?.isNotEmpty() == true) {
val tuningsInScoreboard = ScoreboardElement.TUNING in CustomScoreboard.config.scoreboardEntries
if (tuningsInScoreboard) {
- ChatUtils.chat("Talk to Maxwell again to update the tuning data in scoreboard.")
+ ChatUtils.chat("Talk to Maxwell and open the Tuning Page again to update the tuning data in scoreboard.")
}
}
}
}
- // load earler, so that other features can already use the api in this event
+ // load earlier, so that other features can already use the api in this event
@SubscribeEvent(priority = EventPriority.HIGH)
fun onInventoryFullyLoaded(event: InventoryOpenEvent) {
if (!isEnabled()) return
@@ -200,7 +200,7 @@ object MaxwellAPI {
private fun loadThaumaturgyTunings(inventoryItems: Map<Int, ItemStack>) {
val tunings = tunings ?: return
- // Only load those rounded values if we dont have any valurs at all
+ // Only load those rounded values if we dont have any values at all
if (tunings.isNotEmpty()) return
val item = inventoryItems[51] ?: return
diff --git a/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/CustomScoreboard.kt b/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/CustomScoreboard.kt
index 1ee86cdb7..933c4d47e 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/CustomScoreboard.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/CustomScoreboard.kt
@@ -9,11 +9,9 @@
// - countdown events like fishing festival + fiesta when its not on tablist
// - CookieAPI https://discord.com/channels/997079228510117908/1162844830360146080/1195695210433351821
// - Rng meter display
-// - shorten time till next mayor https://discord.com/channels/997079228510117908/1162844830360146080/1216440046320746596
// - option to hide coins earned
// - color options in the purse etc lines
// - choose the amount of decimal places in shorten nums
-// - ~~very important bug fix: duplex is weird :(~~ will be fixed with empas quiverapi overhaul
// - more anchor points (alignment enums in renderutils)
//
@@ -99,28 +97,29 @@ class CustomScoreboard {
private fun createLines() = buildList<ScoreboardElementType> {
for (element in config.scoreboardEntries) {
- val line = element.getVisiblePair()
+ val lines = element.getVisiblePair()
+ if (lines.isEmpty()) continue
// Hide consecutive empty lines
if (
informationFilteringConfig.hideConsecutiveEmptyLines &&
- line.isNotEmpty() && line[0].first == "<empty>" && lastOrNull()?.first?.isEmpty() == true
+ lines.isNotEmpty() && lines[0].first == "<empty>" && lastOrNull()?.first?.isEmpty() == true
) {
continue
}
// Adds empty lines
- if (line[0].first == "<empty>") {
+ if (lines[0].first == "<empty>") {
add("" to HorizontalAlignment.LEFT)
continue
}
// Does not display this line
- if (line.any { it.first == "<hidden>" }) {
+ if (lines.any { it.first == "<hidden>" }) {
continue
}
- addAll(line)
+ addAll(lines)
}
}
diff --git a/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardEvents.kt b/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardEvents.kt
index 636433ccc..21ec0d036 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardEvents.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardEvents.kt
@@ -92,10 +92,6 @@ enum class ScoreboardEvents(private val displayLine: Supplier<List<String>>, pri
::getBroodmotherLines,
::getBroodmotherShowWhen
),
- NEW_YEAR(
- ::getNewYearLines,
- ::getNewYearShowWhen
- ),
ORINGO(
::getOringoLines,
::getOringoShowWhen
@@ -370,14 +366,6 @@ private fun getBroodmotherShowWhen(): Boolean {
return getSbLines().any { SbPattern.broodmotherPattern.matches(it) }
}
-private fun getNewYearLines(): List<String> {
- return listOf(getSbLines().first { SbPattern.newYearPattern.matches(it) })
-}
-
-private fun getNewYearShowWhen(): Boolean {
- return getSbLines().any { SbPattern.newYearPattern.matches(it) }
-}
-
private fun getOringoLines(): List<String> {
return listOf(getSbLines().first { SbPattern.travelingZooPattern.matches(it) })
}
diff --git a/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardPattern.kt b/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardPattern.kt
index b515fe37b..b4f946523 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardPattern.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardPattern.kt
@@ -283,7 +283,7 @@ object ScoreboardPattern {
)
val brokenRedstonePattern by miscSb.pattern(
"brokenredstone",
- "\\s*e: §e§b\\d{1,3}%$"
+ "\\s*(?:(?:§.)*⚡ (§.)*Redston|e: (?:§.)*\\d+%)\\s*"
)
val redstonePattern by miscSb.pattern(
"redstone",
diff --git a/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/UnknownLinesHandler.kt b/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/UnknownLinesHandler.kt
index b89a7b86c..6261e9c81 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/UnknownLinesHandler.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/UnknownLinesHandler.kt
@@ -41,6 +41,7 @@ object UnknownLinesHandler {
SbPattern.autoClosingPattern,
SbPattern.startingInPattern,
SbPattern.timeElapsedPattern,
+ SbPattern.instanceShutdownPattern,
SbPattern.keysPattern,
SbPattern.clearedPattern,
SbPattern.soloPattern,