From 771e16ff43ac817d26e20b0421dd9273e8dc89e7 Mon Sep 17 00:00:00 2001 From: BERADQ Date: Fri, 8 Nov 2024 18:13:18 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20lifetime=20=E4=B8=8D?= =?UTF-8?q?=E7=94=9F=E6=95=88=E7=9A=84=20bug=E3=80=82=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E6=8C=87=E4=BB=A4=E8=A1=A5=E5=85=A8=E5=86=85=E5=AE=B9=E9=94=99?= =?UTF-8?q?=E8=AF=AF=E7=9A=84=E9=97=AE=E9=A2=98=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gradle.properties | 2 +- .../io/github/beradq/adybubbles/AdyBubbles.kt | 2 +- .../beradq/adybubbles/BubblesChatCommand.kt | 20 +++++------------ .../beradq/adybubbles/BubblesCommand.kt | 10 ++++----- .../io/github/beradq/adybubbles/Config.kt | 8 +++---- .../io/github/beradq/adybubbles/Utils.kt | 22 +++++++++++++++++-- 6 files changed, 37 insertions(+), 27 deletions(-) diff --git a/gradle.properties b/gradle.properties index cba3d79..17ddaa1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ group=io.github.beradq.adybubbles -version=2.5.1 +version=2.5.2 kotlin.incremental=true kotlin.incremental.java=true kotlin.caching.enabled=true diff --git a/src/main/kotlin/io/github/beradq/adybubbles/AdyBubbles.kt b/src/main/kotlin/io/github/beradq/adybubbles/AdyBubbles.kt index f7ef68d..863f2a8 100644 --- a/src/main/kotlin/io/github/beradq/adybubbles/AdyBubbles.kt +++ b/src/main/kotlin/io/github/beradq/adybubbles/AdyBubbles.kt @@ -16,7 +16,7 @@ import taboolib.common.platform.function.submit object AdyBubbles : Plugin() { - const val versionName = "2.5.1" + const val versionName = "2.5.2" val adyApi: AdyeshachAPI = Adyeshach.api() val hologramHandler = adyApi.getHologramHandler() diff --git a/src/main/kotlin/io/github/beradq/adybubbles/BubblesChatCommand.kt b/src/main/kotlin/io/github/beradq/adybubbles/BubblesChatCommand.kt index 4f45aec..9033835 100644 --- a/src/main/kotlin/io/github/beradq/adybubbles/BubblesChatCommand.kt +++ b/src/main/kotlin/io/github/beradq/adybubbles/BubblesChatCommand.kt @@ -105,9 +105,7 @@ object BubblesChatCommand { @Suppress("unused") val play = subCommand { dynamic("UUID") { - suggestion(uncheck = true) { _, _ -> - entityFinder.getEntities().map { it.uniqueId } - } + suggestEntityListUnique() execute { _, context, _ -> val uuid = context["UUID"] TraitBubblesChat.startOnce(uuid) @@ -120,9 +118,7 @@ object BubblesChatCommand { val editdata = subCommand { bool("RECALL") { dynamic("UUID") { - suggestion(uncheck = true) { _, _ -> - entityFinder.getEntities().map { it.uniqueId } - } + suggestEntityListUnique() dynamic("FIELD") { suggestion(uncheck = false) { _, _ -> listOf("items", "mode", "period", "rest-delay") @@ -212,12 +208,10 @@ object BubblesChatCommand { @CommandBody @Suppress("unused") val edit = subCommand { - dynamic("NPCID") { - suggestion(uncheck = true) { _, _ -> - entityFinder.getEntities().map { it.id } - } + dynamic("NPC_ID") { + suggestEntityList() execute { sender, context, _ -> - val npcs = entityFinder.getEntitiesFromId(context["NPCID"]) + val npcs = entityFinder.getEntitiesFromId(context["NPC_ID"]) if (npcs.size == 1) { val uuid = npcs[0].uniqueId sendEditMessage(adaptPlayer(sender as Player), uuid, npcs[0].id) @@ -237,9 +231,7 @@ object BubblesChatCommand { @Suppress("unused") val edit2 = subCommand { dynamic("UUID") { - suggestion(uncheck = true) { _, _ -> - entityFinder.getEntities().map { it.uniqueId } - } + suggestEntityListUnique() execute { sender, context, _ -> val uuid = context["UUID"] val npc = entityFinder.getEntityFromUniqueId(uuid)!! diff --git a/src/main/kotlin/io/github/beradq/adybubbles/BubblesCommand.kt b/src/main/kotlin/io/github/beradq/adybubbles/BubblesCommand.kt index 6725e4f..cede9af 100644 --- a/src/main/kotlin/io/github/beradq/adybubbles/BubblesCommand.kt +++ b/src/main/kotlin/io/github/beradq/adybubbles/BubblesCommand.kt @@ -4,6 +4,7 @@ import org.bukkit.command.CommandSender import org.bukkit.entity.Player import taboolib.common.platform.command.* import taboolib.platform.util.* +import io.github.beradq.adybubbles.AdyBubbles.entityFinder @CommandHeader("bubbles") @Suppress("unused") @@ -12,9 +13,7 @@ object BubblesCommand { @Suppress("unused") val popup = subCommand { dynamic("NPC_ID") { - suggestion(uncheck = true) { _, _ -> - AdyBubbles.adyApi.getEntityFinder().getEntities().map { it.id } - } + suggestEntityList() dynamic("TEXT") { execute { sender, context, _ -> val npcId = context["NPC_ID"] @@ -67,8 +66,9 @@ object BubblesCommand { @Suppress("unused") val clear = subCommand { dynamic("NPC_ID") { - suggestion(uncheck = true) { _, _ -> - AdyBubbles.adyApi.getEntityFinder().getEntities().map { it.id } + suggestEntityList() + suggestion(uncheck = true) { sender, _ -> + entityFinder.getEntities(sender as? Player) { it.isDerived() }.map { it.id } } execute { sender, context, _ -> val npcId = context["NPC_ID"] diff --git a/src/main/kotlin/io/github/beradq/adybubbles/Config.kt b/src/main/kotlin/io/github/beradq/adybubbles/Config.kt index 46a4ab3..f44ff86 100644 --- a/src/main/kotlin/io/github/beradq/adybubbles/Config.kt +++ b/src/main/kotlin/io/github/beradq/adybubbles/Config.kt @@ -26,13 +26,13 @@ object Config { @Awake(LifeCycle.ENABLE) fun reload() { configFile.reload() - val offset = configFile["offset"] as? Double ?: 0.5 - val lineHeight = configFile["line-height"] as? Double ?: 0.5 + val offset = configFile.getDouble("offset", .5) + val lineHeight = configFile.getDouble("line-height", 0.5) val chat = configFile.getConfigurationSection("chat") val period = chat?.getString("period")?.toLongRange() ?: (20L * 3)..(20 * 3) - val limit = chat?.get("limit") as? Int ?: 3 + val limit = chat?.getInt("limit", 3) ?: 3 val restDelayRange = chat?.getString("rest-delay")?.toLongRange() ?: 0L..0 - val lifetime = chat?.get("lifetime") as? Long + val lifetime = chat?.getLong("lifetime") bubblesConfig = BubblesConfig(offset, lineHeight, BubblesChatConfig(period, restDelayRange, limit, lifetime)) } } \ No newline at end of file diff --git a/src/main/kotlin/io/github/beradq/adybubbles/Utils.kt b/src/main/kotlin/io/github/beradq/adybubbles/Utils.kt index 571f587..d8d92d7 100644 --- a/src/main/kotlin/io/github/beradq/adybubbles/Utils.kt +++ b/src/main/kotlin/io/github/beradq/adybubbles/Utils.kt @@ -1,10 +1,28 @@ package io.github.beradq.adybubbles -inline infix fun T.pipe(func: (T) -> R): R { +import ink.ptms.adyeshach.module.command.Command +import io.github.beradq.adybubbles.AdyBubbles.entityFinder +import org.bukkit.command.CommandSender +import org.bukkit.entity.Player +import taboolib.common.platform.command.component.CommandComponentDynamic + +fun CommandComponentDynamic.suggestEntityList() { + suggestion(uncheck = true) { sender, _ -> + Command.finder.getEntities(sender as? Player) { !it.isDerived() }.map { it.id } + } +} + +fun CommandComponentDynamic.suggestEntityListUnique() { + suggestion(uncheck = true) { sender, _ -> + entityFinder.getEntities(sender as? Player) { !it.isDerived() }.map { it.uniqueId } + } +} + +inline infix fun T.pipe(func: (T) -> R): R { return func(this) } -inline infix fun T.also(func: (T) -> R): T { +inline infix fun T.also(func: (T) -> R): T { func(this) return this }