summaryrefslogtreecommitdiff
path: root/composeApp/src/commonMain/kotlin/coffee/liz/ecs/input/InputSystem.kt
diff options
context:
space:
mode:
authorElizabeth Hunt <me@liz.coffee>2025-10-26 17:25:13 -0700
committerElizabeth Hunt <me@liz.coffee>2025-10-26 17:25:13 -0700
commit395aa7d1c312e495517701be11c21425d9a5838e (patch)
tree4ad184b082838c56149cc1d1efe191cfd3d0679b /composeApp/src/commonMain/kotlin/coffee/liz/ecs/input/InputSystem.kt
parent64f825465de9fa30c4dfe2707067efdb96110db8 (diff)
downloadabstraction-engine-kt-395aa7d1c312e495517701be11c21425d9a5838e.tar.gz
abstraction-engine-kt-395aa7d1c312e495517701be11c21425d9a5838e.zip
Checkpoint
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