From 7644b895c470b1cf8997f562605d28bc3b509638 Mon Sep 17 00:00:00 2001 From: Remi <73385395+itsrubberduck@users.noreply.github.com> Date: Wed, 17 Sep 2025 08:53:04 +0200 Subject: [PATCH] Add automated flight simulation trace for pilot monitoring --- app/pages/pm.vue | 393 ++++++++++++++++++++++++++- shared/data/atcDecisionTree.ts | 14 +- shared/utils/communicationsEngine.ts | 4 + 3 files changed, 405 insertions(+), 6 deletions(-) diff --git a/app/pages/pm.vue b/app/pages/pm.vue index f862d49..3e38d48 100644 --- a/app/pages/pm.vue +++ b/app/pages/pm.vue @@ -367,6 +367,16 @@ > Radio Check + + Voller Flug (Simulation) + @@ -394,6 +404,67 @@ + + + +
+
+

Simulation Trace

+ + {{ completedPilotSteps }} / {{ simulationStepCount }} + +
+ + {{ simulationRunning ? 'Läuft' : 'Bereit' }} + +
+ + + {{ simulationError }} + + +
+ Simulation initialisiert... +
+ +
+
+
+ {{ entry.label }} + {{ entry.id }} +
+
+

{{ entry.payload?.text }}

+

{{ entry.payload?.normalized }}

+
+
{{ formatTracePayload(entry.payload) }}
+
+
+
+
+ @@ -574,7 +645,7 @@