This commit is contained in:
jtuu 2019-09-15 21:47:13 +03:00
parent f1e6a31f0e
commit fa78f5f95b
7 changed files with 23 additions and 18 deletions

View File

@ -43,7 +43,11 @@ class GuiStore implements Disposable {
window.removeEventListener("keydown", this.dispatch_global_keydown); window.removeEventListener("keydown", this.dispatch_global_keydown);
} }
on_global_keydown(tool: GuiTool, binding: string, handler: (e: KeyboardEvent) => void): Disposable { on_global_keydown(
tool: GuiTool,
binding: string,
handler: (e: KeyboardEvent) => void,
): Disposable {
const key = this.handler_key(tool, binding); const key = this.handler_key(tool, binding);
this.global_keydown_handlers.set(key, handler); this.global_keydown_handlers.set(key, handler);

View File

@ -6,8 +6,9 @@ export class AsmEditorToolBar extends ToolBar {
constructor() { constructor() {
const inline_args_mode_checkbox = new CheckBox(true, { const inline_args_mode_checkbox = new CheckBox(true, {
label: "Inline args mode", label: "Inline args mode",
tooltip: asm_editor_store.has_issues.map((has_issues) => { tooltip: asm_editor_store.has_issues.map(has_issues => {
let text = "Transform arg_push* opcodes to be inline with the opcode the arguments are given to."; let text =
"Transform arg_push* opcodes to be inline with the opcode the arguments are given to.";
if (has_issues) { if (has_issues) {
text += "\nThis mode cannot be toggled because there are issues in the script."; text += "\nThis mode cannot be toggled because there are issues in the script.";
@ -18,9 +19,7 @@ export class AsmEditorToolBar extends ToolBar {
}); });
super({ super({
children: [ children: [inline_args_mode_checkbox],
inline_args_mode_checkbox
],
}); });
this.disposables( this.disposables(
@ -29,7 +28,6 @@ export class AsmEditorToolBar extends ToolBar {
inline_args_mode_checkbox.enabled.bind_to(asm_editor_store.has_issues.map(b => !b)), inline_args_mode_checkbox.enabled.bind_to(asm_editor_store.has_issues.map(b => !b)),
); );
this.finalize_construction(AsmEditorToolBar.prototype); this.finalize_construction(AsmEditorToolBar.prototype);
} }
} }

View File

@ -134,7 +134,7 @@ export class AssemblyAnalyser implements Disposable {
update_settings(changed_settings: Partial<AssemblySettings>): void { update_settings(changed_settings: Partial<AssemblySettings>): void {
const message: AssemblySettingsChangeInput = { const message: AssemblySettingsChangeInput = {
type: InputMessageType.SettingsChange, type: InputMessageType.SettingsChange,
settings: changed_settings settings: changed_settings,
}; };
this.worker.postMessage(message); this.worker.postMessage(message);
} }

View File

@ -36,7 +36,7 @@ export type AssemblyWarning = {
export type AssemblyError = AssemblyWarning; export type AssemblyError = AssemblyWarning;
export type AssemblySettings = { export type AssemblySettings = {
manual_stack: boolean manual_stack: boolean;
}; };
export function assemble( export function assemble(

View File

@ -26,7 +26,7 @@ const messages: AssemblyWorkerInput[] = [];
let timeout: any; let timeout: any;
const assembly_settings: AssemblySettings = { const assembly_settings: AssemblySettings = {
manual_stack: false manual_stack: false,
}; };
ctx.onmessage = (e: MessageEvent) => { ctx.onmessage = (e: MessageEvent) => {

View File

@ -9,7 +9,11 @@ export enum InputMessageType {
SettingsChange, SettingsChange,
} }
export type AssemblyWorkerInput = NewAssemblyInput | AssemblyChangeInput | SignatureHelpInput | AssemblySettingsChangeInput; export type AssemblyWorkerInput =
| NewAssemblyInput
| AssemblyChangeInput
| SignatureHelpInput
| AssemblySettingsChangeInput;
export type NewAssemblyInput = { export type NewAssemblyInput = {
readonly type: InputMessageType.NewAssembly; readonly type: InputMessageType.NewAssembly;

View File

@ -100,8 +100,9 @@ export class AsmEditorStore implements Disposable {
}), }),
assembly_analyser.issues.observe(({ value }) => { assembly_analyser.issues.observe(({ value }) => {
this.has_issues.val = Boolean(value.warnings.length) || Boolean(value.errors.length); this.has_issues.val =
}) Boolean(value.warnings.length) || Boolean(value.errors.length);
}),
); );
} }
@ -225,10 +226,8 @@ export class AsmEditorStore implements Disposable {
const manual_stack = !this.inline_args_mode.val; const manual_stack = !this.inline_args_mode.val;
const assembly = assembly_analyser.disassemble(quest, manual_stack); const assembly = assembly_analyser.disassemble(quest, manual_stack);
const model = this.model_disposer.add( const model = this.model_disposer.add(editor.createModel(assembly.join("\n"), "psoasm"));
editor.createModel(assembly.join("\n"), "psoasm"),
);
this.setup_editor_model_features(model); this.setup_editor_model_features(model);
this._model.val = model; this._model.val = model;
@ -236,7 +235,7 @@ export class AsmEditorStore implements Disposable {
private update_assembly_settings(): void { private update_assembly_settings(): void {
assembly_analyser.update_settings({ assembly_analyser.update_settings({
manual_stack: !this.inline_args_mode.val manual_stack: !this.inline_args_mode.val,
}); });
} }
} }