package at.hannibal2.skyhanni.utils import io.github.notenoughupdates.moulconfig.observer.Observer import io.github.notenoughupdates.moulconfig.observer.Property object ConditionalUtils { fun T.transformIf(condition: T.() -> Boolean, transformation: T.() -> T) = if (condition()) transformation(this) else this fun T.conditionalTransform(condition: Boolean, ifTrue: T.() -> Any, ifFalse: T.() -> Any) = if (condition) ifTrue(this) else ifFalse(this) // MoulConfig is in Java, I don't want to downgrade this logic fun onChange(vararg properties: Property, observer: Observer) { for (property in properties) { property.whenChanged { a, b -> observer.observeChange(a, b) } } } fun onToggle(vararg properties: Property, observer: Runnable) { onChange(*properties) { _, _ -> observer.run() } } fun Property.onToggle(observer: Runnable) { whenChanged { _, _ -> observer.run() } } fun Property.afterChange(observer: T.() -> Unit) { whenChanged { _, new -> observer(new) } } fun , K> comparatorFirst(pair1: Pair, pair2: Pair): Int { val first1 = pair1.first val first2 = pair2.first // Handle null cases if (first1 == null && first2 == null) return 0 if (first1 == null) return -1 if (first2 == null) return 1 // Compare the non-null first values return first1.compareTo(first2) } fun > comparatorSecond(pair1: Pair, pair2: Pair): Int { val second1 = pair1.second val second2 = pair2.second // Handle null cases if (second1 == null && second2 == null) return 0 if (second1 == null) return 1 if (second2 == null) return -1 // Compare the non-null second values return second1.compareTo(second2) } }