修复 lifetime 不生效的 bug。修复指令补全内容错误的问题。
This commit is contained in:
parent
ec0230794e
commit
771e16ff43
@ -1,5 +1,5 @@
|
|||||||
group=io.github.beradq.adybubbles
|
group=io.github.beradq.adybubbles
|
||||||
version=2.5.1
|
version=2.5.2
|
||||||
kotlin.incremental=true
|
kotlin.incremental=true
|
||||||
kotlin.incremental.java=true
|
kotlin.incremental.java=true
|
||||||
kotlin.caching.enabled=true
|
kotlin.caching.enabled=true
|
||||||
|
@ -16,7 +16,7 @@ import taboolib.common.platform.function.submit
|
|||||||
|
|
||||||
|
|
||||||
object AdyBubbles : Plugin() {
|
object AdyBubbles : Plugin() {
|
||||||
const val versionName = "2.5.1"
|
const val versionName = "2.5.2"
|
||||||
val adyApi: AdyeshachAPI = Adyeshach.api()
|
val adyApi: AdyeshachAPI = Adyeshach.api()
|
||||||
|
|
||||||
val hologramHandler = adyApi.getHologramHandler()
|
val hologramHandler = adyApi.getHologramHandler()
|
||||||
|
@ -105,9 +105,7 @@ object BubblesChatCommand {
|
|||||||
@Suppress("unused")
|
@Suppress("unused")
|
||||||
val play = subCommand {
|
val play = subCommand {
|
||||||
dynamic("UUID") {
|
dynamic("UUID") {
|
||||||
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
suggestEntityListUnique()
|
||||||
entityFinder.getEntities().map { it.uniqueId }
|
|
||||||
}
|
|
||||||
execute<CommandSender> { _, context, _ ->
|
execute<CommandSender> { _, context, _ ->
|
||||||
val uuid = context["UUID"]
|
val uuid = context["UUID"]
|
||||||
TraitBubblesChat.startOnce(uuid)
|
TraitBubblesChat.startOnce(uuid)
|
||||||
@ -120,9 +118,7 @@ object BubblesChatCommand {
|
|||||||
val editdata = subCommand {
|
val editdata = subCommand {
|
||||||
bool("RECALL") {
|
bool("RECALL") {
|
||||||
dynamic("UUID") {
|
dynamic("UUID") {
|
||||||
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
suggestEntityListUnique()
|
||||||
entityFinder.getEntities().map { it.uniqueId }
|
|
||||||
}
|
|
||||||
dynamic("FIELD") {
|
dynamic("FIELD") {
|
||||||
suggestion<CommandSender>(uncheck = false) { _, _ ->
|
suggestion<CommandSender>(uncheck = false) { _, _ ->
|
||||||
listOf("items", "mode", "period", "rest-delay")
|
listOf("items", "mode", "period", "rest-delay")
|
||||||
@ -212,12 +208,10 @@ object BubblesChatCommand {
|
|||||||
@CommandBody
|
@CommandBody
|
||||||
@Suppress("unused")
|
@Suppress("unused")
|
||||||
val edit = subCommand {
|
val edit = subCommand {
|
||||||
dynamic("NPCID") {
|
dynamic("NPC_ID") {
|
||||||
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
suggestEntityList()
|
||||||
entityFinder.getEntities().map { it.id }
|
|
||||||
}
|
|
||||||
execute<CommandSender> { sender, context, _ ->
|
execute<CommandSender> { sender, context, _ ->
|
||||||
val npcs = entityFinder.getEntitiesFromId(context["NPCID"])
|
val npcs = entityFinder.getEntitiesFromId(context["NPC_ID"])
|
||||||
if (npcs.size == 1) {
|
if (npcs.size == 1) {
|
||||||
val uuid = npcs[0].uniqueId
|
val uuid = npcs[0].uniqueId
|
||||||
sendEditMessage(adaptPlayer(sender as Player), uuid, npcs[0].id)
|
sendEditMessage(adaptPlayer(sender as Player), uuid, npcs[0].id)
|
||||||
@ -237,9 +231,7 @@ object BubblesChatCommand {
|
|||||||
@Suppress("unused")
|
@Suppress("unused")
|
||||||
val edit2 = subCommand {
|
val edit2 = subCommand {
|
||||||
dynamic("UUID") {
|
dynamic("UUID") {
|
||||||
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
suggestEntityListUnique()
|
||||||
entityFinder.getEntities().map { it.uniqueId }
|
|
||||||
}
|
|
||||||
execute<CommandSender> { sender, context, _ ->
|
execute<CommandSender> { sender, context, _ ->
|
||||||
val uuid = context["UUID"]
|
val uuid = context["UUID"]
|
||||||
val npc = entityFinder.getEntityFromUniqueId(uuid)!!
|
val npc = entityFinder.getEntityFromUniqueId(uuid)!!
|
||||||
|
@ -4,6 +4,7 @@ import org.bukkit.command.CommandSender
|
|||||||
import org.bukkit.entity.Player
|
import org.bukkit.entity.Player
|
||||||
import taboolib.common.platform.command.*
|
import taboolib.common.platform.command.*
|
||||||
import taboolib.platform.util.*
|
import taboolib.platform.util.*
|
||||||
|
import io.github.beradq.adybubbles.AdyBubbles.entityFinder
|
||||||
|
|
||||||
@CommandHeader("bubbles")
|
@CommandHeader("bubbles")
|
||||||
@Suppress("unused")
|
@Suppress("unused")
|
||||||
@ -12,9 +13,7 @@ object BubblesCommand {
|
|||||||
@Suppress("unused")
|
@Suppress("unused")
|
||||||
val popup = subCommand {
|
val popup = subCommand {
|
||||||
dynamic("NPC_ID") {
|
dynamic("NPC_ID") {
|
||||||
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
suggestEntityList()
|
||||||
AdyBubbles.adyApi.getEntityFinder().getEntities().map { it.id }
|
|
||||||
}
|
|
||||||
dynamic("TEXT") {
|
dynamic("TEXT") {
|
||||||
execute<CommandSender> { sender, context, _ ->
|
execute<CommandSender> { sender, context, _ ->
|
||||||
val npcId = context["NPC_ID"]
|
val npcId = context["NPC_ID"]
|
||||||
@ -67,8 +66,9 @@ object BubblesCommand {
|
|||||||
@Suppress("unused")
|
@Suppress("unused")
|
||||||
val clear = subCommand {
|
val clear = subCommand {
|
||||||
dynamic("NPC_ID") {
|
dynamic("NPC_ID") {
|
||||||
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
suggestEntityList()
|
||||||
AdyBubbles.adyApi.getEntityFinder().getEntities().map { it.id }
|
suggestion<CommandSender>(uncheck = true) { sender, _ ->
|
||||||
|
entityFinder.getEntities(sender as? Player) { it.isDerived() }.map { it.id }
|
||||||
}
|
}
|
||||||
execute<CommandSender> { sender, context, _ ->
|
execute<CommandSender> { sender, context, _ ->
|
||||||
val npcId = context["NPC_ID"]
|
val npcId = context["NPC_ID"]
|
||||||
|
@ -26,13 +26,13 @@ object Config {
|
|||||||
@Awake(LifeCycle.ENABLE)
|
@Awake(LifeCycle.ENABLE)
|
||||||
fun reload() {
|
fun reload() {
|
||||||
configFile.reload()
|
configFile.reload()
|
||||||
val offset = configFile["offset"] as? Double ?: 0.5
|
val offset = configFile.getDouble("offset", .5)
|
||||||
val lineHeight = configFile["line-height"] as? Double ?: 0.5
|
val lineHeight = configFile.getDouble("line-height", 0.5)
|
||||||
val chat = configFile.getConfigurationSection("chat")
|
val chat = configFile.getConfigurationSection("chat")
|
||||||
val period = chat?.getString("period")?.toLongRange() ?: (20L * 3)..(20 * 3)
|
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 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))
|
bubblesConfig = BubblesConfig(offset, lineHeight, BubblesChatConfig(period, restDelayRange, limit, lifetime))
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,10 +1,28 @@
|
|||||||
package io.github.beradq.adybubbles
|
package io.github.beradq.adybubbles
|
||||||
|
|
||||||
inline infix fun <T, R> 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<CommandSender>(uncheck = true) { sender, _ ->
|
||||||
|
Command.finder.getEntities(sender as? Player) { !it.isDerived() }.map { it.id }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun CommandComponentDynamic.suggestEntityListUnique() {
|
||||||
|
suggestion<CommandSender>(uncheck = true) { sender, _ ->
|
||||||
|
entityFinder.getEntities(sender as? Player) { !it.isDerived() }.map { it.uniqueId }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
inline infix fun <reified T, reified R> T.pipe(func: (T) -> R): R {
|
||||||
return func(this)
|
return func(this)
|
||||||
}
|
}
|
||||||
|
|
||||||
inline infix fun <T, R> T.also(func: (T) -> R): T {
|
inline infix fun <reified T, reified R> T.also(func: (T) -> R): T {
|
||||||
func(this)
|
func(this)
|
||||||
return this
|
return this
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user