From 38f4bdd484e38c8beb0b5ed01afcace81e03933e Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Thu, 30 Apr 2020 18:27:19 +0200 Subject: [PATCH] Renamed "Debug Log" to "Debug" and moved all debugging related buttons to its toolbar. --- FEATURES.md | 2 +- src/__mocks__/monaco-editor.js | 2 + .../__snapshots__/NavigationView.test.ts.snap | 2 +- src/core/data_formats/parsing/ninja/xj.ts | 5 +- src/quest_editor/QuestRunner.ts | 10 +- .../controllers/DebugController.test.ts | 62 +++++++ .../controllers/DebugController.ts | 98 ++++++++++ .../QuestEditorToolBarController.test.ts | 46 +---- .../QuestEditorToolBarController.ts | 67 ------- src/quest_editor/gui/DebugView.css | 48 +++++ src/quest_editor/gui/DebugView.ts | 175 ++++++++++++++++++ src/quest_editor/gui/LogView.css | 44 ----- src/quest_editor/gui/LogView.ts | 100 ---------- .../gui/QuestEditorToolBarView.test.ts | 6 +- .../gui/QuestEditorToolBarView.ts | 96 +--------- src/quest_editor/gui/QuestEditorView.ts | 9 +- .../QuestEditorToolBarView.test.ts.snap | 2 +- src/quest_editor/index.ts | 10 +- src/quest_editor/stores/LogStore.ts | 16 +- src/quest_editor/stores/QuestEditorStore.ts | 5 +- .../src/quest_editor/stores/store_creation.ts | 4 +- 21 files changed, 439 insertions(+), 370 deletions(-) create mode 100644 src/quest_editor/controllers/DebugController.test.ts create mode 100644 src/quest_editor/controllers/DebugController.ts create mode 100644 src/quest_editor/gui/DebugView.css create mode 100644 src/quest_editor/gui/DebugView.ts delete mode 100644 src/quest_editor/gui/LogView.css delete mode 100644 src/quest_editor/gui/LogView.ts diff --git a/FEATURES.md b/FEATURES.md index f4ed0e08..54122f00 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -155,7 +155,7 @@ Features that are in ***bold italics*** are planned but not yet implemented. ## Bugs - [Load Quest](#load-quest): Can't parse quest 125 White Day -- [Script Assembly Editor](#script-assembly-editor): Go to definition doesn't work in RT (#231) +- [Script Assembly Editor](#script-assembly-editor): Go to definition doesn't work in RT (#231) and PW2 (#234) - When a modal dialog is open, global keybindings should be disabled - Entities with rendering issues: - Caves 4 Button door diff --git a/src/__mocks__/monaco-editor.js b/src/__mocks__/monaco-editor.js index be6ece7c..616c432f 100644 --- a/src/__mocks__/monaco-editor.js +++ b/src/__mocks__/monaco-editor.js @@ -1,3 +1,4 @@ +/* eslint-disable @typescript-eslint/no-empty-function,@typescript-eslint/explicit-function-return-type */ class Editor { addCommand() {} getAction() {} @@ -72,6 +73,7 @@ exports.languages = { registerSignatureHelpProvider() {}, setLanguageConfiguration() {}, registerDefinitionProvider() {}, + registerHoverProvider() {}, }; exports.KeyMod = { diff --git a/src/application/gui/__snapshots__/NavigationView.test.ts.snap b/src/application/gui/__snapshots__/NavigationView.test.ts.snap index d9ffd786..1f942d32 100644 --- a/src/application/gui/__snapshots__/NavigationView.test.ts.snap +++ b/src/application/gui/__snapshots__/NavigationView.test.ts.snap @@ -92,7 +92,7 @@ exports[`Should render correctly.: It should render a button per tool, the selec