2019-11-14 22:01:33 +08:00
|
|
|
|
import { ExecutionResult, VirtualMachine, ExecutionLocation } from "./scripting/vm";
|
2019-11-06 04:07:17 +08:00
|
|
|
|
import { QuestModel } from "./model/QuestModel";
|
|
|
|
|
import { VirtualMachineIO } from "./scripting/vm/io";
|
2019-11-14 22:01:33 +08:00
|
|
|
|
import { AsmToken, SegmentType, InstructionSegment, Segment, Instruction } from "./scripting/instructions";
|
2019-11-15 17:28:55 +08:00
|
|
|
|
import { quest_editor_store, Logger } from "./stores/QuestEditorStore";
|
2019-11-14 22:01:33 +08:00
|
|
|
|
import { defined, assert } from "../core/util";
|
|
|
|
|
import {
|
|
|
|
|
OP_CALL,
|
|
|
|
|
OP_VA_CALL,
|
|
|
|
|
OP_SWITCH_CALL,
|
|
|
|
|
} from "./scripting/opcodes";
|
2019-11-15 17:28:55 +08:00
|
|
|
|
import { WritableProperty } from "../core/observable/property/WritableProperty";
|
|
|
|
|
import { property } from "../core/observable";
|
|
|
|
|
import { Property } from "../core/observable/property/Property";
|
|
|
|
|
import { AsmEditorStore } from "./stores/AsmEditorStore";
|
2019-11-06 04:07:17 +08:00
|
|
|
|
|
2019-11-15 17:28:55 +08:00
|
|
|
|
let asm_editor_store: AsmEditorStore | undefined;
|
|
|
|
|
let logger: Logger | undefined;
|
2019-11-09 00:34:58 +08:00
|
|
|
|
|
|
|
|
|
function srcloc_to_string(srcloc: AsmToken): string {
|
|
|
|
|
return `[${srcloc.line_no}:${srcloc.col}]`;
|
|
|
|
|
}
|
2019-11-06 04:07:17 +08:00
|
|
|
|
|
2019-11-14 22:01:33 +08:00
|
|
|
|
function execloc_to_string(execloc: ExecutionLocation) {
|
|
|
|
|
return `[${execloc.seg_idx}:${execloc.inst_idx}]`;
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-06 04:07:17 +08:00
|
|
|
|
export class QuestRunner {
|
|
|
|
|
private readonly vm: VirtualMachine;
|
2019-11-14 22:01:33 +08:00
|
|
|
|
private quest?: QuestModel;
|
2019-11-06 04:07:17 +08:00
|
|
|
|
private animation_frame?: number;
|
2019-11-14 22:01:33 +08:00
|
|
|
|
/**
|
|
|
|
|
* Invisible breakpoints that help with stepping over/in/out.
|
|
|
|
|
*/
|
|
|
|
|
private readonly stepping_breakpoints: number[] = [];
|
|
|
|
|
private break_on_next = false;
|
2019-11-06 04:07:17 +08:00
|
|
|
|
|
2019-11-15 17:28:55 +08:00
|
|
|
|
private readonly _running: WritableProperty<boolean> = property(false);
|
|
|
|
|
private readonly _paused: WritableProperty<boolean> = property(false);
|
|
|
|
|
/**
|
|
|
|
|
* There is a quest loaded and it is currently running.
|
|
|
|
|
*/
|
|
|
|
|
public readonly running: Property<boolean> = this._running;
|
|
|
|
|
/**
|
|
|
|
|
* A quest is running but the execution is currently paused.
|
|
|
|
|
*/
|
|
|
|
|
public readonly paused: Property<boolean> = this._paused;
|
|
|
|
|
|
2019-11-06 04:07:17 +08:00
|
|
|
|
constructor() {
|
|
|
|
|
this.vm = new VirtualMachine(this.create_vm_io());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
run(quest: QuestModel): void {
|
2019-11-15 17:28:55 +08:00
|
|
|
|
if (logger === undefined) {
|
|
|
|
|
// defer creation of logger to prevent problems caused by circular dependency with QuestEditorStore
|
|
|
|
|
logger = quest_editor_store.get_logger("quest_editor/QuestRunner");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (asm_editor_store === undefined) {
|
|
|
|
|
// same here... circular dependency problem
|
|
|
|
|
import("./stores/AsmEditorStore").then(imports => {
|
|
|
|
|
asm_editor_store = imports.asm_editor_store;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-06 04:07:17 +08:00
|
|
|
|
if (this.animation_frame != undefined) {
|
|
|
|
|
cancelAnimationFrame(this.animation_frame);
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 22:01:33 +08:00
|
|
|
|
this.quest = quest;
|
|
|
|
|
|
2019-11-06 04:07:17 +08:00
|
|
|
|
this.vm.load_object_code(quest.object_code);
|
|
|
|
|
this.vm.start_thread(0);
|
|
|
|
|
|
2019-11-15 17:28:55 +08:00
|
|
|
|
this._running.val = true;
|
|
|
|
|
|
2019-11-11 21:21:13 +08:00
|
|
|
|
this.schedule_frame();
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-14 22:01:33 +08:00
|
|
|
|
public resume(): void {
|
|
|
|
|
this.schedule_frame();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public step_over(): void {
|
|
|
|
|
const execloc = this.vm.get_current_execution_location();
|
|
|
|
|
|
|
|
|
|
defined(this.quest);
|
|
|
|
|
|
|
|
|
|
const src_segment = this.get_instruction_segment_by_index(execloc.seg_idx);
|
|
|
|
|
const cur_instr = src_segment.instructions[execloc.inst_idx];
|
|
|
|
|
const dst_label = this.get_step_innable_instruction_label_argument(cur_instr);
|
|
|
|
|
|
|
|
|
|
// nothing to step over, just break on next instruction
|
|
|
|
|
if (dst_label === undefined) {
|
|
|
|
|
this.break_on_next = true;
|
|
|
|
|
}
|
|
|
|
|
// set a breakpoint on the next line
|
|
|
|
|
else {
|
|
|
|
|
const next_execloc = new ExecutionLocation(execloc.seg_idx, execloc.inst_idx + 1);
|
|
|
|
|
|
|
|
|
|
// next line is in the next segment
|
|
|
|
|
if (next_execloc.inst_idx >= src_segment.instructions.length) {
|
|
|
|
|
next_execloc.seg_idx++;
|
|
|
|
|
next_execloc.inst_idx = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const dst_segment = this.get_instruction_segment_by_index(next_execloc.seg_idx);
|
|
|
|
|
const dst_instr = dst_segment.instructions[next_execloc.inst_idx];
|
|
|
|
|
if (dst_instr.asm && dst_instr.asm.mnemonic) {
|
|
|
|
|
this.stepping_breakpoints.push(dst_instr.asm.mnemonic.line_no);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public step_in(): void {
|
|
|
|
|
const execloc = this.vm.get_current_execution_location();
|
|
|
|
|
const src_segment = this.get_instruction_segment_by_index(execloc.seg_idx);
|
|
|
|
|
const cur_instr = src_segment.instructions[execloc.inst_idx];
|
|
|
|
|
const dst_label = this.get_step_innable_instruction_label_argument(cur_instr);
|
|
|
|
|
|
|
|
|
|
// not a step-innable instruction, behave like step-over
|
|
|
|
|
if (dst_label === undefined) {
|
|
|
|
|
this.step_over();
|
|
|
|
|
}
|
|
|
|
|
// can step-in
|
|
|
|
|
else {
|
|
|
|
|
const dst_segment = this.get_instruction_segment_by_label(dst_label);
|
|
|
|
|
const dst_instr = dst_segment.instructions[0];
|
|
|
|
|
|
|
|
|
|
if (dst_instr.asm && dst_instr.asm.mnemonic) {
|
|
|
|
|
this.stepping_breakpoints.push(dst_instr.asm.mnemonic.line_no);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.schedule_frame();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-15 17:28:55 +08:00
|
|
|
|
public step_out(): void {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-11 21:21:13 +08:00
|
|
|
|
private schedule_frame(): void {
|
2019-11-06 04:07:17 +08:00
|
|
|
|
this.animation_frame = requestAnimationFrame(this.execution_loop);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private execution_loop = (): void => {
|
|
|
|
|
let result: ExecutionResult;
|
|
|
|
|
|
2019-11-15 17:28:55 +08:00
|
|
|
|
let need_emit_unpause = this.paused.val;
|
|
|
|
|
|
2019-11-14 22:01:33 +08:00
|
|
|
|
exec_loop: while (true) {
|
2019-11-06 04:07:17 +08:00
|
|
|
|
result = this.vm.execute();
|
2019-11-14 06:31:20 +08:00
|
|
|
|
|
|
|
|
|
const srcloc = this.vm.get_current_source_location();
|
2019-11-14 22:01:33 +08:00
|
|
|
|
if (srcloc) {
|
2019-11-15 17:28:55 +08:00
|
|
|
|
// check if need to break
|
2019-11-14 22:01:33 +08:00
|
|
|
|
const hit_breakpoint =
|
|
|
|
|
this.break_on_next ||
|
2019-11-15 17:28:55 +08:00
|
|
|
|
asm_editor_store?.breakpoints.val.includes(srcloc.line_no) ||
|
2019-11-14 22:01:33 +08:00
|
|
|
|
this.stepping_breakpoints.includes(srcloc.line_no);
|
2019-11-15 17:28:55 +08:00
|
|
|
|
|
|
|
|
|
this.break_on_next = false;
|
|
|
|
|
|
2019-11-14 22:01:33 +08:00
|
|
|
|
if (hit_breakpoint) {
|
|
|
|
|
this.stepping_breakpoints.length = 0;
|
2019-11-15 17:28:55 +08:00
|
|
|
|
asm_editor_store?.set_execution_location(srcloc.line_no);
|
2019-11-14 22:01:33 +08:00
|
|
|
|
break exec_loop;
|
|
|
|
|
}
|
2019-11-14 06:31:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-15 17:28:55 +08:00
|
|
|
|
// first instruction after pause did not break, set state to unpaused
|
|
|
|
|
if (need_emit_unpause) {
|
|
|
|
|
need_emit_unpause = false;
|
|
|
|
|
this._paused.val = false;
|
|
|
|
|
}
|
2019-11-14 22:01:33 +08:00
|
|
|
|
|
2019-11-14 06:31:20 +08:00
|
|
|
|
switch (result) {
|
|
|
|
|
case ExecutionResult.WaitingVsync:
|
|
|
|
|
this.vm.vsync();
|
|
|
|
|
this.schedule_frame();
|
2019-11-15 17:28:55 +08:00
|
|
|
|
break exec_loop;
|
2019-11-14 06:31:20 +08:00
|
|
|
|
case ExecutionResult.WaitingInput:
|
|
|
|
|
// TODO: implement input from gui
|
|
|
|
|
this.schedule_frame();
|
2019-11-15 17:28:55 +08:00
|
|
|
|
break exec_loop;
|
2019-11-14 06:31:20 +08:00
|
|
|
|
case ExecutionResult.WaitingSelection:
|
|
|
|
|
// TODO: implement input from gui
|
|
|
|
|
this.vm.list_select(0);
|
|
|
|
|
this.schedule_frame();
|
2019-11-15 17:28:55 +08:00
|
|
|
|
break exec_loop;
|
2019-11-14 06:31:20 +08:00
|
|
|
|
case ExecutionResult.Halted:
|
2019-11-15 17:28:55 +08:00
|
|
|
|
this._running.val = false;
|
|
|
|
|
asm_editor_store?.unset_execution_location();
|
2019-11-14 06:31:20 +08:00
|
|
|
|
break exec_loop;
|
|
|
|
|
}
|
2019-11-06 04:07:17 +08:00
|
|
|
|
}
|
2019-11-15 17:28:55 +08:00
|
|
|
|
|
|
|
|
|
this._paused.val = true;
|
2019-11-06 04:07:17 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
private create_vm_io = (): VirtualMachineIO => {
|
|
|
|
|
return {
|
|
|
|
|
window_msg: (msg: string): void => {
|
2019-11-15 17:28:55 +08:00
|
|
|
|
logger?.info(`window_msg "${msg}"`);
|
2019-11-06 04:07:17 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
message: (msg: string): void => {
|
2019-11-15 17:28:55 +08:00
|
|
|
|
logger?.info(`message "${msg}"`);
|
2019-11-06 04:07:17 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
add_msg: (msg: string): void => {
|
2019-11-15 17:28:55 +08:00
|
|
|
|
logger?.info(`add_msg "${msg}"`);
|
2019-11-06 04:07:17 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
winend: (): void => {},
|
|
|
|
|
|
|
|
|
|
mesend: (): void => {},
|
|
|
|
|
|
2019-11-11 21:21:13 +08:00
|
|
|
|
list: (list_items: string[]): void => {
|
2019-11-15 17:28:55 +08:00
|
|
|
|
logger?.info(`list "[${list_items}]"`);
|
2019-11-11 21:21:13 +08:00
|
|
|
|
},
|
|
|
|
|
|
2019-11-06 04:07:17 +08:00
|
|
|
|
warning: (msg: string, srcloc?: AsmToken): void => {
|
2019-11-15 17:28:55 +08:00
|
|
|
|
logger?.warning(msg, srcloc && srcloc_to_string(srcloc));
|
2019-11-06 04:07:17 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
error: (err: Error, srcloc?: AsmToken): void => {
|
2019-11-15 17:28:55 +08:00
|
|
|
|
logger?.error(err, srcloc && srcloc_to_string(srcloc));
|
2019-11-06 04:07:17 +08:00
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
};
|
2019-11-14 22:01:33 +08:00
|
|
|
|
|
|
|
|
|
private get_instruction_segment_by_index(index: number): InstructionSegment {
|
|
|
|
|
defined(this.quest);
|
|
|
|
|
|
|
|
|
|
const segment = this.quest.object_code[index];
|
|
|
|
|
|
|
|
|
|
assert(
|
|
|
|
|
segment.type === SegmentType.Instructions,
|
|
|
|
|
`Expected segment ${index} to be of type ${
|
|
|
|
|
SegmentType[SegmentType.Instructions]
|
|
|
|
|
}, but was ${SegmentType[segment.type]}.`,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return segment;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private get_instruction_segment_by_label(label: number): InstructionSegment {
|
|
|
|
|
const seg_idx = this.vm.get_segment_index_by_label(label);
|
|
|
|
|
return this.get_instruction_segment_by_index(seg_idx);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private get_step_innable_instruction_label_argument(instr: Instruction): number | undefined {
|
|
|
|
|
switch (instr.opcode.code) {
|
|
|
|
|
case OP_VA_CALL.code:
|
|
|
|
|
case OP_CALL.code:
|
|
|
|
|
return instr.args[0].value;
|
|
|
|
|
case OP_SWITCH_CALL.code:
|
|
|
|
|
return instr.args[1].value;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-06 04:07:17 +08:00
|
|
|
|
}
|