summaryrefslogtreecommitdiff
path: root/src/main/kotlin/io/dico/parcels2/util/ext
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/io/dico/parcels2/util/ext')
-rw-r--r--src/main/kotlin/io/dico/parcels2/util/ext/Material.kt214
-rw-r--r--src/main/kotlin/io/dico/parcels2/util/ext/Misc.kt162
-rw-r--r--src/main/kotlin/io/dico/parcels2/util/ext/Player.kt114
3 files changed, 245 insertions, 245 deletions
diff --git a/src/main/kotlin/io/dico/parcels2/util/ext/Material.kt b/src/main/kotlin/io/dico/parcels2/util/ext/Material.kt
index e160e55..1351b5d 100644
--- a/src/main/kotlin/io/dico/parcels2/util/ext/Material.kt
+++ b/src/main/kotlin/io/dico/parcels2/util/ext/Material.kt
@@ -1,108 +1,108 @@
-package io.dico.parcels2.util.ext
-
-import org.bukkit.Material
-import org.bukkit.Material.*
-
-/*
-colors:
-WHITE_$, ORANGE_$, MAGENTA_$, LIGHT_BLUE_$, YELLOW_$, LIME_$, PINK_$, GRAY_$, LIGHT_GRAY_$, CYAN_$, PURPLE_$, BLUE_$, BROWN_$, GREEN_$, RED_$, BLACK_$,
-wood:
-OAK_$, BIRCH_$, SPRUCE_$, JUNGLE_$, ACACIA_$, DARK_OAK_$,
- */
-
-val Material.isBed
- get() = when (this) {
- WHITE_BED,
- ORANGE_BED,
- MAGENTA_BED,
- LIGHT_BLUE_BED,
- YELLOW_BED,
- LIME_BED,
- PINK_BED,
- GRAY_BED,
- LIGHT_GRAY_BED,
- CYAN_BED,
- PURPLE_BED,
- BLUE_BED,
- BROWN_BED,
- GREEN_BED,
- RED_BED,
- BLACK_BED -> true
- else -> false
- }
-
-val Material.isWoodDoor
- get() = when (this) {
- OAK_DOOR,
- BIRCH_DOOR,
- SPRUCE_DOOR,
- JUNGLE_DOOR,
- ACACIA_DOOR,
- DARK_OAK_DOOR -> true
- else -> false
- }
-
-val Material.isWoodTrapdoor
- get() = when (this) {
- OAK_TRAPDOOR,
- BIRCH_TRAPDOOR,
- SPRUCE_TRAPDOOR,
- JUNGLE_TRAPDOOR,
- ACACIA_TRAPDOOR,
- DARK_OAK_TRAPDOOR -> true
- else -> false
- }
-
-val Material.isWoodFenceGate
- get() = when (this) {
- OAK_FENCE_GATE,
- BIRCH_FENCE_GATE,
- SPRUCE_FENCE_GATE,
- JUNGLE_FENCE_GATE,
- ACACIA_FENCE_GATE,
- DARK_OAK_FENCE_GATE -> true
- else -> false
- }
-
-val Material.isWoodButton
- get() = when (this) {
- OAK_BUTTON,
- BIRCH_BUTTON,
- SPRUCE_BUTTON,
- JUNGLE_BUTTON,
- ACACIA_BUTTON,
- DARK_OAK_BUTTON -> true
- else -> false
- }
-
-private fun getMaterialPrefixed(prefix: String, name: String): Material {
- return Material.getMaterial("${prefix}_$name") ?: throw IllegalArgumentException("Material ${prefix}_$name doesn't exist")
-}
-
-fun getMaterialsWithWoodTypePrefix(name: String) = arrayOf(
- getMaterialPrefixed("OAK", name),
- getMaterialPrefixed("BIRCH", name),
- getMaterialPrefixed("SPRUCE", name),
- getMaterialPrefixed("JUNGLE", name),
- getMaterialPrefixed("ACACIA", name),
- getMaterialPrefixed("DARK_OAK", name)
-)
-
-fun getMaterialsWithWoolColorPrefix(name: String) = arrayOf(
- getMaterialPrefixed("WHITE", name),
- getMaterialPrefixed("ORANGE", name),
- getMaterialPrefixed("MAGENTA", name),
- getMaterialPrefixed("LIGHT_BLUE", name),
- getMaterialPrefixed("YELLOW", name),
- getMaterialPrefixed("LIME", name),
- getMaterialPrefixed("PINK", name),
- getMaterialPrefixed("GRAY", name),
- getMaterialPrefixed("LIGHT_GRAY", name),
- getMaterialPrefixed("CYAN", name),
- getMaterialPrefixed("PURPLE", name),
- getMaterialPrefixed("BLUE", name),
- getMaterialPrefixed("BROWN", name),
- getMaterialPrefixed("GREEN", name),
- getMaterialPrefixed("RED", name),
- getMaterialPrefixed("BLACK", name)
+package io.dico.parcels2.util.ext
+
+import org.bukkit.Material
+import org.bukkit.Material.*
+
+/*
+colors:
+WHITE_$, ORANGE_$, MAGENTA_$, LIGHT_BLUE_$, YELLOW_$, LIME_$, PINK_$, GRAY_$, LIGHT_GRAY_$, CYAN_$, PURPLE_$, BLUE_$, BROWN_$, GREEN_$, RED_$, BLACK_$,
+wood:
+OAK_$, BIRCH_$, SPRUCE_$, JUNGLE_$, ACACIA_$, DARK_OAK_$,
+ */
+
+val Material.isBed
+ get() = when (this) {
+ WHITE_BED,
+ ORANGE_BED,
+ MAGENTA_BED,
+ LIGHT_BLUE_BED,
+ YELLOW_BED,
+ LIME_BED,
+ PINK_BED,
+ GRAY_BED,
+ LIGHT_GRAY_BED,
+ CYAN_BED,
+ PURPLE_BED,
+ BLUE_BED,
+ BROWN_BED,
+ GREEN_BED,
+ RED_BED,
+ BLACK_BED -> true
+ else -> false
+ }
+
+val Material.isWoodDoor
+ get() = when (this) {
+ OAK_DOOR,
+ BIRCH_DOOR,
+ SPRUCE_DOOR,
+ JUNGLE_DOOR,
+ ACACIA_DOOR,
+ DARK_OAK_DOOR -> true
+ else -> false
+ }
+
+val Material.isWoodTrapdoor
+ get() = when (this) {
+ OAK_TRAPDOOR,
+ BIRCH_TRAPDOOR,
+ SPRUCE_TRAPDOOR,
+ JUNGLE_TRAPDOOR,
+ ACACIA_TRAPDOOR,
+ DARK_OAK_TRAPDOOR -> true
+ else -> false
+ }
+
+val Material.isWoodFenceGate
+ get() = when (this) {
+ OAK_FENCE_GATE,
+ BIRCH_FENCE_GATE,
+ SPRUCE_FENCE_GATE,
+ JUNGLE_FENCE_GATE,
+ ACACIA_FENCE_GATE,
+ DARK_OAK_FENCE_GATE -> true
+ else -> false
+ }
+
+val Material.isWoodButton
+ get() = when (this) {
+ OAK_BUTTON,
+ BIRCH_BUTTON,
+ SPRUCE_BUTTON,
+ JUNGLE_BUTTON,
+ ACACIA_BUTTON,
+ DARK_OAK_BUTTON -> true
+ else -> false
+ }
+
+private fun getMaterialPrefixed(prefix: String, name: String): Material {
+ return Material.getMaterial("${prefix}_$name") ?: throw IllegalArgumentException("Material ${prefix}_$name doesn't exist")
+}
+
+fun getMaterialsWithWoodTypePrefix(name: String) = arrayOf(
+ getMaterialPrefixed("OAK", name),
+ getMaterialPrefixed("BIRCH", name),
+ getMaterialPrefixed("SPRUCE", name),
+ getMaterialPrefixed("JUNGLE", name),
+ getMaterialPrefixed("ACACIA", name),
+ getMaterialPrefixed("DARK_OAK", name)
+)
+
+fun getMaterialsWithWoolColorPrefix(name: String) = arrayOf(
+ getMaterialPrefixed("WHITE", name),
+ getMaterialPrefixed("ORANGE", name),
+ getMaterialPrefixed("MAGENTA", name),
+ getMaterialPrefixed("LIGHT_BLUE", name),
+ getMaterialPrefixed("YELLOW", name),
+ getMaterialPrefixed("LIME", name),
+ getMaterialPrefixed("PINK", name),
+ getMaterialPrefixed("GRAY", name),
+ getMaterialPrefixed("LIGHT_GRAY", name),
+ getMaterialPrefixed("CYAN", name),
+ getMaterialPrefixed("PURPLE", name),
+ getMaterialPrefixed("BLUE", name),
+ getMaterialPrefixed("BROWN", name),
+ getMaterialPrefixed("GREEN", name),
+ getMaterialPrefixed("RED", name),
+ getMaterialPrefixed("BLACK", name)
) \ No newline at end of file
diff --git a/src/main/kotlin/io/dico/parcels2/util/ext/Misc.kt b/src/main/kotlin/io/dico/parcels2/util/ext/Misc.kt
index 75aba35..e5e8aa9 100644
--- a/src/main/kotlin/io/dico/parcels2/util/ext/Misc.kt
+++ b/src/main/kotlin/io/dico/parcels2/util/ext/Misc.kt
@@ -1,81 +1,81 @@
-package io.dico.parcels2.util.ext
-
-import io.dico.dicore.Formatting
-import io.dico.parcels2.logger
-import java.io.File
-
-fun File.tryCreate(): Boolean {
- if (exists()) {
- return !isDirectory
- }
- val parent = parentFile
- if (parent == null || !(parent.exists() || parent.mkdirs()) || !createNewFile()) {
- logger.warn("Failed to create file $canonicalPath")
- return false
- }
- return true
-}
-
-inline fun Boolean.alsoIfTrue(block: () -> Unit): Boolean = also { if (it) block() }
-inline fun Boolean.alsoIfFalse(block: () -> Unit): Boolean = also { if (!it) block() }
-
-inline fun <R> Any.synchronized(block: () -> R): R = synchronized(this, block)
-
-//inline fun <T> T?.isNullOr(condition: T.() -> Boolean): Boolean = this == null || condition()
-//inline fun <T> T?.isPresentAnd(condition: T.() -> Boolean): Boolean = this != null && condition()
-inline fun <T> T?.ifNullRun(block: () -> Unit): T? {
- if (this == null) block()
- return this
-}
-
-inline fun <T, U> MutableMap<T, U>.editLoop(block: EditLoopScope<T, U>.(T, U) -> Unit) {
- return EditLoopScope(this).doEditLoop(block)
-}
-
-inline fun <T, U> MutableMap<T, U>.editLoop(block: EditLoopScope<T, U>.() -> Unit) {
- return EditLoopScope(this).doEditLoop(block)
-}
-
-class EditLoopScope<T, U>(val _map: MutableMap<T, U>) {
- private var iterator: MutableIterator<MutableMap.MutableEntry<T, U>>? = null
- lateinit var _entry: MutableMap.MutableEntry<T, U>
-
- inline val key get() = _entry.key
- inline var value
- get() = _entry.value
- set(target) = run { _entry.setValue(target) }
-
- inline fun doEditLoop(block: EditLoopScope<T, U>.() -> Unit) {
- val it = _initIterator()
- while (it.hasNext()) {
- _entry = it.next()
- block()
- }
- }
-
- inline fun doEditLoop(block: EditLoopScope<T, U>.(T, U) -> Unit) {
- val it = _initIterator()
- while (it.hasNext()) {
- val entry = it.next().also { _entry = it }
- block(entry.key, entry.value)
- }
- }
-
- fun remove() {
- iterator!!.remove()
- }
-
- fun _initIterator(): MutableIterator<MutableMap.MutableEntry<T, U>> {
- iterator?.let { throw IllegalStateException() }
- return _map.entries.iterator().also { iterator = it }
- }
-
-}
-
-operator fun Formatting.plus(other: Formatting) = toString() + other
-operator fun Formatting.plus(other: String) = toString() + other
-
-inline fun <T> Pair<T, T>.forEach(block: (T) -> Unit) {
- block(first)
- block(second)
-}
+package io.dico.parcels2.util.ext
+
+import io.dico.dicore.Formatting
+import io.dico.parcels2.logger
+import java.io.File
+
+fun File.tryCreate(): Boolean {
+ if (exists()) {
+ return !isDirectory
+ }
+ val parent = parentFile
+ if (parent == null || !(parent.exists() || parent.mkdirs()) || !createNewFile()) {
+ logger.warn("Failed to create file $canonicalPath")
+ return false
+ }
+ return true
+}
+
+inline fun Boolean.alsoIfTrue(block: () -> Unit): Boolean = also { if (it) block() }
+inline fun Boolean.alsoIfFalse(block: () -> Unit): Boolean = also { if (!it) block() }
+
+inline fun <R> Any.synchronized(block: () -> R): R = synchronized(this, block)
+
+//inline fun <T> T?.isNullOr(condition: T.() -> Boolean): Boolean = this == null || condition()
+//inline fun <T> T?.isPresentAnd(condition: T.() -> Boolean): Boolean = this != null && condition()
+inline fun <T> T?.ifNullRun(block: () -> Unit): T? {
+ if (this == null) block()
+ return this
+}
+
+inline fun <T, U> MutableMap<T, U>.editLoop(block: EditLoopScope<T, U>.(T, U) -> Unit) {
+ return EditLoopScope(this).doEditLoop(block)
+}
+
+inline fun <T, U> MutableMap<T, U>.editLoop(block: EditLoopScope<T, U>.() -> Unit) {
+ return EditLoopScope(this).doEditLoop(block)
+}
+
+class EditLoopScope<T, U>(val _map: MutableMap<T, U>) {
+ private var iterator: MutableIterator<MutableMap.MutableEntry<T, U>>? = null
+ lateinit var _entry: MutableMap.MutableEntry<T, U>
+
+ inline val key get() = _entry.key
+ inline var value
+ get() = _entry.value
+ set(target) = run { _entry.setValue(target) }
+
+ inline fun doEditLoop(block: EditLoopScope<T, U>.() -> Unit) {
+ val it = _initIterator()
+ while (it.hasNext()) {
+ _entry = it.next()
+ block()
+ }
+ }
+
+ inline fun doEditLoop(block: EditLoopScope<T, U>.(T, U) -> Unit) {
+ val it = _initIterator()
+ while (it.hasNext()) {
+ val entry = it.next().also { _entry = it }
+ block(entry.key, entry.value)
+ }
+ }
+
+ fun remove() {
+ iterator!!.remove()
+ }
+
+ fun _initIterator(): MutableIterator<MutableMap.MutableEntry<T, U>> {
+ iterator?.let { throw IllegalStateException() }
+ return _map.entries.iterator().also { iterator = it }
+ }
+
+}
+
+operator fun Formatting.plus(other: Formatting) = toString() + other
+operator fun Formatting.plus(other: String) = toString() + other
+
+inline fun <T> Pair<T, T>.forEach(block: (T) -> Unit) {
+ block(first)
+ block(second)
+}
diff --git a/src/main/kotlin/io/dico/parcels2/util/ext/Player.kt b/src/main/kotlin/io/dico/parcels2/util/ext/Player.kt
index a7f21c5..4c502a0 100644
--- a/src/main/kotlin/io/dico/parcels2/util/ext/Player.kt
+++ b/src/main/kotlin/io/dico/parcels2/util/ext/Player.kt
@@ -1,57 +1,57 @@
-package io.dico.parcels2.util.ext
-
-import io.dico.dicore.Formatting
-import io.dico.parcels2.ParcelsPlugin
-import io.dico.parcels2.logger
-import org.bukkit.OfflinePlayer
-import org.bukkit.entity.Player
-import org.bukkit.permissions.Permissible
-import org.bukkit.plugin.java.JavaPlugin
-
-inline val OfflinePlayer.uuid get() = uniqueId
-
-@Suppress("UsePropertyAccessSyntax")
-inline val OfflinePlayer.isValid
- get() = isOnline() || hasPlayedBefore()
-
-const val PERM_BAN_BYPASS = "parcels.admin.bypass.ban"
-const val PERM_BUILD_ANYWHERE = "parcels.admin.bypass.build"
-const val PERM_ADMIN_MANAGE = "parcels.admin.manage"
-
-inline val Permissible.hasPermBanBypass get() = hasPermission(PERM_BAN_BYPASS)
-inline val Permissible.hasPermGamemodeBypass get() = hasPermission("parcels.admin.bypass.gamemode")
-inline val Permissible.hasPermBuildAnywhere get() = hasPermission(PERM_BUILD_ANYWHERE)
-inline val Permissible.hasPermAdminManage get() = hasPermission(PERM_ADMIN_MANAGE)
-inline val Permissible.hasParcelHomeOthers get() = hasPermission("parcels.command.home.others")
-inline val Permissible.hasPermRandomSpecific get() = hasPermission("parcels.command.random.specific")
-val Player.parcelLimit: Int
- get() {
- for (info in effectivePermissions) {
- val perm = info.permission
- if (perm.startsWith("parcels.limit.")) {
- val limitString = perm.substring("parcels.limit.".length)
- if (limitString == "*") {
- return Int.MAX_VALUE
- }
- return limitString.toIntOrNull() ?: DEFAULT_LIMIT.also {
- logger.warn("$name has permission '$perm'. The suffix can not be parsed to an integer (or *).")
- }
- }
- }
- return DEFAULT_LIMIT
- }
-
-private const val DEFAULT_LIMIT = 1
-private val prefix = Formatting.translateChars('&', "&4[&c${JavaPlugin.getPlugin(ParcelsPlugin::class.java).name}&4] &a")
-
-fun Player.sendParcelMessage(except: Boolean = false, nopermit: Boolean = false, message: String) {
- if (except) {
- sendMessage(prefix + Formatting.YELLOW + Formatting.translateChars('&', message))
- } else if (nopermit) {
- sendMessage(prefix + Formatting.RED + Formatting.translateChars('&', message))
- } else {
- sendMessage(prefix + Formatting.translateChars('&', message))
- }
-}
-
-const val PLAYER_NAME_PLACEHOLDER = ":unknown_name:"
+package io.dico.parcels2.util.ext
+
+import io.dico.dicore.Formatting
+import io.dico.parcels2.ParcelsPlugin
+import io.dico.parcels2.logger
+import org.bukkit.OfflinePlayer
+import org.bukkit.entity.Player
+import org.bukkit.permissions.Permissible
+import org.bukkit.plugin.java.JavaPlugin
+
+inline val OfflinePlayer.uuid get() = uniqueId
+
+@Suppress("UsePropertyAccessSyntax")
+inline val OfflinePlayer.isValid
+ get() = isOnline() || hasPlayedBefore()
+
+const val PERM_BAN_BYPASS = "parcels.admin.bypass.ban"
+const val PERM_BUILD_ANYWHERE = "parcels.admin.bypass.build"
+const val PERM_ADMIN_MANAGE = "parcels.admin.manage"
+
+inline val Permissible.hasPermBanBypass get() = hasPermission(PERM_BAN_BYPASS)
+inline val Permissible.hasPermGamemodeBypass get() = hasPermission("parcels.admin.bypass.gamemode")
+inline val Permissible.hasPermBuildAnywhere get() = hasPermission(PERM_BUILD_ANYWHERE)
+inline val Permissible.hasPermAdminManage get() = hasPermission(PERM_ADMIN_MANAGE)
+inline val Permissible.hasParcelHomeOthers get() = hasPermission("parcels.command.home.others")
+inline val Permissible.hasPermRandomSpecific get() = hasPermission("parcels.command.random.specific")
+val Player.parcelLimit: Int
+ get() {
+ for (info in effectivePermissions) {
+ val perm = info.permission
+ if (perm.startsWith("parcels.limit.")) {
+ val limitString = perm.substring("parcels.limit.".length)
+ if (limitString == "*") {
+ return Int.MAX_VALUE
+ }
+ return limitString.toIntOrNull() ?: DEFAULT_LIMIT.also {
+ logger.warn("$name has permission '$perm'. The suffix can not be parsed to an integer (or *).")
+ }
+ }
+ }
+ return DEFAULT_LIMIT
+ }
+
+private const val DEFAULT_LIMIT = 1
+private val prefix = Formatting.translateChars('&', "&4[&c${JavaPlugin.getPlugin(ParcelsPlugin::class.java).name}&4] &a")
+
+fun Player.sendParcelMessage(except: Boolean = false, nopermit: Boolean = false, message: String) {
+ if (except) {
+ sendMessage(prefix + Formatting.YELLOW + Formatting.translateChars('&', message))
+ } else if (nopermit) {
+ sendMessage(prefix + Formatting.RED + Formatting.translateChars('&', message))
+ } else {
+ sendMessage(prefix + Formatting.translateChars('&', message))
+ }
+}
+
+const val PLAYER_NAME_PLACEHOLDER = ":unknown_name:"