All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tealcube.minecraft.bukkit.mythicdrops.enchantments.MythicCustomEnchantmentRegistry.kt Maven / Gradle / Ivy

There is a newer version: 9.0.4
Show newest version
/*
 * This file is part of MythicDrops, licensed under the MIT License.
 *
 * Copyright (C) 2020 Richard Harrah
 *
 * Permission is hereby granted, free of charge,
 * to any person obtaining a copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation the rights to use,
 * copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
 * and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all copies or
 * substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
 * OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */
package com.tealcube.minecraft.bukkit.mythicdrops.enchantments

import com.tealcube.minecraft.bukkit.mythicdrops.api.enchantments.CustomEnchantmentRegistry
import org.bukkit.Material
import org.bukkit.NamespacedKey
import org.bukkit.enchantments.Enchantment
import org.bukkit.enchantments.EnchantmentTarget
import org.bukkit.plugin.Plugin

internal class MythicCustomEnchantmentRegistry(plugin: Plugin) : CustomEnchantmentRegistry {
    private val customEnchantmentMap: Map

    init {
        // have to do this because they removed the ALL EnchantmentTarget in 1.16
        val glowEnchantments = EnchantmentTarget.values().mapNotNull {
            if (it.name == "ALL") return@mapNotNull null // ensure this works on < 1.16
            val enchantmentName = "${CustomEnchantmentRegistry.GLOW}-${it.name}"
            val namespacedKey = NamespacedKey(plugin, enchantmentName)
            val glowEnchantment = GlowEnchantment(namespacedKey, it)
            enchantmentName to glowEnchantment
        }

        customEnchantmentMap = glowEnchantments.toMap()
    }

    override fun getCustomEnchantmentByKey(key: String, material: Material): Enchantment? {
        val enchantmentTargets = EnchantmentTarget.values().filter { it.includes(material) }
        val potentialEnchantmentKeys = enchantmentTargets.map { "$key-${it.name}" }
        // Find the first enchantment key that matches and return that
        for (enchantmentKey in potentialEnchantmentKeys) {
            val enchantment = customEnchantmentMap[enchantmentKey]
            if (enchantment != null) {
                return enchantment
            }
        }
        // otherwise null
        return null
    }

    override fun registerEnchantments() {
        customEnchantmentMap.values.forEach { registerEnchantment(it) }
    }

    private fun registerEnchantment(enchantment: Enchantment) {
        if (Enchantment.getByKey(enchantment.key) != null) {
            return
        }
        try {
            val f = Enchantment::class.java.getDeclaredField("acceptingNew")
            f.isAccessible = true
            f[null] = true
        } catch (ignored: Exception) {
        }
        try {
            Enchantment.registerEnchantment(enchantment)
        } catch (ignored: IllegalStateException) {
        } catch (ignored: IllegalArgumentException) {
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy