New visualization for model queue and delay events between looking at compass and looking at airspeed

This commit is contained in:
cs-powell
2024-12-07 23:19:42 -05:00
parent 2297854c28
commit 33a4b8eb7e
6 changed files with 118 additions and 46 deletions

View File

@@ -33,7 +33,7 @@ public class MindQueue {
return q.isEmpty();
}
public String printQueue() {
public String queueToString() {
String queueTrace = "Next to Execute ==> ";
for (Action action : q) {
@@ -47,6 +47,7 @@ public class MindQueue {
queueTrace += "[D]";
}
}
queueTrace += "\n";
return queueTrace;
}