Compare commits

..

3 commits

Author SHA1 Message Date
f2f39dc326
check isAir instead of null
Some checks are pending
Java CI with Gradle / build (push) Waiting to run
2026-07-16 19:16:57 +02:00
3bf083b762
correct logic for customName 2026-07-16 18:52:50 +02:00
7082da7beb
fix rename text not acting as vanilla 2026-07-16 18:45:18 +02:00
4 changed files with 34 additions and 25 deletions

View file

@ -37,7 +37,7 @@ object PlatformUtil {
// Lore // Lore
fun ItemMeta.componentLore(): MutableList<Component> { fun ItemMeta.componentLore(): MutableList<Component> {
val lore: List<Component>? val lore: List<Component>?
if(isPaper){ if (isPaper) {
lore = this.lore() lore = this.lore()
} else { } else {
val legacyLores = this.lore ?: return ArrayList() val legacyLores = this.lore ?: return ArrayList()
@ -52,13 +52,15 @@ object PlatformUtil {
} }
fun ItemMeta.setComponentLore(lore: List<Component?>) { fun ItemMeta.setComponentLore(lore: List<Component?>) {
if(isPaper){ if (isPaper) {
this.lore(lore) this.lore(lore)
} else { } else {
val legacyLore = ArrayList<String?>(lore.size) val legacyLore = ArrayList<String?>(lore.size)
for (component in lore) { for (component in lore) {
legacyLore.add(if(component == null) null legacyLore.add(
else legacy_mm.serialize(component)) if (component == null) null
else legacy_mm.serialize(component)
)
} }
this.lore = legacyLore this.lore = legacyLore
@ -66,35 +68,34 @@ object PlatformUtil {
} }
// Display name // Display name
private val useCustomName = hasMethod(ItemStack::class.java, "customName") private val useCustomName = hasMethod(ItemMeta::class.java, "customName")
fun ItemMeta.componentDisplayName(): Component? { fun ItemMeta.componentDisplayName(): Component? {
if(useCustomName){ if (useCustomName) {
if(!this.hasCustomName()) return null if (!this.hasCustomName()) return null
return this.customName() return this.customName()
}else if(isPaper){ }
if(!this.hasDisplayName()) return null if (!this.hasDisplayName()) return null
return this.displayName()
} else {
if(!this.hasDisplayName()) return null
val legacy = this.displayName return if (isPaper) {
return legacy_mm.deserialize(legacy) this.displayName()
} else {
legacy_mm.deserialize(this.displayName)
} }
} }
fun ItemMeta.setComponentDisplayName(component: Component?) { fun ItemMeta.setComponentDisplayName(component: Component?, fallback: String? = null) {
if(useCustomName){ if (useCustomName) {
this.customName(component) this.customName(component)
}else if(isPaper){ } else if (isPaper) {
this.displayName(component) this.displayName(component)
} else { } else {
if(component == null){ if (component == null) {
this.setDisplayName(null) this.setDisplayName(null)
return return
} }
val legacy = legacy_mm.serialize(component) val legacy = fallback ?: legacy_mm.serialize(component)
this.setDisplayName(legacy) this.setDisplayName(legacy)
} }
} }

View file

@ -82,6 +82,6 @@ object ItemUtil {
* The two items should either be the same type, or, the [other] is a book * The two items should either be the same type, or, the [other] is a book
*/ */
fun ItemStack.canMergeWith( fun ItemStack.canMergeWith(
other: ItemStack? other: ItemStack
) = (other != null) && (customType == other.customType || (other.isEnchantedBook())) ) = customType == other.customType || (other.isEnchantedBook())
} }

View file

@ -6,6 +6,7 @@ import io.delilaheve.util.EnchantmentUtil.combineWith
import io.delilaheve.util.ItemUtil.isEnchantedBook import io.delilaheve.util.ItemUtil.isEnchantedBook
import io.delilaheve.util.ItemUtil.repairFrom import io.delilaheve.util.ItemUtil.repairFrom
import io.delilaheve.util.ItemUtil.unitRepair import io.delilaheve.util.ItemUtil.unitRepair
import net.kyori.adventure.text.Component
import org.bukkit.ChatColor import org.bukkit.ChatColor
import org.bukkit.Material import org.bukkit.Material
import org.bukkit.entity.HumanEntity import org.bukkit.entity.HumanEntity
@ -16,6 +17,7 @@ import org.bukkit.inventory.view.AnvilView
import org.bukkit.persistence.PersistentDataType import org.bukkit.persistence.PersistentDataType
import xyz.alexcrea.cuanvil.api.EnchantmentApi import xyz.alexcrea.cuanvil.api.EnchantmentApi
import xyz.alexcrea.cuanvil.dependency.DependencyManager import xyz.alexcrea.cuanvil.dependency.DependencyManager
import xyz.alexcrea.cuanvil.dependency.util.PlatformUtil.setComponentDisplayName
import xyz.alexcrea.cuanvil.dialog.AnvilRenameDialog import xyz.alexcrea.cuanvil.dialog.AnvilRenameDialog
import xyz.alexcrea.cuanvil.enchant.CAEnchantment import xyz.alexcrea.cuanvil.enchant.CAEnchantment
import xyz.alexcrea.cuanvil.recipe.AnvilCustomRecipe import xyz.alexcrea.cuanvil.recipe.AnvilCustomRecipe
@ -138,11 +140,12 @@ object AnvilMergeLogic {
private fun handleRename(resultItem: ItemStack, view: AnvilView, player: HumanEntity): Int { private fun handleRename(resultItem: ItemStack, view: AnvilView, player: HumanEntity): Int {
// Can be null // Can be null
var renameText = ChatColor.stripColor(view.renameText) var renameText = ChatColor.stripColor(view.renameText)
var component: Component? = null
var sumCost = 0 var sumCost = 0
var useColor = false var useColor = false
if (ConfigOptions.renameColorPossible && renameText != null) { if (ConfigOptions.renameColorPossible && renameText != null) {
val component = AnvilColorUtil.handleColor( component = AnvilColorUtil.handleColor(
renameText, renameText,
AnvilColorUtil.renamePermission(player) AnvilColorUtil.renamePermission(player)
) )
@ -169,7 +172,11 @@ object AnvilMergeLogic {
renameText == CasedStringUtil.snakeToUpperSpacedCase(resultItem.type.name.lowercase()) renameText == CasedStringUtil.snakeToUpperSpacedCase(resultItem.type.name.lowercase())
) )
) { ) {
it.setDisplayName(renameText) if (component == null)
component = if (renameText == null || renameText.isEmpty()) null
else Component.text(renameText)
it.setComponentDisplayName(component, renameText)
processDialogPCD(it, player) processDialogPCD(it, player)
resultItem.itemMeta = it resultItem.itemMeta = it

View file

@ -31,6 +31,7 @@ import xyz.alexcrea.cuanvil.listener.PrepareAnvilListener.Companion.ANVIL_INPUT_
import xyz.alexcrea.cuanvil.listener.PrepareAnvilListener.Companion.ANVIL_INPUT_RIGHT import xyz.alexcrea.cuanvil.listener.PrepareAnvilListener.Companion.ANVIL_INPUT_RIGHT
import xyz.alexcrea.cuanvil.listener.PrepareAnvilListener.Companion.ANVIL_OUTPUT_SLOT import xyz.alexcrea.cuanvil.listener.PrepareAnvilListener.Companion.ANVIL_OUTPUT_SLOT
import xyz.alexcrea.cuanvil.util.CustomRecipeUtil import xyz.alexcrea.cuanvil.util.CustomRecipeUtil
import xyz.alexcrea.cuanvil.util.MaterialUtil.isAir
import xyz.alexcrea.cuanvil.util.MiniMessageUtil import xyz.alexcrea.cuanvil.util.MiniMessageUtil
import xyz.alexcrea.cuanvil.util.anvil.AnvilLoreEditUtil import xyz.alexcrea.cuanvil.util.anvil.AnvilLoreEditUtil
import xyz.alexcrea.cuanvil.util.anvil.AnvilXpUtil import xyz.alexcrea.cuanvil.util.anvil.AnvilXpUtil
@ -92,7 +93,7 @@ class AnvilResultListener : Listener {
} }
// Rename // Rename
if (rightItem == null) { if (rightItem.isAir) {
val result = AnvilMergeLogic.doRenaming(view, player, leftItem) val result = AnvilMergeLogic.doRenaming(view, player, leftItem)
if (result.isEmpty()) return if (result.isEmpty()) return
@ -106,7 +107,7 @@ class AnvilResultListener : Listener {
} }
// Merge // Merge
val canMerge = leftItem.canMergeWith(rightItem) val canMerge = leftItem.canMergeWith(rightItem!!)
if (canMerge) { if (canMerge) {
val result = AnvilMergeLogic.doMerge(view, player, leftItem, rightItem) val result = AnvilMergeLogic.doMerge(view, player, leftItem, rightItem)