From cee304e976e4ecc9aa40ac16a820c7485c92c71e Mon Sep 17 00:00:00 2001 From: Grayson Lorenz Date: Sat, 25 Apr 2020 10:48:45 -0500 Subject: [PATCH 1/3] error cleanup, alert the error Clean up the error to break out of sequence when we encounter an error for efficiency. Then for now use alert to show the user an error of some kind. This is temporary until I can style some kind of new module for errors. --- src/core/Logger.ts | 26 +++++++++++++++++++ .../QuestEditorToolBarController.ts | 22 +++++++--------- 2 files changed, 35 insertions(+), 13 deletions(-) diff --git a/src/core/Logger.ts b/src/core/Logger.ts index 28787057..dc53d018 100644 --- a/src/core/Logger.ts +++ b/src/core/Logger.ts @@ -104,6 +104,32 @@ export class Logger { this.handler({ time: new Date(), message, severity, logger: this, cause }, this.name); } } + + showTrace = (message: string, cause?: any): void => { + this.showLog(Severity.Trace, message, cause); + }; + + showDebug = (message: string, cause?: any): void => { + this.showLog(Severity.Debug, message, cause); + }; + + showInfo = (message: string, cause?: any): void => { + this.showLog(Severity.Info, message, cause); + }; + + showWarn = (message: string, cause?: any): void => { + this.showLog(Severity.Warning, message, cause); + }; + + showError = (message: string, cause?: any): void => { + this.showLog(Severity.Error, message, cause); + }; + + //for graphically showing errors and other messages, assume we always want this to show, otherwise we wouldn't call it. + //Instead of doing an alert, we should have some better styled area, like a dismissable bar at the top of the screen with the error. + showLog(severity: Severity, message: string, cause?: any): void { + alert('Message: ' + message + '\r\n\r\nCause: ' + cause.message); + } } export class LogManager { diff --git a/src/quest_editor/controllers/QuestEditorToolBarController.ts b/src/quest_editor/controllers/QuestEditorToolBarController.ts index 716b5ecf..195de434 100644 --- a/src/quest_editor/controllers/QuestEditorToolBarController.ts +++ b/src/quest_editor/controllers/QuestEditorToolBarController.ts @@ -152,17 +152,12 @@ export class QuestEditorToolBarController extends Controller { const parse_result = parse_qst_to_quest( new ArrayBufferCursor(buffer, Endianness.Little), ); - - if (parse_result) { - quest = parse_result.quest; - this.set_version(parse_result.version); + if (!parse_result || !parse_result.quest) { + throw new Error("Couldn't parse quest file."); } - + quest = parse_result.quest; + this.set_version(parse_result.version); this.set_filename(basename(qst.name)); - - if (!quest) { - logger.error("Couldn't parse quest file."); - } } else { const bin = files.find(f => f.name.toLowerCase().endsWith(".bin")); const dat = files.find(f => f.name.toLowerCase().endsWith(".dat")); @@ -174,11 +169,12 @@ export class QuestEditorToolBarController extends Controller { new ArrayBufferCursor(bin_buffer, Endianness.Little), new ArrayBufferCursor(dat_buffer, Endianness.Little), ); - this.set_filename(basename(bin.name || dat.name)); - if (!quest) { - logger.error("Couldn't parse quest file."); + throw new Error("Couldn't parse bin or dat file."); } + this.set_filename(basename(bin.name || dat.name)); + } else { + throw new Error("Invalid File Type."); } } @@ -186,7 +182,7 @@ export class QuestEditorToolBarController extends Controller { quest && convert_quest_to_model(this.area_store, quest), ); } catch (e) { - logger.error("Couldn't read file.", e); + logger.showError("Couldn't read file.", e); } }; From 981eae6dbbf70b71f7d4ee5cace029941c068200 Mon Sep 17 00:00:00 2001 From: Grayson Lorenz Date: Sat, 25 Apr 2020 12:01:31 -0500 Subject: [PATCH 2/3] Use the display we have already --- src/core/Logger.ts | 26 --------------- .../QuestEditorToolBarController.ts | 32 +++++++++++++++++-- .../gui/QuestEditorToolBarView.ts | 11 +++++++ 3 files changed, 41 insertions(+), 28 deletions(-) diff --git a/src/core/Logger.ts b/src/core/Logger.ts index dc53d018..28787057 100644 --- a/src/core/Logger.ts +++ b/src/core/Logger.ts @@ -104,32 +104,6 @@ export class Logger { this.handler({ time: new Date(), message, severity, logger: this, cause }, this.name); } } - - showTrace = (message: string, cause?: any): void => { - this.showLog(Severity.Trace, message, cause); - }; - - showDebug = (message: string, cause?: any): void => { - this.showLog(Severity.Debug, message, cause); - }; - - showInfo = (message: string, cause?: any): void => { - this.showLog(Severity.Info, message, cause); - }; - - showWarn = (message: string, cause?: any): void => { - this.showLog(Severity.Warning, message, cause); - }; - - showError = (message: string, cause?: any): void => { - this.showLog(Severity.Error, message, cause); - }; - - //for graphically showing errors and other messages, assume we always want this to show, otherwise we wouldn't call it. - //Instead of doing an alert, we should have some better styled area, like a dismissable bar at the top of the screen with the error. - showLog(severity: Severity, message: string, cause?: any): void { - alert('Message: ' + message + '\r\n\r\nCause: ' + cause.message); - } } export class LogManager { diff --git a/src/quest_editor/controllers/QuestEditorToolBarController.ts b/src/quest_editor/controllers/QuestEditorToolBarController.ts index 195de434..4ca64776 100644 --- a/src/quest_editor/controllers/QuestEditorToolBarController.ts +++ b/src/quest_editor/controllers/QuestEditorToolBarController.ts @@ -21,16 +21,29 @@ import { convert_quest_from_model, convert_quest_to_model } from "../stores/mode import { LogManager } from "../../core/Logger"; import { basename } from "../../core/util"; import { Version } from "../../core/data_formats/parsing/quest/Version"; +import { WritableProperty } from "../../core/observable/property/WritableProperty"; +import { Result, failure } from "../../core/Result"; +import { Severity } from "../../core/Severity"; const logger = LogManager.get("quest_editor/controllers/QuestEditorToolBarController"); export type AreaAndLabel = { readonly area: AreaModel; readonly label: string }; export class QuestEditorToolBarController extends Controller { + private readonly _result_dialog_visible = property(false); + private readonly _result: WritableProperty | undefined> = property(undefined); + private readonly _result_problems_message = property(""); + private readonly _result_error_message = property(""); + private _save_as_dialog_visible = property(false); private _filename = property(""); private _version = property(Version.BB); + readonly result_dialog_visible: Property = this._result_dialog_visible; + readonly result: Property | undefined> = this._result; + readonly result_problems_message: Property = this._result_problems_message; + readonly result_error_message: Property = this._result_error_message; + readonly vm_feature_active: boolean; readonly areas: Property; readonly current_area: Property; @@ -98,7 +111,7 @@ export class QuestEditorToolBarController extends Controller { quest_editor_store.quest_runner.running, ); - this.can_step = quest_editor_store.quest_runner.paused; + this.can_step = quest_editor_store.quest_runner.paused;3 this.can_stop = quest_editor_store.quest_runner.running; @@ -182,7 +195,10 @@ export class QuestEditorToolBarController extends Controller { quest && convert_quest_to_model(this.area_store, quest), ); } catch (e) { - logger.showError("Couldn't read file.", e); + logger.error("Couldn't read file.", e); + this.set_result( + failure([{ severity: Severity.Error, ui_message: e.message }]), + ); } }; @@ -270,4 +286,16 @@ export class QuestEditorToolBarController extends Controller { stop = (): void => { this.quest_editor_store.quest_runner.stop(); }; + + dismiss_result_dialog = (): void => { + this._result_dialog_visible.val = false; + }; + + private set_result(result: Result): void { + this._result.val = result; + + if (result.problems.length) { + this._result_dialog_visible.val = true; + } + } } diff --git a/src/quest_editor/gui/QuestEditorToolBarView.ts b/src/quest_editor/gui/QuestEditorToolBarView.ts index ea05405c..c9ca7092 100644 --- a/src/quest_editor/gui/QuestEditorToolBarView.ts +++ b/src/quest_editor/gui/QuestEditorToolBarView.ts @@ -15,6 +15,7 @@ import { Dialog } from "../../core/gui/Dialog"; import { TextInput } from "../../core/gui/TextInput"; import "./QuestEditorToolBarView.css"; import { Version } from "../../core/data_formats/parsing/quest/Version"; +import { ResultDialog } from "../../core/gui/ResultDialog"; export class QuestEditorToolBarView extends View { private readonly toolbar: ToolBar; @@ -100,6 +101,14 @@ export class QuestEditorToolBarView extends View { icon_left: Icon.Stop, tooltip: "Stop execution (Shift-F5)", }); + const dialog = this.disposable( + new ResultDialog({ + visible: ctrl.result_dialog_visible, + result: ctrl.result, + problems_message: ctrl.result_problems_message, + error_message: ctrl.result_error_message, + }), + ); const children = [ new_quest_button, @@ -219,6 +228,8 @@ export class QuestEditorToolBarView extends View { stop_button.onclick.observe(ctrl.stop), stop_button.enabled.bind_to(ctrl.can_stop), + + dialog.ondismiss.observe(ctrl.dismiss_result_dialog), ); this.finalize_construction(); From 7df1fe3a3c60d74ebf36240b4cc48a3e081a24f1 Mon Sep 17 00:00:00 2001 From: Grayson Lorenz Date: Sat, 25 Apr 2020 12:12:44 -0500 Subject: [PATCH 3/3] remove erronious 3 --- src/quest_editor/controllers/QuestEditorToolBarController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quest_editor/controllers/QuestEditorToolBarController.ts b/src/quest_editor/controllers/QuestEditorToolBarController.ts index 4ca64776..1f74632a 100644 --- a/src/quest_editor/controllers/QuestEditorToolBarController.ts +++ b/src/quest_editor/controllers/QuestEditorToolBarController.ts @@ -111,7 +111,7 @@ export class QuestEditorToolBarController extends Controller { quest_editor_store.quest_runner.running, ); - this.can_step = quest_editor_store.quest_runner.paused;3 + this.can_step = quest_editor_store.quest_runner.paused; this.can_stop = quest_editor_store.quest_runner.running;