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);
}
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);
this.global_keydown_handlers.set(key, handler);

View File

@ -6,8 +6,9 @@ export class AsmEditorToolBar extends ToolBar {
constructor() {
const inline_args_mode_checkbox = new CheckBox(true, {
label: "Inline args mode",
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.";
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.";
if (has_issues) {
text += "\nThis mode cannot be toggled because there are issues in the script.";
@ -18,9 +19,7 @@ export class AsmEditorToolBar extends ToolBar {
});
super({
children: [
inline_args_mode_checkbox
],
children: [inline_args_mode_checkbox],
});
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)),
);
this.finalize_construction(AsmEditorToolBar.prototype);
}
}

View File

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

View File

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

View File

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

View File

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

View File

@ -100,8 +100,9 @@ export class AsmEditorStore implements Disposable {
}),
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 assembly = assembly_analyser.disassemble(quest, manual_stack);
const model = this.model_disposer.add(
editor.createModel(assembly.join("\n"), "psoasm"),
);
const model = this.model_disposer.add(editor.createModel(assembly.join("\n"), "psoasm"));
this.setup_editor_model_features(model);
this._model.val = model;
@ -236,7 +235,7 @@ export class AsmEditorStore implements Disposable {
private update_assembly_settings(): void {
assembly_analyser.update_settings({
manual_stack: !this.inline_args_mode.val
manual_stack: !this.inline_args_mode.val,
});
}
}