2019-07-03 00:08:06 +08:00
|
|
|
import * as fs from "fs";
|
2019-10-17 20:00:52 +08:00
|
|
|
import { InstructionSegment, SegmentType } from "../../src/quest_editor/scripting/instructions";
|
|
|
|
import { assemble } from "../../src/quest_editor/scripting/assembly";
|
2019-05-29 00:40:29 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Applies f to all QST files in a directory.
|
2019-08-06 07:14:57 +08:00
|
|
|
* f is called with the path to the file, the file name and the content of the file.
|
|
|
|
* Uses the 106 QST files provided with Tethealla version 0.143 by default.
|
2019-05-29 00:40:29 +08:00
|
|
|
*/
|
2019-07-02 23:00:24 +08:00
|
|
|
export function walk_qst_files(
|
|
|
|
f: (path: string, file_name: string, contents: Buffer) => void,
|
2019-10-02 00:30:26 +08:00
|
|
|
dir = "test/resources/tethealla_v0.143_quests",
|
2019-07-03 03:20:11 +08:00
|
|
|
): void {
|
2019-07-02 23:00:24 +08:00
|
|
|
for (const [path, file] of get_qst_files(dir)) {
|
2019-05-29 00:40:29 +08:00
|
|
|
f(path, file, fs.readFileSync(path));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-02 23:00:24 +08:00
|
|
|
export function get_qst_files(dir: string): [string, string][] {
|
2019-05-29 00:40:29 +08:00
|
|
|
let files: [string, string][] = [];
|
|
|
|
|
|
|
|
for (const file of fs.readdirSync(dir)) {
|
|
|
|
const path = `${dir}/${file}`;
|
|
|
|
const stats = fs.statSync(path);
|
|
|
|
|
|
|
|
if (stats.isDirectory()) {
|
2019-07-02 23:00:24 +08:00
|
|
|
files = files.concat(get_qst_files(path));
|
2019-07-03 00:08:06 +08:00
|
|
|
} else if (path.endsWith(".qst")) {
|
2019-05-29 00:40:29 +08:00
|
|
|
// BUG: Battle quests are not always parsed in the same way.
|
|
|
|
// Could be a bug in Jest or Node as the quest parsing code has no randomness or dependency on mutable state.
|
|
|
|
// TODO: Some quests can not yet be parsed correctly.
|
|
|
|
const exceptions = [
|
2019-07-03 00:08:06 +08:00
|
|
|
"/battle/", // Battle mode quests
|
|
|
|
"/princ/", // Goverment quests
|
|
|
|
"fragmentofmemoryen.qst",
|
|
|
|
"lost havoc vulcan.qst",
|
|
|
|
"ep2/event/ma4-a.qst",
|
|
|
|
"gallon.qst",
|
|
|
|
"ep1/04.qst",
|
|
|
|
"goodluck.qst",
|
2019-05-29 00:40:29 +08:00
|
|
|
];
|
|
|
|
|
|
|
|
if (exceptions.every(e => path.indexOf(e) === -1)) {
|
|
|
|
files.push([path, file]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return files;
|
|
|
|
}
|
2019-10-17 20:00:52 +08:00
|
|
|
|
|
|
|
export function to_instructions(assembly: string, manual_stack?: boolean): InstructionSegment[] {
|
|
|
|
const { object_code, warnings, errors } = assemble(assembly.split("\n"), manual_stack);
|
|
|
|
|
|
|
|
expect(warnings).toEqual([]);
|
|
|
|
expect(errors).toEqual([]);
|
|
|
|
|
|
|
|
return object_code.filter(
|
|
|
|
segment => segment.type === SegmentType.Instructions,
|
|
|
|
) as InstructionSegment[];
|
|
|
|
}
|