summaryrefslogtreecommitdiff
path: root/composeApp/src/commonMain/kotlin/coffee/liz/ecs/input/InputSystem.kt
diff options
context:
space:
mode:
Diffstat (limited to 'composeApp/src/commonMain/kotlin/coffee/liz/ecs/input/InputSystem.kt')
-rw-r--r--composeApp/src/commonMain/kotlin/coffee/liz/ecs/input/InputSystem.kt23
1 files changed, 23 insertions, 0 deletions
diff --git a/composeApp/src/commonMain/kotlin/coffee/liz/ecs/input/InputSystem.kt b/composeApp/src/commonMain/kotlin/coffee/liz/ecs/input/InputSystem.kt
new file mode 100644
index 0000000..6dc8256
--- /dev/null
+++ b/composeApp/src/commonMain/kotlin/coffee/liz/ecs/input/InputSystem.kt
@@ -0,0 +1,23 @@
+package coffee.liz.ecs.input
+
+import coffee.liz.ecs.System
+import coffee.liz.ecs.TickedSystem
+import coffee.liz.ecs.World
+import kotlin.time.Duration
+
+class InputSystem<Outside : InputProvider>(
+ pollRate: Duration
+) : TickedSystem<Outside>(pollRate) {
+ private val activeInputs = mutableMapOf<String, Int>()
+
+ override fun update(world: World<Outside>, state: Outside, ticks: Int) {
+ state.inputState.activeInputs.forEach {
+ activeInputs[it] = (activeInputs[it] ?: 0) + ticks
+ }
+ activeInputs.keys.retainAll(state.inputState.activeInputs)
+
+ world.query(Controlled::class).forEach {
+ it.get(Controlled::class).handleInput(activeInputs.toMap())
+ }
+ }
+} \ No newline at end of file