mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 23:38:30 +08:00
The script editor is now set to readonly mode when a quest is running.
This commit is contained in:
parent
f6f5fa7c3f
commit
918d8f7bdc
@ -7,6 +7,7 @@ import { EditorHistory } from "./EditorHistory";
|
|||||||
import IStandaloneCodeEditor = editor.IStandaloneCodeEditor;
|
import IStandaloneCodeEditor = editor.IStandaloneCodeEditor;
|
||||||
import "./AsmEditorView.css";
|
import "./AsmEditorView.css";
|
||||||
import { ListChangeType } from "../../core/observable/property/list/ListProperty";
|
import { ListChangeType } from "../../core/observable/property/list/ListProperty";
|
||||||
|
import { quest_editor_store } from "../stores/QuestEditorStore";
|
||||||
|
|
||||||
editor.defineTheme("phantasmal-world", {
|
editor.defineTheme("phantasmal-world", {
|
||||||
base: "vs-dark",
|
base: "vs-dark",
|
||||||
@ -88,7 +89,7 @@ export class AsmEditorView extends ResizableWidget {
|
|||||||
|
|
||||||
asm_editor_store.model.observe(
|
asm_editor_store.model.observe(
|
||||||
({ value: model }) => {
|
({ 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.editor.setModel(model || DUMMY_MODEL);
|
||||||
this.history.reset();
|
this.history.reset();
|
||||||
|
|
||||||
@ -100,6 +101,9 @@ export class AsmEditorView extends ResizableWidget {
|
|||||||
{ call_now: true },
|
{ 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 => {
|
asm_editor_store.breakpoints.observe_list(change => {
|
||||||
if (change.type === ListChangeType.ListChange) {
|
if (change.type === ListChangeType.ListChange) {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user