The script editor is now set to readonly mode when a quest is running.

This commit is contained in:
jtuu 2019-11-16 17:35:20 +02:00
parent f6f5fa7c3f
commit 918d8f7bdc

View File

@ -7,6 +7,7 @@ import { EditorHistory } from "./EditorHistory";
import IStandaloneCodeEditor = editor.IStandaloneCodeEditor;
import "./AsmEditorView.css";
import { ListChangeType } from "../../core/observable/property/list/ListProperty";
import { quest_editor_store } from "../stores/QuestEditorStore";
editor.defineTheme("phantasmal-world", {
base: "vs-dark",
@ -88,7 +89,7 @@ export class AsmEditorView extends ResizableWidget {
asm_editor_store.model.observe(
({ value: model }) => {
this.editor.updateOptions({ readOnly: model == undefined });
this.editor.updateOptions({ readOnly: model == undefined && !quest_editor_store.quest_runner.running.val });
this.editor.setModel(model || DUMMY_MODEL);
this.history.reset();
@ -100,6 +101,9 @@ export class AsmEditorView extends ResizableWidget {
{ call_now: true },
),
// disable editor when quest is running
quest_editor_store.quest_runner.running.observe(({value}) => this.editor.updateOptions({readOnly: value})),
asm_editor_store.breakpoints.observe_list(change => {
if (change.type === ListChangeType.ListChange) {