From cb7f088f22e1733064822d566bd0847cb2181d78 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Mon, 22 Jul 2019 12:31:20 +0200 Subject: [PATCH] Fixed bug in prs compression code. Improved prs compression performance by about 5x. Instructions are now written as object code in quest bin files. --- .env.test | 2 + src/data_formats/compression/prs/compress.ts | 41 +- .../compression/prs/decompress.ts | 2 +- .../compression/prs/index.test.ts | 35 +- src/data_formats/compression/prs/index.ts | 2 - .../cursor/WritableArrayBufferCursor.ts | 10 + src/data_formats/cursor/WritableCursor.ts | 5 + .../cursor/WritableResizableBufferCursor.ts | 11 + src/data_formats/parsing/prc.ts | 4 +- src/data_formats/parsing/quest/bin.test.ts | 7 +- src/data_formats/parsing/quest/bin.ts | 1084 +--- src/data_formats/parsing/quest/dat.test.ts | 12 +- src/data_formats/parsing/quest/index.test.ts | 83 +- src/data_formats/parsing/quest/index.ts | 47 +- src/data_formats/parsing/quest/opcodes.ts | 4904 +++++++++++++++++ src/data_formats/parsing/quest/qst.ts | 41 +- src/data_formats/parsing/unitxt.ts | 4 +- src/domain/index.ts | 4 - src/setupTests.js | 5 + src/stores/quest_creation.ts | 43 +- src/ui/quest_editor/ScriptEditorComponent.tsx | 9 +- src/ui/scripting/disassembly.ts | 89 +- 22 files changed, 5346 insertions(+), 1098 deletions(-) create mode 100644 .env.test delete mode 100644 src/data_formats/compression/prs/index.ts create mode 100644 src/data_formats/parsing/quest/opcodes.ts create mode 100644 src/setupTests.js diff --git a/.env.test b/.env.test new file mode 100644 index 00000000..8bdb3d69 --- /dev/null +++ b/.env.test @@ -0,0 +1,2 @@ +REACT_APP_LOG_LEVEL=WARN +RUN_ALL_TESTS=false \ No newline at end of file diff --git a/src/data_formats/compression/prs/compress.ts b/src/data_formats/compression/prs/compress.ts index 1b2241b1..1354741a 100644 --- a/src/data_formats/compression/prs/compress.ts +++ b/src/data_formats/compression/prs/compress.ts @@ -3,7 +3,7 @@ import { WritableCursor } from "../../cursor/WritableCursor"; import { WritableResizableBufferCursor } from "../../cursor/WritableResizableBufferCursor"; import { ResizableBuffer } from "../../ResizableBuffer"; -export function compress(src: Cursor): Cursor { +export function prs_compress(src: Cursor): Cursor { const ctx = new Context(src); const hash_table = new HashTable(); @@ -111,9 +111,9 @@ const HASH_SIZE = 1 << 8; class Context { src: Cursor; dst: WritableCursor; - flags: number; - flag_bits_left: number; - flag_offset: number; + flags = 0; + flag_bits_left = 0; + flag_offset = 0; constructor(cursor: Cursor) { this.src = cursor; @@ -121,9 +121,6 @@ class Context { new ResizableBuffer(cursor.size), cursor.endianness ); - this.flags = 0; - this.flag_bits_left = 0; - this.flag_offset = 0; } set_bit(bit: number): void { @@ -178,6 +175,12 @@ class Context { let s1 = this.src.position; const size = this.src.size; + while (s1 < size - 4 && this.src.u32_at(s1) === this.src.u32_at(s2)) { + len += 4; + s1 += 4; + s2 += 4; + } + while (s1 < size && this.src.u8_at(s1) === this.src.u8_at(s2)) { ++len; ++s1; @@ -198,7 +201,7 @@ class Context { // If there is nothing in the table at that point, bail out now. let entry = hash_table.get(hash); - if (entry === null) { + if (entry === -1) { if (!lazy) { hash_table.put(hash, this.src.position); } @@ -208,7 +211,7 @@ class Context { // If we'd go outside the window, truncate the hash chain now. if (this.src.position - entry > MAX_WINDOW) { - hash_table.hash_to_offset[hash] = null; + hash_table.hash_to_offset[hash] = -1; if (!lazy) { hash_table.put(hash, this.src.position); @@ -222,7 +225,7 @@ class Context { let longest_length = 0; let longest_match = 0; - while (entry != null) { + while (entry !== -1) { const mlen = this.match_length(entry); if (mlen > longest_length || mlen >= 256) { @@ -233,11 +236,11 @@ class Context { // Follow the chain, making sure not to exceed a difference of MAX_WINDOW. let entry_2 = hash_table.prev(entry); - if (entry_2 !== null) { + if (entry_2 !== -1) { // If we'd go outside the window, truncate the hash chain now. if (this.src.position - entry_2 > MAX_WINDOW) { - hash_table.set_prev(entry, null); - entry_2 = null; + hash_table.set_prev(entry, -1); + entry_2 = -1; } } @@ -266,8 +269,8 @@ class Context { } class HashTable { - hash_to_offset: (number | null)[] = new Array(HASH_SIZE).fill(null); - masked_offset_to_prev: (number | null)[] = new Array(MAX_WINDOW).fill(null); + hash_to_offset = new Int32Array(HASH_SIZE).fill(-1); + masked_offset_to_prev = new Int16Array(MAX_WINDOW).fill(-1); hash(cursor: Cursor): number { let hash = cursor.u8(); @@ -281,7 +284,7 @@ class HashTable { return hash; } - get(hash: number): number | null { + get(hash: number): number { return this.hash_to_offset[hash]; } @@ -290,11 +293,11 @@ class HashTable { this.hash_to_offset[hash] = offset; } - prev(offset: number): number | null { + prev(offset: number): number { return this.masked_offset_to_prev[offset & WINDOW_MASK]; } - set_prev(offset: number, prevOffset: number | null): void { - this.masked_offset_to_prev[offset & WINDOW_MASK] = prevOffset; + set_prev(offset: number, prev_offset: number): void { + this.masked_offset_to_prev[offset & WINDOW_MASK] = prev_offset; } } diff --git a/src/data_formats/compression/prs/decompress.ts b/src/data_formats/compression/prs/decompress.ts index d26b1d08..22543123 100644 --- a/src/data_formats/compression/prs/decompress.ts +++ b/src/data_formats/compression/prs/decompress.ts @@ -6,7 +6,7 @@ import { ResizableBuffer } from "../../ResizableBuffer"; const logger = Logger.get("data_formats/compression/prs/decompress"); -export function decompress(cursor: Cursor): Cursor { +export function prs_decompress(cursor: Cursor): Cursor { const ctx = new Context(cursor); while (true) { diff --git a/src/data_formats/compression/prs/index.test.ts b/src/data_formats/compression/prs/index.test.ts index f2d44974..0251f002 100644 --- a/src/data_formats/compression/prs/index.test.ts +++ b/src/data_formats/compression/prs/index.test.ts @@ -1,14 +1,17 @@ +import { readFileSync } from "fs"; import { Endianness } from "../.."; import { ArrayBufferCursor } from "../../cursor/ArrayBufferCursor"; -import { compress, decompress } from "../prs"; +import { BufferCursor } from "../../cursor/BufferCursor"; +import { prs_compress } from "./compress"; +import { prs_decompress } from "./decompress"; function test_with_bytes(bytes: number[], expected_compressed_size: number): void { const cursor = new ArrayBufferCursor(new Uint8Array(bytes).buffer, Endianness.Little); - const compressed_cursor = compress(cursor); + const compressed_cursor = prs_compress(cursor); expect(compressed_cursor.size).toBe(expected_compressed_size); - const test_cursor = decompress(compressed_cursor); + const test_cursor = prs_decompress(compressed_cursor); cursor.seek_start(0); expect(test_cursor.size).toBe(cursor.size); @@ -64,6 +67,32 @@ test("PRS compression and decompression, 3 bytes", () => { test_with_bytes([56, 237, 158], 6); }); +test("PRS compression and decompression of quest118_e.bin", () => { + const buffer = readFileSync("test/resources/quest118_e.bin"); + const orig = prs_decompress(new BufferCursor(buffer, Endianness.Little)); + const test = prs_decompress(prs_compress(orig)); + orig.seek_start(0); + + expect(test.size).toBe(orig.size); + + let matching_bytes = 0; + + while (orig.bytes_left) { + const test_byte = test.u8(); + const orig_byte = orig.u8(); + + if (test_byte !== orig_byte) { + throw new Error( + `Byte ${matching_bytes} didn't match, expected ${orig_byte}, got ${test_byte}.` + ); + } + + matching_bytes++; + } + + expect(matching_bytes).toBe(orig.size); +}); + class Prng { seed = 1; diff --git a/src/data_formats/compression/prs/index.ts b/src/data_formats/compression/prs/index.ts deleted file mode 100644 index b65af8f3..00000000 --- a/src/data_formats/compression/prs/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export { compress } from "./compress"; -export { decompress } from "./decompress"; diff --git a/src/data_formats/cursor/WritableArrayBufferCursor.ts b/src/data_formats/cursor/WritableArrayBufferCursor.ts index a2c10c2b..99376020 100644 --- a/src/data_formats/cursor/WritableArrayBufferCursor.ts +++ b/src/data_formats/cursor/WritableArrayBufferCursor.ts @@ -43,6 +43,16 @@ export class WritableArrayBufferCursor extends ArrayBufferCursor implements Writ return this; } + write_u16_array(array: number[]): this { + const len = array.length; + + for (let i = 0; i < len; i++) { + this.write_u16(array[i]); + } + + return this; + } + write_vec2_f32(value: Vec2): this { this.dv.setFloat32(this.position, value.x, this.little_endian); this.dv.setFloat32(this.position + 4, value.y, this.little_endian); diff --git a/src/data_formats/cursor/WritableCursor.ts b/src/data_formats/cursor/WritableCursor.ts index 9f84ffd2..e7aab1b6 100644 --- a/src/data_formats/cursor/WritableCursor.ts +++ b/src/data_formats/cursor/WritableCursor.ts @@ -37,6 +37,11 @@ export interface WritableCursor extends Cursor { */ write_u8_array(array: number[]): this; + /** + * Writes an array of unsigned 16-bit integers and increments position by twice the array's length. + */ + write_u16_array(array: number[]): this; + /** * Writes two 32-bit floating point numbers and increments position by 8. */ diff --git a/src/data_formats/cursor/WritableResizableBufferCursor.ts b/src/data_formats/cursor/WritableResizableBufferCursor.ts index ca637f67..6e3dcba0 100644 --- a/src/data_formats/cursor/WritableResizableBufferCursor.ts +++ b/src/data_formats/cursor/WritableResizableBufferCursor.ts @@ -60,6 +60,17 @@ export class WritableResizableBufferCursor extends ResizableBufferCursor impleme return this; } + write_u16_array(array: number[]): this { + this.ensure_size(2 * array.length); + const len = array.length; + + for (let i = 0; i < len; i++) { + this.write_u16(array[i]); + } + + return this; + } + write_vec2_f32(value: Vec2): this { this.ensure_size(8); this.dv.setFloat32(this.position, value.x, this.little_endian); diff --git a/src/data_formats/parsing/prc.ts b/src/data_formats/parsing/prc.ts index 69b20949..feaf2ef5 100644 --- a/src/data_formats/parsing/prc.ts +++ b/src/data_formats/parsing/prc.ts @@ -1,5 +1,5 @@ import Logger from "js-logger"; -import { decompress } from "../compression/prs"; +import { prs_decompress } from "../compression/prs/decompress"; import { Cursor } from "../cursor/Cursor"; import { decrypt } from "../encryption/prc"; @@ -12,7 +12,7 @@ export function parse_prc(cursor: Cursor): Cursor { // Unencrypted, decompressed size. const size = cursor.u32(); let key = cursor.u32(); - const out = decompress(decrypt(key, cursor)); + const out = prs_decompress(decrypt(key, cursor)); if (out.size !== size) { logger.warn( diff --git a/src/data_formats/parsing/quest/bin.test.ts b/src/data_formats/parsing/quest/bin.test.ts index 440fcd19..343ada7b 100644 --- a/src/data_formats/parsing/quest/bin.test.ts +++ b/src/data_formats/parsing/quest/bin.test.ts @@ -1,17 +1,18 @@ import { readFileSync } from "fs"; import { Endianness } from "../.."; -import * as prs from "../../compression/prs"; import { ArrayBufferCursor } from "../../cursor/ArrayBufferCursor"; import { BufferCursor } from "../../cursor/BufferCursor"; import { parse_bin, write_bin } from "./bin"; +import { prs_decompress } from "../../compression/prs/decompress"; /** * Parse a file, convert the resulting structure to BIN again and check whether the end result is equal to the original. */ test("parse_bin and write_bin", () => { const orig_buffer = readFileSync("test/resources/quest118_e.bin"); - const orig_bin = prs.decompress(new BufferCursor(orig_buffer, Endianness.Little)); - const test_bin = new ArrayBufferCursor(write_bin(parse_bin(orig_bin)), Endianness.Little); + const orig_bin = prs_decompress(new BufferCursor(orig_buffer, Endianness.Little)); + const test_buffer = write_bin(parse_bin(orig_bin)); + const test_bin = new ArrayBufferCursor(test_buffer, Endianness.Little); orig_bin.seek_start(0); expect(test_bin.size).toBe(orig_bin.size); diff --git a/src/data_formats/parsing/quest/bin.ts b/src/data_formats/parsing/quest/bin.ts index ff9896ab..d6f67f8d 100644 --- a/src/data_formats/parsing/quest/bin.ts +++ b/src/data_formats/parsing/quest/bin.ts @@ -2,7 +2,12 @@ import Logger from "js-logger"; import { Endianness } from "../.."; import { ArrayBufferCursor } from "../../cursor/ArrayBufferCursor"; import { Cursor } from "../../cursor/Cursor"; -import { WritableArrayBufferCursor } from "../../cursor/WritableArrayBufferCursor"; +import { WritableCursor } from "../../cursor/WritableCursor"; +import { WritableResizableBufferCursor } from "../../cursor/WritableResizableBufferCursor"; +import { ResizableBuffer } from "../../ResizableBuffer"; +import { Opcode, OPCODES, Type } from "./opcodes"; + +export * from "./opcodes"; const logger = Logger.get("data_formats/parsing/quest/bin"); @@ -18,7 +23,6 @@ export class BinFile { */ readonly labels: Map, readonly instructions: Instruction[], - readonly object_code: ArrayBuffer, readonly unknown: ArrayBuffer ) {} @@ -33,7 +37,7 @@ export class BinFile { const instruction = this.instructions[i]; instructions.push(instruction); - if (instruction.opcode === OP_RET) { + if (instruction.opcode === Opcode.ret) { break; } } @@ -42,55 +46,6 @@ export class BinFile { } } -/** - * Script object code instruction. Invoked by {@link Instruction}s. - */ -export class Opcode { - /** - * Byte size of the instruction code, either 1 or 2. - */ - readonly code_size: number; - - constructor( - /** - * 1- Or 2-byte instruction code used to invoke this opcode. - */ - readonly code: number, - readonly mnemonic: string, - /** - * Directly passed in arguments. - */ - readonly params: Type[], - /** - * If true, this opcode pushes arguments onto the stack. - */ - readonly push_stack: boolean, - /** - * Arguments passed in via the stack. - * These arguments are popped from the stack after the opcode has executed. - */ - readonly stack_params: Type[] - ) { - const table = this.code >>> 8; - this.code_size = table === 0 ? 1 : 2; - } -} - -/** - * Instruction parameter types. - */ -export enum Type { - U8, - U16, - U32, - I32, - F32, - Register, - SwitchData, - JumpData, - String, -} - /** * Instruction invocation. */ @@ -103,16 +58,46 @@ export class Instruction { * Byte size of the entire instruction, i.e. the sum of the opcode size and all argument sizes. */ readonly size: number; + /** + * Maps each parameter by index to its arguments. + */ + readonly param_to_args: Arg[][] = []; constructor(readonly opcode: Opcode, readonly args: Arg[]) { - for (const { size } of args) { - this.arg_size += size; + for (let i = 0; i < opcode.params.length; i++) { + const type = opcode.params[i].type; + const arg = args[i]; + this.param_to_args[i] = []; + + if (arg == null) { + break; + } + + switch (type) { + case Type.U8Var: + case Type.U16Var: + this.arg_size++; + + for (let j = i; j < args.length; j++) { + this.param_to_args[i].push(args[j]); + this.arg_size += args[j].size; + } + + break; + default: + this.arg_size += arg.size; + this.param_to_args[i].push(arg); + break; + } } this.size = opcode.code_size + this.arg_size; } } +/** + * Instruction argument. + */ export type Arg = { value: any; size: number; @@ -179,7 +164,11 @@ export function parse_bin(cursor: Cursor, lenient: boolean = false): BinFile { index++; } - labels.set(label, index); + if (index >= instructions.length) { + logger.warn(`Label ${label} offset ${offset} is too large.`); + } else { + labels.set(label, index); + } } } @@ -191,7 +180,6 @@ export function parse_bin(cursor: Cursor, lenient: boolean = false): BinFile { long_description, labels, instructions, - object_code.seek_start(0).array_buffer(), unknown ); } @@ -203,14 +191,14 @@ export function write_bin(bin: BinFile): ArrayBuffer { }, new Array()); const object_code_offset = 4652; - const buffer = new ArrayBuffer( - object_code_offset + bin.object_code.byteLength + 4 * labels.length + const buffer = new ResizableBuffer( + object_code_offset + 10 * bin.instructions.length + 4 * labels.length ); - const cursor = new WritableArrayBufferCursor(buffer, Endianness.Little); + const cursor = new WritableResizableBufferCursor(buffer, Endianness.Little); cursor.write_u32(object_code_offset); - cursor.write_u32(object_code_offset + bin.object_code.byteLength); - cursor.write_u32(buffer.byteLength); + cursor.write_u32(0); // Placeholder for the labels offset. + cursor.write_u32(0); // Placeholder for the file size. cursor.write_u32(0xffffffff); cursor.write_u32(bin.quest_id); cursor.write_u32(bin.language); @@ -224,7 +212,7 @@ export function write_bin(bin: BinFile): ArrayBuffer { cursor.write_u8(0); } - cursor.write_cursor(new ArrayBufferCursor(bin.object_code, Endianness.Little)); + const object_code_size = write_object_code(cursor, bin.instructions); for (let label = 0; label < labels.length; label++) { const index = labels[label]; @@ -248,7 +236,13 @@ export function write_bin(bin: BinFile): ArrayBuffer { } } - return buffer; + const file_size = cursor.position; + + cursor.seek_start(4); + cursor.write_u32(object_code_offset + object_code_size); + cursor.write_u32(file_size); + + return cursor.seek_start(0).array_buffer(file_size); } function parse_object_code(cursor: Cursor, lenient: boolean): Instruction[] { @@ -261,10 +255,8 @@ function parse_object_code(cursor: Cursor, lenient: boolean): Instruction[] { switch (main_opcode) { case 0xf8: - opcode_index = 0x100 + cursor.u8(); - break; case 0xf9: - opcode_index = 0x200 + cursor.u8(); + opcode_index = (main_opcode << 8) | cursor.u8(); break; default: opcode_index = main_opcode; @@ -299,916 +291,110 @@ function parse_instruction_arguments(cursor: Cursor, opcode: Opcode): Arg[] { const args: Arg[] = []; for (const param of opcode.params) { - let arg: any; - const start_pos = cursor.position; - - switch (param) { + switch (param.type) { case Type.U8: - arg = cursor.u8(); + args.push({ value: cursor.u8(), size: 1 }); break; case Type.U16: - arg = cursor.u16(); + args.push({ value: cursor.u16(), size: 2 }); break; case Type.U32: - arg = cursor.u32(); + args.push({ value: cursor.u32(), size: 4 }); break; case Type.I32: - arg = cursor.i32(); + args.push({ value: cursor.i32(), size: 4 }); break; case Type.F32: - arg = cursor.f32(); + args.push({ value: cursor.f32(), size: 4 }); break; case Type.Register: - arg = cursor.u8(); + args.push({ value: cursor.u8(), size: 1 }); break; - case Type.SwitchData: + case Type.U8Var: { const arg_size = cursor.u8(); - arg = cursor.u16_array(arg_size); + args.push(...cursor.u8_array(arg_size).map(value => ({ value, size: 1 }))); } break; - case Type.JumpData: + case Type.U16Var: { const arg_size = cursor.u8(); - arg = cursor.u8_array(arg_size); + args.push(...cursor.u16_array(arg_size).map(value => ({ value, size: 2 }))); } break; case Type.String: - arg = cursor.string_utf16(Math.min(4096, cursor.bytes_left), true, false); + { + const start_pos = cursor.position; + args.push({ + value: cursor.string_utf16(Math.min(4096, cursor.bytes_left), true, false), + size: cursor.position - start_pos, + }); + } break; default: - throw new Error(`Parameter type ${Type[param]} (${param}) not implemented.`); + throw new Error( + `Parameter type ${Type[param.type]} (${param.type}) not implemented.` + ); } - - args.push({ value: arg, size: cursor.position - start_pos }); } return args; } -export const OPCODES: Opcode[] = [ - new Opcode(0x00, "nop", [], false, []), - new Opcode(0x01, "ret", [], false, []), - new Opcode(0x02, "sync", [], false, []), - new Opcode(0x03, "exit", [], false, [Type.U32]), - new Opcode(0x04, "thread", [Type.U16], false, []), - new Opcode(0x05, "va_start", [], false, []), - new Opcode(0x06, "va_end", [], false, []), - new Opcode(0x07, "va_call", [Type.U16], false, []), - new Opcode(0x08, "let", [Type.Register, Type.Register], false, []), - new Opcode(0x09, "leti", [Type.Register, Type.I32], false, []), - new Opcode(0x0a, "unknown_0a", [], false, []), - new Opcode(0x0b, "unknown_0b", [], false, []), - new Opcode(0x0c, "unknown_0c", [], false, []), - new Opcode(0x0d, "unknown_0d", [], false, []), - new Opcode(0x0e, "unknown_0e", [], false, []), - new Opcode(0x0f, "unknown_0f", [], false, []), - new Opcode(0x10, "set", [Type.Register], false, []), - new Opcode(0x11, "clear", [Type.Register], false, []), - new Opcode(0x12, "rev", [Type.Register], false, []), - new Opcode(0x13, "gset", [Type.U16], false, []), - new Opcode(0x14, "gclear", [Type.U16], false, []), - new Opcode(0x15, "grev", [Type.U16], false, []), - new Opcode(0x16, "glet", [Type.U16], false, []), - new Opcode(0x17, "gget", [Type.U16, Type.Register], false, []), - new Opcode(0x18, "add", [Type.Register, Type.Register], false, []), - new Opcode(0x19, "addi", [Type.Register, Type.I32], false, []), - new Opcode(0x1a, "sub", [Type.Register, Type.Register], false, []), - new Opcode(0x1b, "subi", [Type.Register, Type.I32], false, []), - new Opcode(0x1c, "mul", [Type.Register, Type.Register], false, []), - new Opcode(0x1d, "muli", [Type.Register, Type.I32], false, []), - new Opcode(0x1e, "div", [Type.Register, Type.Register], false, []), - new Opcode(0x1f, "divi", [Type.Register, Type.I32], false, []), - new Opcode(0x20, "and", [Type.Register, Type.Register], false, []), - new Opcode(0x21, "andi", [Type.Register, Type.I32], false, []), - new Opcode(0x22, "or", [Type.Register, Type.Register], false, []), - new Opcode(0x23, "ori", [Type.Register, Type.I32], false, []), - new Opcode(0x24, "xor", [Type.Register, Type.Register], false, []), - new Opcode(0x25, "xori", [Type.Register, Type.I32], false, []), - new Opcode(0x26, "mod", [Type.Register, Type.Register], false, []), - new Opcode(0x27, "modi", [Type.Register, Type.I32], false, []), - new Opcode(0x28, "jmp", [Type.U16], false, []), - new Opcode(0x29, "call", [Type.U16], false, []), - new Opcode(0x2a, "jmp_on", [Type.U16, Type.JumpData], false, []), - new Opcode(0x2b, "jmp_off", [Type.U16, Type.JumpData], false, []), - new Opcode(0x2c, "jmp_=", [Type.Register, Type.Register, Type.U16], false, []), - new Opcode(0x2d, "jmpi_=", [Type.Register, Type.I32, Type.U16], false, []), - new Opcode(0x2e, "jmp_!=", [Type.Register, Type.Register, Type.U16], false, []), - new Opcode(0x2f, "jmpi_!=", [Type.Register, Type.I32, Type.U16], false, []), - new Opcode(0x30, "ujmp_>", [Type.Register, Type.Register, Type.U16], false, []), - new Opcode(0x31, "ujmpi_>", [Type.Register, Type.U32, Type.U16], false, []), - new Opcode(0x32, "jmp_>", [Type.Register, Type.Register, Type.U16], false, []), - new Opcode(0x33, "jmpi_>", [Type.Register, Type.I32, Type.U16], false, []), - new Opcode(0x34, "ujmp_<", [Type.Register, Type.Register, Type.U16], false, []), - new Opcode(0x35, "ujmpi_<", [Type.Register, Type.U32, Type.U16], false, []), - new Opcode(0x36, "jmp_<", [Type.Register, Type.Register, Type.U16], false, []), - new Opcode(0x37, "jmpi_<", [Type.Register, Type.I32, Type.U16], false, []), - new Opcode(0x38, "ujmp_>=", [Type.Register, Type.Register, Type.U16], false, []), - new Opcode(0x39, "ujmpi_>=", [Type.Register, Type.U32, Type.U16], false, []), - new Opcode(0x3a, "jmp_>=", [Type.Register, Type.Register, Type.U16], false, []), - new Opcode(0x3b, "jmpi_>=", [Type.Register, Type.I32, Type.U16], false, []), - new Opcode(0x3c, "ujmp_<=", [Type.Register, Type.Register, Type.U16], false, []), - new Opcode(0x3d, "ujmpi_<=", [Type.Register, Type.U32, Type.U16], false, []), - new Opcode(0x3e, "jmp_<=", [Type.Register, Type.Register, Type.U16], false, []), - new Opcode(0x3f, "jmpi_<=", [Type.Register, Type.I32, Type.U16], false, []), - new Opcode(0x40, "switch_jmp", [Type.Register, Type.SwitchData], false, []), - new Opcode(0x41, "switch_call", [Type.Register, Type.SwitchData], false, []), - new Opcode(0x42, "stack_push", [Type.Register], false, []), - new Opcode(0x43, "stack_pop", [Type.Register], false, []), - new Opcode(0x44, "stack_pushm", [Type.Register, Type.U32], false, []), - new Opcode(0x45, "stack_popm", [Type.Register, Type.U32], false, []), - new Opcode(0x46, "unknown_46", [], false, []), - new Opcode(0x47, "unknown_47", [], false, []), - new Opcode(0x48, "arg_pushr", [Type.Register], true, []), - new Opcode(0x49, "arg_pushl", [Type.I32], true, []), - new Opcode(0x4a, "arg_pushb", [Type.U8], true, []), - new Opcode(0x4b, "arg_pushw", [Type.U16], true, []), - new Opcode(0x4c, "unknown_4c", [], false, []), - new Opcode(0x4d, "unknown_4d", [], false, []), - new Opcode(0x4e, "arg_pushs", [Type.String], true, []), - new Opcode(0x4f, "unknown_4f", [Type.Register, Type.Register], false, []), - new Opcode(0x50, "message", [], false, [Type.U32, Type.String]), - new Opcode(0x51, "list", [], false, [Type.Register, Type.String]), - new Opcode(0x52, "fadein", [], false, []), - new Opcode(0x53, "fadeout", [], false, []), - new Opcode(0x54, "se", [], false, [Type.U32]), - new Opcode(0x55, "bgm", [], false, [Type.U32]), - new Opcode(0x56, "unknown_56", [], false, []), - new Opcode(0x57, "unknown_57", [], false, []), - new Opcode(0x58, "enable", [], false, [Type.U32]), - new Opcode(0x59, "disable", [], false, [Type.U32]), - new Opcode(0x5a, "window_msg", [], false, [Type.String]), - new Opcode(0x5b, "add_msg", [], false, [Type.String]), - new Opcode(0x5c, "mesend", [], false, []), - new Opcode(0x5d, "gettime", [Type.Register], false, []), - new Opcode(0x5e, "winend", [], false, []), - new Opcode(0x5f, "unknown_5f", [], false, []), - new Opcode(0x60, "npc_crt_v3", [Type.Register], false, []), - new Opcode(0x61, "npc_stop", [], false, [Type.Register]), - new Opcode(0x62, "npc_play", [], false, [Type.U32]), - new Opcode(0x63, "npc_kill", [], false, [Type.Register]), - new Opcode(0x64, "npc_nont", [], false, []), - new Opcode(0x65, "npc_talk", [], false, []), - new Opcode(0x66, "npc_crp_v3", [Type.Register], false, []), - new Opcode(0x67, "unknown_67", [], false, []), - new Opcode(0x68, "create_pipe", [], false, [Type.U32]), - new Opcode(0x69, "p_hpstat_v3", [], false, [Type.Register, Type.U32]), - new Opcode(0x6a, "p_dead_v3", [], false, [Type.Register, Type.U32]), - new Opcode(0x6b, "p_disablewarp", [], false, []), - new Opcode(0x6c, "p_enablewarp", [], false, []), - new Opcode(0x6d, "p_move_v3", [Type.Register], false, []), - new Opcode(0x6e, "p_look", [], false, [Type.U32]), - new Opcode(0x6f, "unknown_6f", [], false, []), - new Opcode(0x70, "p_action_disable", [], false, []), - new Opcode(0x71, "p_action_enable", [], false, []), - new Opcode(0x72, "disable_movement1", [], false, [Type.Register]), - new Opcode(0x73, "enable_movement1", [], false, [Type.Register]), - new Opcode(0x74, "p_noncol", [], false, []), - new Opcode(0x75, "p_col", [], false, []), - new Opcode(0x76, "p_setpos", [], false, [Type.Register, Type.Register]), - new Opcode(0x77, "p_return_guild", [], false, []), - new Opcode(0x78, "p_talk_guild", [], false, [Type.U32]), - new Opcode(0x79, "npc_talk_pl_v3", [Type.Register], false, []), - new Opcode(0x7a, "npc_talk_kill", [], false, [Type.U32]), - new Opcode(0x7b, "npc_crtpk_v3", [Type.Register], false, []), - new Opcode(0x7c, "npc_crppk_v3", [Type.Register], false, []), - new Opcode(0x7d, "npc_crptalk_v3", [Type.Register], false, []), - new Opcode(0x7e, "p_look_at_v1", [], false, [Type.U32, Type.U32]), - new Opcode(0x7f, "npc_crp_id_v3", [Type.Register], false, []), - new Opcode(0x80, "cam_quake", [], false, []), - new Opcode(0x81, "cam_adj", [], false, []), - new Opcode(0x82, "cam_zmin", [], false, []), - new Opcode(0x83, "cam_zmout", [], false, []), - new Opcode(0x84, "cam_pan_v3", [Type.Register], false, []), - new Opcode(0x85, "game_lev_super", [], false, []), - new Opcode(0x86, "game_lev_reset", [], false, []), - new Opcode(0x87, "pos_pipe_v3", [Type.Register], false, []), - new Opcode(0x88, "if_zone_clear", [Type.Register, Type.Register], false, []), - new Opcode(0x89, "chk_ene_num", [Type.Register], false, []), - new Opcode(0x8a, "unhide_obj", [Type.Register], false, []), - new Opcode(0x8b, "unhide_ene", [Type.Register], false, []), - new Opcode(0x8c, "at_coords_call", [Type.Register], false, []), - new Opcode(0x8d, "at_coords_talk", [Type.Register], false, []), - new Opcode(0x8e, "col_npcin", [Type.Register], false, []), - new Opcode(0x8f, "col_npcinr", [Type.Register], false, []), - new Opcode(0x90, "switch_on", [], false, [Type.U32]), - new Opcode(0x91, "switch_off", [], false, [Type.U32]), - new Opcode(0x92, "playbgm_epi", [], false, [Type.U32]), - new Opcode(0x93, "set_mainwarp", [], false, [Type.U32]), - new Opcode(0x94, "set_obj_param", [Type.Register, Type.Register], false, []), - new Opcode(0x95, "set_floor_handler", [], false, [Type.U32, Type.U16]), - new Opcode(0x96, "clr_floor_handler", [], false, [Type.U32]), - new Opcode(0x97, "col_plinaw", [Type.Register], false, []), - new Opcode(0x98, "hud_hide", [], false, []), - new Opcode(0x99, "hud_show", [], false, []), - new Opcode(0x9a, "cine_enable", [], false, []), - new Opcode(0x9b, "cine_disable", [], false, []), - new Opcode(0x9c, "unknown_9c", [], false, []), - new Opcode(0x9d, "unknown_9d", [], false, []), - new Opcode(0x9e, "unknown_9e", [], false, []), - new Opcode(0x9f, "unknown_9f", [], false, []), - new Opcode(0xa0, "unknown_a0", [], false, []), - new Opcode(0xa1, "set_qt_failure", [Type.U16], false, []), - new Opcode(0xa2, "set_qt_success", [Type.U16], false, []), - new Opcode(0xa3, "clr_qt_failure", [], false, []), - new Opcode(0xa4, "clr_qt_success", [], false, []), - new Opcode(0xa5, "set_qt_cancel", [Type.U16], false, []), - new Opcode(0xa6, "clr_qt_cancel", [], false, []), - new Opcode(0xa7, "unknown_a7", [], false, []), - new Opcode(0xa8, "pl_walk_v3", [Type.Register], false, []), - new Opcode(0xa9, "unknown_a9", [], false, []), - new Opcode(0xaa, "unknown_aa", [], false, []), - new Opcode(0xab, "unknown_ab", [], false, []), - new Opcode(0xac, "unknown_ac", [], false, []), - new Opcode(0xad, "unknown_ad", [], false, []), - new Opcode(0xae, "unknown_ae", [], false, []), - new Opcode(0xaf, "unknown_af", [], false, []), - new Opcode(0xb0, "pl_add_meseta", [], false, [Type.U32, Type.U32]), - new Opcode(0xb1, "thread_stg", [Type.U16], false, []), - new Opcode(0xb2, "del_obj_param", [Type.Register], false, []), - new Opcode(0xb3, "item_create", [Type.Register, Type.Register], false, []), - new Opcode(0xb4, "item_create2", [Type.Register, Type.Register], false, []), - new Opcode(0xb5, "item_delete", [Type.Register, Type.Register], false, []), - new Opcode(0xb6, "item_delete2", [Type.Register, Type.Register], false, []), - new Opcode(0xb7, "item_check", [Type.Register, Type.Register], false, []), - new Opcode(0xb8, "setevt", [], false, [Type.U32]), - new Opcode(0xb9, "get_difflvl", [Type.Register], false, []), - new Opcode(0xba, "set_qt_exit", [Type.U16], false, []), - new Opcode(0xbb, "clr_qt_exit", [], false, []), - new Opcode(0xbc, "unknown_bc", [], false, []), - new Opcode(0xbd, "unknown_bd", [], false, []), - new Opcode(0xbe, "unknown_be", [], false, []), - new Opcode(0xbf, "unknown_bf", [], false, []), - new Opcode(0xc0, "particle_v3", [Type.Register], false, []), - new Opcode(0xc1, "npc_text", [], false, [Type.U32, Type.String]), - new Opcode(0xc2, "npc_chkwarp", [], false, []), - new Opcode(0xc3, "pl_pkoff", [], false, []), - new Opcode(0xc4, "map_designate", [Type.Register], false, []), - new Opcode(0xc5, "masterkey_on", [], false, []), - new Opcode(0xc6, "masterkey_off", [], false, []), - new Opcode(0xc7, "window_time", [], false, []), - new Opcode(0xc8, "winend_time", [], false, []), - new Opcode(0xc9, "winset_time", [Type.Register], false, []), - new Opcode(0xca, "getmtime", [Type.Register], false, []), - new Opcode(0xcb, "set_quest_board_handler", [], false, [Type.U32, Type.U16, Type.String]), - new Opcode(0xcc, "clear_quest_board_handler", [], false, [Type.U32]), - new Opcode(0xcd, "particle_id_v3", [Type.Register], false, []), - new Opcode(0xce, "npc_crptalk_id_v3", [Type.Register], false, []), - new Opcode(0xcf, "npc_lang_clean", [], false, []), - new Opcode(0xd0, "pl_pkon", [], false, []), - new Opcode(0xd1, "pl_chk_item2", [Type.Register, Type.Register], false, []), - new Opcode(0xd2, "enable_mainmenu", [], false, []), - new Opcode(0xd3, "disable_mainmenu", [], false, []), - new Opcode(0xd4, "start_battlebgm", [], false, []), - new Opcode(0xd5, "end_battlebgm", [], false, []), - new Opcode(0xd6, "disp_msg_qb", [], false, [Type.String]), - new Opcode(0xd7, "close_msg_qb", [], false, []), - new Opcode(0xd8, "set_eventflag_v3", [], false, [Type.U32, Type.U32]), - new Opcode(0xd9, "sync_leti", [], false, []), - new Opcode(0xda, "set_returnhunter", [], false, []), - new Opcode(0xdb, "set_returncity", [], false, []), - new Opcode(0xdc, "load_pvr", [], false, []), - new Opcode(0xdd, "load_midi", [], false, []), - new Opcode(0xde, "unknown_de", [], false, []), - new Opcode(0xdf, "npc_param_v3", [], false, [Type.Register, Type.U32]), - new Opcode(0xe0, "pad_dragon", [], false, []), - new Opcode(0xe1, "clear_mainwarp", [], false, [Type.U32]), - new Opcode(0xe2, "pcam_param_v3", [Type.Register], false, []), - new Opcode(0xe3, "start_setevt_v3", [], false, [Type.Register, Type.U32]), - new Opcode(0xe4, "warp_on", [], false, []), - new Opcode(0xe5, "warp_off", [], false, []), - new Opcode(0xe6, "get_slotnumber", [Type.Register], false, []), - new Opcode(0xe7, "get_servernumber", [Type.Register], false, []), - new Opcode(0xe8, "set_eventflag2", [], false, [Type.U32, Type.Register]), - new Opcode(0xe9, "res", [Type.Register, Type.Register], false, []), - new Opcode(0xea, "unknown_ea", [Type.Register, Type.U32], false, []), - new Opcode(0xeb, "enable_bgmctrl", [], false, [Type.U32]), - new Opcode(0xec, "sw_send", [Type.Register], false, []), - new Opcode(0xed, "create_bgmctrl", [], false, []), - new Opcode(0xee, "pl_add_meseta2", [], false, [Type.U32]), - new Opcode(0xef, "sync_register", [], false, [Type.Register, Type.U32]), - new Opcode(0xf0, "send_regwork", [], false, []), - new Opcode(0xf1, "leti_fixed_camera_v3", [Type.Register], false, []), - new Opcode(0xf2, "default_camera_pos1", [], false, []), - new Opcode(0xf3, "unknown_f3", [], false, []), - new Opcode(0xf4, "unknown_f4", [], false, []), - new Opcode(0xf5, "unknown_f5", [], false, []), - new Opcode(0xf6, "unknown_f6", [], false, []), - new Opcode(0xf7, "unknown_f7", [], false, []), - new Opcode(0xf8, "unknown_f8", [Type.Register], false, []), - new Opcode(0xf9, "unknown_f9", [], false, []), - new Opcode(0xfa, "get_gc_number", [Type.Register], false, []), - new Opcode(0xfb, "unknown_fb", [Type.U16], false, []), - new Opcode(0xfc, "unknown_fc", [], false, []), - new Opcode(0xfd, "unknown_fd", [], false, []), - new Opcode(0xfe, "unknown_fe", [], false, []), - new Opcode(0xff, "unknown_ff", [], false, []), - new Opcode(0xf800, "unknown_f800", [], false, []), - new Opcode(0xf801, "set_chat_callback", [], false, [Type.Register, Type.String]), - new Opcode(0xf802, "unknown_f802", [], false, []), - new Opcode(0xf803, "unknown_f803", [], false, []), - new Opcode(0xf804, "unknown_f804", [], false, []), - new Opcode(0xf805, "unknown_f805", [], false, []), - new Opcode(0xf806, "unknown_f806", [], false, []), - new Opcode(0xf807, "unknown_f807", [], false, []), - new Opcode(0xf808, "get_difficulty_level2", [Type.Register], false, []), - new Opcode(0xf809, "get_number_of_player1", [Type.Register], false, []), - new Opcode(0xf80a, "get_coord_of_player", [Type.Register, Type.Register], false, []), - new Opcode(0xf80b, "unknown_f80b", [], false, []), - new Opcode(0xf80c, "unknown_f80c", [], false, []), - new Opcode(0xf80d, "map_designate_ex", [Type.Register], false, []), - new Opcode(0xf80e, "unknown_f80e", [], false, [Type.U32]), - new Opcode(0xf80f, "unknown_f80f", [], false, [Type.U32]), - new Opcode(0xf810, "ba_initial_floor", [], false, [Type.U32]), - new Opcode(0xf811, "set_ba_rules", [], false, []), - new Opcode(0xf812, "unknown_f812", [], false, [Type.U32]), - new Opcode(0xf813, "unknown_f813", [], false, [Type.U32]), - new Opcode(0xf814, "unknown_f814", [], false, [Type.U32]), - new Opcode(0xf815, "unknown_f815", [], false, [Type.U32]), - new Opcode(0xf816, "unknown_f816", [], false, [Type.U32]), - new Opcode(0xf817, "unknown_f817", [], false, [Type.U32]), - new Opcode(0xf818, "unknown_f818", [], false, [Type.U32]), - new Opcode(0xf819, "unknown_f819", [], false, [Type.U32]), - new Opcode(0xf81a, "unknown_f81a", [], false, [Type.U32]), - new Opcode(0xf81b, "unknown_f81b", [], false, [Type.U32]), - new Opcode(0xf81c, "ba_disp_msg", [], false, [Type.String]), - new Opcode(0xf81d, "death_lvl_up", [], false, [Type.U32]), - new Opcode(0xf81e, "death_tech_lvl_up", [], false, [Type.U32]), - new Opcode(0xf81f, "unknown_f81f", [], false, []), - new Opcode(0xf820, "cmode_stage", [], false, [Type.U32]), - new Opcode(0xf821, "unknown_f821", [], false, []), - new Opcode(0xf822, "unknown_f822", [], false, []), - new Opcode(0xf823, "unknown_f823", [], false, [Type.U32]), - new Opcode(0xf824, "unknown_f824", [], false, [Type.U32]), - new Opcode(0xf825, "exp_multiplication", [Type.Register], false, []), - new Opcode(0xf826, "exp_division", [Type.Register], false, []), - new Opcode(0xf827, "get_user_is_dead", [Type.Register], false, []), - new Opcode(0xf828, "go_floor", [Type.Register, Type.Register], false, []), - new Opcode(0xf829, "unknown_f829", [], false, []), - new Opcode(0xf82a, "unknown_f82a", [], false, []), - new Opcode(0xf82b, "unlock_door2", [], false, [Type.U32, Type.U32]), - new Opcode(0xf82c, "lock_door2", [], false, [Type.U32, Type.U32]), - new Opcode(0xf82d, "if_switch_not_pressed", [Type.Register], false, []), - new Opcode(0xf82e, "if_switch_pressed", [Type.Register], false, []), - new Opcode(0xf82f, "unknown_f82f", [], false, [Type.U32, Type.U32]), - new Opcode(0xf830, "control_dragon", [Type.Register], false, []), - new Opcode(0xf831, "release_dragon", [], false, []), - new Opcode(0xf832, "unknown_f832", [], false, []), - new Opcode(0xf833, "unknown_f833", [], false, []), - new Opcode(0xf834, "unknown_f834", [], false, []), - new Opcode(0xf835, "unknown_f835", [], false, []), - new Opcode(0xf836, "unknown_f836", [], false, []), - new Opcode(0xf837, "unknown_f837", [], false, []), - new Opcode(0xf838, "shrink", [Type.Register], false, []), - new Opcode(0xf839, "unshrink", [Type.Register], false, []), - new Opcode(0xf83a, "unknown_f83a", [], false, []), - new Opcode(0xf83b, "unknown_f83b", [], false, []), - new Opcode(0xf83c, "display_clock2", [Type.Register], false, []), - new Opcode(0xf83d, "unknown_f83d", [], false, [Type.U32]), - new Opcode(0xf83e, "delete_area_title", [], false, [Type.U32]), - new Opcode(0xf83f, "unknown_f83f", [], false, []), - new Opcode(0xf840, "load_npc_data", [], false, []), - new Opcode(0xf841, "get_npc_data", [Type.U16], false, []), - new Opcode(0xf842, "unknown_f842", [], false, []), - new Opcode(0xf843, "unknown_f843", [], false, []), - new Opcode(0xf844, "unknown_f844", [], false, []), - new Opcode(0xf845, "unknown_f845", [], false, []), - new Opcode(0xf846, "unknown_f846", [], false, []), - new Opcode(0xf847, "unknown_f847", [], false, []), - new Opcode(0xf848, "give_damage_score", [Type.Register], false, []), - new Opcode(0xf849, "take_damage_score", [Type.Register], false, []), - new Opcode(0xf84a, "unk_score_f84a", [Type.Register], false, []), - new Opcode(0xf84b, "unk_score_f84b", [Type.Register], false, []), - new Opcode(0xf84c, "kill_score", [Type.Register], false, []), - new Opcode(0xf84d, "death_score", [Type.Register], false, []), - new Opcode(0xf84e, "unk_score_f84e", [Type.Register], false, []), - new Opcode(0xf84f, "enemy_death_score", [Type.Register], false, []), - new Opcode(0xf850, "meseta_score", [Type.Register], false, []), - new Opcode(0xf851, "unknown_f851", [Type.Register], false, []), - new Opcode(0xf852, "unknown_f852", [], false, [Type.U32]), - new Opcode(0xf853, "reverse_warps", [], false, []), - new Opcode(0xf854, "unreverse_warps", [], false, []), - new Opcode(0xf855, "set_ult_map", [], false, []), - new Opcode(0xf856, "unset_ult_map", [], false, []), - new Opcode(0xf857, "set_area_title", [], false, [Type.String]), - new Opcode(0xf858, "unknown_f858", [], false, []), - new Opcode(0xf859, "unknown_f859", [], false, []), - new Opcode(0xf85a, "equip_item", [Type.Register], false, []), - new Opcode(0xf85b, "unequip_item", [], false, [Type.U32, Type.U32]), - new Opcode(0xf85c, "unknown_f85c", [], false, []), - new Opcode(0xf85d, "unknown_f85d", [], false, []), - new Opcode(0xf85e, "unknown_f85e", [], false, [Type.U32]), - new Opcode(0xf85f, "unknown_f85f", [], false, [Type.U32]), - new Opcode(0xf860, "unknown_f860", [], false, []), - new Opcode(0xf861, "unknown_f861", [], false, [Type.U32]), - new Opcode(0xf862, "unknown_f862", [], false, []), - new Opcode(0xf863, "unknown_f863", [], false, []), - new Opcode(0xf864, "cmode_rank", [], false, [Type.U32, Type.String]), - new Opcode(0xf865, "award_item_name", [], false, []), - new Opcode(0xf866, "award_item_select", [], false, []), - new Opcode(0xf867, "award_item_give_to", [Type.Register], false, []), - new Opcode(0xf868, "unknown_f868", [Type.Register, Type.Register], false, []), - new Opcode(0xf869, "unknown_f869", [Type.Register, Type.Register], false, []), - new Opcode(0xf86a, "item_create_cmode", [Type.Register, Type.Register], false, []), - new Opcode(0xf86b, "unknown_f86b", [Type.Register], false, []), - new Opcode(0xf86c, "award_item_ok", [Type.Register], false, []), - new Opcode(0xf86d, "unknown_f86d", [], false, []), - new Opcode(0xf86e, "unknown_f86e", [], false, []), - new Opcode(0xf86f, "ba_set_lives", [], false, [Type.U32]), - new Opcode(0xf870, "ba_set_tech_lvl", [], false, [Type.U32]), - new Opcode(0xf871, "ba_set_lvl", [], false, [Type.U32]), - new Opcode(0xf872, "ba_set_time_limit", [], false, [Type.U32]), - new Opcode(0xf873, "boss_is_dead", [Type.Register], false, []), - new Opcode(0xf874, "unknown_f874", [], false, []), - new Opcode(0xf875, "unknown_f875", [], false, []), - new Opcode(0xf876, "unknown_f876", [], false, []), - new Opcode(0xf877, "enable_techs", [Type.Register], false, []), - new Opcode(0xf878, "disable_techs", [Type.Register], false, []), - new Opcode(0xf879, "get_gender", [Type.Register, Type.Register], false, []), - new Opcode(0xf87a, "get_chara_class", [Type.Register, Type.Register], false, []), - new Opcode(0xf87b, "take_slot_meseta", [Type.Register, Type.Register], false, []), - new Opcode(0xf87c, "unknown_f87c", [], false, []), - new Opcode(0xf87d, "unknown_f87d", [], false, []), - new Opcode(0xf87e, "unknown_f87e", [], false, []), - new Opcode(0xf87f, "read_guildcard_flag", [Type.Register, Type.Register], false, []), - new Opcode(0xf880, "unknown_f880", [Type.Register], false, []), - new Opcode(0xf881, "get_pl_name", [Type.Register], false, []), - new Opcode(0xf882, "unknown_f882", [], false, []), - new Opcode(0xf883, "unknown_f883", [Type.Register, Type.Register], false, []), - new Opcode(0xf884, "unknown_f884", [], false, []), - new Opcode(0xf885, "unknown_f885", [], false, []), - new Opcode(0xf886, "unknown_f886", [], false, []), - new Opcode(0xf887, "unknown_f887", [], false, []), - new Opcode(0xf888, "ba_close_msg", [], false, []), - new Opcode(0xf889, "unknown_f889", [], false, []), - new Opcode(0xf88a, "get_player_status", [Type.Register, Type.Register], false, []), - new Opcode(0xf88b, "send_mail", [], false, [Type.Register, Type.String]), - new Opcode(0xf88c, "online_check", [Type.Register], false, []), - new Opcode(0xf88d, "chl_set_timerecord", [Type.Register], false, []), - new Opcode(0xf88e, "chl_get_timerecord", [Type.Register], false, []), - new Opcode(0xf88f, "unknown_f88f", [Type.Register], false, []), - new Opcode(0xf890, "unknown_f890", [], false, []), - new Opcode(0xf891, "load_enemy_data", [], false, [Type.U32]), - new Opcode(0xf892, "get_physical_data", [Type.U16], false, []), - new Opcode(0xf893, "get_attack_data", [Type.U16], false, []), - new Opcode(0xf894, "get_resist_data", [Type.U16], false, []), - new Opcode(0xf895, "get_movement_data", [Type.U16], false, []), - new Opcode(0xf896, "unknown_f896", [], false, []), - new Opcode(0xf897, "unknown_f897", [], false, []), - new Opcode(0xf898, "shift_left", [Type.Register, Type.Register], false, []), - new Opcode(0xf899, "shift_right", [Type.Register, Type.Register], false, []), - new Opcode(0xf89a, "get_random", [Type.Register, Type.Register], false, []), - new Opcode(0xf89b, "reset_map", [], false, []), - new Opcode(0xf89c, "disp_chl_retry_menu", [Type.Register], false, []), - new Opcode(0xf89d, "chl_reverser", [], false, []), - new Opcode(0xf89e, "unknown_f89e", [], false, [Type.U32]), - new Opcode(0xf89f, "unknown_f89f", [Type.Register], false, []), - new Opcode(0xf8a0, "unknown_f8a0", [], false, []), - new Opcode(0xf8a1, "unknown_f8a1", [], false, []), - new Opcode(0xf8a2, "unknown_f8a2", [], false, []), - new Opcode(0xf8a3, "unknown_f8a3", [], false, []), - new Opcode(0xf8a4, "unknown_f8a4", [], false, []), - new Opcode(0xf8a5, "unknown_f8a5", [], false, []), - new Opcode(0xf8a6, "unknown_f8a6", [], false, []), - new Opcode(0xf8a7, "unknown_f8a7", [], false, []), - new Opcode(0xf8a8, "unknown_f8a8", [], false, [Type.U32]), - new Opcode(0xf8a9, "unknown_f8a9", [Type.Register], false, []), - new Opcode(0xf8aa, "unknown_f8aa", [], false, []), - new Opcode(0xf8ab, "unknown_f8ab", [], false, []), - new Opcode(0xf8ac, "unknown_f8ac", [], false, []), - new Opcode(0xf8ad, "get_number_of_player2", [Type.Register], false, []), - new Opcode(0xf8ae, "unknown_f8ae", [], false, []), - new Opcode(0xf8af, "unknown_f8af", [], false, []), - new Opcode(0xf8b0, "unknown_f8b0", [], false, []), - new Opcode(0xf8b1, "unknown_f8b1", [], false, []), - new Opcode(0xf8b2, "unknown_f8b2", [], false, []), - new Opcode(0xf8b3, "unknown_f8b3", [], false, []), - new Opcode(0xf8b4, "unknown_f8b4", [], false, []), - new Opcode(0xf8b5, "unknown_f8b5", [], false, []), - new Opcode(0xf8b6, "unknown_f8b6", [], false, []), - new Opcode(0xf8b7, "unknown_f8b7", [], false, []), - new Opcode(0xf8b8, "unknown_f8b8", [], false, []), - new Opcode(0xf8b9, "chl_recovery", [], false, []), - new Opcode(0xf8ba, "unknown_f8ba", [], false, []), - new Opcode(0xf8bb, "unknown_f8bb", [], false, []), - new Opcode(0xf8bc, "set_episode", [Type.U32], false, []), - new Opcode(0xf8bd, "unknown_f8bd", [], false, []), - new Opcode(0xf8be, "unknown_f8be", [], false, []), - new Opcode(0xf8bf, "unknown_f8bf", [], false, []), - new Opcode(0xf8c0, "file_dl_req", [], false, [Type.U32, Type.String]), - new Opcode(0xf8c1, "get_dl_status", [Type.Register], false, []), - new Opcode(0xf8c2, "gba_unknown4", [], false, []), - new Opcode(0xf8c3, "get_gba_state", [Type.Register], false, []), - new Opcode(0xf8c4, "unknown_f8c4", [Type.Register], false, []), - new Opcode(0xf8c5, "unknown_f8c5", [Type.Register], false, []), - new Opcode(0xf8c6, "qexit", [], false, []), - new Opcode(0xf8c7, "use_animation", [Type.Register, Type.Register], false, []), - new Opcode(0xf8c8, "stop_animation", [Type.Register], false, []), - new Opcode(0xf8c9, "run_to_coord", [Type.Register, Type.Register], false, []), - new Opcode(0xf8ca, "set_slot_invincible", [Type.Register, Type.Register], false, []), - new Opcode(0xf8cb, "unknown_f8cb", [Type.Register], false, []), - new Opcode(0xf8cc, "set_slot_poison", [Type.Register], false, []), - new Opcode(0xf8cd, "set_slot_paralyze", [Type.Register], false, []), - new Opcode(0xf8ce, "set_slot_shock", [Type.Register], false, []), - new Opcode(0xf8cf, "set_slot_freeze", [Type.Register], false, []), - new Opcode(0xf8d0, "set_slot_slow", [Type.Register], false, []), - new Opcode(0xf8d1, "set_slot_confuse", [Type.Register], false, []), - new Opcode(0xf8d2, "set_slot_shifta", [Type.Register], false, []), - new Opcode(0xf8d3, "set_slot_deband", [Type.Register], false, []), - new Opcode(0xf8d4, "set_slot_jellen", [Type.Register], false, []), - new Opcode(0xf8d5, "set_slot_zalure", [Type.Register], false, []), - new Opcode(0xf8d6, "fleti_fixed_camera", [], false, [Type.Register]), - new Opcode(0xf8d7, "fleti_locked_camera", [], false, [Type.U32, Type.Register]), - new Opcode(0xf8d8, "default_camera_pos2", [], false, []), - new Opcode(0xf8d9, "set_motion_blur", [], false, []), - new Opcode(0xf8da, "set_screen_bw", [], false, []), - new Opcode(0xf8db, "unknown_f8db", [], false, [ - Type.U32, - Type.U32, - Type.U32, - Type.U32, - Type.Register, - Type.U16, - ]), - new Opcode(0xf8dc, "npc_action_string", [Type.Register, Type.Register, Type.U16], false, []), - new Opcode(0xf8dd, "get_pad_cond", [Type.Register, Type.Register], false, []), - new Opcode(0xf8de, "get_button_cond", [Type.Register, Type.Register], false, []), - new Opcode(0xf8df, "freeze_enemies", [], false, []), - new Opcode(0xf8e0, "unfreeze_enemies", [], false, []), - new Opcode(0xf8e1, "freeze_everything", [], false, []), - new Opcode(0xf8e2, "unfreeze_everything", [], false, []), - new Opcode(0xf8e3, "restore_hp", [Type.Register], false, []), - new Opcode(0xf8e4, "restore_tp", [Type.Register], false, []), - new Opcode(0xf8e5, "close_chat_bubble", [Type.Register], false, []), - new Opcode(0xf8e6, "unknown_f8e6", [Type.Register, Type.Register], false, []), - new Opcode(0xf8e7, "unknown_f8e7", [Type.Register, Type.Register], false, []), - new Opcode(0xf8e8, "unknown_f8e8", [Type.Register, Type.Register], false, []), - new Opcode(0xf8e9, "unknown_f8e9", [Type.Register, Type.Register], false, []), - new Opcode(0xf8ea, "unknown_f8ea", [Type.Register, Type.Register], false, []), - new Opcode(0xf8eb, "unknown_f8eb", [Type.Register, Type.Register], false, []), - new Opcode(0xf8ec, "unknown_f8ec", [Type.Register, Type.Register], false, []), - new Opcode(0xf8ed, "animation_check", [Type.Register, Type.Register], false, []), - new Opcode(0xf8ee, "call_image_data", [], false, [Type.U32, Type.U16]), - new Opcode(0xf8ef, "unknown_f8ef", [], false, []), - new Opcode(0xf8f0, "turn_off_bgm_p2", [], false, []), - new Opcode(0xf8f1, "turn_on_bgm_p2", [], false, []), - new Opcode(0xf8f2, "load_unk_data", [], false, [ - Type.U32, - Type.U32, - Type.U32, - Type.U32, - Type.Register, - Type.U16, - ]), - new Opcode(0xf8f3, "particle2", [], false, [Type.Register, Type.U32, Type.F32]), - new Opcode(0xf8f4, "unknown_f8f4", [], false, []), - new Opcode(0xf8f5, "unknown_f8f5", [], false, []), - new Opcode(0xf8f6, "unknown_f8f6", [], false, []), - new Opcode(0xf8f7, "unknown_f8f7", [], false, []), - new Opcode(0xf8f8, "unknown_f8f8", [], false, []), - new Opcode(0xf8f9, "unknown_f8f9", [], false, []), - new Opcode(0xf8fa, "unknown_f8fa", [], false, []), - new Opcode(0xf8fb, "unknown_f8fb", [], false, []), - new Opcode(0xf8fc, "unknown_f8fc", [], false, []), - new Opcode(0xf8fd, "unknown_f8fd", [], false, []), - new Opcode(0xf8fe, "unknown_f8fe", [], false, []), - new Opcode(0xf8ff, "unknown_f8ff", [], false, []), - new Opcode(0xf900, "unknown_f900", [], false, []), - new Opcode(0xf901, "dec2float", [Type.Register, Type.Register], false, []), - new Opcode(0xf902, "float2dec", [Type.Register, Type.Register], false, []), - new Opcode(0xf903, "flet", [Type.Register, Type.Register], false, []), - new Opcode(0xf904, "fleti", [Type.Register, Type.F32], false, []), - new Opcode(0xf905, "unknown_f905", [], false, []), - new Opcode(0xf906, "unknown_f906", [], false, []), - new Opcode(0xf907, "unknown_f907", [], false, []), - new Opcode(0xf908, "fadd", [Type.Register, Type.Register], false, []), - new Opcode(0xf909, "faddi", [Type.Register, Type.F32], false, []), - new Opcode(0xf90a, "fsub", [Type.Register, Type.Register], false, []), - new Opcode(0xf90b, "fsubi", [Type.Register, Type.F32], false, []), - new Opcode(0xf90c, "fmul", [Type.Register, Type.Register], false, []), - new Opcode(0xf90d, "fmuli", [Type.Register, Type.F32], false, []), - new Opcode(0xf90e, "fdiv", [Type.Register, Type.Register], false, []), - new Opcode(0xf90f, "fdivi", [Type.Register, Type.F32], false, []), - new Opcode(0xf910, "get_unknown_count", [], false, [Type.U32, Type.Register]), - new Opcode(0xf911, "get_stackable_item_count", [Type.Register, Type.Register], false, []), - new Opcode(0xf912, "freeze_and_hide_equip", [], false, []), - new Opcode(0xf913, "thaw_and_show_equip", [], false, []), - new Opcode(0xf914, "set_palettex_callback", [], false, [Type.Register, Type.U16]), - new Opcode(0xf915, "activate_palettex", [], false, [Type.Register]), - new Opcode(0xf916, "enable_palettex", [], false, [Type.Register]), - new Opcode(0xf917, "restore_palettex", [], false, [Type.U32]), - new Opcode(0xf918, "disable_palettex", [], false, [Type.U32]), - new Opcode(0xf919, "get_palettex_activated", [], false, [Type.U32, Type.Register]), - new Opcode(0xf91a, "get_unknown_palettex_status", [], false, [Type.U32, Type.Register]), - new Opcode(0xf91b, "disable_movement2", [], false, [Type.Register]), - new Opcode(0xf91c, "enable_movement2", [], false, [Type.Register]), - new Opcode(0xf91d, "get_time_played", [Type.Register], false, []), - new Opcode(0xf91e, "get_guildcard_total", [Type.Register], false, []), - new Opcode(0xf91f, "get_slot_meseta", [Type.Register], false, []), - new Opcode(0xf920, "get_player_level", [], false, [Type.U32, Type.Register]), - new Opcode(0xf921, "get_section_id", [], false, [Type.U32, Type.Register]), - new Opcode(0xf922, "get_player_hp", [], false, [Type.Register, Type.Register]), - new Opcode(0xf923, "get_floor_number", [], false, [Type.Register, Type.Register]), - new Opcode(0xf924, "get_coord_player_detect", [Type.Register, Type.Register], false, []), - new Opcode(0xf925, "read_global_flag", [], false, [Type.U8, Type.Register]), - new Opcode(0xf926, "write_global_flag", [], false, [Type.U8, Type.Register]), - new Opcode(0xf927, "unknown_f927", [Type.Register, Type.Register], false, []), - new Opcode(0xf928, "floor_player_detect", [Type.Register], false, []), - new Opcode(0xf929, "read_disk_file", [], false, [Type.String]), - new Opcode(0xf92a, "open_pack_select", [], false, []), - new Opcode(0xf92b, "item_select", [Type.Register], false, []), - new Opcode(0xf92c, "get_item_id", [Type.Register], false, []), - new Opcode(0xf92d, "color_change", [], false, [ - Type.Register, - Type.Register, - Type.Register, - Type.Register, - Type.Register, - ]), - new Opcode(0xf92e, "send_statistic", [], false, [ - Type.U32, - Type.U32, - Type.U32, - Type.U32, - Type.U32, - Type.U32, - Type.U32, - Type.U32, - ]), - new Opcode(0xf92f, "unknown_f92f", [], false, [Type.U32, Type.U32]), - new Opcode(0xf930, "chat_box", [], false, [ - Type.U32, - Type.U32, - Type.U32, - Type.U32, - Type.U32, - Type.String, - ]), - new Opcode(0xf931, "chat_bubble", [], false, [Type.U32, Type.String]), - new Opcode(0xf932, "unknown_f932", [], false, []), - new Opcode(0xf933, "unknown_f933", [Type.Register], false, []), - new Opcode(0xf934, "scroll_text", [], false, [ - Type.U32, - Type.U32, - Type.U32, - Type.U32, - Type.U32, - Type.F32, - Type.Register, - Type.String, - ]), - new Opcode(0xf935, "gba_unknown1", [], false, []), - new Opcode(0xf936, "gba_unknown2", [], false, []), - new Opcode(0xf937, "gba_unknown3", [], false, []), - new Opcode(0xf938, "add_damage_to", [], false, [Type.U32, Type.U32]), - new Opcode(0xf939, "item_delete2", [], false, [Type.U32]), - new Opcode(0xf93a, "get_item_info", [], false, [Type.U32, Type.Register]), - new Opcode(0xf93b, "item_packing1", [], false, [Type.U32]), - new Opcode(0xf93c, "item_packing2", [], false, [Type.U32, Type.U32]), - new Opcode(0xf93d, "get_lang_setting", [], false, [Type.Register]), - new Opcode(0xf93e, "prepare_statistic", [], false, [Type.U32, Type.U16, Type.U16]), - new Opcode(0xf93f, "keyword_detect", [], false, []), - new Opcode(0xf940, "keyword", [], false, [Type.Register, Type.U32, Type.String]), - new Opcode(0xf941, "get_guildcard_num", [], false, [Type.U32, Type.Register]), - new Opcode(0xf942, "unknown_f942", [], false, []), - new Opcode(0xf943, "unknown_f943", [], false, []), - new Opcode(0xf944, "get_wrap_status", [], false, [Type.U32, Type.Register]), - new Opcode(0xf945, "initial_floor", [], false, [Type.U32]), - new Opcode(0xf946, "sin", [], false, [Type.Register, Type.U32]), - new Opcode(0xf947, "cos", [], false, [Type.Register, Type.U32]), - new Opcode(0xf948, "unknown_f948", [], false, []), - new Opcode(0xf949, "unknown_f949", [], false, []), - new Opcode(0xf94a, "boss_is_dead2", [Type.Register], false, []), - new Opcode(0xf94b, "unknown_f94b", [Type.Register], false, []), - new Opcode(0xf94c, "unknown_f94c", [Type.Register], false, []), - new Opcode(0xf94d, "is_there_cardbattle", [Type.Register], false, []), - new Opcode(0xf94e, "unknown_f94e", [], false, []), - new Opcode(0xf94f, "unknown_f94f", [], false, []), - new Opcode(0xf950, "bb_p2_menu", [], false, [Type.U32]), - new Opcode(0xf951, "bb_map_designate", [Type.U8, Type.U16, Type.U8, Type.U8], false, []), - new Opcode(0xf952, "bb_get_number_in_pack", [Type.Register], false, []), - new Opcode(0xf953, "bb_swap_item", [], false, [ - Type.U32, - Type.U32, - Type.U32, - Type.U32, - Type.U32, - Type.U32, - Type.U16, - Type.U16, - ]), - new Opcode(0xf954, "bb_check_wrap", [], false, [Type.Register, Type.Register]), - new Opcode(0xf955, "bb_exchange_pd_item", [], false, [ - Type.Register, - Type.Register, - Type.Register, - Type.U16, - Type.U16, - ]), - new Opcode(0xf956, "bb_exchange_pd_srank", [], false, [ - Type.Register, - Type.Register, - Type.Register, - Type.Register, - Type.Register, - Type.U16, - Type.U16, - ]), - new Opcode(0xf957, "bb_exchange_pd_special", [], false, [ - Type.Register, - Type.Register, - Type.Register, - Type.Register, - Type.Register, - Type.U32, - Type.U16, - Type.U16, - ]), - new Opcode(0xf958, "bb_exchange_pd_percent", [], false, [ - Type.Register, - Type.Register, - Type.Register, - Type.Register, - Type.Register, - Type.U32, - Type.U16, - Type.U16, - ]), - new Opcode(0xf959, "unknown_f959", [], false, [Type.U32]), - new Opcode(0xf95a, "unknown_f95a", [], false, []), - new Opcode(0xf95b, "unknown_f95b", [], false, []), - new Opcode(0xf95c, "bb_exchange_slt", [], false, [Type.U32, Type.Register, Type.U16, Type.U16]), - new Opcode(0xf95d, "bb_exchange_pc", [], false, []), - new Opcode(0xf95e, "bb_box_create_bp", [], false, [Type.U32, Type.F32, Type.F32]), - new Opcode(0xf95f, "bb_exchange_pt", [], false, [ - Type.Register, - Type.Register, - Type.U32, - Type.U16, - Type.U16, - ]), - new Opcode(0xf960, "unknown_f960", [], false, [Type.U32]), - new Opcode(0xf961, "unknown_f961", [], false, []), - new Opcode(0xf962, "unknown_f962", [], false, []), - new Opcode(0xf963, "unknown_f963", [], false, []), - new Opcode(0xf964, "unknown_f964", [], false, []), - new Opcode(0xf965, "unknown_f965", [], false, []), - new Opcode(0xf966, "unknown_f966", [], false, []), - new Opcode(0xf967, "unknown_f967", [], false, []), - new Opcode(0xf968, "unknown_f968", [], false, []), - new Opcode(0xf969, "unknown_f969", [], false, []), - new Opcode(0xf96a, "unknown_f96a", [], false, []), - new Opcode(0xf96b, "unknown_f96b", [], false, []), - new Opcode(0xf96c, "unknown_f96c", [], false, []), - new Opcode(0xf96d, "unknown_f96d", [], false, []), - new Opcode(0xf96e, "unknown_f96e", [], false, []), - new Opcode(0xf96f, "unknown_f96f", [], false, []), - new Opcode(0xf970, "unknown_f970", [], false, []), - new Opcode(0xf971, "unknown_f971", [], false, []), - new Opcode(0xf972, "unknown_f972", [], false, []), - new Opcode(0xf973, "unknown_f973", [], false, []), - new Opcode(0xf974, "unknown_f974", [], false, []), - new Opcode(0xf975, "unknown_f975", [], false, []), - new Opcode(0xf976, "unknown_f976", [], false, []), - new Opcode(0xf977, "unknown_f977", [], false, []), - new Opcode(0xf978, "unknown_f978", [], false, []), - new Opcode(0xf979, "unknown_f979", [], false, []), - new Opcode(0xf97a, "unknown_f97a", [], false, []), - new Opcode(0xf97b, "unknown_f97b", [], false, []), - new Opcode(0xf97c, "unknown_f97c", [], false, []), - new Opcode(0xf97d, "unknown_f97d", [], false, []), - new Opcode(0xf97e, "unknown_f97e", [], false, []), - new Opcode(0xf97f, "unknown_f97f", [], false, []), - new Opcode(0xf980, "unknown_f980", [], false, []), - new Opcode(0xf981, "unknown_f981", [], false, []), - new Opcode(0xf982, "unknown_f982", [], false, []), - new Opcode(0xf983, "unknown_f983", [], false, []), - new Opcode(0xf984, "unknown_f984", [], false, []), - new Opcode(0xf985, "unknown_f985", [], false, []), - new Opcode(0xf986, "unknown_f986", [], false, []), - new Opcode(0xf987, "unknown_f987", [], false, []), - new Opcode(0xf988, "unknown_f988", [], false, []), - new Opcode(0xf989, "unknown_f989", [], false, []), - new Opcode(0xf98a, "unknown_f98a", [], false, []), - new Opcode(0xf98b, "unknown_f98b", [], false, []), - new Opcode(0xf98c, "unknown_f98c", [], false, []), - new Opcode(0xf98d, "unknown_f98d", [], false, []), - new Opcode(0xf98e, "unknown_f98e", [], false, []), - new Opcode(0xf98f, "unknown_f98f", [], false, []), - new Opcode(0xf990, "unknown_f990", [], false, []), - new Opcode(0xf991, "unknown_f991", [], false, []), - new Opcode(0xf992, "unknown_f992", [], false, []), - new Opcode(0xf993, "unknown_f993", [], false, []), - new Opcode(0xf994, "unknown_f994", [], false, []), - new Opcode(0xf995, "unknown_f995", [], false, []), - new Opcode(0xf996, "unknown_f996", [], false, []), - new Opcode(0xf997, "unknown_f997", [], false, []), - new Opcode(0xf998, "unknown_f998", [], false, []), - new Opcode(0xf999, "unknown_f999", [], false, []), - new Opcode(0xf99a, "unknown_f99a", [], false, []), - new Opcode(0xf99b, "unknown_f99b", [], false, []), - new Opcode(0xf99c, "unknown_f99c", [], false, []), - new Opcode(0xf99d, "unknown_f99d", [], false, []), - new Opcode(0xf99e, "unknown_f99e", [], false, []), - new Opcode(0xf99f, "unknown_f99f", [], false, []), - new Opcode(0xf9a0, "unknown_f9a0", [], false, []), - new Opcode(0xf9a1, "unknown_f9a1", [], false, []), - new Opcode(0xf9a2, "unknown_f9a2", [], false, []), - new Opcode(0xf9a3, "unknown_f9a3", [], false, []), - new Opcode(0xf9a4, "unknown_f9a4", [], false, []), - new Opcode(0xf9a5, "unknown_f9a5", [], false, []), - new Opcode(0xf9a6, "unknown_f9a6", [], false, []), - new Opcode(0xf9a7, "unknown_f9a7", [], false, []), - new Opcode(0xf9a8, "unknown_f9a8", [], false, []), - new Opcode(0xf9a9, "unknown_f9a9", [], false, []), - new Opcode(0xf9aa, "unknown_f9aa", [], false, []), - new Opcode(0xf9ab, "unknown_f9ab", [], false, []), - new Opcode(0xf9ac, "unknown_f9ac", [], false, []), - new Opcode(0xf9ad, "unknown_f9ad", [], false, []), - new Opcode(0xf9ae, "unknown_f9ae", [], false, []), - new Opcode(0xf9af, "unknown_f9af", [], false, []), - new Opcode(0xf9b0, "unknown_f9b0", [], false, []), - new Opcode(0xf9b1, "unknown_f9b1", [], false, []), - new Opcode(0xf9b2, "unknown_f9b2", [], false, []), - new Opcode(0xf9b3, "unknown_f9b3", [], false, []), - new Opcode(0xf9b4, "unknown_f9b4", [], false, []), - new Opcode(0xf9b5, "unknown_f9b5", [], false, []), - new Opcode(0xf9b6, "unknown_f9b6", [], false, []), - new Opcode(0xf9b7, "unknown_f9b7", [], false, []), - new Opcode(0xf9b8, "unknown_f9b8", [], false, []), - new Opcode(0xf9b9, "unknown_f9b9", [], false, []), - new Opcode(0xf9ba, "unknown_f9ba", [], false, []), - new Opcode(0xf9bb, "unknown_f9bb", [], false, []), - new Opcode(0xf9bc, "unknown_f9bc", [], false, []), - new Opcode(0xf9bd, "unknown_f9bd", [], false, []), - new Opcode(0xf9be, "unknown_f9be", [], false, []), - new Opcode(0xf9bf, "unknown_f9bf", [], false, []), - new Opcode(0xf9c0, "unknown_f9c0", [], false, []), - new Opcode(0xf9c1, "unknown_f9c1", [], false, []), - new Opcode(0xf9c2, "unknown_f9c2", [], false, []), - new Opcode(0xf9c3, "unknown_f9c3", [], false, []), - new Opcode(0xf9c4, "unknown_f9c4", [], false, []), - new Opcode(0xf9c5, "unknown_f9c5", [], false, []), - new Opcode(0xf9c6, "unknown_f9c6", [], false, []), - new Opcode(0xf9c7, "unknown_f9c7", [], false, []), - new Opcode(0xf9c8, "unknown_f9c8", [], false, []), - new Opcode(0xf9c9, "unknown_f9c9", [], false, []), - new Opcode(0xf9ca, "unknown_f9ca", [], false, []), - new Opcode(0xf9cb, "unknown_f9cb", [], false, []), - new Opcode(0xf9cc, "unknown_f9cc", [], false, []), - new Opcode(0xf9cd, "unknown_f9cd", [], false, []), - new Opcode(0xf9ce, "unknown_f9ce", [], false, []), - new Opcode(0xf9cf, "unknown_f9cf", [], false, []), - new Opcode(0xf9d0, "unknown_f9d0", [], false, []), - new Opcode(0xf9d1, "unknown_f9d1", [], false, []), - new Opcode(0xf9d2, "unknown_f9d2", [], false, []), - new Opcode(0xf9d3, "unknown_f9d3", [], false, []), - new Opcode(0xf9d4, "unknown_f9d4", [], false, []), - new Opcode(0xf9d5, "unknown_f9d5", [], false, []), - new Opcode(0xf9d6, "unknown_f9d6", [], false, []), - new Opcode(0xf9d7, "unknown_f9d7", [], false, []), - new Opcode(0xf9d8, "unknown_f9d8", [], false, []), - new Opcode(0xf9d9, "unknown_f9d9", [], false, []), - new Opcode(0xf9da, "unknown_f9da", [], false, []), - new Opcode(0xf9db, "unknown_f9db", [], false, []), - new Opcode(0xf9dc, "unknown_f9dc", [], false, []), - new Opcode(0xf9dd, "unknown_f9dd", [], false, []), - new Opcode(0xf9de, "unknown_f9de", [], false, []), - new Opcode(0xf9df, "unknown_f9df", [], false, []), - new Opcode(0xf9e0, "unknown_f9e0", [], false, []), - new Opcode(0xf9e1, "unknown_f9e1", [], false, []), - new Opcode(0xf9e2, "unknown_f9e2", [], false, []), - new Opcode(0xf9e3, "unknown_f9e3", [], false, []), - new Opcode(0xf9e4, "unknown_f9e4", [], false, []), - new Opcode(0xf9e5, "unknown_f9e5", [], false, []), - new Opcode(0xf9e6, "unknown_f9e6", [], false, []), - new Opcode(0xf9e7, "unknown_f9e7", [], false, []), - new Opcode(0xf9e8, "unknown_f9e8", [], false, []), - new Opcode(0xf9e9, "unknown_f9e9", [], false, []), - new Opcode(0xf9ea, "unknown_f9ea", [], false, []), - new Opcode(0xf9eb, "unknown_f9eb", [], false, []), - new Opcode(0xf9ec, "unknown_f9ec", [], false, []), - new Opcode(0xf9ed, "unknown_f9ed", [], false, []), - new Opcode(0xf9ee, "unknown_f9ee", [], false, []), - new Opcode(0xf9ef, "unknown_f9ef", [], false, []), - new Opcode(0xf9f0, "unknown_f9f0", [], false, []), - new Opcode(0xf9f1, "unknown_f9f1", [], false, []), - new Opcode(0xf9f2, "unknown_f9f2", [], false, []), - new Opcode(0xf9f3, "unknown_f9f3", [], false, []), - new Opcode(0xf9f4, "unknown_f9f4", [], false, []), - new Opcode(0xf9f5, "unknown_f9f5", [], false, []), - new Opcode(0xf9f6, "unknown_f9f6", [], false, []), - new Opcode(0xf9f7, "unknown_f9f7", [], false, []), - new Opcode(0xf9f8, "unknown_f9f8", [], false, []), - new Opcode(0xf9f9, "unknown_f9f9", [], false, []), - new Opcode(0xf9fa, "unknown_f9fa", [], false, []), - new Opcode(0xf9fb, "unknown_f9fb", [], false, []), - new Opcode(0xf9fc, "unknown_f9fc", [], false, []), - new Opcode(0xf9fd, "unknown_f9fd", [], false, []), - new Opcode(0xf9fe, "unknown_f9fe", [], false, []), - new Opcode(0xf9ff, "unknown_f9ff", [], false, []), -]; +function write_object_code(cursor: WritableCursor, instructions: Instruction[]): number { + const start_pos = cursor.position; -export const OP_RET = OPCODES[0x01]; -export const SET_EPISODE = OPCODES[0x01bc]; -export const BB_MAP_DESIGNATE = OPCODES[0x0251]; + for (const instruction of instructions) { + const opcode = instruction.opcode; + + if (opcode.code_size === 2) { + cursor.write_u8(opcode.code >>> 8); + } + + cursor.write_u8(opcode.code & 0xff); + + for (let i = 0; i < opcode.params.length; i++) { + const param = opcode.params[i]; + const args = instruction.param_to_args[i]; + const [arg] = args; + + switch (param.type) { + case Type.U8: + cursor.write_u8(arg.value); + break; + case Type.U16: + cursor.write_u16(arg.value); + break; + case Type.U32: + cursor.write_u32(arg.value); + break; + case Type.I32: + cursor.write_i32(arg.value); + break; + case Type.F32: + cursor.write_f32(arg.value); + break; + case Type.Register: + cursor.write_u8(arg.value); + break; + case Type.U8Var: + cursor.write_u8(args.length); + cursor.write_u8_array(args.map(arg => arg.value)); + break; + case Type.U16Var: + cursor.write_u8(args.length); + cursor.write_u16_array(args.map(arg => arg.value)); + break; + case Type.String: + cursor.write_string_utf16(arg.value, arg.size); + break; + default: + throw new Error( + `Parameter type ${Type[param.type]} (${param.type}) not implemented.` + ); + } + } + } + + return cursor.position - start_pos; +} diff --git a/src/data_formats/parsing/quest/dat.test.ts b/src/data_formats/parsing/quest/dat.test.ts index d551cbe8..dd47917d 100644 --- a/src/data_formats/parsing/quest/dat.test.ts +++ b/src/data_formats/parsing/quest/dat.test.ts @@ -1,16 +1,16 @@ -import * as fs from "fs"; import { Endianness } from "../.."; -import * as prs from "../../compression/prs"; +import { prs_decompress } from "../../compression/prs/decompress"; import { BufferCursor } from "../../cursor/BufferCursor"; import { ResizableBufferCursor } from "../../cursor/ResizableBufferCursor"; import { parse_dat, write_dat } from "./dat"; +import { readFileSync } from "fs"; /** * Parse a file, convert the resulting structure to DAT again and check whether the end result is equal to the original. */ test("parse_dat and write_dat", () => { - const orig_buffer = fs.readFileSync("test/resources/quest118_e.dat"); - const orig_dat = prs.decompress(new BufferCursor(orig_buffer, Endianness.Little)); + const orig_buffer = readFileSync("test/resources/quest118_e.dat"); + const orig_dat = prs_decompress(new BufferCursor(orig_buffer, Endianness.Little)); const test_dat = new ResizableBufferCursor(write_dat(parse_dat(orig_dat)), Endianness.Little); orig_dat.seek_start(0); @@ -32,8 +32,8 @@ test("parse_dat and write_dat", () => { * Parse a file, modify the resulting structure, convert it to DAT again and check whether the end result is equal to the original except for the bytes that should be changed. */ test("parse, modify and write DAT", () => { - const orig_buffer = fs.readFileSync("./test/resources/quest118_e.dat"); - const orig_dat = prs.decompress(new BufferCursor(orig_buffer, Endianness.Little)); + const orig_buffer = readFileSync("./test/resources/quest118_e.dat"); + const orig_dat = prs_decompress(new BufferCursor(orig_buffer, Endianness.Little)); const test_parsed = parse_dat(orig_dat); orig_dat.seek_start(0); diff --git a/src/data_formats/parsing/quest/index.test.ts b/src/data_formats/parsing/quest/index.test.ts index 19f7c1f6..3f26c41b 100644 --- a/src/data_formats/parsing/quest/index.test.ts +++ b/src/data_formats/parsing/quest/index.test.ts @@ -1,12 +1,13 @@ -import * as fs from "fs"; import { ObjectType, Quest } from "../../../domain"; import { parse_quest, write_quest_qst } from "../quest"; import { Endianness } from "../.."; import { BufferCursor } from "../../cursor/BufferCursor"; import { ArrayBufferCursor } from "../../cursor/ArrayBufferCursor"; +import { walk_qst_files } from "../../../../test/src/utils"; +import { readFileSync } from "fs"; test("parse Towards the Future", () => { - const buffer = fs.readFileSync("test/resources/quest118_e.qst"); + const buffer = readFileSync("test/resources/quest118_e.qst"); const cursor = new BufferCursor(buffer, Endianness.Little); const quest = parse_quest(cursor)!; @@ -35,37 +36,63 @@ test("parse Towards the Future", () => { }); /** - * Roundtrip test. + * Roundtrip tests. * Parse a QST file, write the resulting Quest object to QST again, then parse that again. * Then check whether the two Quest objects are equal. */ -test("parse_quest and write_quest_qst", () => { - const buffer = fs.readFileSync("test/resources/tethealla_v0.143_quests/solo/ep1/02.qst"); - const orig_quest = parse_quest(new BufferCursor(buffer, Endianness.Little))!; - const test_quest = parse_quest( - new ArrayBufferCursor(write_quest_qst(orig_quest, "02.qst"), Endianness.Little) - )!; - - expect(test_quest.name).toBe(orig_quest.name); - expect(test_quest.short_description).toBe(orig_quest.short_description); - expect(test_quest.long_description).toBe(orig_quest.long_description); - expect(test_quest.episode).toBe(orig_quest.episode); - expect(testable_objects(test_quest)).toEqual(testable_objects(orig_quest)); - expect(testable_npcs(test_quest)).toEqual(testable_npcs(orig_quest)); - expect(testable_area_variants(test_quest)).toEqual(testable_area_variants(orig_quest)); -}); - -function testable_objects(quest: Quest): any[][] { - return quest.objects.map(object => [ - object.area_id, - object.section_id, - object.position, - object.type, - ]); +if (process.env["RUN_ALL_TESTS"] === "true") { + walk_qst_files(roundtrip_test); +} else { + const file_name = "quest118_e.qst"; + const path = `test/resources/${file_name}`; + const buffer = readFileSync(path); + roundtrip_test(path, file_name, buffer); } -function testable_npcs(quest: Quest): any[][] { - return quest.npcs.map(npc => [npc.area_id, npc.section_id, npc.position, npc.type]); +function roundtrip_test(path: string, file_name: string, contents: Buffer) { + test(`parse_quest and write_quest_qst ${path}`, () => { + const orig_quest = parse_quest(new BufferCursor(contents, Endianness.Little))!; + const test_bin = write_quest_qst(orig_quest, file_name); + const test_quest = parse_quest(new ArrayBufferCursor(test_bin, Endianness.Little))!; + + expect(test_quest.name).toBe(orig_quest.name); + expect(test_quest.short_description).toBe(orig_quest.short_description); + expect(test_quest.long_description).toBe(orig_quest.long_description); + expect(test_quest.episode).toBe(orig_quest.episode); + expect(test_quest.objects.length).toBe(orig_quest.objects.length); + + for (let i = 0; i < orig_quest.objects.length; i++) { + const orig_obj = orig_quest.objects[i]; + const test_obj = test_quest.objects[i]; + expect(test_obj.area_id).toBe(orig_obj.area_id); + expect(test_obj.section_id).toBe(orig_obj.section_id); + expect(test_obj.position).toEqual(orig_obj.position); + expect(test_obj.type.id).toBe(orig_obj.type.id); + } + + expect(test_quest.npcs.length).toBe(orig_quest.npcs.length); + + for (let i = 0; i < orig_quest.npcs.length; i++) { + const orig_npc = orig_quest.npcs[i]; + const test_npc = test_quest.npcs[i]; + expect(test_npc.area_id).toBe(orig_npc.area_id); + expect(test_npc.section_id).toBe(orig_npc.section_id); + expect(test_npc.position).toEqual(orig_npc.position); + expect(test_npc.type.id).toBe(orig_npc.type.id); + } + + expect(test_quest.area_variants.length).toBe(orig_quest.area_variants.length); + + for (let i = 0; i < orig_quest.area_variants.length; i++) { + const orig_area_variant = orig_quest.area_variants[i]; + const test_area_variant = test_quest.area_variants[i]; + expect(test_area_variant.area.id).toBe(orig_area_variant.area.id); + expect(test_area_variant.id).toBe(orig_area_variant.id); + } + + expect(test_quest.instructions.length).toBe(orig_quest.instructions.length); + expect(test_quest.labels.size).toBe(orig_quest.labels.size); + }); } function testable_area_variants(quest: Quest): any[][] { diff --git a/src/data_formats/parsing/quest/index.ts b/src/data_formats/parsing/quest/index.ts index 44305eb4..c7a8a8c6 100644 --- a/src/data_formats/parsing/quest/index.ts +++ b/src/data_formats/parsing/quest/index.ts @@ -2,14 +2,16 @@ import Logger from "js-logger"; import { Endianness } from "../.."; import { AreaVariant, NpcType, ObjectType, Quest, QuestNpc, QuestObject } from "../../../domain"; import { area_store } from "../../../stores/AreaStore"; -import * as prs from "../../compression/prs"; +import { prs_compress } from "../../compression/prs/compress"; +import { prs_decompress } from "../../compression/prs/decompress"; import { ArrayBufferCursor } from "../../cursor/ArrayBufferCursor"; import { Cursor } from "../../cursor/Cursor"; import { ResizableBufferCursor } from "../../cursor/ResizableBufferCursor"; import { Vec3 } from "../../vector"; -import { BB_MAP_DESIGNATE, Instruction, parse_bin, SET_EPISODE, write_bin, BinFile } from "./bin"; +import { BinFile, Instruction, parse_bin, write_bin } from "./bin"; import { DatFile, DatNpc, DatObject, parse_dat, write_dat } from "./dat"; import { parse_qst, QstContainedFile, write_qst } from "./qst"; +import { Opcode } from "./opcodes"; const logger = Logger.get("data_formats/parsing/quest"); @@ -50,11 +52,14 @@ export function parse_quest(cursor: Cursor, lenient: boolean = false): Quest | u return; } - const dat = parse_dat(prs.decompress(new ArrayBufferCursor(dat_file.data, Endianness.Little))); - const bin = parse_bin( - prs.decompress(new ArrayBufferCursor(bin_file.data, Endianness.Little)), - lenient + const dat_decompressed = prs_decompress( + new ArrayBufferCursor(dat_file.data, Endianness.Little) ); + const dat = parse_dat(dat_decompressed); + const bin_decompressed = prs_decompress( + new ArrayBufferCursor(bin_file.data, Endianness.Little) + ); + const bin = parse_bin(bin_decompressed, lenient); let episode = 1; let area_variants: AreaVariant[] = []; @@ -88,7 +93,6 @@ export function parse_quest(cursor: Cursor, lenient: boolean = false): Quest | u dat.unknowns, bin.labels, bin.instructions, - bin.object_code, bin.unknown ); } @@ -107,8 +111,7 @@ export function write_quest_qst(quest: Quest, file_name: string): ArrayBuffer { quest.short_description, quest.long_description, quest.labels, - [], - quest.object_code, + quest.instructions, quest.bin_unknown ) ); @@ -121,14 +124,14 @@ export function write_quest_qst(quest: Quest, file_name: string): ArrayBuffer { { name: base_file_name + ".dat", id: quest.id, - data: prs - .compress(new ResizableBufferCursor(dat, Endianness.Little)) - .array_buffer(), + data: prs_compress( + new ResizableBufferCursor(dat, Endianness.Little) + ).array_buffer(), }, { name: base_file_name + ".bin", id: quest.id, - data: prs.compress(new ArrayBufferCursor(bin, Endianness.Little)).array_buffer(), + data: prs_compress(new ArrayBufferCursor(bin, Endianness.Little)).array_buffer(), }, ], }); @@ -138,7 +141,9 @@ export function write_quest_qst(quest: Quest, file_name: string): ArrayBuffer { * Defaults to episode I. */ function get_episode(func_0_instructions: Instruction[]): number { - const set_episode = func_0_instructions.find(instruction => instruction.opcode === SET_EPISODE); + const set_episode = func_0_instructions.find( + instruction => instruction.opcode === Opcode.set_episode + ); if (set_episode) { switch (set_episode.args[0].value) { @@ -174,7 +179,7 @@ function get_area_variants( } const bb_maps = func_0_instructions.filter( - instruction => instruction.opcode === BB_MAP_DESIGNATE + instruction => instruction.opcode === Opcode.bb_map_designate ); for (const bb_map of bb_maps) { @@ -520,6 +525,8 @@ function objects_to_dat_data(objects: QuestObject[]): DatObject[] { } function npcs_to_dat_data(npcs: QuestNpc[]): DatNpc[] { + const dv = new DataView(new ArrayBuffer(4)); + return npcs.map(npc => { const type_data = npc_type_to_dat_data(npc.type) || { type_id: npc.pso_type_id, @@ -527,11 +534,11 @@ function npcs_to_dat_data(npcs: QuestNpc[]): DatNpc[] { regular: true, }; - let scale = new Vec3( - npc.scale.x, - (npc.scale.y & ~0x800000) | (type_data.regular ? 0 : 0x800000), - npc.scale.z - ); + dv.setFloat32(0, npc.scale.y); + dv.setUint32(0, (dv.getUint32(0) & ~0x800000) | (type_data.regular ? 0 : 0x800000)); + const scale_y = dv.getFloat32(0); + + let scale = new Vec3(npc.scale.x, scale_y, npc.scale.z); return { type_id: type_data.type_id, diff --git a/src/data_formats/parsing/quest/opcodes.ts b/src/data_formats/parsing/quest/opcodes.ts new file mode 100644 index 00000000..5bde289e --- /dev/null +++ b/src/data_formats/parsing/quest/opcodes.ts @@ -0,0 +1,4904 @@ +/** + * Instruction parameter types. + */ +export enum Type { + U8, + U16, + U32, + I32, + F32, + /** + * Register reference + */ + Register, + /** + * Variable amount of u8 arguments. + */ + U8Var, + /** + * Variable amount of u16 arguments. + */ + U16Var, + String, +} + +export type Param = { + type: Type; +}; + +export const OPCODES: Opcode[] = []; + +/** + * Script object code instruction. Invoked by {@link ../bin/Instruction}s. + */ +export class Opcode { + /** + * Byte size of the instruction code, either 1 or 2. + */ + readonly code_size: number; + + constructor( + /** + * 1- Or 2-byte instruction code used to invoke this opcode. + */ + readonly code: number, + readonly mnemonic: string, + /** + * Directly passed in arguments. + */ + readonly params: Param[], + /** + * If true, this opcode pushes arguments onto the stack. + */ + readonly push_stack: boolean, + /** + * Arguments passed in via the stack. + * These arguments are popped from the stack after the opcode has executed. + */ + readonly stack_params: Param[] + ) { + this.code_size = this.code < 256 ? 1 : 2; + } + + static readonly nop = (OPCODES[0x00] = new Opcode(0x00, "nop", [], false, [])); + static readonly ret = (OPCODES[0x01] = new Opcode(0x01, "ret", [], false, [])); + static readonly sync = (OPCODES[0x02] = new Opcode(0x02, "sync", [], false, [])); + static readonly exit = (OPCODES[0x03] = new Opcode(0x03, "exit", [], false, [ + { type: Type.U32 }, + ])); + static readonly thread = (OPCODES[0x04] = new Opcode( + 0x04, + "thread", + [{ type: Type.U16 }], + false, + [] + )); + static readonly va_start = (OPCODES[0x05] = new Opcode(0x05, "va_start", [], false, [])); + static readonly va_end = (OPCODES[0x06] = new Opcode(0x06, "va_end", [], false, [])); + static readonly va_call = (OPCODES[0x07] = new Opcode( + 0x07, + "va_call", + [{ type: Type.U16 }], + false, + [] + )); + static readonly let = (OPCODES[0x08] = new Opcode( + 0x08, + "let", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly leti = (OPCODES[0x09] = new Opcode( + 0x09, + "leti", + [{ type: Type.Register }, { type: Type.I32 }], + false, + [] + )); + static readonly unknown_0a = (OPCODES[0x0a] = new Opcode(0x0a, "unknown_0a", [], false, [])); + static readonly unknown_0b = (OPCODES[0x0b] = new Opcode(0x0b, "unknown_0b", [], false, [])); + static readonly unknown_0c = (OPCODES[0x0c] = new Opcode(0x0c, "unknown_0c", [], false, [])); + static readonly unknown_0d = (OPCODES[0x0d] = new Opcode(0x0d, "unknown_0d", [], false, [])); + static readonly unknown_0e = (OPCODES[0x0e] = new Opcode(0x0e, "unknown_0e", [], false, [])); + static readonly unknown_0f = (OPCODES[0x0f] = new Opcode(0x0f, "unknown_0f", [], false, [])); + static readonly set = (OPCODES[0x10] = new Opcode( + 0x10, + "set", + [{ type: Type.Register }], + false, + [] + )); + static readonly clear = (OPCODES[0x11] = new Opcode( + 0x11, + "clear", + [{ type: Type.Register }], + false, + [] + )); + static readonly rev = (OPCODES[0x12] = new Opcode( + 0x12, + "rev", + [{ type: Type.Register }], + false, + [] + )); + static readonly gset = (OPCODES[0x13] = new Opcode( + 0x13, + "gset", + [{ type: Type.U16 }], + false, + [] + )); + static readonly gclear = (OPCODES[0x14] = new Opcode( + 0x14, + "gclear", + [{ type: Type.U16 }], + false, + [] + )); + static readonly grev = (OPCODES[0x15] = new Opcode( + 0x15, + "grev", + [{ type: Type.U16 }], + false, + [] + )); + static readonly glet = (OPCODES[0x16] = new Opcode( + 0x16, + "glet", + [{ type: Type.U16 }], + false, + [] + )); + static readonly gget = (OPCODES[0x17] = new Opcode( + 0x17, + "gget", + [{ type: Type.U16 }, { type: Type.Register }], + false, + [] + )); + static readonly add = (OPCODES[0x18] = new Opcode( + 0x18, + "add", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly addi = (OPCODES[0x19] = new Opcode( + 0x19, + "addi", + [{ type: Type.Register }, { type: Type.I32 }], + false, + [] + )); + static readonly sub = (OPCODES[0x1a] = new Opcode( + 0x1a, + "sub", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly subi = (OPCODES[0x1b] = new Opcode( + 0x1b, + "subi", + [{ type: Type.Register }, { type: Type.I32 }], + false, + [] + )); + static readonly mul = (OPCODES[0x1c] = new Opcode( + 0x1c, + "mul", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly muli = (OPCODES[0x1d] = new Opcode( + 0x1d, + "muli", + [{ type: Type.Register }, { type: Type.I32 }], + false, + [] + )); + static readonly div = (OPCODES[0x1e] = new Opcode( + 0x1e, + "div", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly divi = (OPCODES[0x1f] = new Opcode( + 0x1f, + "divi", + [{ type: Type.Register }, { type: Type.I32 }], + false, + [] + )); + static readonly and = (OPCODES[0x20] = new Opcode( + 0x20, + "and", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly andi = (OPCODES[0x21] = new Opcode( + 0x21, + "andi", + [{ type: Type.Register }, { type: Type.I32 }], + false, + [] + )); + static readonly or = (OPCODES[0x22] = new Opcode( + 0x22, + "or", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly ori = (OPCODES[0x23] = new Opcode( + 0x23, + "ori", + [{ type: Type.Register }, { type: Type.I32 }], + false, + [] + )); + static readonly xor = (OPCODES[0x24] = new Opcode( + 0x24, + "xor", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly xori = (OPCODES[0x25] = new Opcode( + 0x25, + "xori", + [{ type: Type.Register }, { type: Type.I32 }], + false, + [] + )); + static readonly mod = (OPCODES[0x26] = new Opcode( + 0x26, + "mod", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly modi = (OPCODES[0x27] = new Opcode( + 0x27, + "modi", + [{ type: Type.Register }, { type: Type.I32 }], + false, + [] + )); + static readonly jmp = (OPCODES[0x28] = new Opcode( + 0x28, + "jmp", + [{ type: Type.U16 }], + false, + [] + )); + static readonly call = (OPCODES[0x29] = new Opcode( + 0x29, + "call", + [{ type: Type.U16 }], + false, + [] + )); + static readonly jmp_on = (OPCODES[0x2a] = new Opcode( + 0x2a, + "jmp_on", + [{ type: Type.U16 }, { type: Type.U8Var }], + false, + [] + )); + static readonly jmp_off = (OPCODES[0x2b] = new Opcode( + 0x2b, + "jmp_off", + [{ type: Type.U16 }, { type: Type.U8Var }], + false, + [] + )); + static readonly jmp_e = (OPCODES[0x2c] = new Opcode( + 0x2c, + "jmp_=", + [{ type: Type.Register }, { type: Type.Register }, { type: Type.U16 }], + false, + [] + )); + static readonly jmpi_e = (OPCODES[0x2d] = new Opcode( + 0x2d, + "jmpi_=", + [{ type: Type.Register }, { type: Type.I32 }, { type: Type.U16 }], + false, + [] + )); + static readonly jmp_ne = (OPCODES[0x2e] = new Opcode( + 0x2e, + "jmp_!=", + [{ type: Type.Register }, { type: Type.Register }, { type: Type.U16 }], + false, + [] + )); + static readonly jmpi_ne = (OPCODES[0x2f] = new Opcode( + 0x2f, + "jmpi_!=", + [{ type: Type.Register }, { type: Type.I32 }, { type: Type.U16 }], + false, + [] + )); + static readonly ujmp_g = (OPCODES[0x30] = new Opcode( + 0x30, + "ujmp_>", + [{ type: Type.Register }, { type: Type.Register }, { type: Type.U16 }], + false, + [] + )); + static readonly ujmpi_g = (OPCODES[0x31] = new Opcode( + 0x31, + "ujmpi_>", + [{ type: Type.Register }, { type: Type.U32 }, { type: Type.U16 }], + false, + [] + )); + static readonly jmp_g = (OPCODES[0x32] = new Opcode( + 0x32, + "jmp_>", + [{ type: Type.Register }, { type: Type.Register }, { type: Type.U16 }], + false, + [] + )); + static readonly jmpi_g = (OPCODES[0x33] = new Opcode( + 0x33, + "jmpi_>", + [{ type: Type.Register }, { type: Type.I32 }, { type: Type.U16 }], + false, + [] + )); + static readonly ujmp_l = (OPCODES[0x34] = new Opcode( + 0x34, + "ujmp_<", + [{ type: Type.Register }, { type: Type.Register }, { type: Type.U16 }], + false, + [] + )); + static readonly ujmpi_l = (OPCODES[0x35] = new Opcode( + 0x35, + "ujmpi_<", + [{ type: Type.Register }, { type: Type.U32 }, { type: Type.U16 }], + false, + [] + )); + static readonly jmp_l = (OPCODES[0x36] = new Opcode( + 0x36, + "jmp_<", + [{ type: Type.Register }, { type: Type.Register }, { type: Type.U16 }], + false, + [] + )); + static readonly jmpi_l = (OPCODES[0x37] = new Opcode( + 0x37, + "jmpi_<", + [{ type: Type.Register }, { type: Type.I32 }, { type: Type.U16 }], + false, + [] + )); + static readonly ujmp_ge = (OPCODES[0x38] = new Opcode( + 0x38, + "ujmp_>=", + [{ type: Type.Register }, { type: Type.Register }, { type: Type.U16 }], + false, + [] + )); + static readonly ujmpi_ge = (OPCODES[0x39] = new Opcode( + 0x39, + "ujmpi_>=", + [{ type: Type.Register }, { type: Type.U32 }, { type: Type.U16 }], + false, + [] + )); + static readonly jmp_ge = (OPCODES[0x3a] = new Opcode( + 0x3a, + "jmp_>=", + [{ type: Type.Register }, { type: Type.Register }, { type: Type.U16 }], + false, + [] + )); + static readonly jmpi_ge = (OPCODES[0x3b] = new Opcode( + 0x3b, + "jmpi_>=", + [{ type: Type.Register }, { type: Type.I32 }, { type: Type.U16 }], + false, + [] + )); + static readonly ujmp_le = (OPCODES[0x3c] = new Opcode( + 0x3c, + "ujmp_<=", + [{ type: Type.Register }, { type: Type.Register }, { type: Type.U16 }], + false, + [] + )); + static readonly ujmpi_le = (OPCODES[0x3d] = new Opcode( + 0x3d, + "ujmpi_<=", + [{ type: Type.Register }, { type: Type.U32 }, { type: Type.U16 }], + false, + [] + )); + static readonly jmp_le = (OPCODES[0x3e] = new Opcode( + 0x3e, + "jmp_<=", + [{ type: Type.Register }, { type: Type.Register }, { type: Type.U16 }], + false, + [] + )); + static readonly jmpi_le = (OPCODES[0x3f] = new Opcode( + 0x3f, + "jmpi_<=", + [{ type: Type.Register }, { type: Type.I32 }, { type: Type.U16 }], + false, + [] + )); + static readonly switch_jmp = (OPCODES[0x40] = new Opcode( + 0x40, + "switch_jmp", + [{ type: Type.Register }, { type: Type.U16Var }], + false, + [] + )); + static readonly switch_call = (OPCODES[0x41] = new Opcode( + 0x41, + "switch_call", + [{ type: Type.Register }, { type: Type.U16Var }], + false, + [] + )); + static readonly stack_push = (OPCODES[0x42] = new Opcode( + 0x42, + "stack_push", + [{ type: Type.Register }], + false, + [] + )); + static readonly stack_pop = (OPCODES[0x43] = new Opcode( + 0x43, + "stack_pop", + [{ type: Type.Register }], + false, + [] + )); + static readonly stack_pushm = (OPCODES[0x44] = new Opcode( + 0x44, + "stack_pushm", + [{ type: Type.Register }, { type: Type.U32 }], + false, + [] + )); + static readonly stack_popm = (OPCODES[0x45] = new Opcode( + 0x45, + "stack_popm", + [{ type: Type.Register }, { type: Type.U32 }], + false, + [] + )); + static readonly unknown_46 = (OPCODES[0x46] = new Opcode(0x46, "unknown_46", [], false, [])); + static readonly unknown_47 = (OPCODES[0x47] = new Opcode(0x47, "unknown_47", [], false, [])); + static readonly arg_pushr = (OPCODES[0x48] = new Opcode( + 0x48, + "arg_pushr", + [{ type: Type.Register }], + true, + [] + )); + static readonly arg_pushl = (OPCODES[0x49] = new Opcode( + 0x49, + "arg_pushl", + [{ type: Type.I32 }], + true, + [] + )); + static readonly arg_pushb = (OPCODES[0x4a] = new Opcode( + 0x4a, + "arg_pushb", + [{ type: Type.U8 }], + true, + [] + )); + static readonly arg_pushw = (OPCODES[0x4b] = new Opcode( + 0x4b, + "arg_pushw", + [{ type: Type.U16 }], + true, + [] + )); + static readonly unknown_4c = (OPCODES[0x4c] = new Opcode(0x4c, "unknown_4c", [], false, [])); + static readonly unknown_4d = (OPCODES[0x4d] = new Opcode(0x4d, "unknown_4d", [], false, [])); + static readonly arg_pushs = (OPCODES[0x4e] = new Opcode( + 0x4e, + "arg_pushs", + [{ type: Type.String }], + true, + [] + )); + static readonly unknown_4f = (OPCODES[0x4f] = new Opcode( + 0x4f, + "unknown_4f", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly message = (OPCODES[0x50] = new Opcode(0x50, "message", [], false, [ + { type: Type.U32 }, + { type: Type.String }, + ])); + static readonly list = (OPCODES[0x51] = new Opcode(0x51, "list", [], false, [ + { type: Type.Register }, + { type: Type.String }, + ])); + static readonly fadein = (OPCODES[0x52] = new Opcode(0x52, "fadein", [], false, [])); + static readonly fadeout = (OPCODES[0x53] = new Opcode(0x53, "fadeout", [], false, [])); + static readonly se = (OPCODES[0x54] = new Opcode(0x54, "se", [], false, [{ type: Type.U32 }])); + static readonly bgm = (OPCODES[0x55] = new Opcode(0x55, "bgm", [], false, [ + { type: Type.U32 }, + ])); + static readonly unknown_56 = (OPCODES[0x56] = new Opcode(0x56, "unknown_56", [], false, [])); + static readonly unknown_57 = (OPCODES[0x57] = new Opcode(0x57, "unknown_57", [], false, [])); + static readonly enable = (OPCODES[0x58] = new Opcode(0x58, "enable", [], false, [ + { type: Type.U32 }, + ])); + static readonly disable = (OPCODES[0x59] = new Opcode(0x59, "disable", [], false, [ + { type: Type.U32 }, + ])); + static readonly window_msg = (OPCODES[0x5a] = new Opcode(0x5a, "window_msg", [], false, [ + { type: Type.String }, + ])); + static readonly add_msg = (OPCODES[0x5b] = new Opcode(0x5b, "add_msg", [], false, [ + { type: Type.String }, + ])); + static readonly mesend = (OPCODES[0x5c] = new Opcode(0x5c, "mesend", [], false, [])); + static readonly gettime = (OPCODES[0x5d] = new Opcode( + 0x5d, + "gettime", + [{ type: Type.Register }], + false, + [] + )); + static readonly winend = (OPCODES[0x5e] = new Opcode(0x5e, "winend", [], false, [])); + static readonly unknown_5f = (OPCODES[0x5f] = new Opcode(0x5f, "unknown_5f", [], false, [])); + static readonly npc_crt_v3 = (OPCODES[0x60] = new Opcode( + 0x60, + "npc_crt_v3", + [{ type: Type.Register }], + false, + [] + )); + static readonly npc_stop = (OPCODES[0x61] = new Opcode(0x61, "npc_stop", [], false, [ + { type: Type.Register }, + ])); + static readonly npc_play = (OPCODES[0x62] = new Opcode(0x62, "npc_play", [], false, [ + { type: Type.U32 }, + ])); + static readonly npc_kill = (OPCODES[0x63] = new Opcode(0x63, "npc_kill", [], false, [ + { type: Type.Register }, + ])); + static readonly npc_nont = (OPCODES[0x64] = new Opcode(0x64, "npc_nont", [], false, [])); + static readonly npc_talk = (OPCODES[0x65] = new Opcode(0x65, "npc_talk", [], false, [])); + static readonly npc_crp_v3 = (OPCODES[0x66] = new Opcode( + 0x66, + "npc_crp_v3", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_67 = (OPCODES[0x67] = new Opcode(0x67, "unknown_67", [], false, [])); + static readonly create_pipe = (OPCODES[0x68] = new Opcode(0x68, "create_pipe", [], false, [ + { type: Type.U32 }, + ])); + static readonly p_hpstat_v3 = (OPCODES[0x69] = new Opcode(0x69, "p_hpstat_v3", [], false, [ + { type: Type.Register }, + { type: Type.U32 }, + ])); + static readonly p_dead_v3 = (OPCODES[0x6a] = new Opcode(0x6a, "p_dead_v3", [], false, [ + { type: Type.Register }, + { type: Type.U32 }, + ])); + static readonly p_disablewarp = (OPCODES[0x6b] = new Opcode( + 0x6b, + "p_disablewarp", + [], + false, + [] + )); + static readonly p_enablewarp = (OPCODES[0x6c] = new Opcode( + 0x6c, + "p_enablewarp", + [], + false, + [] + )); + static readonly p_move_v3 = (OPCODES[0x6d] = new Opcode( + 0x6d, + "p_move_v3", + [{ type: Type.Register }], + false, + [] + )); + static readonly p_look = (OPCODES[0x6e] = new Opcode(0x6e, "p_look", [], false, [ + { type: Type.U32 }, + ])); + static readonly unknown_6f = (OPCODES[0x6f] = new Opcode(0x6f, "unknown_6f", [], false, [])); + static readonly p_action_disable = (OPCODES[0x70] = new Opcode( + 0x70, + "p_action_disable", + [], + false, + [] + )); + static readonly p_action_enable = (OPCODES[0x71] = new Opcode( + 0x71, + "p_action_enable", + [], + false, + [] + )); + static readonly disable_movement1 = (OPCODES[0x72] = new Opcode( + 0x72, + "disable_movement1", + [], + false, + [{ type: Type.Register }] + )); + static readonly enable_movement1 = (OPCODES[0x73] = new Opcode( + 0x73, + "enable_movement1", + [], + false, + [{ type: Type.Register }] + )); + static readonly p_noncol = (OPCODES[0x74] = new Opcode(0x74, "p_noncol", [], false, [])); + static readonly p_col = (OPCODES[0x75] = new Opcode(0x75, "p_col", [], false, [])); + static readonly p_setpos = (OPCODES[0x76] = new Opcode(0x76, "p_setpos", [], false, [ + { type: Type.Register }, + { type: Type.Register }, + ])); + static readonly p_return_guild = (OPCODES[0x77] = new Opcode( + 0x77, + "p_return_guild", + [], + false, + [] + )); + static readonly p_talk_guild = (OPCODES[0x78] = new Opcode(0x78, "p_talk_guild", [], false, [ + { type: Type.U32 }, + ])); + static readonly npc_talk_pl_v3 = (OPCODES[0x79] = new Opcode( + 0x79, + "npc_talk_pl_v3", + [{ type: Type.Register }], + false, + [] + )); + static readonly npc_talk_kill = (OPCODES[0x7a] = new Opcode(0x7a, "npc_talk_kill", [], false, [ + { type: Type.U32 }, + ])); + static readonly npc_crtpk_v3 = (OPCODES[0x7b] = new Opcode( + 0x7b, + "npc_crtpk_v3", + [{ type: Type.Register }], + false, + [] + )); + static readonly npc_crppk_v3 = (OPCODES[0x7c] = new Opcode( + 0x7c, + "npc_crppk_v3", + [{ type: Type.Register }], + false, + [] + )); + static readonly npc_crptalk_v3 = (OPCODES[0x7d] = new Opcode( + 0x7d, + "npc_crptalk_v3", + [{ type: Type.Register }], + false, + [] + )); + static readonly p_look_at_v1 = (OPCODES[0x7e] = new Opcode(0x7e, "p_look_at_v1", [], false, [ + { type: Type.U32 }, + { type: Type.U32 }, + ])); + static readonly npc_crp_id_v3 = (OPCODES[0x7f] = new Opcode( + 0x7f, + "npc_crp_id_v3", + [{ type: Type.Register }], + false, + [] + )); + static readonly cam_quake = (OPCODES[0x80] = new Opcode(0x80, "cam_quake", [], false, [])); + static readonly cam_adj = (OPCODES[0x81] = new Opcode(0x81, "cam_adj", [], false, [])); + static readonly cam_zmin = (OPCODES[0x82] = new Opcode(0x82, "cam_zmin", [], false, [])); + static readonly cam_zmout = (OPCODES[0x83] = new Opcode(0x83, "cam_zmout", [], false, [])); + static readonly cam_pan_v3 = (OPCODES[0x84] = new Opcode( + 0x84, + "cam_pan_v3", + [{ type: Type.Register }], + false, + [] + )); + static readonly game_lev_super = (OPCODES[0x85] = new Opcode( + 0x85, + "game_lev_super", + [], + false, + [] + )); + static readonly game_lev_reset = (OPCODES[0x86] = new Opcode( + 0x86, + "game_lev_reset", + [], + false, + [] + )); + static readonly pos_pipe_v3 = (OPCODES[0x87] = new Opcode( + 0x87, + "pos_pipe_v3", + [{ type: Type.Register }], + false, + [] + )); + static readonly if_zone_clear = (OPCODES[0x88] = new Opcode( + 0x88, + "if_zone_clear", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly chk_ene_num = (OPCODES[0x89] = new Opcode( + 0x89, + "chk_ene_num", + [{ type: Type.Register }], + false, + [] + )); + static readonly unhide_obj = (OPCODES[0x8a] = new Opcode( + 0x8a, + "unhide_obj", + [{ type: Type.Register }], + false, + [] + )); + static readonly unhide_ene = (OPCODES[0x8b] = new Opcode( + 0x8b, + "unhide_ene", + [{ type: Type.Register }], + false, + [] + )); + static readonly at_coords_call = (OPCODES[0x8c] = new Opcode( + 0x8c, + "at_coords_call", + [{ type: Type.Register }], + false, + [] + )); + static readonly at_coords_talk = (OPCODES[0x8d] = new Opcode( + 0x8d, + "at_coords_talk", + [{ type: Type.Register }], + false, + [] + )); + static readonly col_npcin = (OPCODES[0x8e] = new Opcode( + 0x8e, + "col_npcin", + [{ type: Type.Register }], + false, + [] + )); + static readonly col_npcinr = (OPCODES[0x8f] = new Opcode( + 0x8f, + "col_npcinr", + [{ type: Type.Register }], + false, + [] + )); + static readonly switch_on = (OPCODES[0x90] = new Opcode(0x90, "switch_on", [], false, [ + { type: Type.U32 }, + ])); + static readonly switch_off = (OPCODES[0x91] = new Opcode(0x91, "switch_off", [], false, [ + { type: Type.U32 }, + ])); + static readonly playbgm_epi = (OPCODES[0x92] = new Opcode(0x92, "playbgm_epi", [], false, [ + { type: Type.U32 }, + ])); + static readonly set_mainwarp = (OPCODES[0x93] = new Opcode(0x93, "set_mainwarp", [], false, [ + { type: Type.U32 }, + ])); + static readonly set_obj_param = (OPCODES[0x94] = new Opcode( + 0x94, + "set_obj_param", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly set_floor_handler = (OPCODES[0x95] = new Opcode( + 0x95, + "set_floor_handler", + [], + false, + [{ type: Type.U32 }, { type: Type.U16 }] + )); + static readonly clr_floor_handler = (OPCODES[0x96] = new Opcode( + 0x96, + "clr_floor_handler", + [], + false, + [{ type: Type.U32 }] + )); + static readonly col_plinaw = (OPCODES[0x97] = new Opcode( + 0x97, + "col_plinaw", + [{ type: Type.Register }], + false, + [] + )); + static readonly hud_hide = (OPCODES[0x98] = new Opcode(0x98, "hud_hide", [], false, [])); + static readonly hud_show = (OPCODES[0x99] = new Opcode(0x99, "hud_show", [], false, [])); + static readonly cine_enable = (OPCODES[0x9a] = new Opcode(0x9a, "cine_enable", [], false, [])); + static readonly cine_disable = (OPCODES[0x9b] = new Opcode( + 0x9b, + "cine_disable", + [], + false, + [] + )); + static readonly unknown_9c = (OPCODES[0x9c] = new Opcode(0x9c, "unknown_9c", [], false, [])); + static readonly unknown_9d = (OPCODES[0x9d] = new Opcode(0x9d, "unknown_9d", [], false, [])); + static readonly unknown_9e = (OPCODES[0x9e] = new Opcode(0x9e, "unknown_9e", [], false, [])); + static readonly unknown_9f = (OPCODES[0x9f] = new Opcode(0x9f, "unknown_9f", [], false, [])); + static readonly unknown_a0 = (OPCODES[0xa0] = new Opcode(0xa0, "unknown_a0", [], false, [])); + static readonly set_qt_failure = (OPCODES[0xa1] = new Opcode( + 0xa1, + "set_qt_failure", + [{ type: Type.U16 }], + false, + [] + )); + static readonly set_qt_success = (OPCODES[0xa2] = new Opcode( + 0xa2, + "set_qt_success", + [{ type: Type.U16 }], + false, + [] + )); + static readonly clr_qt_failure = (OPCODES[0xa3] = new Opcode( + 0xa3, + "clr_qt_failure", + [], + false, + [] + )); + static readonly clr_qt_success = (OPCODES[0xa4] = new Opcode( + 0xa4, + "clr_qt_success", + [], + false, + [] + )); + static readonly set_qt_cancel = (OPCODES[0xa5] = new Opcode( + 0xa5, + "set_qt_cancel", + [{ type: Type.U16 }], + false, + [] + )); + static readonly clr_qt_cancel = (OPCODES[0xa6] = new Opcode( + 0xa6, + "clr_qt_cancel", + [], + false, + [] + )); + static readonly unknown_a7 = (OPCODES[0xa7] = new Opcode(0xa7, "unknown_a7", [], false, [])); + static readonly pl_walk_v3 = (OPCODES[0xa8] = new Opcode( + 0xa8, + "pl_walk_v3", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_a9 = (OPCODES[0xa9] = new Opcode(0xa9, "unknown_a9", [], false, [])); + static readonly unknown_aa = (OPCODES[0xaa] = new Opcode(0xaa, "unknown_aa", [], false, [])); + static readonly unknown_ab = (OPCODES[0xab] = new Opcode(0xab, "unknown_ab", [], false, [])); + static readonly unknown_ac = (OPCODES[0xac] = new Opcode(0xac, "unknown_ac", [], false, [])); + static readonly unknown_ad = (OPCODES[0xad] = new Opcode(0xad, "unknown_ad", [], false, [])); + static readonly unknown_ae = (OPCODES[0xae] = new Opcode(0xae, "unknown_ae", [], false, [])); + static readonly unknown_af = (OPCODES[0xaf] = new Opcode(0xaf, "unknown_af", [], false, [])); + static readonly pl_add_meseta = (OPCODES[0xb0] = new Opcode(0xb0, "pl_add_meseta", [], false, [ + { type: Type.U32 }, + { type: Type.U32 }, + ])); + static readonly thread_stg = (OPCODES[0xb1] = new Opcode( + 0xb1, + "thread_stg", + [{ type: Type.U16 }], + false, + [] + )); + static readonly del_obj_param = (OPCODES[0xb2] = new Opcode( + 0xb2, + "del_obj_param", + [{ type: Type.Register }], + false, + [] + )); + static readonly item_create = (OPCODES[0xb3] = new Opcode( + 0xb3, + "item_create", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly item_create2 = (OPCODES[0xb4] = new Opcode( + 0xb4, + "item_create2", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly item_delete = (OPCODES[0xb5] = new Opcode( + 0xb5, + "item_delete", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly item_delete2 = (OPCODES[0xb6] = new Opcode( + 0xb6, + "item_delete2", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly item_check = (OPCODES[0xb7] = new Opcode( + 0xb7, + "item_check", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly setevt = (OPCODES[0xb8] = new Opcode(0xb8, "setevt", [], false, [ + { type: Type.U32 }, + ])); + static readonly get_difflvl = (OPCODES[0xb9] = new Opcode( + 0xb9, + "get_difflvl", + [{ type: Type.Register }], + false, + [] + )); + static readonly set_qt_exit = (OPCODES[0xba] = new Opcode( + 0xba, + "set_qt_exit", + [{ type: Type.U16 }], + false, + [] + )); + static readonly clr_qt_exit = (OPCODES[0xbb] = new Opcode(0xbb, "clr_qt_exit", [], false, [])); + static readonly unknown_bc = (OPCODES[0xbc] = new Opcode(0xbc, "unknown_bc", [], false, [])); + static readonly unknown_bd = (OPCODES[0xbd] = new Opcode(0xbd, "unknown_bd", [], false, [])); + static readonly unknown_be = (OPCODES[0xbe] = new Opcode(0xbe, "unknown_be", [], false, [])); + static readonly unknown_bf = (OPCODES[0xbf] = new Opcode(0xbf, "unknown_bf", [], false, [])); + static readonly particle_v3 = (OPCODES[0xc0] = new Opcode( + 0xc0, + "particle_v3", + [{ type: Type.Register }], + false, + [] + )); + static readonly npc_text = (OPCODES[0xc1] = new Opcode(0xc1, "npc_text", [], false, [ + { type: Type.U32 }, + { type: Type.String }, + ])); + static readonly npc_chkwarp = (OPCODES[0xc2] = new Opcode(0xc2, "npc_chkwarp", [], false, [])); + static readonly pl_pkoff = (OPCODES[0xc3] = new Opcode(0xc3, "pl_pkoff", [], false, [])); + static readonly map_designate = (OPCODES[0xc4] = new Opcode( + 0xc4, + "map_designate", + [{ type: Type.Register }], + false, + [] + )); + static readonly masterkey_on = (OPCODES[0xc5] = new Opcode( + 0xc5, + "masterkey_on", + [], + false, + [] + )); + static readonly masterkey_off = (OPCODES[0xc6] = new Opcode( + 0xc6, + "masterkey_off", + [], + false, + [] + )); + static readonly window_time = (OPCODES[0xc7] = new Opcode(0xc7, "window_time", [], false, [])); + static readonly winend_time = (OPCODES[0xc8] = new Opcode(0xc8, "winend_time", [], false, [])); + static readonly winset_time = (OPCODES[0xc9] = new Opcode( + 0xc9, + "winset_time", + [{ type: Type.Register }], + false, + [] + )); + static readonly getmtime = (OPCODES[0xca] = new Opcode( + 0xca, + "getmtime", + [{ type: Type.Register }], + false, + [] + )); + static readonly set_quest_board_handler = (OPCODES[0xcb] = new Opcode( + 0xcb, + "set_quest_board_handler", + [], + false, + [{ type: Type.U32 }, { type: Type.U16 }, { type: Type.String }] + )); + static readonly clear_quest_board_handler = (OPCODES[0xcc] = new Opcode( + 0xcc, + "clear_quest_board_handler", + [], + false, + [{ type: Type.U32 }] + )); + static readonly particle_id_v3 = (OPCODES[0xcd] = new Opcode( + 0xcd, + "particle_id_v3", + [{ type: Type.Register }], + false, + [] + )); + static readonly npc_crptalk_id_v3 = (OPCODES[0xce] = new Opcode( + 0xce, + "npc_crptalk_id_v3", + [{ type: Type.Register }], + false, + [] + )); + static readonly npc_lang_clean = (OPCODES[0xcf] = new Opcode( + 0xcf, + "npc_lang_clean", + [], + false, + [] + )); + static readonly pl_pkon = (OPCODES[0xd0] = new Opcode(0xd0, "pl_pkon", [], false, [])); + static readonly pl_chk_item2 = (OPCODES[0xd1] = new Opcode( + 0xd1, + "pl_chk_item2", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly enable_mainmenu = (OPCODES[0xd2] = new Opcode( + 0xd2, + "enable_mainmenu", + [], + false, + [] + )); + static readonly disable_mainmenu = (OPCODES[0xd3] = new Opcode( + 0xd3, + "disable_mainmenu", + [], + false, + [] + )); + static readonly start_battlebgm = (OPCODES[0xd4] = new Opcode( + 0xd4, + "start_battlebgm", + [], + false, + [] + )); + static readonly end_battlebgm = (OPCODES[0xd5] = new Opcode( + 0xd5, + "end_battlebgm", + [], + false, + [] + )); + static readonly disp_msg_qb = (OPCODES[0xd6] = new Opcode(0xd6, "disp_msg_qb", [], false, [ + { type: Type.String }, + ])); + static readonly close_msg_qb = (OPCODES[0xd7] = new Opcode( + 0xd7, + "close_msg_qb", + [], + false, + [] + )); + static readonly set_eventflag_v3 = (OPCODES[0xd8] = new Opcode( + 0xd8, + "set_eventflag_v3", + [], + false, + [{ type: Type.U32 }, { type: Type.U32 }] + )); + static readonly sync_leti = (OPCODES[0xd9] = new Opcode(0xd9, "sync_leti", [], false, [])); + static readonly set_returnhunter = (OPCODES[0xda] = new Opcode( + 0xda, + "set_returnhunter", + [], + false, + [] + )); + static readonly set_returncity = (OPCODES[0xdb] = new Opcode( + 0xdb, + "set_returncity", + [], + false, + [] + )); + static readonly load_pvr = (OPCODES[0xdc] = new Opcode(0xdc, "load_pvr", [], false, [])); + static readonly load_midi = (OPCODES[0xdd] = new Opcode(0xdd, "load_midi", [], false, [])); + static readonly unknown_de = (OPCODES[0xde] = new Opcode(0xde, "unknown_de", [], false, [])); + static readonly npc_param_v3 = (OPCODES[0xdf] = new Opcode(0xdf, "npc_param_v3", [], false, [ + { type: Type.Register }, + { type: Type.U32 }, + ])); + static readonly pad_dragon = (OPCODES[0xe0] = new Opcode(0xe0, "pad_dragon", [], false, [])); + static readonly clear_mainwarp = (OPCODES[0xe1] = new Opcode( + 0xe1, + "clear_mainwarp", + [], + false, + [{ type: Type.U32 }] + )); + static readonly pcam_param_v3 = (OPCODES[0xe2] = new Opcode( + 0xe2, + "pcam_param_v3", + [{ type: Type.Register }], + false, + [] + )); + static readonly start_setevt_v3 = (OPCODES[0xe3] = new Opcode( + 0xe3, + "start_setevt_v3", + [], + false, + [{ type: Type.Register }, { type: Type.U32 }] + )); + static readonly warp_on = (OPCODES[0xe4] = new Opcode(0xe4, "warp_on", [], false, [])); + static readonly warp_off = (OPCODES[0xe5] = new Opcode(0xe5, "warp_off", [], false, [])); + static readonly get_slotnumber = (OPCODES[0xe6] = new Opcode( + 0xe6, + "get_slotnumber", + [{ type: Type.Register }], + false, + [] + )); + static readonly get_servernumber = (OPCODES[0xe7] = new Opcode( + 0xe7, + "get_servernumber", + [{ type: Type.Register }], + false, + [] + )); + static readonly set_eventflag2 = (OPCODES[0xe8] = new Opcode( + 0xe8, + "set_eventflag2", + [], + false, + [{ type: Type.U32 }, { type: Type.Register }] + )); + static readonly res = (OPCODES[0xe9] = new Opcode( + 0xe9, + "res", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly unknown_ea = (OPCODES[0xea] = new Opcode( + 0xea, + "unknown_ea", + [{ type: Type.Register }, { type: Type.U32 }], + false, + [] + )); + static readonly enable_bgmctrl = (OPCODES[0xeb] = new Opcode( + 0xeb, + "enable_bgmctrl", + [], + false, + [{ type: Type.U32 }] + )); + static readonly sw_send = (OPCODES[0xec] = new Opcode( + 0xec, + "sw_send", + [{ type: Type.Register }], + false, + [] + )); + static readonly create_bgmctrl = (OPCODES[0xed] = new Opcode( + 0xed, + "create_bgmctrl", + [], + false, + [] + )); + static readonly pl_add_meseta2 = (OPCODES[0xee] = new Opcode( + 0xee, + "pl_add_meseta2", + [], + false, + [{ type: Type.U32 }] + )); + static readonly sync_register = (OPCODES[0xef] = new Opcode(0xef, "sync_register", [], false, [ + { type: Type.Register }, + { type: Type.U32 }, + ])); + static readonly send_regwork = (OPCODES[0xf0] = new Opcode( + 0xf0, + "send_regwork", + [], + false, + [] + )); + static readonly leti_fixed_camera_v3 = (OPCODES[0xf1] = new Opcode( + 0xf1, + "leti_fixed_camera_v3", + [{ type: Type.Register }], + false, + [] + )); + static readonly default_camera_pos1 = (OPCODES[0xf2] = new Opcode( + 0xf2, + "default_camera_pos1", + [], + false, + [] + )); + static readonly unknown_f3 = (OPCODES[0xf3] = new Opcode(0xf3, "unknown_f3", [], false, [])); + static readonly unknown_f4 = (OPCODES[0xf4] = new Opcode(0xf4, "unknown_f4", [], false, [])); + static readonly unknown_f5 = (OPCODES[0xf5] = new Opcode(0xf5, "unknown_f5", [], false, [])); + static readonly unknown_f6 = (OPCODES[0xf6] = new Opcode(0xf6, "unknown_f6", [], false, [])); + static readonly unknown_f7 = (OPCODES[0xf7] = new Opcode(0xf7, "unknown_f7", [], false, [])); + static readonly unknown_f8 = (OPCODES[0xf8] = new Opcode( + 0xf8, + "unknown_f8", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f9 = (OPCODES[0xf9] = new Opcode(0xf9, "unknown_f9", [], false, [])); + static readonly get_gc_number = (OPCODES[0xfa] = new Opcode( + 0xfa, + "get_gc_number", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_fb = (OPCODES[0xfb] = new Opcode( + 0xfb, + "unknown_fb", + [{ type: Type.U16 }], + false, + [] + )); + static readonly unknown_fc = (OPCODES[0xfc] = new Opcode(0xfc, "unknown_fc", [], false, [])); + static readonly unknown_fd = (OPCODES[0xfd] = new Opcode(0xfd, "unknown_fd", [], false, [])); + static readonly unknown_fe = (OPCODES[0xfe] = new Opcode(0xfe, "unknown_fe", [], false, [])); + static readonly unknown_ff = (OPCODES[0xff] = new Opcode(0xff, "unknown_ff", [], false, [])); + static readonly unknown_f800 = (OPCODES[0xf800] = new Opcode( + 0xf800, + "unknown_f800", + [], + false, + [] + )); + static readonly set_chat_callback = (OPCODES[0xf801] = new Opcode( + 0xf801, + "set_chat_callback", + [], + false, + [{ type: Type.Register }, { type: Type.String }] + )); + static readonly unknown_f802 = (OPCODES[0xf802] = new Opcode( + 0xf802, + "unknown_f802", + [], + false, + [] + )); + static readonly unknown_f803 = (OPCODES[0xf803] = new Opcode( + 0xf803, + "unknown_f803", + [], + false, + [] + )); + static readonly unknown_f804 = (OPCODES[0xf804] = new Opcode( + 0xf804, + "unknown_f804", + [], + false, + [] + )); + static readonly unknown_f805 = (OPCODES[0xf805] = new Opcode( + 0xf805, + "unknown_f805", + [], + false, + [] + )); + static readonly unknown_f806 = (OPCODES[0xf806] = new Opcode( + 0xf806, + "unknown_f806", + [], + false, + [] + )); + static readonly unknown_f807 = (OPCODES[0xf807] = new Opcode( + 0xf807, + "unknown_f807", + [], + false, + [] + )); + static readonly get_difficulty_level2 = (OPCODES[0xf808] = new Opcode( + 0xf808, + "get_difficulty_level2", + [{ type: Type.Register }], + false, + [] + )); + static readonly get_number_of_player1 = (OPCODES[0xf809] = new Opcode( + 0xf809, + "get_number_of_player1", + [{ type: Type.Register }], + false, + [] + )); + static readonly get_coord_of_player = (OPCODES[0xf80a] = new Opcode( + 0xf80a, + "get_coord_of_player", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly unknown_f80b = (OPCODES[0xf80b] = new Opcode( + 0xf80b, + "unknown_f80b", + [], + false, + [] + )); + static readonly unknown_f80c = (OPCODES[0xf80c] = new Opcode( + 0xf80c, + "unknown_f80c", + [], + false, + [] + )); + static readonly map_designate_ex = (OPCODES[0xf80d] = new Opcode( + 0xf80d, + "map_designate_ex", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f80e = (OPCODES[0xf80e] = new Opcode( + 0xf80e, + "unknown_f80e", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f80f = (OPCODES[0xf80f] = new Opcode( + 0xf80f, + "unknown_f80f", + [], + false, + [{ type: Type.U32 }] + )); + static readonly ba_initial_floor = (OPCODES[0xf810] = new Opcode( + 0xf810, + "ba_initial_floor", + [], + false, + [{ type: Type.U32 }] + )); + static readonly set_ba_rules = (OPCODES[0xf811] = new Opcode( + 0xf811, + "set_ba_rules", + [], + false, + [] + )); + static readonly unknown_f812 = (OPCODES[0xf812] = new Opcode( + 0xf812, + "unknown_f812", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f813 = (OPCODES[0xf813] = new Opcode( + 0xf813, + "unknown_f813", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f814 = (OPCODES[0xf814] = new Opcode( + 0xf814, + "unknown_f814", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f815 = (OPCODES[0xf815] = new Opcode( + 0xf815, + "unknown_f815", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f816 = (OPCODES[0xf816] = new Opcode( + 0xf816, + "unknown_f816", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f817 = (OPCODES[0xf817] = new Opcode( + 0xf817, + "unknown_f817", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f818 = (OPCODES[0xf818] = new Opcode( + 0xf818, + "unknown_f818", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f819 = (OPCODES[0xf819] = new Opcode( + 0xf819, + "unknown_f819", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f81a = (OPCODES[0xf81a] = new Opcode( + 0xf81a, + "unknown_f81a", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f81b = (OPCODES[0xf81b] = new Opcode( + 0xf81b, + "unknown_f81b", + [], + false, + [{ type: Type.U32 }] + )); + static readonly ba_disp_msg = (OPCODES[0xf81c] = new Opcode(0xf81c, "ba_disp_msg", [], false, [ + { type: Type.String }, + ])); + static readonly death_lvl_up = (OPCODES[0xf81d] = new Opcode( + 0xf81d, + "death_lvl_up", + [], + false, + [{ type: Type.U32 }] + )); + static readonly death_tech_lvl_up = (OPCODES[0xf81e] = new Opcode( + 0xf81e, + "death_tech_lvl_up", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f81f = (OPCODES[0xf81f] = new Opcode( + 0xf81f, + "unknown_f81f", + [], + false, + [] + )); + static readonly cmode_stage = (OPCODES[0xf820] = new Opcode(0xf820, "cmode_stage", [], false, [ + { type: Type.U32 }, + ])); + static readonly unknown_f821 = (OPCODES[0xf821] = new Opcode( + 0xf821, + "unknown_f821", + [], + false, + [] + )); + static readonly unknown_f822 = (OPCODES[0xf822] = new Opcode( + 0xf822, + "unknown_f822", + [], + false, + [] + )); + static readonly unknown_f823 = (OPCODES[0xf823] = new Opcode( + 0xf823, + "unknown_f823", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f824 = (OPCODES[0xf824] = new Opcode( + 0xf824, + "unknown_f824", + [], + false, + [{ type: Type.U32 }] + )); + static readonly exp_multiplication = (OPCODES[0xf825] = new Opcode( + 0xf825, + "exp_multiplication", + [{ type: Type.Register }], + false, + [] + )); + static readonly exp_division = (OPCODES[0xf826] = new Opcode( + 0xf826, + "exp_division", + [{ type: Type.Register }], + false, + [] + )); + static readonly get_user_is_dead = (OPCODES[0xf827] = new Opcode( + 0xf827, + "get_user_is_dead", + [{ type: Type.Register }], + false, + [] + )); + static readonly go_floor = (OPCODES[0xf828] = new Opcode( + 0xf828, + "go_floor", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly unknown_f829 = (OPCODES[0xf829] = new Opcode( + 0xf829, + "unknown_f829", + [], + false, + [] + )); + static readonly unknown_f82a = (OPCODES[0xf82a] = new Opcode( + 0xf82a, + "unknown_f82a", + [], + false, + [] + )); + static readonly unlock_door2 = (OPCODES[0xf82b] = new Opcode( + 0xf82b, + "unlock_door2", + [], + false, + [{ type: Type.U32 }, { type: Type.U32 }] + )); + static readonly lock_door2 = (OPCODES[0xf82c] = new Opcode(0xf82c, "lock_door2", [], false, [ + { type: Type.U32 }, + { type: Type.U32 }, + ])); + static readonly if_switch_not_pressed = (OPCODES[0xf82d] = new Opcode( + 0xf82d, + "if_switch_not_pressed", + [{ type: Type.Register }], + false, + [] + )); + static readonly if_switch_pressed = (OPCODES[0xf82e] = new Opcode( + 0xf82e, + "if_switch_pressed", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f82f = (OPCODES[0xf82f] = new Opcode( + 0xf82f, + "unknown_f82f", + [], + false, + [{ type: Type.U32 }, { type: Type.U32 }] + )); + static readonly control_dragon = (OPCODES[0xf830] = new Opcode( + 0xf830, + "control_dragon", + [{ type: Type.Register }], + false, + [] + )); + static readonly release_dragon = (OPCODES[0xf831] = new Opcode( + 0xf831, + "release_dragon", + [], + false, + [] + )); + static readonly unknown_f832 = (OPCODES[0xf832] = new Opcode( + 0xf832, + "unknown_f832", + [], + false, + [] + )); + static readonly unknown_f833 = (OPCODES[0xf833] = new Opcode( + 0xf833, + "unknown_f833", + [], + false, + [] + )); + static readonly unknown_f834 = (OPCODES[0xf834] = new Opcode( + 0xf834, + "unknown_f834", + [], + false, + [] + )); + static readonly unknown_f835 = (OPCODES[0xf835] = new Opcode( + 0xf835, + "unknown_f835", + [], + false, + [] + )); + static readonly unknown_f836 = (OPCODES[0xf836] = new Opcode( + 0xf836, + "unknown_f836", + [], + false, + [] + )); + static readonly unknown_f837 = (OPCODES[0xf837] = new Opcode( + 0xf837, + "unknown_f837", + [], + false, + [] + )); + static readonly shrink = (OPCODES[0xf838] = new Opcode( + 0xf838, + "shrink", + [{ type: Type.Register }], + false, + [] + )); + static readonly unshrink = (OPCODES[0xf839] = new Opcode( + 0xf839, + "unshrink", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f83a = (OPCODES[0xf83a] = new Opcode( + 0xf83a, + "unknown_f83a", + [], + false, + [] + )); + static readonly unknown_f83b = (OPCODES[0xf83b] = new Opcode( + 0xf83b, + "unknown_f83b", + [], + false, + [] + )); + static readonly display_clock2 = (OPCODES[0xf83c] = new Opcode( + 0xf83c, + "display_clock2", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f83d = (OPCODES[0xf83d] = new Opcode( + 0xf83d, + "unknown_f83d", + [], + false, + [{ type: Type.U32 }] + )); + static readonly delete_area_title = (OPCODES[0xf83e] = new Opcode( + 0xf83e, + "delete_area_title", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f83f = (OPCODES[0xf83f] = new Opcode( + 0xf83f, + "unknown_f83f", + [], + false, + [] + )); + static readonly load_npc_data = (OPCODES[0xf840] = new Opcode( + 0xf840, + "load_npc_data", + [], + false, + [] + )); + static readonly get_npc_data = (OPCODES[0xf841] = new Opcode( + 0xf841, + "get_npc_data", + [{ type: Type.U16 }], + false, + [] + )); + static readonly unknown_f842 = (OPCODES[0xf842] = new Opcode( + 0xf842, + "unknown_f842", + [], + false, + [] + )); + static readonly unknown_f843 = (OPCODES[0xf843] = new Opcode( + 0xf843, + "unknown_f843", + [], + false, + [] + )); + static readonly unknown_f844 = (OPCODES[0xf844] = new Opcode( + 0xf844, + "unknown_f844", + [], + false, + [] + )); + static readonly unknown_f845 = (OPCODES[0xf845] = new Opcode( + 0xf845, + "unknown_f845", + [], + false, + [] + )); + static readonly unknown_f846 = (OPCODES[0xf846] = new Opcode( + 0xf846, + "unknown_f846", + [], + false, + [] + )); + static readonly unknown_f847 = (OPCODES[0xf847] = new Opcode( + 0xf847, + "unknown_f847", + [], + false, + [] + )); + static readonly give_damage_score = (OPCODES[0xf848] = new Opcode( + 0xf848, + "give_damage_score", + [{ type: Type.Register }], + false, + [] + )); + static readonly take_damage_score = (OPCODES[0xf849] = new Opcode( + 0xf849, + "take_damage_score", + [{ type: Type.Register }], + false, + [] + )); + static readonly unk_score_f84a = (OPCODES[0xf84a] = new Opcode( + 0xf84a, + "unk_score_f84a", + [{ type: Type.Register }], + false, + [] + )); + static readonly unk_score_f84b = (OPCODES[0xf84b] = new Opcode( + 0xf84b, + "unk_score_f84b", + [{ type: Type.Register }], + false, + [] + )); + static readonly kill_score = (OPCODES[0xf84c] = new Opcode( + 0xf84c, + "kill_score", + [{ type: Type.Register }], + false, + [] + )); + static readonly death_score = (OPCODES[0xf84d] = new Opcode( + 0xf84d, + "death_score", + [{ type: Type.Register }], + false, + [] + )); + static readonly unk_score_f84e = (OPCODES[0xf84e] = new Opcode( + 0xf84e, + "unk_score_f84e", + [{ type: Type.Register }], + false, + [] + )); + static readonly enemy_death_score = (OPCODES[0xf84f] = new Opcode( + 0xf84f, + "enemy_death_score", + [{ type: Type.Register }], + false, + [] + )); + static readonly meseta_score = (OPCODES[0xf850] = new Opcode( + 0xf850, + "meseta_score", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f851 = (OPCODES[0xf851] = new Opcode( + 0xf851, + "unknown_f851", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f852 = (OPCODES[0xf852] = new Opcode( + 0xf852, + "unknown_f852", + [], + false, + [{ type: Type.U32 }] + )); + static readonly reverse_warps = (OPCODES[0xf853] = new Opcode( + 0xf853, + "reverse_warps", + [], + false, + [] + )); + static readonly unreverse_warps = (OPCODES[0xf854] = new Opcode( + 0xf854, + "unreverse_warps", + [], + false, + [] + )); + static readonly set_ult_map = (OPCODES[0xf855] = new Opcode( + 0xf855, + "set_ult_map", + [], + false, + [] + )); + static readonly unset_ult_map = (OPCODES[0xf856] = new Opcode( + 0xf856, + "unset_ult_map", + [], + false, + [] + )); + static readonly set_area_title = (OPCODES[0xf857] = new Opcode( + 0xf857, + "set_area_title", + [], + false, + [{ type: Type.String }] + )); + static readonly unknown_f858 = (OPCODES[0xf858] = new Opcode( + 0xf858, + "unknown_f858", + [], + false, + [] + )); + static readonly unknown_f859 = (OPCODES[0xf859] = new Opcode( + 0xf859, + "unknown_f859", + [], + false, + [] + )); + static readonly equip_item = (OPCODES[0xf85a] = new Opcode( + 0xf85a, + "equip_item", + [{ type: Type.Register }], + false, + [] + )); + static readonly unequip_item = (OPCODES[0xf85b] = new Opcode( + 0xf85b, + "unequip_item", + [], + false, + [{ type: Type.U32 }, { type: Type.U32 }] + )); + static readonly unknown_f85c = (OPCODES[0xf85c] = new Opcode( + 0xf85c, + "unknown_f85c", + [], + false, + [] + )); + static readonly unknown_f85d = (OPCODES[0xf85d] = new Opcode( + 0xf85d, + "unknown_f85d", + [], + false, + [] + )); + static readonly unknown_f85e = (OPCODES[0xf85e] = new Opcode( + 0xf85e, + "unknown_f85e", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f85f = (OPCODES[0xf85f] = new Opcode( + 0xf85f, + "unknown_f85f", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f860 = (OPCODES[0xf860] = new Opcode( + 0xf860, + "unknown_f860", + [], + false, + [] + )); + static readonly unknown_f861 = (OPCODES[0xf861] = new Opcode( + 0xf861, + "unknown_f861", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f862 = (OPCODES[0xf862] = new Opcode( + 0xf862, + "unknown_f862", + [], + false, + [] + )); + static readonly unknown_f863 = (OPCODES[0xf863] = new Opcode( + 0xf863, + "unknown_f863", + [], + false, + [] + )); + static readonly cmode_rank = (OPCODES[0xf864] = new Opcode(0xf864, "cmode_rank", [], false, [ + { type: Type.U32 }, + { type: Type.String }, + ])); + static readonly award_item_name = (OPCODES[0xf865] = new Opcode( + 0xf865, + "award_item_name", + [], + false, + [] + )); + static readonly award_item_select = (OPCODES[0xf866] = new Opcode( + 0xf866, + "award_item_select", + [], + false, + [] + )); + static readonly award_item_give_to = (OPCODES[0xf867] = new Opcode( + 0xf867, + "award_item_give_to", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f868 = (OPCODES[0xf868] = new Opcode( + 0xf868, + "unknown_f868", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly unknown_f869 = (OPCODES[0xf869] = new Opcode( + 0xf869, + "unknown_f869", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly item_create_cmode = (OPCODES[0xf86a] = new Opcode( + 0xf86a, + "item_create_cmode", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly unknown_f86b = (OPCODES[0xf86b] = new Opcode( + 0xf86b, + "unknown_f86b", + [{ type: Type.Register }], + false, + [] + )); + static readonly award_item_ok = (OPCODES[0xf86c] = new Opcode( + 0xf86c, + "award_item_ok", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f86d = (OPCODES[0xf86d] = new Opcode( + 0xf86d, + "unknown_f86d", + [], + false, + [] + )); + static readonly unknown_f86e = (OPCODES[0xf86e] = new Opcode( + 0xf86e, + "unknown_f86e", + [], + false, + [] + )); + static readonly ba_set_lives = (OPCODES[0xf86f] = new Opcode( + 0xf86f, + "ba_set_lives", + [], + false, + [{ type: Type.U32 }] + )); + static readonly ba_set_tech_lvl = (OPCODES[0xf870] = new Opcode( + 0xf870, + "ba_set_tech_lvl", + [], + false, + [{ type: Type.U32 }] + )); + static readonly ba_set_lvl = (OPCODES[0xf871] = new Opcode(0xf871, "ba_set_lvl", [], false, [ + { type: Type.U32 }, + ])); + static readonly ba_set_time_limit = (OPCODES[0xf872] = new Opcode( + 0xf872, + "ba_set_time_limit", + [], + false, + [{ type: Type.U32 }] + )); + static readonly boss_is_dead = (OPCODES[0xf873] = new Opcode( + 0xf873, + "boss_is_dead", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f874 = (OPCODES[0xf874] = new Opcode( + 0xf874, + "unknown_f874", + [], + false, + [] + )); + static readonly unknown_f875 = (OPCODES[0xf875] = new Opcode( + 0xf875, + "unknown_f875", + [], + false, + [] + )); + static readonly unknown_f876 = (OPCODES[0xf876] = new Opcode( + 0xf876, + "unknown_f876", + [], + false, + [] + )); + static readonly enable_techs = (OPCODES[0xf877] = new Opcode( + 0xf877, + "enable_techs", + [{ type: Type.Register }], + false, + [] + )); + static readonly disable_techs = (OPCODES[0xf878] = new Opcode( + 0xf878, + "disable_techs", + [{ type: Type.Register }], + false, + [] + )); + static readonly get_gender = (OPCODES[0xf879] = new Opcode( + 0xf879, + "get_gender", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly get_chara_class = (OPCODES[0xf87a] = new Opcode( + 0xf87a, + "get_chara_class", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly take_slot_meseta = (OPCODES[0xf87b] = new Opcode( + 0xf87b, + "take_slot_meseta", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly unknown_f87c = (OPCODES[0xf87c] = new Opcode( + 0xf87c, + "unknown_f87c", + [], + false, + [] + )); + static readonly unknown_f87d = (OPCODES[0xf87d] = new Opcode( + 0xf87d, + "unknown_f87d", + [], + false, + [] + )); + static readonly unknown_f87e = (OPCODES[0xf87e] = new Opcode( + 0xf87e, + "unknown_f87e", + [], + false, + [] + )); + static readonly read_guildcard_flag = (OPCODES[0xf87f] = new Opcode( + 0xf87f, + "read_guildcard_flag", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly unknown_f880 = (OPCODES[0xf880] = new Opcode( + 0xf880, + "unknown_f880", + [{ type: Type.Register }], + false, + [] + )); + static readonly get_pl_name = (OPCODES[0xf881] = new Opcode( + 0xf881, + "get_pl_name", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f882 = (OPCODES[0xf882] = new Opcode( + 0xf882, + "unknown_f882", + [], + false, + [] + )); + static readonly unknown_f883 = (OPCODES[0xf883] = new Opcode( + 0xf883, + "unknown_f883", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly unknown_f884 = (OPCODES[0xf884] = new Opcode( + 0xf884, + "unknown_f884", + [], + false, + [] + )); + static readonly unknown_f885 = (OPCODES[0xf885] = new Opcode( + 0xf885, + "unknown_f885", + [], + false, + [] + )); + static readonly unknown_f886 = (OPCODES[0xf886] = new Opcode( + 0xf886, + "unknown_f886", + [], + false, + [] + )); + static readonly unknown_f887 = (OPCODES[0xf887] = new Opcode( + 0xf887, + "unknown_f887", + [], + false, + [] + )); + static readonly ba_close_msg = (OPCODES[0xf888] = new Opcode( + 0xf888, + "ba_close_msg", + [], + false, + [] + )); + static readonly unknown_f889 = (OPCODES[0xf889] = new Opcode( + 0xf889, + "unknown_f889", + [], + false, + [] + )); + static readonly get_player_status = (OPCODES[0xf88a] = new Opcode( + 0xf88a, + "get_player_status", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly send_mail = (OPCODES[0xf88b] = new Opcode(0xf88b, "send_mail", [], false, [ + { type: Type.Register }, + { type: Type.String }, + ])); + static readonly online_check = (OPCODES[0xf88c] = new Opcode( + 0xf88c, + "online_check", + [{ type: Type.Register }], + false, + [] + )); + static readonly chl_set_timerecord = (OPCODES[0xf88d] = new Opcode( + 0xf88d, + "chl_set_timerecord", + [{ type: Type.Register }], + false, + [] + )); + static readonly chl_get_timerecord = (OPCODES[0xf88e] = new Opcode( + 0xf88e, + "chl_get_timerecord", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f88f = (OPCODES[0xf88f] = new Opcode( + 0xf88f, + "unknown_f88f", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f890 = (OPCODES[0xf890] = new Opcode( + 0xf890, + "unknown_f890", + [], + false, + [] + )); + static readonly load_enemy_data = (OPCODES[0xf891] = new Opcode( + 0xf891, + "load_enemy_data", + [], + false, + [{ type: Type.U32 }] + )); + static readonly get_physical_data = (OPCODES[0xf892] = new Opcode( + 0xf892, + "get_physical_data", + [{ type: Type.U16 }], + false, + [] + )); + static readonly get_attack_data = (OPCODES[0xf893] = new Opcode( + 0xf893, + "get_attack_data", + [{ type: Type.U16 }], + false, + [] + )); + static readonly get_resist_data = (OPCODES[0xf894] = new Opcode( + 0xf894, + "get_resist_data", + [{ type: Type.U16 }], + false, + [] + )); + static readonly get_movement_data = (OPCODES[0xf895] = new Opcode( + 0xf895, + "get_movement_data", + [{ type: Type.U16 }], + false, + [] + )); + static readonly unknown_f896 = (OPCODES[0xf896] = new Opcode( + 0xf896, + "unknown_f896", + [], + false, + [] + )); + static readonly unknown_f897 = (OPCODES[0xf897] = new Opcode( + 0xf897, + "unknown_f897", + [], + false, + [] + )); + static readonly shift_left = (OPCODES[0xf898] = new Opcode( + 0xf898, + "shift_left", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly shift_right = (OPCODES[0xf899] = new Opcode( + 0xf899, + "shift_right", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly get_random = (OPCODES[0xf89a] = new Opcode( + 0xf89a, + "get_random", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly reset_map = (OPCODES[0xf89b] = new Opcode(0xf89b, "reset_map", [], false, [])); + static readonly disp_chl_retry_menu = (OPCODES[0xf89c] = new Opcode( + 0xf89c, + "disp_chl_retry_menu", + [{ type: Type.Register }], + false, + [] + )); + static readonly chl_reverser = (OPCODES[0xf89d] = new Opcode( + 0xf89d, + "chl_reverser", + [], + false, + [] + )); + static readonly unknown_f89e = (OPCODES[0xf89e] = new Opcode( + 0xf89e, + "unknown_f89e", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f89f = (OPCODES[0xf89f] = new Opcode( + 0xf89f, + "unknown_f89f", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f8a0 = (OPCODES[0xf8a0] = new Opcode( + 0xf8a0, + "unknown_f8a0", + [], + false, + [] + )); + static readonly unknown_f8a1 = (OPCODES[0xf8a1] = new Opcode( + 0xf8a1, + "unknown_f8a1", + [], + false, + [] + )); + static readonly unknown_f8a2 = (OPCODES[0xf8a2] = new Opcode( + 0xf8a2, + "unknown_f8a2", + [], + false, + [] + )); + static readonly unknown_f8a3 = (OPCODES[0xf8a3] = new Opcode( + 0xf8a3, + "unknown_f8a3", + [], + false, + [] + )); + static readonly unknown_f8a4 = (OPCODES[0xf8a4] = new Opcode( + 0xf8a4, + "unknown_f8a4", + [], + false, + [] + )); + static readonly unknown_f8a5 = (OPCODES[0xf8a5] = new Opcode( + 0xf8a5, + "unknown_f8a5", + [], + false, + [] + )); + static readonly unknown_f8a6 = (OPCODES[0xf8a6] = new Opcode( + 0xf8a6, + "unknown_f8a6", + [], + false, + [] + )); + static readonly unknown_f8a7 = (OPCODES[0xf8a7] = new Opcode( + 0xf8a7, + "unknown_f8a7", + [], + false, + [] + )); + static readonly unknown_f8a8 = (OPCODES[0xf8a8] = new Opcode( + 0xf8a8, + "unknown_f8a8", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f8a9 = (OPCODES[0xf8a9] = new Opcode( + 0xf8a9, + "unknown_f8a9", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f8aa = (OPCODES[0xf8aa] = new Opcode( + 0xf8aa, + "unknown_f8aa", + [], + false, + [] + )); + static readonly unknown_f8ab = (OPCODES[0xf8ab] = new Opcode( + 0xf8ab, + "unknown_f8ab", + [], + false, + [] + )); + static readonly unknown_f8ac = (OPCODES[0xf8ac] = new Opcode( + 0xf8ac, + "unknown_f8ac", + [], + false, + [] + )); + static readonly get_number_of_player2 = (OPCODES[0xf8ad] = new Opcode( + 0xf8ad, + "get_number_of_player2", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f8ae = (OPCODES[0xf8ae] = new Opcode( + 0xf8ae, + "unknown_f8ae", + [], + false, + [] + )); + static readonly unknown_f8af = (OPCODES[0xf8af] = new Opcode( + 0xf8af, + "unknown_f8af", + [], + false, + [] + )); + static readonly unknown_f8b0 = (OPCODES[0xf8b0] = new Opcode( + 0xf8b0, + "unknown_f8b0", + [], + false, + [] + )); + static readonly unknown_f8b1 = (OPCODES[0xf8b1] = new Opcode( + 0xf8b1, + "unknown_f8b1", + [], + false, + [] + )); + static readonly unknown_f8b2 = (OPCODES[0xf8b2] = new Opcode( + 0xf8b2, + "unknown_f8b2", + [], + false, + [] + )); + static readonly unknown_f8b3 = (OPCODES[0xf8b3] = new Opcode( + 0xf8b3, + "unknown_f8b3", + [], + false, + [] + )); + static readonly unknown_f8b4 = (OPCODES[0xf8b4] = new Opcode( + 0xf8b4, + "unknown_f8b4", + [], + false, + [] + )); + static readonly unknown_f8b5 = (OPCODES[0xf8b5] = new Opcode( + 0xf8b5, + "unknown_f8b5", + [], + false, + [] + )); + static readonly unknown_f8b6 = (OPCODES[0xf8b6] = new Opcode( + 0xf8b6, + "unknown_f8b6", + [], + false, + [] + )); + static readonly unknown_f8b7 = (OPCODES[0xf8b7] = new Opcode( + 0xf8b7, + "unknown_f8b7", + [], + false, + [] + )); + static readonly unknown_f8b8 = (OPCODES[0xf8b8] = new Opcode( + 0xf8b8, + "unknown_f8b8", + [], + false, + [] + )); + static readonly chl_recovery = (OPCODES[0xf8b9] = new Opcode( + 0xf8b9, + "chl_recovery", + [], + false, + [] + )); + static readonly unknown_f8ba = (OPCODES[0xf8ba] = new Opcode( + 0xf8ba, + "unknown_f8ba", + [], + false, + [] + )); + static readonly unknown_f8bb = (OPCODES[0xf8bb] = new Opcode( + 0xf8bb, + "unknown_f8bb", + [], + false, + [] + )); + static readonly set_episode = (OPCODES[0xf8bc] = new Opcode( + 0xf8bc, + "set_episode", + [{ type: Type.U32 }], + false, + [] + )); + static readonly unknown_f8bd = (OPCODES[0xf8bd] = new Opcode( + 0xf8bd, + "unknown_f8bd", + [], + false, + [] + )); + static readonly unknown_f8be = (OPCODES[0xf8be] = new Opcode( + 0xf8be, + "unknown_f8be", + [], + false, + [] + )); + static readonly unknown_f8bf = (OPCODES[0xf8bf] = new Opcode( + 0xf8bf, + "unknown_f8bf", + [], + false, + [] + )); + static readonly file_dl_req = (OPCODES[0xf8c0] = new Opcode(0xf8c0, "file_dl_req", [], false, [ + { type: Type.U32 }, + { type: Type.String }, + ])); + static readonly get_dl_status = (OPCODES[0xf8c1] = new Opcode( + 0xf8c1, + "get_dl_status", + [{ type: Type.Register }], + false, + [] + )); + static readonly gba_unknown4 = (OPCODES[0xf8c2] = new Opcode( + 0xf8c2, + "gba_unknown4", + [], + false, + [] + )); + static readonly get_gba_state = (OPCODES[0xf8c3] = new Opcode( + 0xf8c3, + "get_gba_state", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f8c4 = (OPCODES[0xf8c4] = new Opcode( + 0xf8c4, + "unknown_f8c4", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f8c5 = (OPCODES[0xf8c5] = new Opcode( + 0xf8c5, + "unknown_f8c5", + [{ type: Type.Register }], + false, + [] + )); + static readonly qexit = (OPCODES[0xf8c6] = new Opcode(0xf8c6, "qexit", [], false, [])); + static readonly use_animation = (OPCODES[0xf8c7] = new Opcode( + 0xf8c7, + "use_animation", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly stop_animation = (OPCODES[0xf8c8] = new Opcode( + 0xf8c8, + "stop_animation", + [{ type: Type.Register }], + false, + [] + )); + static readonly run_to_coord = (OPCODES[0xf8c9] = new Opcode( + 0xf8c9, + "run_to_coord", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly set_slot_invincible = (OPCODES[0xf8ca] = new Opcode( + 0xf8ca, + "set_slot_invincible", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly unknown_f8cb = (OPCODES[0xf8cb] = new Opcode( + 0xf8cb, + "unknown_f8cb", + [{ type: Type.Register }], + false, + [] + )); + static readonly set_slot_poison = (OPCODES[0xf8cc] = new Opcode( + 0xf8cc, + "set_slot_poison", + [{ type: Type.Register }], + false, + [] + )); + static readonly set_slot_paralyze = (OPCODES[0xf8cd] = new Opcode( + 0xf8cd, + "set_slot_paralyze", + [{ type: Type.Register }], + false, + [] + )); + static readonly set_slot_shock = (OPCODES[0xf8ce] = new Opcode( + 0xf8ce, + "set_slot_shock", + [{ type: Type.Register }], + false, + [] + )); + static readonly set_slot_freeze = (OPCODES[0xf8cf] = new Opcode( + 0xf8cf, + "set_slot_freeze", + [{ type: Type.Register }], + false, + [] + )); + static readonly set_slot_slow = (OPCODES[0xf8d0] = new Opcode( + 0xf8d0, + "set_slot_slow", + [{ type: Type.Register }], + false, + [] + )); + static readonly set_slot_confuse = (OPCODES[0xf8d1] = new Opcode( + 0xf8d1, + "set_slot_confuse", + [{ type: Type.Register }], + false, + [] + )); + static readonly set_slot_shifta = (OPCODES[0xf8d2] = new Opcode( + 0xf8d2, + "set_slot_shifta", + [{ type: Type.Register }], + false, + [] + )); + static readonly set_slot_deband = (OPCODES[0xf8d3] = new Opcode( + 0xf8d3, + "set_slot_deband", + [{ type: Type.Register }], + false, + [] + )); + static readonly set_slot_jellen = (OPCODES[0xf8d4] = new Opcode( + 0xf8d4, + "set_slot_jellen", + [{ type: Type.Register }], + false, + [] + )); + static readonly set_slot_zalure = (OPCODES[0xf8d5] = new Opcode( + 0xf8d5, + "set_slot_zalure", + [{ type: Type.Register }], + false, + [] + )); + static readonly fleti_fixed_camera = (OPCODES[0xf8d6] = new Opcode( + 0xf8d6, + "fleti_fixed_camera", + [], + false, + [{ type: Type.Register }] + )); + static readonly fleti_locked_camera = (OPCODES[0xf8d7] = new Opcode( + 0xf8d7, + "fleti_locked_camera", + [], + false, + [{ type: Type.U32 }, { type: Type.Register }] + )); + static readonly default_camera_pos2 = (OPCODES[0xf8d8] = new Opcode( + 0xf8d8, + "default_camera_pos2", + [], + false, + [] + )); + static readonly set_motion_blur = (OPCODES[0xf8d9] = new Opcode( + 0xf8d9, + "set_motion_blur", + [], + false, + [] + )); + static readonly set_screen_bw = (OPCODES[0xf8da] = new Opcode( + 0xf8da, + "set_screen_bw", + [], + false, + [] + )); + static readonly unknown_f8db = (OPCODES[0xf8db] = new Opcode( + 0xf8db, + "unknown_f8db", + [], + false, + [ + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.Register }, + { type: Type.U16 }, + ] + )); + static readonly npc_action_string = (OPCODES[0xf8dc] = new Opcode( + 0xf8dc, + "npc_action_string", + [{ type: Type.Register }, { type: Type.Register }, { type: Type.U16 }], + false, + [] + )); + static readonly get_pad_cond = (OPCODES[0xf8dd] = new Opcode( + 0xf8dd, + "get_pad_cond", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly get_button_cond = (OPCODES[0xf8de] = new Opcode( + 0xf8de, + "get_button_cond", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly freeze_enemies = (OPCODES[0xf8df] = new Opcode( + 0xf8df, + "freeze_enemies", + [], + false, + [] + )); + static readonly unfreeze_enemies = (OPCODES[0xf8e0] = new Opcode( + 0xf8e0, + "unfreeze_enemies", + [], + false, + [] + )); + static readonly freeze_everything = (OPCODES[0xf8e1] = new Opcode( + 0xf8e1, + "freeze_everything", + [], + false, + [] + )); + static readonly unfreeze_everything = (OPCODES[0xf8e2] = new Opcode( + 0xf8e2, + "unfreeze_everything", + [], + false, + [] + )); + static readonly restore_hp = (OPCODES[0xf8e3] = new Opcode( + 0xf8e3, + "restore_hp", + [{ type: Type.Register }], + false, + [] + )); + static readonly restore_tp = (OPCODES[0xf8e4] = new Opcode( + 0xf8e4, + "restore_tp", + [{ type: Type.Register }], + false, + [] + )); + static readonly close_chat_bubble = (OPCODES[0xf8e5] = new Opcode( + 0xf8e5, + "close_chat_bubble", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f8e6 = (OPCODES[0xf8e6] = new Opcode( + 0xf8e6, + "unknown_f8e6", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly unknown_f8e7 = (OPCODES[0xf8e7] = new Opcode( + 0xf8e7, + "unknown_f8e7", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly unknown_f8e8 = (OPCODES[0xf8e8] = new Opcode( + 0xf8e8, + "unknown_f8e8", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly unknown_f8e9 = (OPCODES[0xf8e9] = new Opcode( + 0xf8e9, + "unknown_f8e9", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly unknown_f8ea = (OPCODES[0xf8ea] = new Opcode( + 0xf8ea, + "unknown_f8ea", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly unknown_f8eb = (OPCODES[0xf8eb] = new Opcode( + 0xf8eb, + "unknown_f8eb", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly unknown_f8ec = (OPCODES[0xf8ec] = new Opcode( + 0xf8ec, + "unknown_f8ec", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly animation_check = (OPCODES[0xf8ed] = new Opcode( + 0xf8ed, + "animation_check", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly call_image_data = (OPCODES[0xf8ee] = new Opcode( + 0xf8ee, + "call_image_data", + [], + false, + [{ type: Type.U32 }, { type: Type.U16 }] + )); + static readonly unknown_f8ef = (OPCODES[0xf8ef] = new Opcode( + 0xf8ef, + "unknown_f8ef", + [], + false, + [] + )); + static readonly turn_off_bgm_p2 = (OPCODES[0xf8f0] = new Opcode( + 0xf8f0, + "turn_off_bgm_p2", + [], + false, + [] + )); + static readonly turn_on_bgm_p2 = (OPCODES[0xf8f1] = new Opcode( + 0xf8f1, + "turn_on_bgm_p2", + [], + false, + [] + )); + static readonly load_unk_data = (OPCODES[0xf8f2] = new Opcode( + 0xf8f2, + "load_unk_data", + [], + false, + [ + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.Register }, + { type: Type.U16 }, + ] + )); + static readonly particle2 = (OPCODES[0xf8f3] = new Opcode(0xf8f3, "particle2", [], false, [ + { type: Type.Register }, + { type: Type.U32 }, + { type: Type.F32 }, + ])); + static readonly unknown_f8f4 = (OPCODES[0xf8f4] = new Opcode( + 0xf8f4, + "unknown_f8f4", + [], + false, + [] + )); + static readonly unknown_f8f5 = (OPCODES[0xf8f5] = new Opcode( + 0xf8f5, + "unknown_f8f5", + [], + false, + [] + )); + static readonly unknown_f8f6 = (OPCODES[0xf8f6] = new Opcode( + 0xf8f6, + "unknown_f8f6", + [], + false, + [] + )); + static readonly unknown_f8f7 = (OPCODES[0xf8f7] = new Opcode( + 0xf8f7, + "unknown_f8f7", + [], + false, + [] + )); + static readonly unknown_f8f8 = (OPCODES[0xf8f8] = new Opcode( + 0xf8f8, + "unknown_f8f8", + [], + false, + [] + )); + static readonly unknown_f8f9 = (OPCODES[0xf8f9] = new Opcode( + 0xf8f9, + "unknown_f8f9", + [], + false, + [] + )); + static readonly unknown_f8fa = (OPCODES[0xf8fa] = new Opcode( + 0xf8fa, + "unknown_f8fa", + [], + false, + [] + )); + static readonly unknown_f8fb = (OPCODES[0xf8fb] = new Opcode( + 0xf8fb, + "unknown_f8fb", + [], + false, + [] + )); + static readonly unknown_f8fc = (OPCODES[0xf8fc] = new Opcode( + 0xf8fc, + "unknown_f8fc", + [], + false, + [] + )); + static readonly unknown_f8fd = (OPCODES[0xf8fd] = new Opcode( + 0xf8fd, + "unknown_f8fd", + [], + false, + [] + )); + static readonly unknown_f8fe = (OPCODES[0xf8fe] = new Opcode( + 0xf8fe, + "unknown_f8fe", + [], + false, + [] + )); + static readonly unknown_f8ff = (OPCODES[0xf8ff] = new Opcode( + 0xf8ff, + "unknown_f8ff", + [], + false, + [] + )); + static readonly unknown_f900 = (OPCODES[0xf900] = new Opcode( + 0xf900, + "unknown_f900", + [], + false, + [] + )); + static readonly dec2float = (OPCODES[0xf901] = new Opcode( + 0xf901, + "dec2float", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly float2dec = (OPCODES[0xf902] = new Opcode( + 0xf902, + "float2dec", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly flet = (OPCODES[0xf903] = new Opcode( + 0xf903, + "flet", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly fleti = (OPCODES[0xf904] = new Opcode( + 0xf904, + "fleti", + [{ type: Type.Register }, { type: Type.F32 }], + false, + [] + )); + static readonly unknown_f905 = (OPCODES[0xf905] = new Opcode( + 0xf905, + "unknown_f905", + [], + false, + [] + )); + static readonly unknown_f906 = (OPCODES[0xf906] = new Opcode( + 0xf906, + "unknown_f906", + [], + false, + [] + )); + static readonly unknown_f907 = (OPCODES[0xf907] = new Opcode( + 0xf907, + "unknown_f907", + [], + false, + [] + )); + static readonly fadd = (OPCODES[0xf908] = new Opcode( + 0xf908, + "fadd", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly faddi = (OPCODES[0xf909] = new Opcode( + 0xf909, + "faddi", + [{ type: Type.Register }, { type: Type.F32 }], + false, + [] + )); + static readonly fsub = (OPCODES[0xf90a] = new Opcode( + 0xf90a, + "fsub", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly fsubi = (OPCODES[0xf90b] = new Opcode( + 0xf90b, + "fsubi", + [{ type: Type.Register }, { type: Type.F32 }], + false, + [] + )); + static readonly fmul = (OPCODES[0xf90c] = new Opcode( + 0xf90c, + "fmul", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly fmuli = (OPCODES[0xf90d] = new Opcode( + 0xf90d, + "fmuli", + [{ type: Type.Register }, { type: Type.F32 }], + false, + [] + )); + static readonly fdiv = (OPCODES[0xf90e] = new Opcode( + 0xf90e, + "fdiv", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly fdivi = (OPCODES[0xf90f] = new Opcode( + 0xf90f, + "fdivi", + [{ type: Type.Register }, { type: Type.F32 }], + false, + [] + )); + static readonly get_unknown_count = (OPCODES[0xf910] = new Opcode( + 0xf910, + "get_unknown_count", + [], + false, + [{ type: Type.U32 }, { type: Type.Register }] + )); + static readonly get_stackable_item_count = (OPCODES[0xf911] = new Opcode( + 0xf911, + "get_stackable_item_count", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly freeze_and_hide_equip = (OPCODES[0xf912] = new Opcode( + 0xf912, + "freeze_and_hide_equip", + [], + false, + [] + )); + static readonly thaw_and_show_equip = (OPCODES[0xf913] = new Opcode( + 0xf913, + "thaw_and_show_equip", + [], + false, + [] + )); + static readonly set_palettex_callback = (OPCODES[0xf914] = new Opcode( + 0xf914, + "set_palettex_callback", + [], + false, + [{ type: Type.Register }, { type: Type.U16 }] + )); + static readonly activate_palettex = (OPCODES[0xf915] = new Opcode( + 0xf915, + "activate_palettex", + [], + false, + [{ type: Type.Register }] + )); + static readonly enable_palettex = (OPCODES[0xf916] = new Opcode( + 0xf916, + "enable_palettex", + [], + false, + [{ type: Type.Register }] + )); + static readonly restore_palettex = (OPCODES[0xf917] = new Opcode( + 0xf917, + "restore_palettex", + [], + false, + [{ type: Type.U32 }] + )); + static readonly disable_palettex = (OPCODES[0xf918] = new Opcode( + 0xf918, + "disable_palettex", + [], + false, + [{ type: Type.U32 }] + )); + static readonly get_palettex_activated = (OPCODES[0xf919] = new Opcode( + 0xf919, + "get_palettex_activated", + [], + false, + [{ type: Type.U32 }, { type: Type.Register }] + )); + static readonly get_unknown_palettex_status = (OPCODES[0xf91a] = new Opcode( + 0xf91a, + "get_unknown_palettex_status", + [], + false, + [{ type: Type.U32 }, { type: Type.Register }] + )); + static readonly disable_movement2 = (OPCODES[0xf91b] = new Opcode( + 0xf91b, + "disable_movement2", + [], + false, + [{ type: Type.Register }] + )); + static readonly enable_movement2 = (OPCODES[0xf91c] = new Opcode( + 0xf91c, + "enable_movement2", + [], + false, + [{ type: Type.Register }] + )); + static readonly get_time_played = (OPCODES[0xf91d] = new Opcode( + 0xf91d, + "get_time_played", + [{ type: Type.Register }], + false, + [] + )); + static readonly get_guildcard_total = (OPCODES[0xf91e] = new Opcode( + 0xf91e, + "get_guildcard_total", + [{ type: Type.Register }], + false, + [] + )); + static readonly get_slot_meseta = (OPCODES[0xf91f] = new Opcode( + 0xf91f, + "get_slot_meseta", + [{ type: Type.Register }], + false, + [] + )); + static readonly get_player_level = (OPCODES[0xf920] = new Opcode( + 0xf920, + "get_player_level", + [], + false, + [{ type: Type.U32 }, { type: Type.Register }] + )); + static readonly get_section_id = (OPCODES[0xf921] = new Opcode( + 0xf921, + "get_section_id", + [], + false, + [{ type: Type.U32 }, { type: Type.Register }] + )); + static readonly get_player_hp = (OPCODES[0xf922] = new Opcode( + 0xf922, + "get_player_hp", + [], + false, + [{ type: Type.Register }, { type: Type.Register }] + )); + static readonly get_floor_number = (OPCODES[0xf923] = new Opcode( + 0xf923, + "get_floor_number", + [], + false, + [{ type: Type.Register }, { type: Type.Register }] + )); + static readonly get_coord_player_detect = (OPCODES[0xf924] = new Opcode( + 0xf924, + "get_coord_player_detect", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly read_global_flag = (OPCODES[0xf925] = new Opcode( + 0xf925, + "read_global_flag", + [], + false, + [{ type: Type.U8 }, { type: Type.Register }] + )); + static readonly write_global_flag = (OPCODES[0xf926] = new Opcode( + 0xf926, + "write_global_flag", + [], + false, + [{ type: Type.U8 }, { type: Type.Register }] + )); + static readonly unknown_f927 = (OPCODES[0xf927] = new Opcode( + 0xf927, + "unknown_f927", + [{ type: Type.Register }, { type: Type.Register }], + false, + [] + )); + static readonly floor_player_detect = (OPCODES[0xf928] = new Opcode( + 0xf928, + "floor_player_detect", + [{ type: Type.Register }], + false, + [] + )); + static readonly read_disk_file = (OPCODES[0xf929] = new Opcode( + 0xf929, + "read_disk_file", + [], + false, + [{ type: Type.String }] + )); + static readonly open_pack_select = (OPCODES[0xf92a] = new Opcode( + 0xf92a, + "open_pack_select", + [], + false, + [] + )); + static readonly item_select = (OPCODES[0xf92b] = new Opcode( + 0xf92b, + "item_select", + [{ type: Type.Register }], + false, + [] + )); + static readonly get_item_id = (OPCODES[0xf92c] = new Opcode( + 0xf92c, + "get_item_id", + [{ type: Type.Register }], + false, + [] + )); + static readonly color_change = (OPCODES[0xf92d] = new Opcode( + 0xf92d, + "color_change", + [], + false, + [ + { type: Type.Register }, + { type: Type.Register }, + { type: Type.Register }, + { type: Type.Register }, + { type: Type.Register }, + ] + )); + static readonly send_statistic = (OPCODES[0xf92e] = new Opcode( + 0xf92e, + "send_statistic", + [], + false, + [ + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + ] + )); + static readonly unknown_f92f = (OPCODES[0xf92f] = new Opcode( + 0xf92f, + "unknown_f92f", + [], + false, + [{ type: Type.U32 }, { type: Type.U32 }] + )); + static readonly chat_box = (OPCODES[0xf930] = new Opcode(0xf930, "chat_box", [], false, [ + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.String }, + ])); + static readonly chat_bubble = (OPCODES[0xf931] = new Opcode(0xf931, "chat_bubble", [], false, [ + { type: Type.U32 }, + { type: Type.String }, + ])); + static readonly unknown_f932 = (OPCODES[0xf932] = new Opcode( + 0xf932, + "unknown_f932", + [], + false, + [] + )); + static readonly unknown_f933 = (OPCODES[0xf933] = new Opcode( + 0xf933, + "unknown_f933", + [{ type: Type.Register }], + false, + [] + )); + static readonly scroll_text = (OPCODES[0xf934] = new Opcode(0xf934, "scroll_text", [], false, [ + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.F32 }, + { type: Type.Register }, + { type: Type.String }, + ])); + static readonly gba_unknown1 = (OPCODES[0xf935] = new Opcode( + 0xf935, + "gba_unknown1", + [], + false, + [] + )); + static readonly gba_unknown2 = (OPCODES[0xf936] = new Opcode( + 0xf936, + "gba_unknown2", + [], + false, + [] + )); + static readonly gba_unknown3 = (OPCODES[0xf937] = new Opcode( + 0xf937, + "gba_unknown3", + [], + false, + [] + )); + static readonly add_damage_to = (OPCODES[0xf938] = new Opcode( + 0xf938, + "add_damage_to", + [], + false, + [{ type: Type.U32 }, { type: Type.U32 }] + )); + static readonly item_delete3 = (OPCODES[0xf939] = new Opcode( + 0xf939, + "item_delete3", + [], + false, + [{ type: Type.U32 }] + )); + static readonly get_item_info = (OPCODES[0xf93a] = new Opcode( + 0xf93a, + "get_item_info", + [], + false, + [{ type: Type.U32 }, { type: Type.Register }] + )); + static readonly item_packing1 = (OPCODES[0xf93b] = new Opcode( + 0xf93b, + "item_packing1", + [], + false, + [{ type: Type.U32 }] + )); + static readonly item_packing2 = (OPCODES[0xf93c] = new Opcode( + 0xf93c, + "item_packing2", + [], + false, + [{ type: Type.U32 }, { type: Type.U32 }] + )); + static readonly get_lang_setting = (OPCODES[0xf93d] = new Opcode( + 0xf93d, + "get_lang_setting", + [], + false, + [{ type: Type.Register }] + )); + static readonly prepare_statistic = (OPCODES[0xf93e] = new Opcode( + 0xf93e, + "prepare_statistic", + [], + false, + [{ type: Type.U32 }, { type: Type.U16 }, { type: Type.U16 }] + )); + static readonly keyword_detect = (OPCODES[0xf93f] = new Opcode( + 0xf93f, + "keyword_detect", + [], + false, + [] + )); + static readonly keyword = (OPCODES[0xf940] = new Opcode(0xf940, "keyword", [], false, [ + { type: Type.Register }, + { type: Type.U32 }, + { type: Type.String }, + ])); + static readonly get_guildcard_num = (OPCODES[0xf941] = new Opcode( + 0xf941, + "get_guildcard_num", + [], + false, + [{ type: Type.U32 }, { type: Type.Register }] + )); + static readonly unknown_f942 = (OPCODES[0xf942] = new Opcode( + 0xf942, + "unknown_f942", + [], + false, + [] + )); + static readonly unknown_f943 = (OPCODES[0xf943] = new Opcode( + 0xf943, + "unknown_f943", + [], + false, + [] + )); + static readonly get_wrap_status = (OPCODES[0xf944] = new Opcode( + 0xf944, + "get_wrap_status", + [], + false, + [{ type: Type.U32 }, { type: Type.Register }] + )); + static readonly initial_floor = (OPCODES[0xf945] = new Opcode( + 0xf945, + "initial_floor", + [], + false, + [{ type: Type.U32 }] + )); + static readonly sin = (OPCODES[0xf946] = new Opcode(0xf946, "sin", [], false, [ + { type: Type.Register }, + { type: Type.U32 }, + ])); + static readonly cos = (OPCODES[0xf947] = new Opcode(0xf947, "cos", [], false, [ + { type: Type.Register }, + { type: Type.U32 }, + ])); + static readonly unknown_f948 = (OPCODES[0xf948] = new Opcode( + 0xf948, + "unknown_f948", + [], + false, + [] + )); + static readonly unknown_f949 = (OPCODES[0xf949] = new Opcode( + 0xf949, + "unknown_f949", + [], + false, + [] + )); + static readonly boss_is_dead2 = (OPCODES[0xf94a] = new Opcode( + 0xf94a, + "boss_is_dead2", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f94b = (OPCODES[0xf94b] = new Opcode( + 0xf94b, + "unknown_f94b", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f94c = (OPCODES[0xf94c] = new Opcode( + 0xf94c, + "unknown_f94c", + [{ type: Type.Register }], + false, + [] + )); + static readonly is_there_cardbattle = (OPCODES[0xf94d] = new Opcode( + 0xf94d, + "is_there_cardbattle", + [{ type: Type.Register }], + false, + [] + )); + static readonly unknown_f94e = (OPCODES[0xf94e] = new Opcode( + 0xf94e, + "unknown_f94e", + [], + false, + [] + )); + static readonly unknown_f94f = (OPCODES[0xf94f] = new Opcode( + 0xf94f, + "unknown_f94f", + [], + false, + [] + )); + static readonly bb_p2_menu = (OPCODES[0xf950] = new Opcode(0xf950, "bb_p2_menu", [], false, [ + { type: Type.U32 }, + ])); + static readonly bb_map_designate = (OPCODES[0xf951] = new Opcode( + 0xf951, + "bb_map_designate", + [{ type: Type.U8 }, { type: Type.U16 }, { type: Type.U8 }, { type: Type.U8 }], + false, + [] + )); + static readonly bb_get_number_in_pack = (OPCODES[0xf952] = new Opcode( + 0xf952, + "bb_get_number_in_pack", + [{ type: Type.Register }], + false, + [] + )); + static readonly bb_swap_item = (OPCODES[0xf953] = new Opcode( + 0xf953, + "bb_swap_item", + [], + false, + [ + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U32 }, + { type: Type.U16 }, + { type: Type.U16 }, + ] + )); + static readonly bb_check_wrap = (OPCODES[0xf954] = new Opcode( + 0xf954, + "bb_check_wrap", + [], + false, + [{ type: Type.Register }, { type: Type.Register }] + )); + static readonly bb_exchange_pd_item = (OPCODES[0xf955] = new Opcode( + 0xf955, + "bb_exchange_pd_item", + [], + false, + [ + { type: Type.Register }, + { type: Type.Register }, + { type: Type.Register }, + { type: Type.U16 }, + { type: Type.U16 }, + ] + )); + static readonly bb_exchange_pd_srank = (OPCODES[0xf956] = new Opcode( + 0xf956, + "bb_exchange_pd_srank", + [], + false, + [ + { type: Type.Register }, + { type: Type.Register }, + { type: Type.Register }, + { type: Type.Register }, + { type: Type.Register }, + { type: Type.U16 }, + { type: Type.U16 }, + ] + )); + static readonly bb_exchange_pd_special = (OPCODES[0xf957] = new Opcode( + 0xf957, + "bb_exchange_pd_special", + [], + false, + [ + { type: Type.Register }, + { type: Type.Register }, + { type: Type.Register }, + { type: Type.Register }, + { type: Type.Register }, + { type: Type.U32 }, + { type: Type.U16 }, + { type: Type.U16 }, + ] + )); + static readonly bb_exchange_pd_percent = (OPCODES[0xf958] = new Opcode( + 0xf958, + "bb_exchange_pd_percent", + [], + false, + [ + { type: Type.Register }, + { type: Type.Register }, + { type: Type.Register }, + { type: Type.Register }, + { type: Type.Register }, + { type: Type.U32 }, + { type: Type.U16 }, + { type: Type.U16 }, + ] + )); + static readonly unknown_f959 = (OPCODES[0xf959] = new Opcode( + 0xf959, + "unknown_f959", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f95a = (OPCODES[0xf95a] = new Opcode( + 0xf95a, + "unknown_f95a", + [], + false, + [] + )); + static readonly unknown_f95b = (OPCODES[0xf95b] = new Opcode( + 0xf95b, + "unknown_f95b", + [], + false, + [] + )); + static readonly bb_exchange_slt = (OPCODES[0xf95c] = new Opcode( + 0xf95c, + "bb_exchange_slt", + [], + false, + [{ type: Type.U32 }, { type: Type.Register }, { type: Type.U16 }, { type: Type.U16 }] + )); + static readonly bb_exchange_pc = (OPCODES[0xf95d] = new Opcode( + 0xf95d, + "bb_exchange_pc", + [], + false, + [] + )); + static readonly bb_box_create_bp = (OPCODES[0xf95e] = new Opcode( + 0xf95e, + "bb_box_create_bp", + [], + false, + [{ type: Type.U32 }, { type: Type.F32 }, { type: Type.F32 }] + )); + static readonly bb_exchange_pt = (OPCODES[0xf95f] = new Opcode( + 0xf95f, + "bb_exchange_pt", + [], + false, + [ + { type: Type.Register }, + { type: Type.Register }, + { type: Type.U32 }, + { type: Type.U16 }, + { type: Type.U16 }, + ] + )); + static readonly unknown_f960 = (OPCODES[0xf960] = new Opcode( + 0xf960, + "unknown_f960", + [], + false, + [{ type: Type.U32 }] + )); + static readonly unknown_f961 = (OPCODES[0xf961] = new Opcode( + 0xf961, + "unknown_f961", + [], + false, + [] + )); + static readonly unknown_f962 = (OPCODES[0xf962] = new Opcode( + 0xf962, + "unknown_f962", + [], + false, + [] + )); + static readonly unknown_f963 = (OPCODES[0xf963] = new Opcode( + 0xf963, + "unknown_f963", + [], + false, + [] + )); + static readonly unknown_f964 = (OPCODES[0xf964] = new Opcode( + 0xf964, + "unknown_f964", + [], + false, + [] + )); + static readonly unknown_f965 = (OPCODES[0xf965] = new Opcode( + 0xf965, + "unknown_f965", + [], + false, + [] + )); + static readonly unknown_f966 = (OPCODES[0xf966] = new Opcode( + 0xf966, + "unknown_f966", + [], + false, + [] + )); + static readonly unknown_f967 = (OPCODES[0xf967] = new Opcode( + 0xf967, + "unknown_f967", + [], + false, + [] + )); + static readonly unknown_f968 = (OPCODES[0xf968] = new Opcode( + 0xf968, + "unknown_f968", + [], + false, + [] + )); + static readonly unknown_f969 = (OPCODES[0xf969] = new Opcode( + 0xf969, + "unknown_f969", + [], + false, + [] + )); + static readonly unknown_f96a = (OPCODES[0xf96a] = new Opcode( + 0xf96a, + "unknown_f96a", + [], + false, + [] + )); + static readonly unknown_f96b = (OPCODES[0xf96b] = new Opcode( + 0xf96b, + "unknown_f96b", + [], + false, + [] + )); + static readonly unknown_f96c = (OPCODES[0xf96c] = new Opcode( + 0xf96c, + "unknown_f96c", + [], + false, + [] + )); + static readonly unknown_f96d = (OPCODES[0xf96d] = new Opcode( + 0xf96d, + "unknown_f96d", + [], + false, + [] + )); + static readonly unknown_f96e = (OPCODES[0xf96e] = new Opcode( + 0xf96e, + "unknown_f96e", + [], + false, + [] + )); + static readonly unknown_f96f = (OPCODES[0xf96f] = new Opcode( + 0xf96f, + "unknown_f96f", + [], + false, + [] + )); + static readonly unknown_f970 = (OPCODES[0xf970] = new Opcode( + 0xf970, + "unknown_f970", + [], + false, + [] + )); + static readonly unknown_f971 = (OPCODES[0xf971] = new Opcode( + 0xf971, + "unknown_f971", + [], + false, + [] + )); + static readonly unknown_f972 = (OPCODES[0xf972] = new Opcode( + 0xf972, + "unknown_f972", + [], + false, + [] + )); + static readonly unknown_f973 = (OPCODES[0xf973] = new Opcode( + 0xf973, + "unknown_f973", + [], + false, + [] + )); + static readonly unknown_f974 = (OPCODES[0xf974] = new Opcode( + 0xf974, + "unknown_f974", + [], + false, + [] + )); + static readonly unknown_f975 = (OPCODES[0xf975] = new Opcode( + 0xf975, + "unknown_f975", + [], + false, + [] + )); + static readonly unknown_f976 = (OPCODES[0xf976] = new Opcode( + 0xf976, + "unknown_f976", + [], + false, + [] + )); + static readonly unknown_f977 = (OPCODES[0xf977] = new Opcode( + 0xf977, + "unknown_f977", + [], + false, + [] + )); + static readonly unknown_f978 = (OPCODES[0xf978] = new Opcode( + 0xf978, + "unknown_f978", + [], + false, + [] + )); + static readonly unknown_f979 = (OPCODES[0xf979] = new Opcode( + 0xf979, + "unknown_f979", + [], + false, + [] + )); + static readonly unknown_f97a = (OPCODES[0xf97a] = new Opcode( + 0xf97a, + "unknown_f97a", + [], + false, + [] + )); + static readonly unknown_f97b = (OPCODES[0xf97b] = new Opcode( + 0xf97b, + "unknown_f97b", + [], + false, + [] + )); + static readonly unknown_f97c = (OPCODES[0xf97c] = new Opcode( + 0xf97c, + "unknown_f97c", + [], + false, + [] + )); + static readonly unknown_f97d = (OPCODES[0xf97d] = new Opcode( + 0xf97d, + "unknown_f97d", + [], + false, + [] + )); + static readonly unknown_f97e = (OPCODES[0xf97e] = new Opcode( + 0xf97e, + "unknown_f97e", + [], + false, + [] + )); + static readonly unknown_f97f = (OPCODES[0xf97f] = new Opcode( + 0xf97f, + "unknown_f97f", + [], + false, + [] + )); + static readonly unknown_f980 = (OPCODES[0xf980] = new Opcode( + 0xf980, + "unknown_f980", + [], + false, + [] + )); + static readonly unknown_f981 = (OPCODES[0xf981] = new Opcode( + 0xf981, + "unknown_f981", + [], + false, + [] + )); + static readonly unknown_f982 = (OPCODES[0xf982] = new Opcode( + 0xf982, + "unknown_f982", + [], + false, + [] + )); + static readonly unknown_f983 = (OPCODES[0xf983] = new Opcode( + 0xf983, + "unknown_f983", + [], + false, + [] + )); + static readonly unknown_f984 = (OPCODES[0xf984] = new Opcode( + 0xf984, + "unknown_f984", + [], + false, + [] + )); + static readonly unknown_f985 = (OPCODES[0xf985] = new Opcode( + 0xf985, + "unknown_f985", + [], + false, + [] + )); + static readonly unknown_f986 = (OPCODES[0xf986] = new Opcode( + 0xf986, + "unknown_f986", + [], + false, + [] + )); + static readonly unknown_f987 = (OPCODES[0xf987] = new Opcode( + 0xf987, + "unknown_f987", + [], + false, + [] + )); + static readonly unknown_f988 = (OPCODES[0xf988] = new Opcode( + 0xf988, + "unknown_f988", + [], + false, + [] + )); + static readonly unknown_f989 = (OPCODES[0xf989] = new Opcode( + 0xf989, + "unknown_f989", + [], + false, + [] + )); + static readonly unknown_f98a = (OPCODES[0xf98a] = new Opcode( + 0xf98a, + "unknown_f98a", + [], + false, + [] + )); + static readonly unknown_f98b = (OPCODES[0xf98b] = new Opcode( + 0xf98b, + "unknown_f98b", + [], + false, + [] + )); + static readonly unknown_f98c = (OPCODES[0xf98c] = new Opcode( + 0xf98c, + "unknown_f98c", + [], + false, + [] + )); + static readonly unknown_f98d = (OPCODES[0xf98d] = new Opcode( + 0xf98d, + "unknown_f98d", + [], + false, + [] + )); + static readonly unknown_f98e = (OPCODES[0xf98e] = new Opcode( + 0xf98e, + "unknown_f98e", + [], + false, + [] + )); + static readonly unknown_f98f = (OPCODES[0xf98f] = new Opcode( + 0xf98f, + "unknown_f98f", + [], + false, + [] + )); + static readonly unknown_f990 = (OPCODES[0xf990] = new Opcode( + 0xf990, + "unknown_f990", + [], + false, + [] + )); + static readonly unknown_f991 = (OPCODES[0xf991] = new Opcode( + 0xf991, + "unknown_f991", + [], + false, + [] + )); + static readonly unknown_f992 = (OPCODES[0xf992] = new Opcode( + 0xf992, + "unknown_f992", + [], + false, + [] + )); + static readonly unknown_f993 = (OPCODES[0xf993] = new Opcode( + 0xf993, + "unknown_f993", + [], + false, + [] + )); + static readonly unknown_f994 = (OPCODES[0xf994] = new Opcode( + 0xf994, + "unknown_f994", + [], + false, + [] + )); + static readonly unknown_f995 = (OPCODES[0xf995] = new Opcode( + 0xf995, + "unknown_f995", + [], + false, + [] + )); + static readonly unknown_f996 = (OPCODES[0xf996] = new Opcode( + 0xf996, + "unknown_f996", + [], + false, + [] + )); + static readonly unknown_f997 = (OPCODES[0xf997] = new Opcode( + 0xf997, + "unknown_f997", + [], + false, + [] + )); + static readonly unknown_f998 = (OPCODES[0xf998] = new Opcode( + 0xf998, + "unknown_f998", + [], + false, + [] + )); + static readonly unknown_f999 = (OPCODES[0xf999] = new Opcode( + 0xf999, + "unknown_f999", + [], + false, + [] + )); + static readonly unknown_f99a = (OPCODES[0xf99a] = new Opcode( + 0xf99a, + "unknown_f99a", + [], + false, + [] + )); + static readonly unknown_f99b = (OPCODES[0xf99b] = new Opcode( + 0xf99b, + "unknown_f99b", + [], + false, + [] + )); + static readonly unknown_f99c = (OPCODES[0xf99c] = new Opcode( + 0xf99c, + "unknown_f99c", + [], + false, + [] + )); + static readonly unknown_f99d = (OPCODES[0xf99d] = new Opcode( + 0xf99d, + "unknown_f99d", + [], + false, + [] + )); + static readonly unknown_f99e = (OPCODES[0xf99e] = new Opcode( + 0xf99e, + "unknown_f99e", + [], + false, + [] + )); + static readonly unknown_f99f = (OPCODES[0xf99f] = new Opcode( + 0xf99f, + "unknown_f99f", + [], + false, + [] + )); + static readonly unknown_f9a0 = (OPCODES[0xf9a0] = new Opcode( + 0xf9a0, + "unknown_f9a0", + [], + false, + [] + )); + static readonly unknown_f9a1 = (OPCODES[0xf9a1] = new Opcode( + 0xf9a1, + "unknown_f9a1", + [], + false, + [] + )); + static readonly unknown_f9a2 = (OPCODES[0xf9a2] = new Opcode( + 0xf9a2, + "unknown_f9a2", + [], + false, + [] + )); + static readonly unknown_f9a3 = (OPCODES[0xf9a3] = new Opcode( + 0xf9a3, + "unknown_f9a3", + [], + false, + [] + )); + static readonly unknown_f9a4 = (OPCODES[0xf9a4] = new Opcode( + 0xf9a4, + "unknown_f9a4", + [], + false, + [] + )); + static readonly unknown_f9a5 = (OPCODES[0xf9a5] = new Opcode( + 0xf9a5, + "unknown_f9a5", + [], + false, + [] + )); + static readonly unknown_f9a6 = (OPCODES[0xf9a6] = new Opcode( + 0xf9a6, + "unknown_f9a6", + [], + false, + [] + )); + static readonly unknown_f9a7 = (OPCODES[0xf9a7] = new Opcode( + 0xf9a7, + "unknown_f9a7", + [], + false, + [] + )); + static readonly unknown_f9a8 = (OPCODES[0xf9a8] = new Opcode( + 0xf9a8, + "unknown_f9a8", + [], + false, + [] + )); + static readonly unknown_f9a9 = (OPCODES[0xf9a9] = new Opcode( + 0xf9a9, + "unknown_f9a9", + [], + false, + [] + )); + static readonly unknown_f9aa = (OPCODES[0xf9aa] = new Opcode( + 0xf9aa, + "unknown_f9aa", + [], + false, + [] + )); + static readonly unknown_f9ab = (OPCODES[0xf9ab] = new Opcode( + 0xf9ab, + "unknown_f9ab", + [], + false, + [] + )); + static readonly unknown_f9ac = (OPCODES[0xf9ac] = new Opcode( + 0xf9ac, + "unknown_f9ac", + [], + false, + [] + )); + static readonly unknown_f9ad = (OPCODES[0xf9ad] = new Opcode( + 0xf9ad, + "unknown_f9ad", + [], + false, + [] + )); + static readonly unknown_f9ae = (OPCODES[0xf9ae] = new Opcode( + 0xf9ae, + "unknown_f9ae", + [], + false, + [] + )); + static readonly unknown_f9af = (OPCODES[0xf9af] = new Opcode( + 0xf9af, + "unknown_f9af", + [], + false, + [] + )); + static readonly unknown_f9b0 = (OPCODES[0xf9b0] = new Opcode( + 0xf9b0, + "unknown_f9b0", + [], + false, + [] + )); + static readonly unknown_f9b1 = (OPCODES[0xf9b1] = new Opcode( + 0xf9b1, + "unknown_f9b1", + [], + false, + [] + )); + static readonly unknown_f9b2 = (OPCODES[0xf9b2] = new Opcode( + 0xf9b2, + "unknown_f9b2", + [], + false, + [] + )); + static readonly unknown_f9b3 = (OPCODES[0xf9b3] = new Opcode( + 0xf9b3, + "unknown_f9b3", + [], + false, + [] + )); + static readonly unknown_f9b4 = (OPCODES[0xf9b4] = new Opcode( + 0xf9b4, + "unknown_f9b4", + [], + false, + [] + )); + static readonly unknown_f9b5 = (OPCODES[0xf9b5] = new Opcode( + 0xf9b5, + "unknown_f9b5", + [], + false, + [] + )); + static readonly unknown_f9b6 = (OPCODES[0xf9b6] = new Opcode( + 0xf9b6, + "unknown_f9b6", + [], + false, + [] + )); + static readonly unknown_f9b7 = (OPCODES[0xf9b7] = new Opcode( + 0xf9b7, + "unknown_f9b7", + [], + false, + [] + )); + static readonly unknown_f9b8 = (OPCODES[0xf9b8] = new Opcode( + 0xf9b8, + "unknown_f9b8", + [], + false, + [] + )); + static readonly unknown_f9b9 = (OPCODES[0xf9b9] = new Opcode( + 0xf9b9, + "unknown_f9b9", + [], + false, + [] + )); + static readonly unknown_f9ba = (OPCODES[0xf9ba] = new Opcode( + 0xf9ba, + "unknown_f9ba", + [], + false, + [] + )); + static readonly unknown_f9bb = (OPCODES[0xf9bb] = new Opcode( + 0xf9bb, + "unknown_f9bb", + [], + false, + [] + )); + static readonly unknown_f9bc = (OPCODES[0xf9bc] = new Opcode( + 0xf9bc, + "unknown_f9bc", + [], + false, + [] + )); + static readonly unknown_f9bd = (OPCODES[0xf9bd] = new Opcode( + 0xf9bd, + "unknown_f9bd", + [], + false, + [] + )); + static readonly unknown_f9be = (OPCODES[0xf9be] = new Opcode( + 0xf9be, + "unknown_f9be", + [], + false, + [] + )); + static readonly unknown_f9bf = (OPCODES[0xf9bf] = new Opcode( + 0xf9bf, + "unknown_f9bf", + [], + false, + [] + )); + static readonly unknown_f9c0 = (OPCODES[0xf9c0] = new Opcode( + 0xf9c0, + "unknown_f9c0", + [], + false, + [] + )); + static readonly unknown_f9c1 = (OPCODES[0xf9c1] = new Opcode( + 0xf9c1, + "unknown_f9c1", + [], + false, + [] + )); + static readonly unknown_f9c2 = (OPCODES[0xf9c2] = new Opcode( + 0xf9c2, + "unknown_f9c2", + [], + false, + [] + )); + static readonly unknown_f9c3 = (OPCODES[0xf9c3] = new Opcode( + 0xf9c3, + "unknown_f9c3", + [], + false, + [] + )); + static readonly unknown_f9c4 = (OPCODES[0xf9c4] = new Opcode( + 0xf9c4, + "unknown_f9c4", + [], + false, + [] + )); + static readonly unknown_f9c5 = (OPCODES[0xf9c5] = new Opcode( + 0xf9c5, + "unknown_f9c5", + [], + false, + [] + )); + static readonly unknown_f9c6 = (OPCODES[0xf9c6] = new Opcode( + 0xf9c6, + "unknown_f9c6", + [], + false, + [] + )); + static readonly unknown_f9c7 = (OPCODES[0xf9c7] = new Opcode( + 0xf9c7, + "unknown_f9c7", + [], + false, + [] + )); + static readonly unknown_f9c8 = (OPCODES[0xf9c8] = new Opcode( + 0xf9c8, + "unknown_f9c8", + [], + false, + [] + )); + static readonly unknown_f9c9 = (OPCODES[0xf9c9] = new Opcode( + 0xf9c9, + "unknown_f9c9", + [], + false, + [] + )); + static readonly unknown_f9ca = (OPCODES[0xf9ca] = new Opcode( + 0xf9ca, + "unknown_f9ca", + [], + false, + [] + )); + static readonly unknown_f9cb = (OPCODES[0xf9cb] = new Opcode( + 0xf9cb, + "unknown_f9cb", + [], + false, + [] + )); + static readonly unknown_f9cc = (OPCODES[0xf9cc] = new Opcode( + 0xf9cc, + "unknown_f9cc", + [], + false, + [] + )); + static readonly unknown_f9cd = (OPCODES[0xf9cd] = new Opcode( + 0xf9cd, + "unknown_f9cd", + [], + false, + [] + )); + static readonly unknown_f9ce = (OPCODES[0xf9ce] = new Opcode( + 0xf9ce, + "unknown_f9ce", + [], + false, + [] + )); + static readonly unknown_f9cf = (OPCODES[0xf9cf] = new Opcode( + 0xf9cf, + "unknown_f9cf", + [], + false, + [] + )); + static readonly unknown_f9d0 = (OPCODES[0xf9d0] = new Opcode( + 0xf9d0, + "unknown_f9d0", + [], + false, + [] + )); + static readonly unknown_f9d1 = (OPCODES[0xf9d1] = new Opcode( + 0xf9d1, + "unknown_f9d1", + [], + false, + [] + )); + static readonly unknown_f9d2 = (OPCODES[0xf9d2] = new Opcode( + 0xf9d2, + "unknown_f9d2", + [], + false, + [] + )); + static readonly unknown_f9d3 = (OPCODES[0xf9d3] = new Opcode( + 0xf9d3, + "unknown_f9d3", + [], + false, + [] + )); + static readonly unknown_f9d4 = (OPCODES[0xf9d4] = new Opcode( + 0xf9d4, + "unknown_f9d4", + [], + false, + [] + )); + static readonly unknown_f9d5 = (OPCODES[0xf9d5] = new Opcode( + 0xf9d5, + "unknown_f9d5", + [], + false, + [] + )); + static readonly unknown_f9d6 = (OPCODES[0xf9d6] = new Opcode( + 0xf9d6, + "unknown_f9d6", + [], + false, + [] + )); + static readonly unknown_f9d7 = (OPCODES[0xf9d7] = new Opcode( + 0xf9d7, + "unknown_f9d7", + [], + false, + [] + )); + static readonly unknown_f9d8 = (OPCODES[0xf9d8] = new Opcode( + 0xf9d8, + "unknown_f9d8", + [], + false, + [] + )); + static readonly unknown_f9d9 = (OPCODES[0xf9d9] = new Opcode( + 0xf9d9, + "unknown_f9d9", + [], + false, + [] + )); + static readonly unknown_f9da = (OPCODES[0xf9da] = new Opcode( + 0xf9da, + "unknown_f9da", + [], + false, + [] + )); + static readonly unknown_f9db = (OPCODES[0xf9db] = new Opcode( + 0xf9db, + "unknown_f9db", + [], + false, + [] + )); + static readonly unknown_f9dc = (OPCODES[0xf9dc] = new Opcode( + 0xf9dc, + "unknown_f9dc", + [], + false, + [] + )); + static readonly unknown_f9dd = (OPCODES[0xf9dd] = new Opcode( + 0xf9dd, + "unknown_f9dd", + [], + false, + [] + )); + static readonly unknown_f9de = (OPCODES[0xf9de] = new Opcode( + 0xf9de, + "unknown_f9de", + [], + false, + [] + )); + static readonly unknown_f9df = (OPCODES[0xf9df] = new Opcode( + 0xf9df, + "unknown_f9df", + [], + false, + [] + )); + static readonly unknown_f9e0 = (OPCODES[0xf9e0] = new Opcode( + 0xf9e0, + "unknown_f9e0", + [], + false, + [] + )); + static readonly unknown_f9e1 = (OPCODES[0xf9e1] = new Opcode( + 0xf9e1, + "unknown_f9e1", + [], + false, + [] + )); + static readonly unknown_f9e2 = (OPCODES[0xf9e2] = new Opcode( + 0xf9e2, + "unknown_f9e2", + [], + false, + [] + )); + static readonly unknown_f9e3 = (OPCODES[0xf9e3] = new Opcode( + 0xf9e3, + "unknown_f9e3", + [], + false, + [] + )); + static readonly unknown_f9e4 = (OPCODES[0xf9e4] = new Opcode( + 0xf9e4, + "unknown_f9e4", + [], + false, + [] + )); + static readonly unknown_f9e5 = (OPCODES[0xf9e5] = new Opcode( + 0xf9e5, + "unknown_f9e5", + [], + false, + [] + )); + static readonly unknown_f9e6 = (OPCODES[0xf9e6] = new Opcode( + 0xf9e6, + "unknown_f9e6", + [], + false, + [] + )); + static readonly unknown_f9e7 = (OPCODES[0xf9e7] = new Opcode( + 0xf9e7, + "unknown_f9e7", + [], + false, + [] + )); + static readonly unknown_f9e8 = (OPCODES[0xf9e8] = new Opcode( + 0xf9e8, + "unknown_f9e8", + [], + false, + [] + )); + static readonly unknown_f9e9 = (OPCODES[0xf9e9] = new Opcode( + 0xf9e9, + "unknown_f9e9", + [], + false, + [] + )); + static readonly unknown_f9ea = (OPCODES[0xf9ea] = new Opcode( + 0xf9ea, + "unknown_f9ea", + [], + false, + [] + )); + static readonly unknown_f9eb = (OPCODES[0xf9eb] = new Opcode( + 0xf9eb, + "unknown_f9eb", + [], + false, + [] + )); + static readonly unknown_f9ec = (OPCODES[0xf9ec] = new Opcode( + 0xf9ec, + "unknown_f9ec", + [], + false, + [] + )); + static readonly unknown_f9ed = (OPCODES[0xf9ed] = new Opcode( + 0xf9ed, + "unknown_f9ed", + [], + false, + [] + )); + static readonly unknown_f9ee = (OPCODES[0xf9ee] = new Opcode( + 0xf9ee, + "unknown_f9ee", + [], + false, + [] + )); + static readonly unknown_f9ef = (OPCODES[0xf9ef] = new Opcode( + 0xf9ef, + "unknown_f9ef", + [], + false, + [] + )); + static readonly unknown_f9f0 = (OPCODES[0xf9f0] = new Opcode( + 0xf9f0, + "unknown_f9f0", + [], + false, + [] + )); + static readonly unknown_f9f1 = (OPCODES[0xf9f1] = new Opcode( + 0xf9f1, + "unknown_f9f1", + [], + false, + [] + )); + static readonly unknown_f9f2 = (OPCODES[0xf9f2] = new Opcode( + 0xf9f2, + "unknown_f9f2", + [], + false, + [] + )); + static readonly unknown_f9f3 = (OPCODES[0xf9f3] = new Opcode( + 0xf9f3, + "unknown_f9f3", + [], + false, + [] + )); + static readonly unknown_f9f4 = (OPCODES[0xf9f4] = new Opcode( + 0xf9f4, + "unknown_f9f4", + [], + false, + [] + )); + static readonly unknown_f9f5 = (OPCODES[0xf9f5] = new Opcode( + 0xf9f5, + "unknown_f9f5", + [], + false, + [] + )); + static readonly unknown_f9f6 = (OPCODES[0xf9f6] = new Opcode( + 0xf9f6, + "unknown_f9f6", + [], + false, + [] + )); + static readonly unknown_f9f7 = (OPCODES[0xf9f7] = new Opcode( + 0xf9f7, + "unknown_f9f7", + [], + false, + [] + )); + static readonly unknown_f9f8 = (OPCODES[0xf9f8] = new Opcode( + 0xf9f8, + "unknown_f9f8", + [], + false, + [] + )); + static readonly unknown_f9f9 = (OPCODES[0xf9f9] = new Opcode( + 0xf9f9, + "unknown_f9f9", + [], + false, + [] + )); + static readonly unknown_f9fa = (OPCODES[0xf9fa] = new Opcode( + 0xf9fa, + "unknown_f9fa", + [], + false, + [] + )); + static readonly unknown_f9fb = (OPCODES[0xf9fb] = new Opcode( + 0xf9fb, + "unknown_f9fb", + [], + false, + [] + )); + static readonly unknown_f9fc = (OPCODES[0xf9fc] = new Opcode( + 0xf9fc, + "unknown_f9fc", + [], + false, + [] + )); + static readonly unknown_f9fd = (OPCODES[0xf9fd] = new Opcode( + 0xf9fd, + "unknown_f9fd", + [], + false, + [] + )); + static readonly unknown_f9fe = (OPCODES[0xf9fe] = new Opcode( + 0xf9fe, + "unknown_f9fe", + [], + false, + [] + )); + static readonly unknown_f9ff = (OPCODES[0xf9ff] = new Opcode( + 0xf9ff, + "unknown_f9ff", + [], + false, + [] + )); +} diff --git a/src/data_formats/parsing/quest/qst.ts b/src/data_formats/parsing/quest/qst.ts index 5eb12271..937cb39f 100644 --- a/src/data_formats/parsing/quest/qst.ts +++ b/src/data_formats/parsing/quest/qst.ts @@ -97,8 +97,8 @@ export function write_qst(params: WriteQstParams): ArrayBuffer { write_file_headers(cursor, files); write_file_chunks(cursor, files); - if (cursor.size !== total_size) { - throw new Error(`Expected a final file size of ${total_size}, but got ${cursor.size}.`); + if (cursor.position !== total_size) { + throw new Error(`Expected a final file size of ${total_size}, but got ${cursor.position}.`); } return buffer; @@ -251,7 +251,7 @@ function parse_files(cursor: Cursor, expected_sizes: Map): QstCo function write_file_headers(cursor: WritableCursor, files: QstContainedFileParam[]): void { for (const file of files) { if (file.name.length > 16) { - throw Error(`File ${file.name} has a name longer than 16 characters.`); + throw new Error(`File ${file.name} has a name longer than 16 characters.`); } cursor.write_u16(88); // Header size. @@ -291,24 +291,39 @@ function write_file_headers(cursor: WritableCursor, files: QstContainedFileParam function write_file_chunks(cursor: WritableCursor, files: QstContainedFileParam[]): void { // Files are interleaved in 1056 byte chunks. // Each chunk has a 24 byte header, 1024 byte data segment and an 8 byte trailer. - const chunks = files.map(file => ({ + const files_to_chunk = files.map(file => ({ no: 0, data: new ArrayBufferCursor(file.data, Endianness.Little), name: file.name, })); + let done = 0; - while (chunks.length) { - let i = 0; - - while (i < chunks.length) { - if (!write_file_chunk(cursor, chunks[i].data, chunks[i].no++, chunks[i].name)) { - // Remove if there are no more chunks to write. - chunks.splice(i, 1); - } else { - ++i; + while (done < files_to_chunk.length) { + for (const file_to_chunk of files_to_chunk) { + if (file_to_chunk.data.bytes_left) { + if ( + !write_file_chunk( + cursor, + file_to_chunk.data, + file_to_chunk.no++, + file_to_chunk.name + ) + ) { + done++; + } } } } + + for (const file_to_chunk of files_to_chunk) { + const expected_chunks = Math.ceil(file_to_chunk.data.size / 1024); + + if (file_to_chunk.no !== expected_chunks) { + throw new Error( + `Expected to write ${expected_chunks} chunks for file "${file_to_chunk.name}" but ${file_to_chunk.no} where written.` + ); + } + } } /** diff --git a/src/data_formats/parsing/unitxt.ts b/src/data_formats/parsing/unitxt.ts index 244360c5..71909cf3 100644 --- a/src/data_formats/parsing/unitxt.ts +++ b/src/data_formats/parsing/unitxt.ts @@ -1,11 +1,11 @@ -import { decompress } from "../compression/prs"; +import { prs_decompress } from "../compression/prs/decompress"; import { Cursor } from "../cursor/Cursor"; export type Unitxt = string[][]; export function parse_unitxt(buf: Cursor, compressed: boolean = true): Unitxt { if (compressed) { - buf = decompress(buf); + buf = prs_decompress(buf); } const category_count = buf.u32(); diff --git a/src/domain/index.ts b/src/domain/index.ts index 8e75ed7e..0d1731b5 100644 --- a/src/domain/index.ts +++ b/src/domain/index.ts @@ -95,7 +95,6 @@ export class Quest { dat_unknowns: DatUnknown[]; labels: Map; instructions: Instruction[]; - object_code: ArrayBuffer; bin_unknown: ArrayBuffer; constructor( @@ -111,7 +110,6 @@ export class Quest { dat_unknowns: DatUnknown[], labels: Map, instructions: Instruction[], - object_code: ArrayBuffer, bin_unknown: ArrayBuffer ) { if (!Number.isInteger(id) || id < 0) @@ -124,7 +122,6 @@ export class Quest { if (!dat_unknowns) throw new Error("dat_unknowns is required."); if (!labels) throw new Error("labels is required."); if (!instructions) throw new Error("instructions is required."); - if (!object_code) throw new Error("object_code is required."); if (!bin_unknown) throw new Error("bin_unknown is required."); this.id = id; @@ -139,7 +136,6 @@ export class Quest { this.dat_unknowns = dat_unknowns; this.labels = labels; this.instructions = instructions; - this.object_code = object_code; this.bin_unknown = bin_unknown; } } diff --git a/src/setupTests.js b/src/setupTests.js new file mode 100644 index 00000000..bd5cf780 --- /dev/null +++ b/src/setupTests.js @@ -0,0 +1,5 @@ +import Logger from "js-logger"; + +Logger.useDefaults({ + defaultLevel: Logger[process.env["REACT_APP_LOG_LEVEL"] || "OFF"], +}); diff --git a/src/stores/quest_creation.ts b/src/stores/quest_creation.ts index 4bc39cca..5395b557 100644 --- a/src/stores/quest_creation.ts +++ b/src/stores/quest_creation.ts @@ -1,6 +1,9 @@ +import { Instruction, Opcode } from "../data_formats/parsing/quest/bin"; import { Vec3 } from "../data_formats/vector"; import { Episode, NpcType, ObjectType, Quest, QuestNpc, QuestObject } from "../domain"; import { area_store } from "./AreaStore"; +import { WritableArrayBufferCursor } from "../data_formats/cursor/WritableArrayBufferCursor"; +import { Endianness } from "../data_formats"; export function create_new_quest(episode: Episode): Quest { if (episode === Episode.II) throw new Error("Episode II not yet supported."); @@ -16,13 +19,45 @@ export function create_new_quest(episode: Episode): Quest { create_default_objects(), create_default_npcs(), [], - new Map(), - [], - new ArrayBuffer(0), - new ArrayBuffer(0) + new Map([[0, 0], [1, 6]]), + [ + new Instruction(Opcode.set_episode, [{ value: 0, size: 4 }]), + new Instruction(Opcode.arg_pushl, [{ value: 0, size: 4 }]), + new Instruction(Opcode.arg_pushw, [{ value: 1, size: 2 }]), + new Instruction(Opcode.set_floor_handler, []), + new Instruction(Opcode.bb_map_designate, [ + { value: 0, size: 1 }, + { value: 0, size: 2 }, + { value: 0, size: 1 }, + { value: 0, size: 1 }, + ]), + new Instruction(Opcode.ret, []), + new Instruction(Opcode.ret, []), + ], + create_bin_unknown() ); } +function create_bin_unknown(): ArrayBuffer { + const buffer = new ArrayBuffer(3732); + const cursor = new WritableArrayBufferCursor(buffer, Endianness.Little); + cursor.write_u32(0); + + for (let i = 0; i < 16; i++) { + cursor.write_u8(0xff); + } + + for (let i = 0; i < 16; i++) { + cursor.write_u8(0); + } + + for (let i = 0; i < 112; i++) { + cursor.write_u8(0xff); + } + + return buffer; +} + function create_default_objects(): QuestObject[] { return [ new QuestObject( diff --git a/src/ui/quest_editor/ScriptEditorComponent.tsx b/src/ui/quest_editor/ScriptEditorComponent.tsx index 34571c53..581ad08c 100644 --- a/src/ui/quest_editor/ScriptEditorComponent.tsx +++ b/src/ui/quest_editor/ScriptEditorComponent.tsx @@ -55,7 +55,7 @@ const ASM_SYNTAX: languages.IMonarchLanguage = { }, }; -const INSTRUCTION_SUGGESTIONS = OPCODES.map(opcode => { +const INSTRUCTION_SUGGESTIONS = OPCODES.filter(opcode => opcode != null).map(opcode => { return ({ label: opcode.mnemonic, kind: languages.CompletionItemKind.Function, @@ -131,10 +131,6 @@ class MonacoComponent extends Component { componentDidMount(): void { if (this.div_ref.current) { - // model.onDidChangeContent(e => { - // e.changes[0].range - // }) - this.editor = editor.create(this.div_ref.current, { theme: "phantasmal-world", scrollBeyondLastLine: false, @@ -146,6 +142,9 @@ class MonacoComponent extends Component { const model = quest && editor.createModel(disassemble(quest), "psoasm"); if (model && this.editor) { + // model.onDidChangeContent(e => { + // }); + this.editor.setModel(model); } }); diff --git a/src/ui/scripting/disassembly.ts b/src/ui/scripting/disassembly.ts index 3a07a662..ad026009 100644 --- a/src/ui/scripting/disassembly.ts +++ b/src/ui/scripting/disassembly.ts @@ -1,12 +1,12 @@ -import { Arg, Type } from "../../data_formats/parsing/quest/bin"; +import { Arg, Param, Type } from "../../data_formats/parsing/quest/bin"; import { Quest } from "../../domain"; +/** + * @param manual_stack If true, will ouput stack management instructions (argpush variants). Otherwise stack management instructions will not be output and their arguments will be output as arguments to the instruction that pops them from the stack. + */ export function disassemble(quest: Quest, manual_stack: boolean = false): string { const lines: string[] = []; - const index_to_label = [...quest.labels.entries()].reduce( - (map, [l, i]) => map.set(i, l), - new Map() - ); + const index_to_label = new Map([...quest.labels.entries()].map(([l, i]) => [i, l])); const stack: Arg[] = []; @@ -17,25 +17,18 @@ export function disassemble(quest: Quest, manual_stack: boolean = false): string if (!manual_stack && ins.opcode.push_stack) { stack.push(...ins.args); } else { - let args: string[] = []; - - for (let j = 0; j < ins.opcode.params.length; j++) { - const param_type = ins.opcode.params[j]; - const arg = ins.args[j]; - args.push(...arg_to_strings(param_type, arg)); - } + let args = args_to_strings(ins.opcode.params, ins.args); if (!manual_stack) { - for (let j = ins.opcode.stack_params.length - 1; j >= 0; j--) { - const param_type = ins.opcode.stack_params[j]; - const arg = stack.pop(); - - if (!arg) { - break; - } - - args.push(...arg_to_strings(param_type, arg)); - } + args.push( + ...args_to_strings( + ins.opcode.stack_params, + stack.splice( + Math.max(0, stack.length - ins.opcode.stack_params.length), + ins.opcode.stack_params.length + ) + ) + ); } if (label != null) { @@ -46,23 +39,45 @@ export function disassemble(quest: Quest, manual_stack: boolean = false): string } } + // Ensure newline. + if (lines.length) { + lines.push(""); + } + return lines.join("\n"); } -function arg_to_strings(param_type: Type, arg: Arg): string[] { - switch (param_type) { - case Type.U8: - case Type.U16: - case Type.U32: - case Type.I32: - case Type.F32: - return [arg.value.toString()]; - case Type.Register: - return ["r" + arg.value]; - case Type.SwitchData: - case Type.JumpData: - return arg.value.map(String); - case Type.String: - return [JSON.stringify(arg.value)]; +function args_to_strings(params: Param[], args: Arg[]): string[] { + const arg_strings: string[] = []; + + for (let i = 0; i < params.length; i++) { + const type = params[i].type; + const arg = args[i]; + + if (arg == null) { + arg_strings.push(""); + continue; + } + + switch (type) { + case Type.U8Var: + case Type.U16Var: + for (; i < args.length; i++) { + arg_strings.push(args[i].value.toString()); + } + + break; + case Type.Register: + arg_strings.push("r" + arg.value); + break; + case Type.String: + arg_strings.push(JSON.stringify(arg.value)); + break; + default: + arg_strings.push(arg.value.toString()); + break; + } } + + return arg_strings; }