aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/com/dulkirfabric/events/base
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/com/dulkirfabric/events/base')
-rw-r--r--src/main/kotlin/com/dulkirfabric/events/base/CancellableEvent.kt25
-rw-r--r--src/main/kotlin/com/dulkirfabric/events/base/Event.kt9
2 files changed, 34 insertions, 0 deletions
diff --git a/src/main/kotlin/com/dulkirfabric/events/base/CancellableEvent.kt b/src/main/kotlin/com/dulkirfabric/events/base/CancellableEvent.kt
new file mode 100644
index 0000000..1c1ddcd
--- /dev/null
+++ b/src/main/kotlin/com/dulkirfabric/events/base/CancellableEvent.kt
@@ -0,0 +1,25 @@
+package com.dulkirfabric.events.base
+
+import com.dulkirfabric.DulkirModFabric
+import meteordevelopment.orbit.ICancellable
+
+abstract class CancellableEvent: ICancellable {
+
+ var cancelled: Boolean = false
+
+ override fun isCancelled(): Boolean {
+ return cancelled
+ }
+
+ override fun setCancelled(cancelled: Boolean) {
+ this.cancelled = cancelled
+ }
+
+ /**
+ * Posts a given event to the bus and returns whether the user wishes to cancel it
+ */
+ fun post(): Boolean {
+ DulkirModFabric.EVENT_BUS.post(this)
+ return cancelled
+ }
+} \ No newline at end of file
diff --git a/src/main/kotlin/com/dulkirfabric/events/base/Event.kt b/src/main/kotlin/com/dulkirfabric/events/base/Event.kt
new file mode 100644
index 0000000..7671199
--- /dev/null
+++ b/src/main/kotlin/com/dulkirfabric/events/base/Event.kt
@@ -0,0 +1,9 @@
+package com.dulkirfabric.events.base
+
+import com.dulkirfabric.DulkirModFabric
+
+abstract class Event {
+ fun post() {
+ DulkirModFabric.EVENT_BUS.post(this)
+ }
+} \ No newline at end of file