mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
76 lines
2.8 KiB
TypeScript
76 lines
2.8 KiB
TypeScript
import { InstructionSegment, Opcode, SegmentType } from "../data_formats/parsing/quest/bin";
|
|
import { assemble } from "./assembly";
|
|
|
|
test("", () => {
|
|
const { object_code, errors } = assemble(
|
|
`
|
|
0: set_episode 0
|
|
bb_map_designate 1, 2, 3, 4
|
|
set_floor_handler 0, 150
|
|
set_floor_handler 1, 151
|
|
ret
|
|
150: set_mainwarp 1
|
|
ret
|
|
151: ret
|
|
`.split("\n")
|
|
);
|
|
|
|
expect(errors).toEqual([]);
|
|
|
|
expect(object_code.length).toBe(3);
|
|
|
|
const segment_0 = object_code[0] as InstructionSegment;
|
|
|
|
expect(segment_0.type).toBe(SegmentType.Instructions);
|
|
expect(segment_0.instructions.length).toBe(9);
|
|
|
|
expect(segment_0.instructions[0].opcode).toBe(Opcode.set_episode);
|
|
expect(segment_0.instructions[0].args).toEqual([{ value: 0, size: 4 }]);
|
|
|
|
expect(segment_0.instructions[1].opcode).toBe(Opcode.bb_map_designate);
|
|
expect(segment_0.instructions[1].args).toEqual([
|
|
{ value: 1, size: 1 },
|
|
{ value: 2, size: 2 },
|
|
{ value: 3, size: 1 },
|
|
{ value: 4, size: 1 },
|
|
]);
|
|
|
|
expect(segment_0.instructions[2].opcode).toBe(Opcode.arg_pushl);
|
|
expect(segment_0.instructions[2].args).toEqual([{ value: 0, size: 4 }]);
|
|
expect(segment_0.instructions[3].opcode).toBe(Opcode.arg_pushw);
|
|
expect(segment_0.instructions[3].args).toEqual([{ value: 150, size: 2 }]);
|
|
expect(segment_0.instructions[4].opcode).toBe(Opcode.set_floor_handler);
|
|
expect(segment_0.instructions[4].args).toEqual([]);
|
|
|
|
expect(segment_0.instructions[5].opcode).toBe(Opcode.arg_pushl);
|
|
expect(segment_0.instructions[5].args).toEqual([{ value: 1, size: 4 }]);
|
|
expect(segment_0.instructions[6].opcode).toBe(Opcode.arg_pushw);
|
|
expect(segment_0.instructions[6].args).toEqual([{ value: 151, size: 2 }]);
|
|
expect(segment_0.instructions[7].opcode).toBe(Opcode.set_floor_handler);
|
|
expect(segment_0.instructions[7].args).toEqual([]);
|
|
|
|
expect(segment_0.instructions[8].opcode).toBe(Opcode.ret);
|
|
expect(segment_0.instructions[8].args).toEqual([]);
|
|
|
|
const segment_1 = object_code[1] as InstructionSegment;
|
|
|
|
expect(segment_1.type).toBe(SegmentType.Instructions);
|
|
expect(segment_1.instructions.length).toBe(3);
|
|
|
|
expect(segment_1.instructions[0].opcode).toBe(Opcode.arg_pushl);
|
|
expect(segment_1.instructions[0].args).toEqual([{ value: 1, size: 4 }]);
|
|
expect(segment_1.instructions[1].opcode).toBe(Opcode.set_mainwarp);
|
|
expect(segment_1.instructions[1].args).toEqual([]);
|
|
|
|
expect(segment_1.instructions[2].opcode).toBe(Opcode.ret);
|
|
expect(segment_1.instructions[2].args).toEqual([]);
|
|
|
|
const segment_2 = object_code[2] as InstructionSegment;
|
|
|
|
expect(segment_2.type).toBe(SegmentType.Instructions);
|
|
expect(segment_2.instructions.length).toBe(1);
|
|
|
|
expect(segment_2.instructions[0].opcode).toBe(Opcode.ret);
|
|
expect(segment_2.instructions[0].args).toEqual([]);
|
|
});
|