aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/notenoughupdates/events/NEUEventBus.kt
diff options
context:
space:
mode:
authornea <romangraef@gmail.com>2022-09-10 03:48:03 +0200
committernea <romangraef@gmail.com>2022-09-10 03:48:03 +0200
commitec66c82198fe2d61d699d553c1254f08b43fcc65 (patch)
treeb5d4efaf5d6d6699357c3afb1d6920d89d51b3b8 /src/main/kotlin/moe/nea/notenoughupdates/events/NEUEventBus.kt
parentd9353ff54c20a08e4e078e0190fc1f364b08a2d1 (diff)
downloadfirmament-ec66c82198fe2d61d699d553c1254f08b43fcc65.tar.gz
firmament-ec66c82198fe2d61d699d553c1254f08b43fcc65.tar.bz2
firmament-ec66c82198fe2d61d699d553c1254f08b43fcc65.zip
Move Eventhandling around.
I still want to use fabric still "array backed" events, but these here are just a bit easier to use from kotlin.
Diffstat (limited to 'src/main/kotlin/moe/nea/notenoughupdates/events/NEUEventBus.kt')
-rw-r--r--src/main/kotlin/moe/nea/notenoughupdates/events/NEUEventBus.kt26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/notenoughupdates/events/NEUEventBus.kt b/src/main/kotlin/moe/nea/notenoughupdates/events/NEUEventBus.kt
new file mode 100644
index 0000000..eba71bc
--- /dev/null
+++ b/src/main/kotlin/moe/nea/notenoughupdates/events/NEUEventBus.kt
@@ -0,0 +1,26 @@
+package moe.nea.notenoughupdates.events
+
+import java.util.concurrent.CopyOnWriteArrayList
+
+open class NEUEventBus<T : NEUEvent> {
+ data class Handler<T>(val invocation: (T) -> Unit, val receivesCancelled: Boolean)
+
+ private val toHandle: MutableList<Handler<T>> = CopyOnWriteArrayList()
+ fun subscribe(handle: (T) -> Unit) {
+ subscribe(handle, false)
+ }
+
+ fun subscribe(handle: (T) -> Unit, receivesCancelled: Boolean) {
+ toHandle.add(Handler(handle, receivesCancelled))
+ }
+
+ fun publish(event: T): T {
+ for (function in toHandle) {
+ if (function.receivesCancelled || event !is NEUEvent.Cancellable || !event.cancelled) {
+ function.invocation(event)
+ }
+ }
+ return event
+ }
+
+}