diff options
author | nea <nea@nea.moe> | 2023-06-02 17:22:43 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-06-02 17:22:43 +0200 |
commit | f249df8f67114b14e3d75a955ace1d28ba6cb937 (patch) | |
tree | 8dbc1c813b6bb2b9cc9674e5e9e85bb4088b08f1 | |
parent | ccf1d1d0e97983509b29c276caa058b8c8284a66 (diff) | |
download | firmament-f249df8f67114b14e3d75a955ace1d28ba6cb937.tar.gz firmament-f249df8f67114b14e3d75a955ace1d28ba6cb937.tar.bz2 firmament-f249df8f67114b14e3d75a955ace1d28ba6cb937.zip |
Refactor skill page
-rw-r--r-- | src/main/kotlin/moe/nea/firmament/apis/Profiles.kt | 7 | ||||
-rw-r--r-- | src/main/kotlin/moe/nea/firmament/gui/profileviewer/SkillPage.kt | 49 |
2 files changed, 29 insertions, 27 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/apis/Profiles.kt b/src/main/kotlin/moe/nea/firmament/apis/Profiles.kt index 2e483ee..4fd5704 100644 --- a/src/main/kotlin/moe/nea/firmament/apis/Profiles.kt +++ b/src/main/kotlin/moe/nea/firmament/apis/Profiles.kt @@ -11,6 +11,7 @@ import kotlinx.serialization.Serializable import kotlinx.serialization.UseSerializers import kotlin.reflect.KProperty1 import net.minecraft.util.DyeColor +import net.minecraft.util.Formatting import moe.nea.firmament.repo.RepoManager import moe.nea.firmament.util.LegacyFormattingCode import moe.nea.firmament.util.json.DashlessUUIDSerializer @@ -130,6 +131,12 @@ data class PlayerData( ) { val rankPlusDyeColor = LegacyFormattingCode.values().find { it.name == rankPlusColor } ?: LegacyFormattingCode.GOLD val rankData get() = RepoManager.neuRepo.constants.misc.ranks[if (monthlyPackageRank == "NONE" || monthlyPackageRank == null) packageRank else monthlyPackageRank] + fun getDisplayName() = rankData?.let { + ("§${it.color}[${it.tag}${rankPlusDyeColor.modern}" + + "${it.plus ?: ""}§${it.color}] $playerName") + } ?: "${Formatting.GRAY}${playerName}" + + } @Serializable diff --git a/src/main/kotlin/moe/nea/firmament/gui/profileviewer/SkillPage.kt b/src/main/kotlin/moe/nea/firmament/gui/profileviewer/SkillPage.kt index a485954..c750101 100644 --- a/src/main/kotlin/moe/nea/firmament/gui/profileviewer/SkillPage.kt +++ b/src/main/kotlin/moe/nea/firmament/gui/profileviewer/SkillPage.kt @@ -10,7 +10,6 @@ import io.github.cottonmc.cotton.gui.widget.icon.ItemIcon import net.minecraft.item.ItemStack import net.minecraft.item.Items import net.minecraft.text.Text -import net.minecraft.util.Formatting import moe.nea.firmament.apis.Skill import moe.nea.firmament.gui.WBar import moe.nea.firmament.repo.RepoManager @@ -18,37 +17,33 @@ import moe.nea.firmament.util.FirmFormatters import moe.nea.firmament.util.toShedaniel object SkillPage : ProfilePage { + + private fun skillBar(profileViewer: ProfileViewer, skill: Skill): WBar { + val leveling = RepoManager.neuRepo.constants.leveling + val exp = skill.accessor.get(profileViewer.member) + val maxLevel = skill.getMaximumLevel(leveling) + val level = skill.getLadder(leveling) + .runningFold(0.0) { a, b -> a + b } + .filter { it <= exp }.size + .coerceAtMost(maxLevel) + return object : WBar( + level.toDouble(), maxLevel.toDouble(), + skill.color.toShedaniel(), skill.color.toShedaniel().darker(2.0) + ) { + override fun addTooltip(tooltip: TooltipBuilder) { + tooltip.add(Text.literal("$level/$maxLevel")) + tooltip.add(Text.translatable("firmament.pv.skills.total", FirmFormatters.toString(exp, 1))) + } + } + } + override fun getElements(profileViewer: ProfileViewer): WWidget { return WGridPanel().also { it.insets = Insets.ROOT_PANEL - it.add( - WText( - Text.literal( - profileViewer.account.rankData?.let { - ("§${it.color}[${it.tag}${profileViewer.account.rankPlusDyeColor.modern}" + - "${it.plus ?: ""}§${it.color}] ${profileViewer.primaryName}") - } ?: "${Formatting.GRAY}${profileViewer.primaryName}" - ) - ), 0, 0, 6, 1 - ) + it.add(WText(Text.literal(profileViewer.account.getDisplayName())), 0, 0, 6, 1) for ((i, skill) in Skill.values().withIndex()) { - val leveling = RepoManager.neuRepo.constants.leveling - val exp = skill.accessor.get(profileViewer.member) - val maxLevel = skill.getMaximumLevel(leveling) - val level = skill.getLadder(leveling) - .runningFold(0.0) { a, b -> a + b } - .filter { it <= exp }.size - .coerceAtMost(maxLevel) it.add(WText(Text.translatable("firmament.pv.skills.${skill.name.lowercase()}")), 0, i + 1, 4, 1) - it.add(object : WBar( - level.toDouble(), maxLevel.toDouble(), - skill.color.toShedaniel(), skill.color.toShedaniel().darker(2.0) - ) { - override fun addTooltip(tooltip: TooltipBuilder) { - tooltip.add(Text.literal("$level/$maxLevel")) - tooltip.add(Text.translatable("firmament.pv.skills.total", FirmFormatters.toString(exp, 1))) - } - }, 4, i + 1, 4, 1) + it.add(skillBar(profileViewer, skill), 4, i + 1, 4, 1) } } } |