From 8582a25bc32ac83885ee49687ca6f7b196a17bd6 Mon Sep 17 00:00:00 2001 From: jtuu Date: Sat, 16 Nov 2019 18:07:21 +0200 Subject: [PATCH] Lint --- .../compression/prs/index.test.ts | 5 +- .../data_formats/cursor/AbstractCursor.ts | 12 +- src/core/data_formats/cursor/Cursor.test.ts | 8 +- src/core/data_formats/cursor/Cursor.ts | 12 +- src/core/data_formats/parsing/ninja/njcm.ts | 3 +- .../parsing/quest/object_types.ts | 42 +++- src/core/decorators.ts | 8 +- src/core/gui/ComboBox.ts | 5 +- src/core/gui/LazyWidget.ts | 2 +- .../rendering/conversion/ninja_geometry.ts | 7 +- src/core/util.ts | 2 +- .../stores/HuntOptimizerStore.ts | 6 +- src/quest_editor/QuestRunner.ts | 20 +- src/quest_editor/gui/AsmEditorView.ts | 73 ++++-- src/quest_editor/gui/QuestMessageLogView.ts | 1 - .../rendering/QuestEntityControls.ts | 11 +- src/quest_editor/scripting/vm/VMIOStub.ts | 2 + src/quest_editor/scripting/vm/index.test.ts | 14 +- src/quest_editor/scripting/vm/index.ts | 7 +- src/quest_editor/scripting/vm/io.ts | 5 +- src/quest_editor/scripting/vm/windows.ts | 5 +- src/quest_editor/stores/QuestEditorStore.ts | 19 +- src/quest_editor/stores/model_conversion.ts | 35 +-- src/quest_editor/stores/quest_creation.ts | 226 ++++++++++++++---- 24 files changed, 367 insertions(+), 163 deletions(-) diff --git a/src/core/data_formats/compression/prs/index.test.ts b/src/core/data_formats/compression/prs/index.test.ts index 2e6cd293..4c3e71f2 100644 --- a/src/core/data_formats/compression/prs/index.test.ts +++ b/src/core/data_formats/compression/prs/index.test.ts @@ -36,7 +36,10 @@ test("PRS compression and decompression, worst case", () => { const prng = new Prng(); // Compression factor: 1.125 - test_with_bytes(new Array(10000).fill(0).map(() => prng.next_integer(0, 255)), 11253); + test_with_bytes( + new Array(10000).fill(0).map(() => prng.next_integer(0, 255)), + 11253, + ); }); test("PRS compression and decompression, typical case", () => { diff --git a/src/core/data_formats/cursor/AbstractCursor.ts b/src/core/data_formats/cursor/AbstractCursor.ts index df17c2dd..7837b597 100644 --- a/src/core/data_formats/cursor/AbstractCursor.ts +++ b/src/core/data_formats/cursor/AbstractCursor.ts @@ -238,11 +238,7 @@ export abstract class AbstractCursor implements Cursor { return String.fromCodePoint(...code_points); } - string_ascii_at( - offset: number, - max_byte_length: number, - null_terminated: boolean, - ): string { + string_ascii_at(offset: number, max_byte_length: number, null_terminated: boolean): string { const code_points: number[] = []; for (let i = 0; i < max_byte_length; i++) { @@ -258,11 +254,7 @@ export abstract class AbstractCursor implements Cursor { return String.fromCodePoint(...code_points); } - string_utf16_at( - offset: number, - max_byte_length: number, - null_terminated: boolean, - ): string { + string_utf16_at(offset: number, max_byte_length: number, null_terminated: boolean): string { const code_points: number[] = []; const len = Math.floor(max_byte_length / 2); diff --git a/src/core/data_formats/cursor/Cursor.test.ts b/src/core/data_formats/cursor/Cursor.test.ts index 7370fd38..06dae175 100644 --- a/src/core/data_formats/cursor/Cursor.test.ts +++ b/src/core/data_formats/cursor/Cursor.test.ts @@ -61,7 +61,13 @@ test_all( "simple properties and invariants", () => [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], (cursor, endianness) => { - for (const [seek_to, expected_pos] of [[0, 0], [3, 3], [5, 8], [2, 10], [-10, 0]]) { + for (const [seek_to, expected_pos] of [ + [0, 0], + [3, 3], + [5, 8], + [2, 10], + [-10, 0], + ]) { cursor.seek(seek_to); expect(cursor.size).toBe(10); diff --git a/src/core/data_formats/cursor/Cursor.ts b/src/core/data_formats/cursor/Cursor.ts index 705b26f8..f5558e9a 100644 --- a/src/core/data_formats/cursor/Cursor.ts +++ b/src/core/data_formats/cursor/Cursor.ts @@ -172,20 +172,12 @@ export interface Cursor { /** * Reads an ASCII-encoded string at the given absolute offset. Doesn't increment position. */ - string_ascii_at( - offset: number, - max_byte_length: number, - null_terminated: boolean, - ): string; + string_ascii_at(offset: number, max_byte_length: number, null_terminated: boolean): string; /** * Reads an UTF-16-encoded string at the given absolute offset. Doesn't increment position. */ - string_utf16_at( - offset: number, - max_byte_length: number, - null_terminated: boolean, - ): string; + string_utf16_at(offset: number, max_byte_length: number, null_terminated: boolean): string; array_buffer(size?: number): ArrayBuffer; diff --git a/src/core/data_formats/parsing/ninja/njcm.ts b/src/core/data_formats/parsing/ninja/njcm.ts index 135a6279..b03d2f3e 100644 --- a/src/core/data_formats/parsing/ninja/njcm.ts +++ b/src/core/data_formats/parsing/ninja/njcm.ts @@ -55,7 +55,8 @@ type NjcmChunk = { | NjcmVertexChunk | NjcmVolumeChunk | NjcmStripChunk - | NjcmEndChunk); + | NjcmEndChunk +); type NjcmUnknownChunk = { type: NjcmChunkType.Unknown; diff --git a/src/core/data_formats/parsing/quest/object_types.ts b/src/core/data_formats/parsing/quest/object_types.ts index 7ca97215..121ff557 100644 --- a/src/core/data_formats/parsing/quest/object_types.ts +++ b/src/core/data_formats/parsing/quest/object_types.ts @@ -1125,7 +1125,10 @@ define_object_type_data(ObjectType.MedicalCenterDoor, 73, "Medical Center Door", [Episode.I, [0]], [Episode.IV, [0]], ]); -define_object_type_data(ObjectType.Elevator, 74, "Elevator", [[Episode.I, [0]], [Episode.IV, [0]]]); +define_object_type_data(ObjectType.Elevator, 74, "Elevator", [ + [Episode.I, [0]], + [Episode.IV, [0]], +]); define_object_type_data(ObjectType.EasterEgg, 75, "Easter Egg", [ [Episode.I, [0]], [Episode.II, [0]], @@ -1179,7 +1182,11 @@ define_object_type_data( ObjectType.MainRagolTeleporterBattleInNextArea, 85, "Main Ragol Teleporter (Battle in next area?)", - [[Episode.I, [0]], [Episode.II, [0]], [Episode.IV, [0]]], + [ + [Episode.I, [0]], + [Episode.II, [0]], + [Episode.IV, [0]], + ], ); define_object_type_data(ObjectType.LabTeleporterDoor, 86, "Lab Teleporter Door", [ [Episode.II, [0]], @@ -1188,7 +1195,11 @@ define_object_type_data( ObjectType.Pioneer2InvisibleTouchplate, 87, "Pioneer 2 Invisible Touchplate", - [[Episode.I, [0]], [Episode.II, [0]], [Episode.IV, [0]]], + [ + [Episode.I, [0]], + [Episode.II, [0]], + [Episode.IV, [0]], + ], ); define_object_type_data(ObjectType.ForestDoor, 128, "Forest Door", [[Episode.I, [1, 2]]]); define_object_type_data(ObjectType.ForestSwitch, 129, "Forest Switch", [ @@ -1388,7 +1399,10 @@ define_object_type_data( ObjectType.GreenScreenOpeningAndClosing, 261, "Green Screen opening and closing", - [[Episode.I, [6, 7]], [Episode.II, [17]]], + [ + [Episode.I, [6, 7]], + [Episode.II, [17]], + ], ); define_object_type_data(ObjectType.FloatingRobot, 262, "Floating Robot", [[Episode.I, [6, 7]]]); define_object_type_data(ObjectType.FloatingBlueLight, 263, "Floating Blue Light", [ @@ -1575,7 +1589,10 @@ define_object_type_data( ObjectType.BreakableWallWallButUnbreakable, 417, '"breakable wall wall, but unbreakable"', - [[Episode.I, [17]], [Episode.II, [1, 2]]], + [ + [Episode.I, [17]], + [Episode.II, [1, 2]], + ], ); define_object_type_data(ObjectType.BrokenCylinderAndRubble, 418, "Broken cylinder and rubble", [ [Episode.I, [17]], @@ -1585,7 +1602,10 @@ define_object_type_data( ObjectType.ThreeBrokenWallPiecesOnFloor, 419, "3 broken wall pieces on floor", - [[Episode.I, [17]], [Episode.II, [1, 2]]], + [ + [Episode.I, [17]], + [Episode.II, [1, 2]], + ], ); define_object_type_data(ObjectType.HighBrickCylinder, 420, "high brick cylinder", [ [Episode.I, [17]], @@ -1612,13 +1632,19 @@ define_object_type_data( ObjectType.SmallBrownBrickRisingBridge, 425, "small brown brick rising bridge", - [[Episode.I, [17]], [Episode.II, [1, 2]]], + [ + [Episode.I, [17]], + [Episode.II, [1, 2]], + ], ); define_object_type_data( ObjectType.LongRisingBridgeWithPinkHighEdges, 426, "long rising bridge (with pink high edges)", - [[Episode.I, [17]], [Episode.II, [1, 2]]], + [ + [Episode.I, [17]], + [Episode.II, [1, 2]], + ], ); define_object_type_data(ObjectType.FourSwitchTempleDoor, 427, "4 switch temple door", [ [Episode.II, [1, 2]], diff --git a/src/core/decorators.ts b/src/core/decorators.ts index ee1c6d5d..159045b9 100644 --- a/src/core/decorators.ts +++ b/src/core/decorators.ts @@ -1,15 +1,19 @@ +import Logger = require("js-logger"); + +const logger = Logger.get("core/decorators"); + /** * Prints a warning when the method is called. */ export const stub: MethodDecorator = function stub( - target: Object, + target: Record, prop_key: PropertyKey, descriptor: PropertyDescriptor, ) { const orig_method: Function = descriptor.value; descriptor.value = function(...args: any[]): any { - console.warn(`Stub: ${target.constructor.name}.prototype.${String(prop_key)}`); + logger.warn(`Stub: ${target.constructor.name}.prototype.${String(prop_key)}`); return orig_method.apply(this, args); }; diff --git a/src/core/gui/ComboBox.ts b/src/core/gui/ComboBox.ts index 19373638..fe9b64ea 100644 --- a/src/core/gui/ComboBox.ts +++ b/src/core/gui/ComboBox.ts @@ -87,7 +87,10 @@ export class ComboBox extends LabelledControl { this.bind_hidden(down_arrow_element, this.menu.visible); const up_arrow_element = el.span({}, icon(Icon.TriangleUp)); - this.bind_hidden(up_arrow_element, this.menu.visible.map(v => !v)); + this.bind_hidden( + up_arrow_element, + this.menu.visible.map(v => !v), + ); const button_element = el.span( { class: "core_ComboBox_button" }, diff --git a/src/core/gui/LazyWidget.ts b/src/core/gui/LazyWidget.ts index 6c443932..8e0671f7 100644 --- a/src/core/gui/LazyWidget.ts +++ b/src/core/gui/LazyWidget.ts @@ -7,7 +7,7 @@ export class LazyWidget extends ResizableWidget { readonly element = el.div({ class: "core_LazyView" }); private initialized = false; - private view: Widget & Resizable | undefined; + private view: (Widget & Resizable) | undefined; constructor(private create_view: () => Promise) { super(); diff --git a/src/core/rendering/conversion/ninja_geometry.ts b/src/core/rendering/conversion/ninja_geometry.ts index 89f9a9e4..c086dd46 100644 --- a/src/core/rendering/conversion/ninja_geometry.ts +++ b/src/core/rendering/conversion/ninja_geometry.ts @@ -190,7 +190,12 @@ class GeometryCreator { } } - const bones = [[0, 0], [0, 0], [0, 0], [0, 0]]; + const bones = [ + [0, 0], + [0, 0], + [0, 0], + [0, 0], + ]; for (let j = vertices.length - 1; j >= 0; j--) { const vertex = vertices[j]; diff --git a/src/core/util.ts b/src/core/util.ts index d0bf3421..74b168c8 100644 --- a/src/core/util.ts +++ b/src/core/util.ts @@ -51,7 +51,7 @@ export function defined(value: T | undefined): asserts value is T { export function assert(condition: any, msg?: string): asserts condition { if (!condition) { let full_msg = "Assertion Error"; - + if (msg) { full_msg += ": " + msg; } diff --git a/src/hunt_optimizer/stores/HuntOptimizerStore.ts b/src/hunt_optimizer/stores/HuntOptimizerStore.ts index 7c70a9e6..7d97f335 100644 --- a/src/hunt_optimizer/stores/HuntOptimizerStore.ts +++ b/src/hunt_optimizer/stores/HuntOptimizerStore.ts @@ -37,9 +37,9 @@ class HuntOptimizerStore implements Disposable { readonly wanted_items: ListProperty; readonly result: Property; - private readonly _wanted_items: WritableListProperty = list_property( - wanted_item => [wanted_item.amount], - ); + private readonly _wanted_items: WritableListProperty< + WantedItemModel + > = list_property(wanted_item => [wanted_item.amount]); private readonly disposer = new Disposer(); constructor( diff --git a/src/quest_editor/QuestRunner.ts b/src/quest_editor/QuestRunner.ts index 82a8a0ef..e61cae73 100644 --- a/src/quest_editor/QuestRunner.ts +++ b/src/quest_editor/QuestRunner.ts @@ -1,7 +1,7 @@ import { ExecutionResult, VirtualMachine, ExecutionLocation } from "./scripting/vm"; import { QuestModel } from "./model/QuestModel"; import { VirtualMachineIO } from "./scripting/vm/io"; -import { AsmToken, SegmentType, InstructionSegment, Segment, Instruction } from "./scripting/instructions"; +import { AsmToken, SegmentType, InstructionSegment, Instruction } from "./scripting/instructions"; import { quest_editor_store, Logger } from "./stores/QuestEditorStore"; import { defined, assert } from "../core/util"; import { @@ -27,10 +27,6 @@ function srcloc_to_string(srcloc: AsmToken): string { return `[${srcloc.line_no}:${srcloc.col}]`; } -function execloc_to_string(execloc: ExecutionLocation) { - return `[${execloc.seg_idx}:${execloc.inst_idx}]`; -} - export class QuestRunner { private readonly vm: VirtualMachine; private quest?: QuestModel; @@ -134,7 +130,7 @@ export class QuestRunner { const dst_segment = this.get_instruction_segment_by_label(dst_label); const dst_instr = dst_segment.instructions[0]; const dst_srcloc = this.get_source_location(dst_instr); - + if (dst_srcloc) { this.stepping_breakpoints.push(dst_srcloc.line_no); } @@ -144,7 +140,7 @@ export class QuestRunner { } public step_out(): void { - + // unimplemented } public stop(): void { @@ -164,10 +160,10 @@ export class QuestRunner { let need_emit_unpause = this.paused.val; exec_loop: while (true) { - if (this.first_frame || this.executed_since_advance) { + if (this.first_frame || this.executed_since_advance) { if (!this.first_frame) { this.vm.advance(); - + this.executed_since_advance = false; if (this.vm.halted) { @@ -281,7 +277,7 @@ export class QuestRunner { return this.get_instruction_segment_by_index(seg_idx); } - private get_step_innable_instruction_label_argument(instr: Instruction): number | undefined { + private get_step_innable_instruction_label_argument(instr: Instruction): number | undefined { switch (instr.opcode.code) { case OP_VA_CALL.code: case OP_CALL.code: @@ -317,7 +313,7 @@ export class QuestRunner { return dst_srcloc; } - private get_next_source_location(execloc: ExecutionLocation): AsmToken | undefined { + private get_next_source_location(execloc: ExecutionLocation): AsmToken | undefined { defined(this.quest); const next_loc = new ExecutionLocation(execloc.seg_idx, execloc.inst_idx); @@ -339,7 +335,7 @@ export class QuestRunner { if (next_loc.seg_idx >= this.quest.object_code.length) { return undefined; } - + const dst_instr = segment.instructions[next_loc.inst_idx]; return this.get_source_location(dst_instr); } diff --git a/src/quest_editor/gui/AsmEditorView.ts b/src/quest_editor/gui/AsmEditorView.ts index afe9ae4c..bc9c57d5 100644 --- a/src/quest_editor/gui/AsmEditorView.ts +++ b/src/quest_editor/gui/AsmEditorView.ts @@ -89,10 +89,13 @@ export class AsmEditorView extends ResizableWidget { asm_editor_store.model.observe( ({ value: model }) => { - this.editor.updateOptions({ readOnly: model == undefined && !quest_editor_store.quest_runner.running.val }); + this.editor.updateOptions({ + readOnly: + model == undefined && !quest_editor_store.quest_runner.running.val, + }); this.editor.setModel(model || DUMMY_MODEL); this.history.reset(); - + this.breakpoint_decoration_ids = []; this.execloc_decoration_id = ""; @@ -102,11 +105,12 @@ export class AsmEditorView extends ResizableWidget { ), // disable editor when quest is running - quest_editor_store.quest_runner.running.observe(({value}) => this.editor.updateOptions({readOnly: value})), + quest_editor_store.quest_runner.running.observe(({ value }) => + this.editor.updateOptions({ readOnly: value }), + ), asm_editor_store.breakpoints.observe_list(change => { if (change.type === ListChangeType.ListChange) { - // remove for (const line_num of change.removed) { const cur_decos = this.editor.getLineDecorations(line_num); @@ -129,17 +133,29 @@ export class AsmEditorView extends ResizableWidget { for (const line_num of change.inserted) { const cur_decos = this.editor.getLineDecorations(line_num); // don't allow duplicates - if (!cur_decos?.some(deco => this.breakpoint_decoration_ids.includes(deco.id))) { + if ( + !cur_decos?.some(deco => + this.breakpoint_decoration_ids.includes(deco.id), + ) + ) { // add new decoration, don't overwrite anything, save decoration id - this.breakpoint_decoration_ids.push(this.editor.deltaDecorations([], [{ - range: new Range(line_num, 0, line_num, 0), - options: { - glyphMarginClassName: "quest_editor_AsmEditorView_breakpoint-enabled", - glyphMarginHoverMessage: { - value: "Breakpoint" - } - } - }])[0]); + this.breakpoint_decoration_ids.push( + this.editor.deltaDecorations( + [], + [ + { + range: new Range(line_num, 0, line_num, 0), + options: { + glyphMarginClassName: + "quest_editor_AsmEditorView_breakpoint-enabled", + glyphMarginHoverMessage: { + value: "Breakpoint", + }, + }, + }, + ], + )[0], + ); } } } @@ -160,13 +176,18 @@ export class AsmEditorView extends ResizableWidget { // add new if (new_line_num !== undefined) { - this.execloc_decoration_id = this.editor.deltaDecorations([], [{ - range: new Range(new_line_num, 0, new_line_num, 0), - options: { - className: "quest_editor_AsmEditorView_execution-location", - isWholeLine: true, - } - }])[0]; + this.execloc_decoration_id = this.editor.deltaDecorations( + [], + [ + { + range: new Range(new_line_num, 0, new_line_num, 0), + options: { + className: "quest_editor_AsmEditorView_execution-location", + isWholeLine: true, + }, + }, + ], + )[0]; } }), @@ -175,11 +196,13 @@ export class AsmEditorView extends ResizableWidget { this.editor.onMouseDown(e => { switch (e.target.type) { case editor.MouseTargetType.GUTTER_GLYPH_MARGIN: - const pos = e.target.position; - if (!pos) { - return; + { + const pos = e.target.position; + if (!pos) { + return; + } + asm_editor_store.toggle_breakpoint(pos.lineNumber); } - asm_editor_store.toggle_breakpoint(pos.lineNumber); break; default: break; diff --git a/src/quest_editor/gui/QuestMessageLogView.ts b/src/quest_editor/gui/QuestMessageLogView.ts index 277d49f8..cf74ca7a 100644 --- a/src/quest_editor/gui/QuestMessageLogView.ts +++ b/src/quest_editor/gui/QuestMessageLogView.ts @@ -1,4 +1,3 @@ -import { ResizableWidget } from "../../core/gui/ResizableWidget"; import { quest_editor_store } from "../stores/QuestEditorStore"; import { MessageLog } from "../../core/gui/MessageLog"; import "./QuestMessageLogView.css"; diff --git a/src/quest_editor/rendering/QuestEntityControls.ts b/src/quest_editor/rendering/QuestEntityControls.ts index ebb8825e..59143de4 100644 --- a/src/quest_editor/rendering/QuestEntityControls.ts +++ b/src/quest_editor/rendering/QuestEntityControls.ts @@ -634,7 +634,11 @@ class CreationState implements State { new Euler(0, 0, 0, "ZXY"), new Vector3(1, 1, 1), // TODO: do the following values make sense? - [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0]], + [ + [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [0, 0, 0, 0, 0, 0], + [0, 0, 0, 0], + ], ); } else { this.entity = new QuestObjectModel( @@ -648,7 +652,10 @@ class CreationState implements State { // TODO: which default properties? new Map(), // TODO: do the following values make sense? - [[0, 0, 0, 0, 0, 0], [0, 0]], + [ + [0, 0, 0, 0, 0, 0], + [0, 0], + ], ); } diff --git a/src/quest_editor/scripting/vm/VMIOStub.ts b/src/quest_editor/scripting/vm/VMIOStub.ts index 48d897f4..8b029a94 100644 --- a/src/quest_editor/scripting/vm/VMIOStub.ts +++ b/src/quest_editor/scripting/vm/VMIOStub.ts @@ -2,6 +2,7 @@ import { stub } from "../../../core/decorators"; import { AsmToken } from "../instructions"; import { VirtualMachineIO } from "./io"; +/* eslint-disable */ /** * All methods of VirtualMachineIO implemented as stubs. */ @@ -15,3 +16,4 @@ export class VMIOStub implements VirtualMachineIO { @stub warning(msg: string, srcloc?: AsmToken): void {} @stub error(err: Error, srcloc?: AsmToken): void {} } +/* eslint-enable */ diff --git a/src/quest_editor/scripting/vm/index.test.ts b/src/quest_editor/scripting/vm/index.test.ts index e1ac3629..66ae8932 100644 --- a/src/quest_editor/scripting/vm/index.test.ts +++ b/src/quest_editor/scripting/vm/index.test.ts @@ -10,7 +10,7 @@ import { srand } from "./windows"; test("integer arithmetic opcodes", () => { class TestIO extends VMIOStub { - error = jest.fn((err: Error, srcloc: any) => { + error = jest.fn((err: Error) => { throw err; }); } @@ -77,7 +77,7 @@ test("integer arithmetic opcodes", () => { // TODO: add more fp tests test("floating point arithmetic opcodes", () => { class TestIO extends VMIOStub { - error = jest.fn((err: Error, srcloc: any) => { + error = jest.fn((err: Error) => { throw err; }); } @@ -95,13 +95,13 @@ test("floating point arithmetic opcodes", () => { const vm = new VirtualMachine(new TestIO()); vm.load_object_code(obj_code); vm.start_thread(0); - + let last_result: ExecutionResult; do { last_result = vm.execute(); } while (last_result !== ExecutionResult.Halted); - expect(vm.get_register_float(100)).toBeCloseTo(7.4505806e-09, precision); + expect(vm.get_register_float(100)).toBeCloseTo(7.4505806e-9, precision); expect(vm.get_register_float(101)).toBeCloseTo(134217728, precision); }); @@ -133,7 +133,7 @@ test("basic window_msg output", () => { winend = jest.fn(() => {}); - error = jest.fn((err: Error, loc: any) => { + error = jest.fn((err: Error) => { throw err; }); } @@ -214,9 +214,7 @@ test("opcode get_random", () => { }); test("opcode list", () => { - const list_items = [ - "a", "b", "c", "d" - ]; + const list_items = ["a", "b", "c", "d"]; const list_text = list_items.join("\\n"); class TestIO extends VMIOStub { constructor() { diff --git a/src/quest_editor/scripting/vm/index.ts b/src/quest_editor/scripting/vm/index.ts index 8c6cd8f3..019ca0a5 100644 --- a/src/quest_editor/scripting/vm/index.ts +++ b/src/quest_editor/scripting/vm/index.ts @@ -109,7 +109,6 @@ const ARG_STACK_SLOT_SIZE = 4; const ARG_STACK_LENGTH = 8; const STRING_ARG_STORE_ADDRESS = 0x00a92700; const STRING_ARG_STORE_SIZE = 1024; // TODO: verify this value -const FLOAT_EPSILON = 1.19e-7; const ENTRY_SEGMENT = 0; const LIST_ITEM_DELIMITER = "\n"; @@ -237,7 +236,7 @@ export class VirtualMachine { } } - private update_source_location(exec: Thread) { + private update_source_location(exec: Thread): void { const inst = this.get_next_instruction_from_thread(exec); if (inst.asm && inst.asm.mnemonic) { @@ -299,7 +298,9 @@ export class VirtualMachine { const inst = this.get_next_instruction_from_thread(exec); return this.execute_instruction(auto_advance, exec, inst, srcloc); - } catch (err) { + } catch (thrown) { + let err = thrown; + if (!(err instanceof Error)) { err = new Error(String(err)); } diff --git a/src/quest_editor/scripting/vm/io.ts b/src/quest_editor/scripting/vm/io.ts index a76544d6..5594c819 100644 --- a/src/quest_editor/scripting/vm/io.ts +++ b/src/quest_editor/scripting/vm/io.ts @@ -3,7 +3,10 @@ import { AsmToken } from "../instructions"; /** * The virtual machine calls these methods when it requires input. */ -export interface VirtualMachineInput {} +// eslint-disable-next-line @typescript-eslint/no-empty-interface +export interface VirtualMachineInput { + // unimplemented +} /** * The virtual machine calls these methods when it outputs something. diff --git a/src/quest_editor/scripting/vm/windows.ts b/src/quest_editor/scripting/vm/windows.ts index c09ab273..a85b9776 100644 --- a/src/quest_editor/scripting/vm/windows.ts +++ b/src/quest_editor/scripting/vm/windows.ts @@ -2,8 +2,7 @@ * @file Implementations of some parts of the Win32 API and the MSVCRT C standard library. */ - -var holdrand = 1; +let holdrand = 1; export function srand(seed: number): void { holdrand = seed; @@ -12,7 +11,7 @@ export function srand(seed: number): void { export function rand(): number { const r = (holdrand * 0x343fd + 0x269ec3) >>> 0; holdrand = r; - return r >>> 0x10 & 0x7fff; + return (r >>> 0x10) & 0x7fff; } export function GetTickCount(): number { diff --git a/src/quest_editor/stores/QuestEditorStore.ts b/src/quest_editor/stores/QuestEditorStore.ts index da4e1fda..bf24d31d 100644 --- a/src/quest_editor/stores/QuestEditorStore.ts +++ b/src/quest_editor/stores/QuestEditorStore.ts @@ -50,16 +50,13 @@ export class QuestEditorStore implements Disposable, MessageLogStore { */ private readonly log_levels_map = (function(names: KT) { type K = KT[keyof KT & number]; - return names.reduce>( - (accum, name: K, idx) => { - accum[name] = { - name: name, - value: idx, - }; - return accum; - }, - {} as Record, - ); + return names.reduce>((accum, name: K, idx) => { + accum[name] = { + name: name, + value: idx, + }; + return accum; + }, {} as Record); })( // Log level names in order of importance ["Debug", "Info", "Warning", "Error"] as const, @@ -127,11 +124,13 @@ export class QuestEditorStore implements Disposable, MessageLogStore { }), // force refresh + /* eslint-disable no-self-assign */ this._log_level.observe(() => (this._log_messages.val = this._log_messages.val)), this._log_group.observe(() => (this._log_messages.val = this._log_messages.val)), this._show_all_log_groups.observe( () => (this._log_messages.val = this._log_messages.val), ), + /* eslint-enable no-self-assign */ ); this.log_messages = this._log_messages.filtered(this.log_message_predicate); diff --git a/src/quest_editor/stores/model_conversion.ts b/src/quest_editor/stores/model_conversion.ts index 34beb9fb..53bb54f9 100644 --- a/src/quest_editor/stores/model_conversion.ts +++ b/src/quest_editor/stores/model_conversion.ts @@ -72,13 +72,15 @@ export function convert_quest_to_model(quest: Quest): QuestModel { function build_event_dags(dat_events: readonly DatEvent[]): QuestEventDagModel[] { // Build up a temporary data structure with partial data. // Maps event id and area id to data. - const data_map = new Map(); + } + >(); for (const event of dat_events) { const key = `${event.id}-${event.area_id}`; @@ -122,22 +124,23 @@ function build_event_dags(dat_events: readonly DatEvent[]): QuestEventDagModel[] case DatEventActionType.Lock: event_model.add_action(new QuestEventActionLockModel(action.door_id)); break; - case DatEventActionType.TriggerEvent: { - data.child_ids.push(action.event_id); + case DatEventActionType.TriggerEvent: + { + data.child_ids.push(action.event_id); - const child_key = `${action.event_id}-${event.area_id}`; - const child_data = data_map.get(child_key); + const child_key = `${action.event_id}-${event.area_id}`; + const child_data = data_map.get(child_key); - if (child_data) { - child_data.parents.push(event_model); - } else { - data_map.set(child_key, { - area_id: event.area_id, - parents: [event_model], - child_ids: [], - }); + if (child_data) { + child_data.parents.push(event_model); + } else { + data_map.set(child_key, { + area_id: event.area_id, + parents: [event_model], + child_ids: [], + }); + } } - } break; default: logger.warn(`Unknown event action type: ${(action as any).type}.`); @@ -273,7 +276,7 @@ export function convert_quest_from_model(quest: QuestModel): Quest { pso_roaming: npc.pso_roaming, })), events: convert_quest_events_from_model(quest.event_dags.val), - dat_unknowns: quest.dat_unknowns.map(unk => ({...unk})), + dat_unknowns: quest.dat_unknowns.map(unk => ({ ...unk })), object_code: quest.object_code.map(seg => clone_segment(seg)), shop_items: quest.shop_items.slice(), map_designations: new Map(quest.map_designations.val), diff --git a/src/quest_editor/stores/quest_creation.ts b/src/quest_editor/stores/quest_creation.ts index f5b44fbb..950f1ad3 100644 --- a/src/quest_editor/stores/quest_creation.ts +++ b/src/quest_editor/stores/quest_creation.ts @@ -114,7 +114,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365279104], ]), - [[2, 0, 0, 0, 0, 0], [0, 0]], + [ + [2, 0, 0, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.MenuActivation, @@ -133,7 +136,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365279264], ]), - [[2, 0, 1, 0, 0, 0], [0, 0]], + [ + [2, 0, 1, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.MenuActivation, @@ -152,7 +158,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 10], ["property_6", 2365279424], ]), - [[2, 0, 2, 0, 0, 0], [0, 0]], + [ + [2, 0, 2, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.MenuActivation, @@ -171,7 +180,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365279584], ]), - [[2, 0, 3, 0, 0, 0], [0, 0]], + [ + [2, 0, 3, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.PlayerSet, @@ -190,7 +202,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365279744], ]), - [[2, 0, 4, 0, 0, 0], [0, 0]], + [ + [2, 0, 4, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.PlayerSet, @@ -209,7 +224,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365279904], ]), - [[2, 0, 5, 0, 0, 0], [0, 0]], + [ + [2, 0, 5, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.PlayerSet, @@ -228,7 +246,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365280064], ]), - [[2, 0, 6, 0, 0, 0], [0, 0]], + [ + [2, 0, 6, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.PlayerSet, @@ -247,7 +268,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365280224], ]), - [[2, 0, 7, 0, 0, 0], [0, 0]], + [ + [2, 0, 7, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.MainRagolTeleporter, @@ -266,7 +290,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365227216], ]), - [[0, 0, 87, 7, 0, 0], [0, 0]], + [ + [0, 0, 87, 7, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.PrincipalWarp, @@ -285,7 +312,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 65536], ["property_6", 2365280688], ]), - [[2, 0, 9, 0, 0, 0], [0, 0]], + [ + [2, 0, 9, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.MenuActivation, @@ -304,7 +334,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365280992], ]), - [[2, 0, 10, 0, 0, 0], [1, 0]], + [ + [2, 0, 10, 0, 0, 0], + [1, 0], + ], ), new QuestObjectModel( ObjectType.MenuActivation, @@ -323,7 +356,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365281152], ]), - [[2, 0, 11, 0, 0, 0], [0, 0]], + [ + [2, 0, 11, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.PrincipalWarp, @@ -342,7 +378,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365281312], ]), - [[2, 0, 12, 0, 0, 0], [0, 0]], + [ + [2, 0, 12, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.TelepipeLocation, @@ -361,7 +400,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365281616], ]), - [[2, 0, 13, 0, 0, 0], [0, 0]], + [ + [2, 0, 13, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.TelepipeLocation, @@ -380,7 +422,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365281808], ]), - [[2, 0, 14, 0, 0, 0], [0, 0]], + [ + [2, 0, 14, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.TelepipeLocation, @@ -399,7 +444,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365282000], ]), - [[2, 0, 15, 0, 0, 0], [0, 0]], + [ + [2, 0, 15, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.TelepipeLocation, @@ -418,7 +466,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 10], ["property_6", 2365282192], ]), - [[2, 0, 16, 0, 0, 0], [0, 0]], + [ + [2, 0, 16, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.MedicalCenterDoor, @@ -437,7 +488,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365282384], ]), - [[2, 0, 17, 0, 0, 0], [0, 0]], + [ + [2, 0, 17, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.ShopDoor, @@ -456,7 +510,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365282640], ]), - [[2, 0, 18, 0, 0, 0], [0, 0]], + [ + [2, 0, 18, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.MenuActivation, @@ -475,7 +532,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365282896], ]), - [[2, 0, 19, 0, 0, 0], [0, 0]], + [ + [2, 0, 19, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.HuntersGuildDoor, @@ -494,7 +554,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365283056], ]), - [[2, 0, 20, 0, 0, 0], [0, 0]], + [ + [2, 0, 20, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.TeleporterDoor, @@ -513,7 +576,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365283312], ]), - [[2, 0, 21, 0, 0, 0], [0, 0]], + [ + [2, 0, 21, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.PlayerSet, @@ -532,7 +598,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365283568], ]), - [[2, 0, 22, 0, 0, 0], [0, 0]], + [ + [2, 0, 22, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.PlayerSet, @@ -551,7 +620,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365283728], ]), - [[2, 0, 23, 0, 0, 0], [0, 0]], + [ + [2, 0, 23, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.PlayerSet, @@ -570,7 +642,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365283888], ]), - [[2, 0, 24, 0, 0, 0], [0, 0]], + [ + [2, 0, 24, 0, 0, 0], + [0, 0], + ], ), new QuestObjectModel( ObjectType.PlayerSet, @@ -589,7 +664,10 @@ function create_default_objects(): QuestObjectModel[] { ["property_5", 0], ["property_6", 2365284048], ]), - [[2, 0, 25, 0, 0, 0], [0, 0]], + [ + [2, 0, 25, 0, 0, 0], + [0, 0], + ], ), ]; } @@ -607,7 +685,11 @@ function create_default_npcs(): QuestNpcModel[] { new Vector3(-49.0010986328125, 0, 50.996429443359375), new Euler(0, 2.3562304434156633, 0, "ZXY"), new Vector3(0, 0, 0), - [[0, 0, 7, 86, 0, 0, 0, 0, 23, 87], [0, 0, 0, 0, 0, 0], [128, 238, 223, 176]], + [ + [0, 0, 7, 86, 0, 0, 0, 0, 23, 87], + [0, 0, 0, 0, 0, 0], + [128, 238, 223, 176], + ], ), new QuestNpcModel( NpcType.FemaleFat, @@ -620,7 +702,11 @@ function create_default_npcs(): QuestNpcModel[] { new Vector3(167.99769592285156, 0, 83.99686431884766), new Euler(0, 3.927050739026106, 0, "ZXY"), new Vector3(24.000009536743164, 0, 0), - [[0, 0, 7, 88, 0, 0, 0, 0, 23, 89], [0, 0, 0, 0, 0, 0], [128, 238, 232, 48]], + [ + [0, 0, 7, 88, 0, 0, 0, 0, 23, 89], + [0, 0, 0, 0, 0, 0], + [128, 238, 232, 48], + ], ), new QuestNpcModel( NpcType.MaleDwarf, @@ -633,7 +719,11 @@ function create_default_npcs(): QuestNpcModel[] { new Vector3(156.0028839111328, 0, -49.99967575073242), new Euler(0, 5.497871034636549, 0, "ZXY"), new Vector3(30.000009536743164, 0, 0), - [[0, 0, 7, 89, 0, 0, 0, 0, 23, 90], [0, 0, 0, 0, 0, 0], [128, 238, 236, 176]], + [ + [0, 0, 7, 89, 0, 0, 0, 0, 23, 90], + [0, 0, 0, 0, 0, 0], + [128, 238, 236, 176], + ], ), new QuestNpcModel( NpcType.RedSoldier, @@ -646,7 +736,11 @@ function create_default_npcs(): QuestNpcModel[] { new Vector3(237.9988250732422, 0, -14.0001220703125), new Euler(0, 5.497871034636549, 0, "ZXY"), new Vector3(0, 0, 0), - [[0, 0, 7, 90, 0, 0, 0, 0, 23, 91], [0, 0, 0, 0, 0, 0], [128, 238, 241, 48]], + [ + [0, 0, 7, 90, 0, 0, 0, 0, 23, 91], + [0, 0, 0, 0, 0, 0], + [128, 238, 241, 48], + ], ), new QuestNpcModel( NpcType.BlueSoldier, @@ -659,7 +753,11 @@ function create_default_npcs(): QuestNpcModel[] { new Vector3(238.00379943847656, 0, 63.00413513183594), new Euler(0, 3.927050739026106, 0, "ZXY"), new Vector3(0, 0, 0), - [[0, 0, 7, 91, 0, 0, 0, 0, 23, 92], [0, 0, 0, 0, 0, 0], [128, 238, 245, 176]], + [ + [0, 0, 7, 91, 0, 0, 0, 0, 23, 92], + [0, 0, 0, 0, 0, 0], + [128, 238, 245, 176], + ], ), new QuestNpcModel( NpcType.FemaleMacho, @@ -672,7 +770,11 @@ function create_default_npcs(): QuestNpcModel[] { new Vector3(-2.001882553100586, 0, 35.0036506652832), new Euler(0, 3.141640591220885, 0, "ZXY"), new Vector3(26.000009536743164, 0, 0), - [[0, 0, 7, 92, 0, 0, 0, 0, 23, 93], [0, 0, 0, 0, 0, 0], [128, 238, 250, 48]], + [ + [0, 0, 7, 92, 0, 0, 0, 0, 23, 93], + [0, 0, 0, 0, 0, 0], + [128, 238, 250, 48], + ], ), new QuestNpcModel( NpcType.Scientist, @@ -685,7 +787,11 @@ function create_default_npcs(): QuestNpcModel[] { new Vector3(-147.0000457763672, 0, -7.996537208557129), new Euler(0, 2.577127047485882, 0, "ZXY"), new Vector3(30.000009536743164, 0, 0), - [[0, 0, 7, 93, 0, 0, 0, 0, 23, 94], [0, 0, 0, 0, 0, 0], [128, 238, 254, 176]], + [ + [0, 0, 7, 93, 0, 0, 0, 0, 23, 94], + [0, 0, 0, 0, 0, 0], + [128, 238, 254, 176], + ], ), new QuestNpcModel( NpcType.MaleOld, @@ -698,7 +804,11 @@ function create_default_npcs(): QuestNpcModel[] { new Vector3(-219.99710083007812, 0, -100.0008316040039), new Euler(0, 0, 0, "ZXY"), new Vector3(30.000011444091797, 0, 0), - [[0, 0, 7, 94, 0, 0, 0, 0, 23, 95], [0, 0, 0, 0, 0, 0], [128, 239, 3, 48]], + [ + [0, 0, 7, 94, 0, 0, 0, 0, 23, 95], + [0, 0, 0, 0, 0, 0], + [128, 239, 3, 48], + ], ), new QuestNpcModel( NpcType.GuildLady, @@ -711,7 +821,11 @@ function create_default_npcs(): QuestNpcModel[] { new Vector3(-262.5099792480469, 0, -24.53999900817871), new Euler(0, 1.963525369513053, 0, "ZXY"), new Vector3(0, 0, 0), - [[0, 0, 7, 95, 0, 0, 0, 0, 23, 106], [0, 0, 0, 0, 0, 0], [128, 239, 100, 192]], + [ + [0, 0, 7, 95, 0, 0, 0, 0, 23, 106], + [0, 0, 0, 0, 0, 0], + [128, 239, 100, 192], + ], ), new QuestNpcModel( NpcType.Tekker, @@ -724,7 +838,11 @@ function create_default_npcs(): QuestNpcModel[] { new Vector3(-43.70983123779297, 2.5999999046325684, -52.78248596191406), new Euler(0, 0.7854101478052212, 0, "ZXY"), new Vector3(0, 0, 0), - [[0, 0, 7, 97, 0, 0, 0, 0, 23, 98], [0, 0, 0, 0, 0, 0], [128, 239, 16, 176]], + [ + [0, 0, 7, 97, 0, 0, 0, 0, 23, 98], + [0, 0, 0, 0, 0, 0], + [128, 239, 16, 176], + ], ), new QuestNpcModel( NpcType.MaleMacho, @@ -737,7 +855,11 @@ function create_default_npcs(): QuestNpcModel[] { new Vector3(0.33990478515625, 2.5999999046325684, -84.71995544433594), new Euler(0, 0, 0, "ZXY"), new Vector3(0, 0, 0), - [[0, 0, 7, 98, 0, 0, 0, 0, 23, 99], [0, 0, 0, 0, 0, 0], [128, 239, 21, 48]], + [ + [0, 0, 7, 98, 0, 0, 0, 0, 23, 99], + [0, 0, 0, 0, 0, 0], + [128, 239, 21, 48], + ], ), new QuestNpcModel( NpcType.FemaleMacho, @@ -750,7 +872,11 @@ function create_default_npcs(): QuestNpcModel[] { new Vector3(43.87113952636719, 2.5999996662139893, -74.80299377441406), new Euler(0, -0.5645135437350027, 0, "ZXY"), new Vector3(0, 0, 0), - [[0, 0, 7, 99, 0, 0, 0, 0, 23, 100], [0, 0, 0, 0, 0, 0], [128, 239, 25, 176]], + [ + [0, 0, 7, 99, 0, 0, 0, 0, 23, 100], + [0, 0, 0, 0, 0, 0], + [128, 239, 25, 176], + ], ), new QuestNpcModel( NpcType.MaleFat, @@ -763,7 +889,11 @@ function create_default_npcs(): QuestNpcModel[] { new Vector3(75.88380432128906, 2.5999996662139893, -42.69328308105469), new Euler(0, -1.0308508189943528, 0, "ZXY"), new Vector3(0, 0, 0), - [[0, 0, 7, 100, 0, 0, 0, 0, 23, 101], [0, 0, 0, 0, 0, 0], [128, 239, 30, 48]], + [ + [0, 0, 7, 100, 0, 0, 0, 0, 23, 101], + [0, 0, 0, 0, 0, 0], + [128, 239, 30, 48], + ], ), new QuestNpcModel( NpcType.FemaleTall, @@ -776,7 +906,11 @@ function create_default_npcs(): QuestNpcModel[] { new Vector3(16.003997802734375, 0, 5.995697021484375), new Euler(0, -1.1781152217078317, 0, "ZXY"), new Vector3(22.000009536743164, 0, 0), - [[0, 0, 7, 101, 0, 0, 0, 0, 23, 102], [0, 0, 0, 0, 0, 0], [128, 239, 34, 176]], + [ + [0, 0, 7, 101, 0, 0, 0, 0, 23, 102], + [0, 0, 0, 0, 0, 0], + [128, 239, 34, 176], + ], ), new QuestNpcModel( NpcType.Nurse, @@ -789,7 +923,11 @@ function create_default_npcs(): QuestNpcModel[] { new Vector3(0.3097381591796875, 3, -105.3865966796875), new Euler(0, 0, 0, "ZXY"), new Vector3(0, 0, 0), - [[0, 0, 7, 102, 0, 0, 0, 0, 23, 103], [0, 0, 0, 0, 0, 0], [128, 239, 39, 48]], + [ + [0, 0, 7, 102, 0, 0, 0, 0, 23, 103], + [0, 0, 0, 0, 0, 0], + [128, 239, 39, 48], + ], ), new QuestNpcModel( NpcType.Nurse, @@ -802,7 +940,11 @@ function create_default_npcs(): QuestNpcModel[] { new Vector3(53.499176025390625, 0, -26.496688842773438), new Euler(0, 5.497871034636549, 0, "ZXY"), new Vector3(18.000009536743164, 0, 0), - [[0, 0, 7, 103, 0, 0, 0, 0, 23, 104], [0, 0, 0, 0, 0, 0], [128, 239, 43, 176]], + [ + [0, 0, 7, 103, 0, 0, 0, 0, 23, 104], + [0, 0, 0, 0, 0, 0], + [128, 239, 43, 176], + ], ), ]; }