From 5bf2af14c605308e3d478ceb0b686d4c76982e44 Mon Sep 17 00:00:00 2001 From: jtuu Date: Tue, 28 Apr 2020 00:23:41 +0300 Subject: [PATCH] Added thread status display to the thread select dropdown. --- src/quest_editor/QuestRunner.ts | 6 +++++- .../controllers/QuestEditorToolBarController.ts | 2 ++ src/quest_editor/gui/QuestEditorToolBarView.ts | 9 +++++++-- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/src/quest_editor/QuestRunner.ts b/src/quest_editor/QuestRunner.ts index ed4adae0..2b57c5a8 100644 --- a/src/quest_editor/QuestRunner.ts +++ b/src/quest_editor/QuestRunner.ts @@ -73,6 +73,7 @@ export class QuestRunner { private readonly _debugging_thread_id: WritableProperty = property( undefined, ); + private readonly _active_thread_id: WritableProperty = property(undefined); private readonly debugger: Debugger; @@ -96,6 +97,7 @@ export class QuestRunner { readonly pause_location: Property = this._pause_location; readonly thread_ids: ListProperty = this._thread_ids; readonly debugging_thread_id: Property = this._debugging_thread_id; + readonly active_thread_id: Property = this._active_thread_id; get game_state(): GameState { return this._game_state; @@ -168,6 +170,7 @@ export class QuestRunner { this._state.val = QuestRunnerState.Stopped; this._pause_location.val = undefined; this._debugging_thread_id.val = undefined; + this._active_thread_id.val = undefined; this._thread_ids.clear(); this.npcs.splice(0, this.npcs.length); this.objects.splice(0, this.objects.length); @@ -326,8 +329,9 @@ export class QuestRunner { }; private update_thread_info(): void { - this._thread_ids.splice(0, this._thread_ids.length.val, ...this.vm.get_thread_ids()); this._debugging_thread_id.val = this.vm.get_debugging_thread_id(); + this._active_thread_id.val = this.vm.get_current_thread_id(); + this._thread_ids.splice(0, this._thread_ids.length.val, ...this.vm.get_thread_ids()); } private create_vm_io = (): VirtualMachineIO => { diff --git a/src/quest_editor/controllers/QuestEditorToolBarController.ts b/src/quest_editor/controllers/QuestEditorToolBarController.ts index aa210023..e63d28cd 100644 --- a/src/quest_editor/controllers/QuestEditorToolBarController.ts +++ b/src/quest_editor/controllers/QuestEditorToolBarController.ts @@ -57,6 +57,7 @@ export class QuestEditorToolBarController extends Controller { readonly can_stop: Property; readonly thread_ids: ListProperty; readonly debugging_thread_id: Property; + readonly active_thread_id: Property; readonly can_select_thread: Property; readonly save_as_dialog_visible: Property = this._save_as_dialog_visible; readonly filename: Property = this._filename; @@ -121,6 +122,7 @@ export class QuestEditorToolBarController extends Controller { this.thread_ids = quest_editor_store.quest_runner.thread_ids; this.debugging_thread_id = quest_editor_store.quest_runner.debugging_thread_id; + this.active_thread_id = quest_editor_store.quest_runner.active_thread_id; this.can_select_thread = quest_editor_store.quest_runner.thread_ids.map( ids => ids.length > 0 && quest_editor_store.quest_runner.running.val, ); diff --git a/src/quest_editor/gui/QuestEditorToolBarView.ts b/src/quest_editor/gui/QuestEditorToolBarView.ts index 6828b14a..1bcb37c2 100644 --- a/src/quest_editor/gui/QuestEditorToolBarView.ts +++ b/src/quest_editor/gui/QuestEditorToolBarView.ts @@ -113,7 +113,10 @@ export class QuestEditorToolBarView extends View { const thread_select = this.disposable( new Select({ items: ctrl.thread_ids, - to_label: num => "Thread #" + num, + to_label: id => { + const status = ctrl.active_thread_id.val === id ? "Active" : "Yielded"; + return `Thread #${id} (${status})`; + }, }), ); @@ -238,7 +241,9 @@ export class QuestEditorToolBarView extends View { stop_button.enabled.bind_to(ctrl.can_stop), thread_select.selected.observe(({ value }) => ctrl.select_thread(value!)), - thread_select.selected.bind_to(ctrl.debugging_thread_id), + thread_select.selected.bind_to( + ctrl.active_thread_id.map(_ => ctrl.debugging_thread_id.val), + ), thread_select.enabled.bind_to(ctrl.can_select_thread), dialog.ondismiss.observe(ctrl.dismiss_result_dialog),