From 66127253d3437dcbfcd31eeb7058e7f35ff68724 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Sat, 10 Aug 2019 22:09:06 +0200 Subject: [PATCH] Split code into one module per tool + core and application module. --- assets_generation/update_drops_ephinea.ts | 22 +- assets_generation/update_ephinea_data.ts | 99 +- assets_generation/update_generic_data.ts | 12 +- .../stores/ApplicationStore.ts | 2 +- .../ui/ApplicationComponent.css | 0 .../ui/ApplicationComponent.tsx | 12 +- src/{ => core}/Loadable.ts | 0 src/{ => core}/data_formats/Endianness.ts | 0 .../data_formats/ResizableBuffer.test.ts | 0 .../data_formats/ResizableBuffer.ts | 0 .../data_formats/compression/prs/compress.ts | 0 .../compression/prs/compress_high.ts | 0 .../compression/prs/decompress.ts | 2 +- .../compression/prs/index.test.ts | 2 +- .../data_formats/cursor/AbstractCursor.ts | 14 +- .../cursor/AbstractWritableCursor.ts | 2 +- .../data_formats/cursor/ArrayBufferCursor.ts | 2 +- .../data_formats/cursor/BufferCursor.ts | 2 +- .../data_formats/cursor/Cursor.test.ts | 14 +- src/{ => core}/data_formats/cursor/Cursor.ts | 4 +- .../cursor/ResizableBufferCursor.test.ts | 0 .../cursor/ResizableBufferCursor.ts | 2 +- .../cursor/WritableCursor.test.ts | 12 +- .../data_formats/cursor/WritableCursor.ts | 0 src/{ => core}/data_formats/encryption/prc.ts | 0 .../parsing/area_collision_geometry.test.ts | 0 .../parsing/area_collision_geometry.ts | 0 .../data_formats/parsing/area_geometry.ts | 6 +- src/{ => core}/data_formats/parsing/iff.ts | 0 .../data_formats/parsing/itempmt.test.ts | 0 .../data_formats/parsing/itempmt.ts | 0 .../data_formats/parsing/ninja/index.ts | 10 +- .../data_formats/parsing/ninja/motion.ts | 8 +- .../data_formats/parsing/ninja/njcm.ts | 10 +- .../data_formats/parsing/ninja/texture.ts | 2 +- .../data_formats/parsing/ninja/xj.ts | 12 +- src/{ => core}/data_formats/parsing/prc.ts | 2 +- .../data_formats/parsing/quest/Episode.ts | 0 .../data_formats/parsing/quest/areas.ts | 0 .../data_formats/parsing/quest/bin.test.ts | 4 +- .../data_formats/parsing/quest/bin.ts | 15 +- .../data_formats/parsing/quest/dat.test.ts | 0 .../data_formats/parsing/quest/dat.ts | 8 +- .../data_formats/parsing/quest/entities.ts | 0 .../data_formats/parsing/quest/index.test.ts | 2 +- .../data_formats/parsing/quest/index.ts | 4 +- .../data_formats/parsing/quest/npc_types.ts | 21 +- .../parsing/quest/object_types.ts | 0 .../data_formats/parsing/quest/qst.test.ts | 2 +- .../data_formats/parsing/quest/qst.ts | 20 +- src/{ => core}/data_formats/parsing/rel.ts | 0 src/{ => core}/data_formats/parsing/rlc.ts | 0 src/{ => core}/data_formats/parsing/unitxt.ts | 0 src/{ => core}/data_formats/vector.ts | 0 src/core/domain/index.ts | 34 + src/{ => core}/domain/items.ts | 6 +- src/{ => core}/dto.ts | 0 src/{ => core}/enums.test.ts | 0 src/{ => core}/enums.ts | 0 .../load_array_buffer.ts => core/loading.ts} | 0 .../Persister.ts => core/persistence.ts} | 2 +- src/{ => core}/primitive_conversion.ts | 0 src/{ => core}/read_file.ts | 0 src/{ => core}/rendering/Renderer.ts | 2 +- .../rendering/conversion/GeometryBuilder.ts | 4 +- .../rendering/conversion/create_mesh.ts | 6 +- src/{ => core}/rendering/conversion/index.ts | 0 .../rendering/conversion/ninja_animation.ts | 10 +- .../rendering/conversion/ninja_geometry.ts | 16 +- .../rendering/conversion/ninja_textures.ts | 2 +- src/{ => core}/stores/ItemTypeStore.ts | 16 +- src/{ => core}/stores/ServerMap.ts | 2 +- src/{ => core}/ui/BigSelect.css | 0 src/{ => core}/ui/BigSelect.tsx | 0 src/{ => core}/ui/BigTable.css | 0 src/{ => core}/ui/BigTable.tsx | 8 +- src/{ => core}/ui/DisabledTextComponent.css | 0 src/{ => core}/ui/DisabledTextComponent.tsx | 0 src/{ => core}/ui/ErrorBoundary.css | 0 src/{ => core}/ui/ErrorBoundary.tsx | 0 src/{ => core}/ui/RendererComponent.tsx | 0 src/{ => core}/ui/SectionIdIcon.tsx | 0 src/{ => core}/ui/index.css | 0 src/{ => core}/ui/time.ts | 0 src/{ => core}/undo.test.ts | 0 src/{ => core}/undo.ts | 2 +- src/{ => dps_calc}/stores/DpsCalcStore.ts | 10 +- .../ui}/DpsCalcComponent.tsx | 8 +- src/hunt_optimizer/domain/index.ts | 73 + .../persistence/HuntMethodPersister.ts | 9 +- .../persistence/HuntOptimizerPersister.ts | 12 +- .../stores/HuntMethodStore.ts | 11 +- .../stores/HuntOptimizerStore.ts | 14 +- .../stores/ItemDropStore.ts | 13 +- .../ui}/HuntOptimizerComponent.css | 0 .../ui}/HuntOptimizerComponent.tsx | 0 .../ui}/MethodsComponent.css | 0 .../ui}/MethodsComponent.tsx | 14 +- .../ui}/OptimizationResultComponent.css | 0 .../ui}/OptimizationResultComponent.tsx | 12 +- .../ui}/OptimizerComponent.css | 0 .../ui}/OptimizerComponent.tsx | 0 .../ui}/WantedItemsComponent.css | 0 .../ui}/WantedItemsComponent.tsx | 8 +- src/index.tsx | 4 +- .../domain/ObservableArea.ts | 0 .../domain/ObservableAreaVariant.ts | 2 +- .../domain/ObservableQuest.ts | 6 +- src/quest_editor/domain/Section.ts | 22 + .../domain/observable_quest_entities.ts} | 149 +- .../loading/LoadingCache.ts | 0 src/{ => quest_editor}/loading/areas.ts | 12 +- src/{ => quest_editor}/loading/entities.ts | 18 +- .../persistence/QuestEditorUiPersister.ts | 10 +- .../rendering/QuestEntityControls.ts | 5 +- .../rendering/QuestModelManager.ts | 2 +- .../rendering/QuestRenderer.ts | 4 +- .../rendering/conversion/areas.ts | 10 +- .../rendering/conversion/entities.ts | 12 +- .../scripting/AssemblyAnalyser.ts | 0 .../scripting/AssemblyLexer.ts | 0 .../scripting/assembly.test.ts | 6 +- src/{ => quest_editor}/scripting/assembly.ts | 8 +- .../scripting/assembly_worker.ts | 0 .../scripting/assembly_worker_messages.ts | 0 .../ControlFlowGraph.test.ts | 2 +- .../data_flow_analysis/ControlFlowGraph.ts | 43 +- .../data_flow_analysis/ValueSet.test.ts | 0 .../scripting/data_flow_analysis/ValueSet.ts | 2 +- .../data_flow_analysis/register_value.test.ts | 2 +- .../data_flow_analysis/register_value.ts | 12 +- .../data_flow_analysis/stack_value.ts | 8 +- .../scripting/disassembly.test.ts | 12 +- .../scripting/disassembly.ts | 8 +- .../scripting/instructions.ts | 0 src/{ => quest_editor}/scripting/opcodes.ts | 2170 ++++++++--------- src/{ => quest_editor}/scripting/vm/index.ts | 6 +- src/{ => quest_editor}/stores/AreaStore.ts | 6 +- .../stores/QuestEditorStore.ts | 30 +- .../stores/quest_creation.ts | 10 +- .../ui}/AssemblyEditorComponent.css | 0 .../ui}/AssemblyEditorComponent.tsx | 8 +- .../ui}/EntityInfoComponent.css | 0 .../ui}/EntityInfoComponent.tsx | 10 +- .../ui}/QuestEditorComponent.css | 0 .../ui}/QuestEditorComponent.tsx | 10 +- .../ui}/QuestInfoComponent.css | 0 .../ui}/QuestInfoComponent.tsx | 8 +- .../ui}/QuestRendererComponent.tsx | 6 +- .../ui}/Toolbar.css | 0 .../ui}/Toolbar.tsx | 8 +- src/viewer/domain/index.ts | 12 + src/{ => viewer}/loading/player.ts | 6 +- src/{ => viewer}/rendering/ModelRenderer.ts | 2 +- src/{ => viewer}/rendering/TextureRenderer.ts | 10 +- src/{ => viewer}/stores/ModelViewerStore.ts | 39 +- src/{ => viewer}/stores/TextureViewerStore.ts | 8 +- .../viewer => viewer/ui}/ViewerComponent.css | 0 .../viewer => viewer/ui}/ViewerComponent.tsx | 0 .../models/AnimationSelectionComponent.css | 0 .../models/AnimationSelectionComponent.tsx | 2 +- .../ui}/models/ModelSelectionComponent.css | 0 .../ui}/models/ModelSelectionComponent.tsx | 2 +- .../ui}/models/ModelViewerComponent.css | 0 .../ui}/models/ModelViewerComponent.tsx | 6 +- .../ui}/textures/TextureViewerComponent.css | 0 .../ui}/textures/TextureViewerComponent.tsx | 6 +- test/src/utils.ts | 2 +- webpack.common.js | 14 +- webpack.dev.js | 42 +- webpack.prod.js | 43 +- 171 files changed, 1743 insertions(+), 1705 deletions(-) rename src/{ => application}/stores/ApplicationStore.ts (96%) rename src/{ => application}/ui/ApplicationComponent.css (100%) rename src/{ => application}/ui/ApplicationComponent.tsx (87%) rename src/{ => core}/Loadable.ts (100%) rename src/{ => core}/data_formats/Endianness.ts (100%) rename src/{ => core}/data_formats/ResizableBuffer.test.ts (100%) rename src/{ => core}/data_formats/ResizableBuffer.ts (100%) rename src/{ => core}/data_formats/compression/prs/compress.ts (100%) rename src/{ => core}/data_formats/compression/prs/compress_high.ts (100%) rename src/{ => core}/data_formats/compression/prs/decompress.ts (99%) rename src/{ => core}/data_formats/compression/prs/index.test.ts (98%) rename src/{ => core}/data_formats/cursor/AbstractCursor.ts (95%) rename src/{ => core}/data_formats/cursor/AbstractWritableCursor.ts (99%) rename src/{ => core}/data_formats/cursor/ArrayBufferCursor.ts (96%) rename src/{ => core}/data_formats/cursor/BufferCursor.ts (96%) rename src/{ => core}/data_formats/cursor/Cursor.test.ts (98%) rename src/{ => core}/data_formats/cursor/Cursor.ts (98%) rename src/{ => core}/data_formats/cursor/ResizableBufferCursor.test.ts (100%) rename src/{ => core}/data_formats/cursor/ResizableBufferCursor.ts (97%) rename src/{ => core}/data_formats/cursor/WritableCursor.test.ts (99%) rename src/{ => core}/data_formats/cursor/WritableCursor.ts (100%) rename src/{ => core}/data_formats/encryption/prc.ts (100%) rename src/{ => core}/data_formats/parsing/area_collision_geometry.test.ts (100%) rename src/{ => core}/data_formats/parsing/area_collision_geometry.ts (100%) rename src/{ => core}/data_formats/parsing/area_geometry.ts (95%) rename src/{ => core}/data_formats/parsing/iff.ts (100%) rename src/{ => core}/data_formats/parsing/itempmt.test.ts (100%) rename src/{ => core}/data_formats/parsing/itempmt.ts (100%) rename src/{ => core}/data_formats/parsing/ninja/index.ts (98%) rename src/{ => core}/data_formats/parsing/ninja/motion.ts (97%) rename src/{ => core}/data_formats/parsing/ninja/njcm.ts (98%) rename src/{ => core}/data_formats/parsing/ninja/texture.ts (97%) rename src/{ => core}/data_formats/parsing/ninja/xj.ts (96%) rename src/{ => core}/data_formats/parsing/prc.ts (95%) rename src/{ => core}/data_formats/parsing/quest/Episode.ts (100%) rename src/{ => core}/data_formats/parsing/quest/areas.ts (100%) rename src/{ => core}/data_formats/parsing/quest/bin.test.ts (94%) rename src/{ => core}/data_formats/parsing/quest/bin.ts (98%) rename src/{ => core}/data_formats/parsing/quest/dat.test.ts (100%) rename src/{ => core}/data_formats/parsing/quest/dat.ts (98%) rename src/{ => core}/data_formats/parsing/quest/entities.ts (100%) rename src/{ => core}/data_formats/parsing/quest/index.test.ts (98%) rename src/{ => core}/data_formats/parsing/quest/index.ts (99%) rename src/{ => core}/data_formats/parsing/quest/npc_types.ts (99%) rename src/{ => core}/data_formats/parsing/quest/object_types.ts (100%) rename src/{ => core}/data_formats/parsing/quest/qst.test.ts (94%) rename src/{ => core}/data_formats/parsing/quest/qst.ts (97%) rename src/{ => core}/data_formats/parsing/rel.ts (100%) rename src/{ => core}/data_formats/parsing/rlc.ts (100%) rename src/{ => core}/data_formats/parsing/unitxt.ts (100%) rename src/{ => core}/data_formats/vector.ts (100%) create mode 100644 src/core/domain/index.ts rename src/{ => core}/domain/items.ts (96%) rename src/{ => core}/dto.ts (100%) rename src/{ => core}/enums.test.ts (100%) rename src/{ => core}/enums.ts (100%) rename src/{loading/load_array_buffer.ts => core/loading.ts} (100%) rename src/{persistence/Persister.ts => core/persistence.ts} (96%) rename src/{ => core}/primitive_conversion.ts (100%) rename src/{ => core}/read_file.ts (100%) rename src/{ => core}/rendering/Renderer.ts (99%) rename src/{ => core}/rendering/conversion/GeometryBuilder.ts (98%) rename src/{ => core}/rendering/conversion/create_mesh.ts (93%) rename src/{ => core}/rendering/conversion/index.ts (100%) rename src/{ => core}/rendering/conversion/ninja_animation.ts (94%) rename src/{ => core}/rendering/conversion/ninja_geometry.ts (96%) rename src/{ => core}/rendering/conversion/ninja_textures.ts (98%) rename src/{ => core}/stores/ItemTypeStore.ts (93%) rename src/{ => core}/stores/ServerMap.ts (86%) rename src/{ => core}/ui/BigSelect.css (100%) rename src/{ => core}/ui/BigSelect.tsx (100%) rename src/{ => core}/ui/BigTable.css (100%) rename src/{ => core}/ui/BigTable.tsx (97%) rename src/{ => core}/ui/DisabledTextComponent.css (100%) rename src/{ => core}/ui/DisabledTextComponent.tsx (100%) rename src/{ => core}/ui/ErrorBoundary.css (100%) rename src/{ => core}/ui/ErrorBoundary.tsx (100%) rename src/{ => core}/ui/RendererComponent.tsx (100%) rename src/{ => core}/ui/SectionIdIcon.tsx (100%) rename src/{ => core}/ui/index.css (100%) rename src/{ => core}/ui/time.ts (100%) rename src/{ => core}/undo.test.ts (100%) rename src/{ => core}/undo.ts (99%) rename src/{ => dps_calc}/stores/DpsCalcStore.ts (94%) rename src/{ui/dps_calc => dps_calc/ui}/DpsCalcComponent.tsx (97%) create mode 100644 src/hunt_optimizer/domain/index.ts rename src/{ => hunt_optimizer}/persistence/HuntMethodPersister.ts (84%) rename src/{ => hunt_optimizer}/persistence/HuntOptimizerPersister.ts (87%) rename src/{ => hunt_optimizer}/stores/HuntMethodStore.ts (90%) rename src/{ => hunt_optimizer}/stores/HuntOptimizerStore.ts (96%) rename src/{ => hunt_optimizer}/stores/ItemDropStore.ts (88%) rename src/{ui/hunt_optimizer => hunt_optimizer/ui}/HuntOptimizerComponent.css (100%) rename src/{ui/hunt_optimizer => hunt_optimizer/ui}/HuntOptimizerComponent.tsx (100%) rename src/{ui/hunt_optimizer => hunt_optimizer/ui}/MethodsComponent.css (100%) rename src/{ui/hunt_optimizer => hunt_optimizer/ui}/MethodsComponent.tsx (92%) rename src/{ui/hunt_optimizer => hunt_optimizer/ui}/OptimizationResultComponent.css (100%) rename src/{ui/hunt_optimizer => hunt_optimizer/ui}/OptimizationResultComponent.tsx (92%) rename src/{ui/hunt_optimizer => hunt_optimizer/ui}/OptimizerComponent.css (100%) rename src/{ui/hunt_optimizer => hunt_optimizer/ui}/OptimizerComponent.tsx (100%) rename src/{ui/hunt_optimizer => hunt_optimizer/ui}/WantedItemsComponent.css (100%) rename src/{ui/hunt_optimizer => hunt_optimizer/ui}/WantedItemsComponent.tsx (96%) rename src/{ => quest_editor}/domain/ObservableArea.ts (100%) rename src/{ => quest_editor}/domain/ObservableAreaVariant.ts (93%) rename src/{ => quest_editor}/domain/ObservableQuest.ts (95%) create mode 100644 src/quest_editor/domain/Section.ts rename src/{domain/index.ts => quest_editor/domain/observable_quest_entities.ts} (51%) rename src/{ => quest_editor}/loading/LoadingCache.ts (100%) rename src/{ => quest_editor}/loading/areas.ts (91%) rename src/{ => quest_editor}/loading/entities.ts (92%) rename src/{ => quest_editor}/persistence/QuestEditorUiPersister.ts (89%) rename src/{ => quest_editor}/rendering/QuestEntityControls.ts (98%) rename src/{ => quest_editor}/rendering/QuestModelManager.ts (98%) rename src/{ => quest_editor}/rendering/QuestRenderer.ts (96%) rename src/{ => quest_editor}/rendering/conversion/areas.ts (90%) rename src/{ => quest_editor}/rendering/conversion/entities.ts (84%) rename src/{ => quest_editor}/scripting/AssemblyAnalyser.ts (100%) rename src/{ => quest_editor}/scripting/AssemblyLexer.ts (100%) rename src/{ => quest_editor}/scripting/assembly.test.ts (98%) rename src/{ => quest_editor}/scripting/assembly.ts (99%) rename src/{ => quest_editor}/scripting/assembly_worker.ts (100%) rename src/{ => quest_editor}/scripting/assembly_worker_messages.ts (100%) rename src/{ => quest_editor}/scripting/data_flow_analysis/ControlFlowGraph.test.ts (98%) rename src/{ => quest_editor}/scripting/data_flow_analysis/ControlFlowGraph.ts (89%) rename src/{ => quest_editor}/scripting/data_flow_analysis/ValueSet.test.ts (100%) rename src/{ => quest_editor}/scripting/data_flow_analysis/ValueSet.ts (99%) rename src/{ => quest_editor}/scripting/data_flow_analysis/register_value.test.ts (98%) rename src/{ => quest_editor}/scripting/data_flow_analysis/register_value.ts (97%) rename src/{ => quest_editor}/scripting/data_flow_analysis/stack_value.ts (95%) rename src/{ => quest_editor}/scripting/disassembly.test.ts (82%) rename src/{ => quest_editor}/scripting/disassembly.ts (97%) rename src/{ => quest_editor}/scripting/instructions.ts (100%) rename src/{ => quest_editor}/scripting/opcodes.ts (89%) rename src/{ => quest_editor}/scripting/vm/index.ts (99%) rename src/{ => quest_editor}/stores/AreaStore.ts (89%) rename src/{ => quest_editor}/stores/QuestEditorStore.ts (93%) rename src/{ => quest_editor}/stores/quest_creation.ts (98%) rename src/{ui/quest_editor => quest_editor/ui}/AssemblyEditorComponent.css (100%) rename src/{ui/quest_editor => quest_editor/ui}/AssemblyEditorComponent.tsx (97%) rename src/{ui/quest_editor => quest_editor/ui}/EntityInfoComponent.css (100%) rename src/{ui/quest_editor => quest_editor/ui}/EntityInfoComponent.tsx (92%) rename src/{ui/quest_editor => quest_editor/ui}/QuestEditorComponent.css (100%) rename src/{ui/quest_editor => quest_editor/ui}/QuestEditorComponent.tsx (94%) rename src/{ui/quest_editor => quest_editor/ui}/QuestInfoComponent.css (100%) rename src/{ui/quest_editor => quest_editor/ui}/QuestInfoComponent.tsx (94%) rename src/{ui/quest_editor => quest_editor/ui}/QuestRendererComponent.tsx (76%) rename src/{ui/quest_editor => quest_editor/ui}/Toolbar.css (100%) rename src/{ui/quest_editor => quest_editor/ui}/Toolbar.tsx (95%) create mode 100644 src/viewer/domain/index.ts rename src/{ => viewer}/loading/player.ts (85%) rename src/{ => viewer}/rendering/ModelRenderer.ts (97%) rename src/{ => viewer}/rendering/TextureRenderer.ts (92%) rename src/{ => viewer}/stores/ModelViewerStore.ts (91%) rename src/{ => viewer}/stores/TextureViewerStore.ts (67%) rename src/{ui/viewer => viewer/ui}/ViewerComponent.css (100%) rename src/{ui/viewer => viewer/ui}/ViewerComponent.tsx (100%) rename src/{ui/viewer => viewer/ui}/models/AnimationSelectionComponent.css (100%) rename src/{ui/viewer => viewer/ui}/models/AnimationSelectionComponent.tsx (94%) rename src/{ui/viewer => viewer/ui}/models/ModelSelectionComponent.css (100%) rename src/{ui/viewer => viewer/ui}/models/ModelSelectionComponent.tsx (95%) rename src/{ui/viewer => viewer/ui}/models/ModelViewerComponent.css (100%) rename src/{ui/viewer => viewer/ui}/models/ModelViewerComponent.tsx (95%) rename src/{ui/viewer => viewer/ui}/textures/TextureViewerComponent.css (100%) rename src/{ui/viewer => viewer/ui}/textures/TextureViewerComponent.tsx (89%) diff --git a/assets_generation/update_drops_ephinea.ts b/assets_generation/update_drops_ephinea.ts index 6a1f49df..a093bf5c 100644 --- a/assets_generation/update_drops_ephinea.ts +++ b/assets_generation/update_drops_ephinea.ts @@ -3,8 +3,12 @@ import { writeFileSync } from "fs"; import "isomorphic-fetch"; import Logger from "js-logger"; import { ASSETS_DIR } from "."; -import { Difficulty, NpcType, SectionId, SectionIds } from "../src/domain"; -import { BoxDropDto, EnemyDropDto, ItemTypeDto } from "../src/dto"; +import { Difficulty, SectionId, SectionIds } from "../src/core/domain"; +import { BoxDropDto, EnemyDropDto, ItemTypeDto } from "../src/core/dto"; +import { + name_and_episode_to_npc_type, + NpcType, +} from "../src/core/data_formats/parsing/quest/npc_types"; const logger = Logger.get("assets_generation/update_drops_ephinea"); @@ -19,7 +23,7 @@ export async function update_drops_from_website(item_types: ItemTypeDto[]): Prom const enemy_json = JSON.stringify( [...normal.enemy_drops, ...hard.enemy_drops, ...vhard.enemy_drops, ...ultimate.enemy_drops], null, - 4 + 4, ); writeFileSync(`${ASSETS_DIR}/enemyDrops.ephinea.json`, enemy_json); @@ -27,7 +31,7 @@ export async function update_drops_from_website(item_types: ItemTypeDto[]): Prom const box_json = JSON.stringify( [...normal.box_drops, ...hard.box_drops, ...vhard.box_drops, ...ultimate.box_drops], null, - 4 + 4, ); writeFileSync(`${ASSETS_DIR}/boxDrops.ephinea.json`, box_json); @@ -38,7 +42,7 @@ export async function update_drops_from_website(item_types: ItemTypeDto[]): Prom async function download( item_types: ItemTypeDto[], difficulty: Difficulty, - difficulty_url: string = Difficulty[difficulty].toLowerCase() + difficulty_url: string = Difficulty[difficulty].toLowerCase(), ): Promise<{ enemy_drops: EnemyDropDto[]; box_drops: BoxDropDto[]; items: Set }> { const response = await fetch(`https://ephinea.pioneer2.net/drop-charts/${difficulty_url}/`); const body = await response.text(); @@ -125,7 +129,7 @@ async function download( throw new Error(`No item type found with name "${item}".`); } - const npc_type = NpcType.by_name_and_episode(enemy_or_box, episode); + const npc_type = name_and_episode_to_npc_type(enemy_or_box, episode); if (!npc_type) { throw new Error(`Couldn't retrieve NpcType.`); @@ -149,7 +153,7 @@ async function download( difficulty: Difficulty[difficulty], episode, sectionId: SectionId[section_id], - enemy: npc_type.code, + enemy: NpcType[npc_type], itemTypeId: item_type.id, dropRate: drop_rate_num / drop_rate_denom, rareRate: rare_rate_num / rare_rate_denom, @@ -159,7 +163,7 @@ async function download( } catch (e) { logger.error( `Error while processing item ${item} of ${enemy_or_box} in episode ${episode} ${Difficulty[difficulty]}.`, - e + e, ); } } @@ -167,7 +171,7 @@ async function download( } catch (e) { logger.error( `Error while processing ${enemy_or_box_text} in episode ${episode} ${difficulty}.`, - e + e, ); } }); diff --git a/assets_generation/update_ephinea_data.ts b/assets_generation/update_ephinea_data.ts index b8342068..5c11aee5 100644 --- a/assets_generation/update_ephinea_data.ts +++ b/assets_generation/update_ephinea_data.ts @@ -1,23 +1,16 @@ import { readdirSync, readFileSync, statSync, writeFileSync } from "fs"; import Logger from "js-logger"; import { ASSETS_DIR, RESOURCE_DIR } from "."; -import { Endianness } from "../src/data_formats"; -import { BufferCursor } from "../src/data_formats/cursor/BufferCursor"; -import { ItemPmt, parse_item_pmt } from "../src/data_formats/parsing/itempmt"; -import { parse_quest } from "../src/data_formats/parsing/quest"; -import { parse_unitxt, Unitxt } from "../src/data_formats/parsing/unitxt"; -import { - Difficulties, - Difficulty, - Episode, - Episodes, - NpcType, - SectionId, - SectionIds, -} from "../src/domain"; -import { NpcTypes } from "../src/domain/NpcType"; -import { BoxDropDto, EnemyDropDto, ItemTypeDto, QuestDto } from "../src/dto"; +import { BufferCursor } from "../src/core/data_formats/cursor/BufferCursor"; +import { ItemPmt, parse_item_pmt } from "../src/core/data_formats/parsing/itempmt"; +import { parse_quest } from "../src/core/data_formats/parsing/quest"; +import { parse_unitxt, Unitxt } from "../src/core/data_formats/parsing/unitxt"; +import { Difficulties, Difficulty, SectionId, SectionIds } from "../src/core/domain"; +import { BoxDropDto, EnemyDropDto, ItemTypeDto, QuestDto } from "../src/core/dto"; import { update_drops_from_website } from "./update_drops_ephinea"; +import { Episode, EPISODES } from "../src/core/data_formats/parsing/quest/Episode"; +import { npc_data, NPC_TYPES, NpcType } from "../src/core/data_formats/parsing/quest/npc_types"; +import { Endianness } from "../src/core/data_formats/Endianness"; const logger = Logger.get("assets_generation/update_ephinea_data"); @@ -87,7 +80,7 @@ function update_quests(): void { const id_counts = quests.reduce( (counts, q) => counts.set(q.id, (counts.get(q.id) || 0) + 1), - new Map() + new Map(), ); for (const [id, count] of id_counts.entries()) { @@ -129,8 +122,8 @@ function process_quest(path: string, quests: QuestDto[]): void { const enemy_counts: { [npc_type_code: string]: number } = {}; for (const npc of q.npcs) { - if (npc.type.enemy) { - enemy_counts[npc.type.code] = (enemy_counts[npc.type.code] || 0) + 1; + if (npc_data(npc.type).enemy) { + enemy_counts[NpcType[npc.type]] = (enemy_counts[NpcType[npc.type]] || 0) + 1; } } @@ -273,7 +266,7 @@ function update_drops(item_pt: ItemPt): void { const enemy_drops = new Array(); for (const diff of Difficulties) { - for (const ep of Episodes) { + for (const ep of EPISODES) { for (const sid of SectionIds) { enemy_drops.push(...load_enemy_drops(item_pt, diff, ep, sid)); } @@ -285,7 +278,7 @@ function update_drops(item_pt: ItemPt): void { const box_drops = new Array(); for (const diff of Difficulties) { - for (const ep of Episodes) { + for (const ep of EPISODES) { for (const sid of SectionIds) { box_drops.push(...load_box_drops(diff, ep, sid)); } @@ -330,8 +323,8 @@ function load_item_pt(): ItemPt { cursor.seek(1608); const enemy_dar = cursor.u8_array(100); - for (const npc of NpcTypes) { - if (npc.episode !== episode) continue; + for (const npc of NPC_TYPES) { + if (npc_data(npc).episode !== episode) continue; switch (npc) { case NpcType.Dragon: @@ -373,134 +366,134 @@ function load_item_pt(): ItemPt { dar_table, }; - for (const npc of NpcTypes) { - if (npc.episode !== Episode.IV) continue; + for (const npc of NPC_TYPES) { + if (npc_data(npc).episode !== Episode.IV) continue; switch (npc) { case NpcType.SandRappy: dar_table.set( npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.RagRappy)! + table[Episode.I][diff][sid].dar_table.get(NpcType.RagRappy)!, ); break; case NpcType.DelRappy: dar_table.set( npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.AlRappy)! + table[Episode.I][diff][sid].dar_table.get(NpcType.AlRappy)!, ); break; case NpcType.Astark: dar_table.set( npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.Hildebear)! + table[Episode.I][diff][sid].dar_table.get(NpcType.Hildebear)!, ); break; case NpcType.SatelliteLizard: dar_table.set( npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.SavageWolf)! + table[Episode.I][diff][sid].dar_table.get(NpcType.SavageWolf)!, ); break; case NpcType.Yowie: dar_table.set( npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.BarbarousWolf)! + table[Episode.I][diff][sid].dar_table.get(NpcType.BarbarousWolf)!, ); break; case NpcType.MerissaA: dar_table.set( npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.PofuillySlime)! + table[Episode.I][diff][sid].dar_table.get(NpcType.PofuillySlime)!, ); break; case NpcType.MerissaAA: dar_table.set( npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.PouillySlime)! + table[Episode.I][diff][sid].dar_table.get(NpcType.PouillySlime)!, ); break; case NpcType.Girtablulu: dar_table.set( npc, - table[Episode.II][diff][sid].dar_table.get(NpcType.Mericarol)! + table[Episode.II][diff][sid].dar_table.get(NpcType.Mericarol)!, ); break; case NpcType.Zu: dar_table.set( npc, - table[Episode.II][diff][sid].dar_table.get(NpcType.GiGue)! + table[Episode.II][diff][sid].dar_table.get(NpcType.GiGue)!, ); break; case NpcType.Pazuzu: dar_table.set( npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.Hildeblue)! + table[Episode.I][diff][sid].dar_table.get(NpcType.Hildeblue)!, ); break; case NpcType.Boota: dar_table.set( npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.Booma)! + table[Episode.I][diff][sid].dar_table.get(NpcType.Booma)!, ); break; case NpcType.ZeBoota: dar_table.set( npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.Gobooma)! + table[Episode.I][diff][sid].dar_table.get(NpcType.Gobooma)!, ); break; case NpcType.BaBoota: dar_table.set( npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.Gigobooma)! + table[Episode.I][diff][sid].dar_table.get(NpcType.Gigobooma)!, ); break; case NpcType.Dorphon: dar_table.set( npc, - table[Episode.II][diff][sid].dar_table.get(NpcType.Delbiter)! + table[Episode.II][diff][sid].dar_table.get(NpcType.Delbiter)!, ); break; case NpcType.DorphonEclair: dar_table.set( npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.Hildeblue)! + table[Episode.I][diff][sid].dar_table.get(NpcType.Hildeblue)!, ); break; case NpcType.Goran: dar_table.set( npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.Dimenian)! + table[Episode.I][diff][sid].dar_table.get(NpcType.Dimenian)!, ); break; case NpcType.PyroGoran: dar_table.set( npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.LaDimenian)! + table[Episode.I][diff][sid].dar_table.get(NpcType.LaDimenian)!, ); break; case NpcType.GoranDetonator: dar_table.set( npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.SoDimenian)! + table[Episode.I][diff][sid].dar_table.get(NpcType.SoDimenian)!, ); break; case NpcType.SaintMilion: dar_table.set( npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.DarkFalz)! + table[Episode.I][diff][sid].dar_table.get(NpcType.DarkFalz)!, ); break; case NpcType.Shambertin: dar_table.set( npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.DarkFalz)! + table[Episode.I][diff][sid].dar_table.get(NpcType.DarkFalz)!, ); break; case NpcType.Kondrieu: dar_table.set( npc, - table[Episode.I][diff][sid].dar_table.get(NpcType.DarkFalz)! + table[Episode.I][diff][sid].dar_table.get(NpcType.DarkFalz)!, ); break; } @@ -516,11 +509,11 @@ function load_enemy_drops( item_pt: ItemPt, difficulty: Difficulty, episode: Episode, - section_id: SectionId + section_id: SectionId, ): EnemyDropDto[] { const drops: EnemyDropDto[] = []; const drops_buf = readFileSync( - `${EPHINEA_RESOURCE_DIR}/login-config/drop/ep${episode}_mob_${difficulty}_${section_id}.txt` + `${EPHINEA_RESOURCE_DIR}/login-config/drop/ep${episode}_mob_${difficulty}_${section_id}.txt`, ); let line_no = 0; @@ -539,13 +532,13 @@ function load_enemy_drops( const dar = item_pt[episode][difficulty][section_id].dar_table.get(enemy); if (dar == null) { - logger.error(`No DAR found for ${enemy.name}.`); + logger.error(`No DAR found for ${NpcType[enemy]}.`); } else if (rare_rate > 0 && item_type_id) { drops.push({ difficulty: Difficulty[difficulty], episode, sectionId: SectionId[section_id], - enemy: enemy.code, + enemy: NpcType[enemy], itemTypeId: item_type_id, dropRate: dar, rareRate: rare_rate, @@ -564,11 +557,11 @@ function load_enemy_drops( function load_box_drops( difficulty: Difficulty, episode: Episode, - section_id: SectionId + section_id: SectionId, ): BoxDropDto[] { const drops: BoxDropDto[] = []; const drops_buf = readFileSync( - `${EPHINEA_RESOURCE_DIR}/login-config/drop/ep${episode}_box_${difficulty}_${section_id}.txt` + `${EPHINEA_RESOURCE_DIR}/login-config/drop/ep${episode}_box_${difficulty}_${section_id}.txt`, ); let line_no = 0; @@ -606,7 +599,7 @@ function load_box_drops( function get_stat_boosts( item_pmt: ItemPmt, - stat_boost_index: number + stat_boost_index: number, ): { atp: number; ata: number; diff --git a/assets_generation/update_generic_data.ts b/assets_generation/update_generic_data.ts index fbcc6189..cfa5d5b6 100644 --- a/assets_generation/update_generic_data.ts +++ b/assets_generation/update_generic_data.ts @@ -1,10 +1,10 @@ import { readFileSync, writeFileSync } from "fs"; import Logger from "js-logger"; import { ASSETS_DIR, RESOURCE_DIR, SRC_DIR } from "."; -import { Endianness } from "../src/data_formats"; -import { BufferCursor } from "../src/data_formats/cursor/BufferCursor"; -import { parse_rlc } from "../src/data_formats/parsing/rlc"; +import { BufferCursor } from "../src/core/data_formats/cursor/BufferCursor"; +import { parse_rlc } from "../src/core/data_formats/parsing/rlc"; import YAML from "yaml"; +import { Endianness } from "../src/core/data_formats/Endianness"; const logger = Logger.get("assets_generation/update_generic_data"); @@ -30,7 +30,7 @@ function extract_player_animations(): void { for (const file of parse_rlc(new BufferCursor(buf, Endianness.Big))) { writeFileSync( `${ASSETS_DIR}/player/animation/animation_${(i++).toString().padStart(3, "0")}.njm`, - new Uint8Array(file.array_buffer()) + new Uint8Array(file.array_buffer()), ); } @@ -137,7 +137,7 @@ function opcode_to_code(output: string[], code: number, opcode?: any): void { } } -function params_to_code(params: any[]) { +function params_to_code(params: any[]): string { return params .map((param: any) => { let type: string; @@ -181,7 +181,7 @@ function params_to_code(params: any[]) { break; case "reg_tup_ref": type = `{ kind: Kind.RegTupRef, register_tuples: [${params_to_code( - param.reg_tup + param.reg_tup, )}] }`; break; case "reg_ref_var": diff --git a/src/stores/ApplicationStore.ts b/src/application/stores/ApplicationStore.ts similarity index 96% rename from src/stores/ApplicationStore.ts rename to src/application/stores/ApplicationStore.ts index 348a375c..7b2e7b78 100644 --- a/src/stores/ApplicationStore.ts +++ b/src/application/stores/ApplicationStore.ts @@ -1,5 +1,5 @@ import { autorun, observable } from "mobx"; -import { Server } from "../domain"; +import { Server } from "../../core/domain"; class ApplicationStore { @observable current_server: Server = Server.Ephinea; diff --git a/src/ui/ApplicationComponent.css b/src/application/ui/ApplicationComponent.css similarity index 100% rename from src/ui/ApplicationComponent.css rename to src/application/ui/ApplicationComponent.css diff --git a/src/ui/ApplicationComponent.tsx b/src/application/ui/ApplicationComponent.tsx similarity index 87% rename from src/ui/ApplicationComponent.tsx rename to src/application/ui/ApplicationComponent.tsx index ad5cff8a..df858c2f 100644 --- a/src/ui/ApplicationComponent.tsx +++ b/src/application/ui/ApplicationComponent.tsx @@ -2,13 +2,13 @@ import { Menu, Select } from "antd"; import { ClickParam } from "antd/lib/menu"; import { observer } from "mobx-react"; import React, { ReactNode, Component } from "react"; -import { Server } from "../domain"; +import { Server } from "../../core/domain"; import styles from "./ApplicationComponent.css"; -import { DpsCalcComponent } from "./dps_calc/DpsCalcComponent"; -import { with_error_boundary } from "./ErrorBoundary"; -import { HuntOptimizerComponent } from "./hunt_optimizer/HuntOptimizerComponent"; -import { QuestEditorComponent } from "./quest_editor/QuestEditorComponent"; -import { ViewerComponent } from "./viewer/ViewerComponent"; +import { DpsCalcComponent } from "../../dps_calc/ui/DpsCalcComponent"; +import { with_error_boundary } from "../../core/ui/ErrorBoundary"; +import { HuntOptimizerComponent } from "../../hunt_optimizer/ui/HuntOptimizerComponent"; +import { QuestEditorComponent } from "../../quest_editor/ui/QuestEditorComponent"; +import { ViewerComponent } from "../../viewer/ui/ViewerComponent"; import { application_store } from "../stores/ApplicationStore"; const Viewer = with_error_boundary(ViewerComponent); diff --git a/src/Loadable.ts b/src/core/Loadable.ts similarity index 100% rename from src/Loadable.ts rename to src/core/Loadable.ts diff --git a/src/data_formats/Endianness.ts b/src/core/data_formats/Endianness.ts similarity index 100% rename from src/data_formats/Endianness.ts rename to src/core/data_formats/Endianness.ts diff --git a/src/data_formats/ResizableBuffer.test.ts b/src/core/data_formats/ResizableBuffer.test.ts similarity index 100% rename from src/data_formats/ResizableBuffer.test.ts rename to src/core/data_formats/ResizableBuffer.test.ts diff --git a/src/data_formats/ResizableBuffer.ts b/src/core/data_formats/ResizableBuffer.ts similarity index 100% rename from src/data_formats/ResizableBuffer.ts rename to src/core/data_formats/ResizableBuffer.ts diff --git a/src/data_formats/compression/prs/compress.ts b/src/core/data_formats/compression/prs/compress.ts similarity index 100% rename from src/data_formats/compression/prs/compress.ts rename to src/core/data_formats/compression/prs/compress.ts diff --git a/src/data_formats/compression/prs/compress_high.ts b/src/core/data_formats/compression/prs/compress_high.ts similarity index 100% rename from src/data_formats/compression/prs/compress_high.ts rename to src/core/data_formats/compression/prs/compress_high.ts diff --git a/src/data_formats/compression/prs/decompress.ts b/src/core/data_formats/compression/prs/decompress.ts similarity index 99% rename from src/data_formats/compression/prs/decompress.ts rename to src/core/data_formats/compression/prs/decompress.ts index c4f4ced4..bd14713b 100644 --- a/src/data_formats/compression/prs/decompress.ts +++ b/src/core/data_formats/compression/prs/decompress.ts @@ -65,7 +65,7 @@ class Context { this.src = cursor; this.dst = new ResizableBufferCursor( new ResizableBuffer(Math.floor(1.5 * cursor.size)), - cursor.endianness + cursor.endianness, ); this.flags = 0; this.flag_bits_left = 0; diff --git a/src/data_formats/compression/prs/index.test.ts b/src/core/data_formats/compression/prs/index.test.ts similarity index 98% rename from src/data_formats/compression/prs/index.test.ts rename to src/core/data_formats/compression/prs/index.test.ts index 61679123..edc69aab 100644 --- a/src/data_formats/compression/prs/index.test.ts +++ b/src/core/data_formats/compression/prs/index.test.ts @@ -83,7 +83,7 @@ test("PRS compression and decompression of quest118_e.bin", () => { if (test_byte !== orig_byte) { throw new Error( - `Byte ${matching_bytes} didn't match, expected ${orig_byte}, got ${test_byte}.` + `Byte ${matching_bytes} didn't match, expected ${orig_byte}, got ${test_byte}.`, ); } diff --git a/src/data_formats/cursor/AbstractCursor.ts b/src/core/data_formats/cursor/AbstractCursor.ts similarity index 95% rename from src/data_formats/cursor/AbstractCursor.ts rename to src/core/data_formats/cursor/AbstractCursor.ts index 3f6bc98b..904ab21e 100644 --- a/src/data_formats/cursor/AbstractCursor.ts +++ b/src/core/data_formats/cursor/AbstractCursor.ts @@ -189,7 +189,11 @@ export abstract class AbstractCursor implements Cursor { return new Vec3(this.f32(), this.f32(), this.f32()); } - string_ascii(max_byte_length: number, null_terminated: boolean, drop_remaining: boolean) { + string_ascii( + max_byte_length: number, + null_terminated: boolean, + drop_remaining: boolean, + ): string { let code_points: number[] = []; for (let i = 0; i < max_byte_length; i++) { @@ -209,7 +213,11 @@ export abstract class AbstractCursor implements Cursor { return String.fromCodePoint(...code_points); } - string_utf16(max_byte_length: number, null_terminated: boolean, drop_remaining: boolean) { + string_utf16( + max_byte_length: number, + null_terminated: boolean, + drop_remaining: boolean, + ): string { let code_points: number[] = []; let len = Math.floor(max_byte_length / 2); @@ -234,7 +242,7 @@ export abstract class AbstractCursor implements Cursor { this.check_size("size", size, size); const r = this.backing_buffer.slice( this.offset + this.position, - this.offset + this.position + size + this.offset + this.position + size, ); this._position += size; return r; diff --git a/src/data_formats/cursor/AbstractWritableCursor.ts b/src/core/data_formats/cursor/AbstractWritableCursor.ts similarity index 99% rename from src/data_formats/cursor/AbstractWritableCursor.ts rename to src/core/data_formats/cursor/AbstractWritableCursor.ts index 0f830970..90531735 100644 --- a/src/data_formats/cursor/AbstractWritableCursor.ts +++ b/src/core/data_formats/cursor/AbstractWritableCursor.ts @@ -106,7 +106,7 @@ export abstract class AbstractWritableCursor extends AbstractCursor implements W other.copy_to_uint8_array( new Uint8Array(this.backing_buffer, this.offset + this.position, size), - size + size, ); this._position += size; diff --git a/src/data_formats/cursor/ArrayBufferCursor.ts b/src/core/data_formats/cursor/ArrayBufferCursor.ts similarity index 96% rename from src/data_formats/cursor/ArrayBufferCursor.ts rename to src/core/data_formats/cursor/ArrayBufferCursor.ts index 507c3741..55bd5bb3 100644 --- a/src/data_formats/cursor/ArrayBufferCursor.ts +++ b/src/core/data_formats/cursor/ArrayBufferCursor.ts @@ -33,7 +33,7 @@ export class ArrayBufferCursor extends AbstractWritableCursor implements Writabl buffer: ArrayBuffer, endianness: Endianness, offset: number = 0, - size: number = buffer.byteLength - offset + size: number = buffer.byteLength - offset, ) { super(endianness, offset); this._size = size; diff --git a/src/data_formats/cursor/BufferCursor.ts b/src/core/data_formats/cursor/BufferCursor.ts similarity index 96% rename from src/data_formats/cursor/BufferCursor.ts rename to src/core/data_formats/cursor/BufferCursor.ts index 96e14cb1..16572d14 100644 --- a/src/data_formats/cursor/BufferCursor.ts +++ b/src/core/data_formats/cursor/BufferCursor.ts @@ -23,7 +23,7 @@ export class BufferCursor extends AbstractCursor implements Cursor { buffer: Buffer, endianness: Endianness, offset: number = 0, - size: number = buffer.byteLength - offset + size: number = buffer.byteLength - offset, ) { if (offset < 0 || offset > buffer.byteLength) { throw new Error(`Offset ${offset} is out of bounds.`); diff --git a/src/data_formats/cursor/Cursor.test.ts b/src/core/data_formats/cursor/Cursor.test.ts similarity index 98% rename from src/data_formats/cursor/Cursor.test.ts rename to src/core/data_formats/cursor/Cursor.test.ts index 0d951cf9..7370fd38 100644 --- a/src/data_formats/cursor/Cursor.test.ts +++ b/src/core/data_formats/cursor/Cursor.test.ts @@ -16,7 +16,7 @@ import { ResizableBufferCursor } from "./ResizableBufferCursor"; function test_all( name: string, bytes: (endianness: Endianness) => number[], - run_test: (cursor: Cursor, endianness: Endianness) => void + run_test: (cursor: Cursor, endianness: Endianness) => void, ): void { const endiannesses = enum_values(Endianness); @@ -69,7 +69,7 @@ test_all( expect(cursor.size).toBe(cursor.position + cursor.bytes_left); expect(cursor.endianness).toBe(endianness); } - } + }, ); test_all( @@ -81,7 +81,7 @@ test_all( } else { expect(cursor.u32()).toBe(0x01020304); } - } + }, ); /** @@ -120,7 +120,7 @@ function test_integer_read(method_name: string): void { expect((cursor as any)[method_name]()).toBe(expected_number_2); expect(cursor.position).toBe(2 * byte_count); - } + }, ); } @@ -138,7 +138,7 @@ test_all( expect(cursor.u8_array(3)).toEqual([1, 2, 3]); expect(cursor.seek_start(2).u8_array(4)).toEqual([3, 4, 5, 6]); expect(cursor.seek_start(5).u8_array(3)).toEqual([6, 7, 8]); - } + }, ); test_all( @@ -148,7 +148,7 @@ test_all( expect(cursor.u16_array(3)).toEqual([0x0101, 0x0202, 0x0303]); expect(cursor.seek_start(4).u16_array(4)).toEqual([0x0303, 0x0404, 0x0505, 0x0606]); expect(cursor.seek_start(10).u16_array(3)).toEqual([0x0606, 0x0707, 0x0808]); - } + }, ); function test_string_read(method_name: string, char_size: number): void { @@ -194,7 +194,7 @@ function test_string_read(method_name: string, char_size: number): void { cursor.seek_start(char_size); expect((cursor as any)[method_name](4 * char_size, false, false)).toBe("AB\0ΓΏ"); expect(cursor.position).toBe(5 * char_size); - } + }, ); } diff --git a/src/data_formats/cursor/Cursor.ts b/src/core/data_formats/cursor/Cursor.ts similarity index 98% rename from src/data_formats/cursor/Cursor.ts rename to src/core/data_formats/cursor/Cursor.ts index 59291e43..53745dc0 100644 --- a/src/data_formats/cursor/Cursor.ts +++ b/src/core/data_formats/cursor/Cursor.ts @@ -157,7 +157,7 @@ export interface Cursor { string_ascii( max_byte_length: number, null_terminated: boolean, - drop_remaining: boolean + drop_remaining: boolean, ): string; /** @@ -166,7 +166,7 @@ export interface Cursor { string_utf16( max_byte_length: number, null_terminated: boolean, - drop_remaining: boolean + drop_remaining: boolean, ): string; array_buffer(size?: number): ArrayBuffer; diff --git a/src/data_formats/cursor/ResizableBufferCursor.test.ts b/src/core/data_formats/cursor/ResizableBufferCursor.test.ts similarity index 100% rename from src/data_formats/cursor/ResizableBufferCursor.test.ts rename to src/core/data_formats/cursor/ResizableBufferCursor.test.ts diff --git a/src/data_formats/cursor/ResizableBufferCursor.ts b/src/core/data_formats/cursor/ResizableBufferCursor.ts similarity index 97% rename from src/data_formats/cursor/ResizableBufferCursor.ts rename to src/core/data_formats/cursor/ResizableBufferCursor.ts index fdc565de..7c012105 100644 --- a/src/data_formats/cursor/ResizableBufferCursor.ts +++ b/src/core/data_formats/cursor/ResizableBufferCursor.ts @@ -38,7 +38,7 @@ export class ResizableBufferCursor extends AbstractWritableCursor implements Wri buffer: ResizableBuffer, endianness: Endianness, offset: number = 0, - size: number = buffer.size - offset + size: number = buffer.size - offset, ) { if (offset < 0 || offset > buffer.size) { throw new Error(`Offset ${offset} is out of bounds.`); diff --git a/src/data_formats/cursor/WritableCursor.test.ts b/src/core/data_formats/cursor/WritableCursor.test.ts similarity index 99% rename from src/data_formats/cursor/WritableCursor.test.ts rename to src/core/data_formats/cursor/WritableCursor.test.ts index cf94ae02..14b6a24e 100644 --- a/src/data_formats/cursor/WritableCursor.test.ts +++ b/src/core/data_formats/cursor/WritableCursor.test.ts @@ -15,7 +15,7 @@ import { WritableCursor } from "./WritableCursor"; function test_all( name: string, bytes: (endianness: Endianness) => number[], - run_test: (cursor: WritableCursor, endianness: Endianness) => void + run_test: (cursor: WritableCursor, endianness: Endianness) => void, ): void { const endiannesses = enum_values(Endianness); @@ -69,7 +69,7 @@ test_all( expect(cursor.position).toBe(3); expect(cursor.bytes_left).toBe(7); expect(cursor.endianness).toBe(endianness); - } + }, ); /** @@ -106,7 +106,7 @@ function test_integer_write(method_name: string): void { expect((cursor as any)[read_method_name]()).toBe(expected_number_1); expect((cursor as any)[read_method_name]()).toBe(expected_number_2); - } + }, ); } @@ -135,7 +135,7 @@ test_all( expect(cursor.f32()).toBeCloseTo(103.502, 3); expect(cursor.position).toBe(8); - } + }, ); test_all( @@ -169,7 +169,7 @@ test_all( } expect(cursor.position).toBe(20); - } + }, ); test_all( @@ -189,5 +189,5 @@ test_all( expect(new_cursor.position).toBe(0); expect(new_cursor.u32()).toBe(3); expect(new_cursor.u32()).toBe(4); - } + }, ); diff --git a/src/data_formats/cursor/WritableCursor.ts b/src/core/data_formats/cursor/WritableCursor.ts similarity index 100% rename from src/data_formats/cursor/WritableCursor.ts rename to src/core/data_formats/cursor/WritableCursor.ts diff --git a/src/data_formats/encryption/prc.ts b/src/core/data_formats/encryption/prc.ts similarity index 100% rename from src/data_formats/encryption/prc.ts rename to src/core/data_formats/encryption/prc.ts diff --git a/src/data_formats/parsing/area_collision_geometry.test.ts b/src/core/data_formats/parsing/area_collision_geometry.test.ts similarity index 100% rename from src/data_formats/parsing/area_collision_geometry.test.ts rename to src/core/data_formats/parsing/area_collision_geometry.test.ts diff --git a/src/data_formats/parsing/area_collision_geometry.ts b/src/core/data_formats/parsing/area_collision_geometry.ts similarity index 100% rename from src/data_formats/parsing/area_collision_geometry.ts rename to src/core/data_formats/parsing/area_collision_geometry.ts diff --git a/src/data_formats/parsing/area_geometry.ts b/src/core/data_formats/parsing/area_geometry.ts similarity index 95% rename from src/data_formats/parsing/area_geometry.ts rename to src/core/data_formats/parsing/area_geometry.ts index 4e2d26cb..cf95d88a 100644 --- a/src/data_formats/parsing/area_geometry.ts +++ b/src/core/data_formats/parsing/area_geometry.ts @@ -41,7 +41,7 @@ export function parse_area_geometry(cursor: Cursor): RenderObject { const section_rotation = new Vec3( cursor.u32() * ANGLE_TO_RAD, cursor.u32() * ANGLE_TO_RAD, - cursor.u32() * ANGLE_TO_RAD + cursor.u32() * ANGLE_TO_RAD, ); cursor.seek(4); @@ -56,7 +56,7 @@ export function parse_area_geometry(cursor: Cursor): RenderObject { const objects = parse_geometry_table( cursor, simple_geometry_offset_table_offset, - simple_geometry_offset_count + simple_geometry_offset_count, ); sections.push({ @@ -74,7 +74,7 @@ export function parse_area_geometry(cursor: Cursor): RenderObject { function parse_geometry_table( cursor: Cursor, table_offset: number, - table_entry_count: number + table_entry_count: number, ): NjObject[] { const objects: NjObject[] = []; diff --git a/src/data_formats/parsing/iff.ts b/src/core/data_formats/parsing/iff.ts similarity index 100% rename from src/data_formats/parsing/iff.ts rename to src/core/data_formats/parsing/iff.ts diff --git a/src/data_formats/parsing/itempmt.test.ts b/src/core/data_formats/parsing/itempmt.test.ts similarity index 100% rename from src/data_formats/parsing/itempmt.test.ts rename to src/core/data_formats/parsing/itempmt.test.ts diff --git a/src/data_formats/parsing/itempmt.ts b/src/core/data_formats/parsing/itempmt.ts similarity index 100% rename from src/data_formats/parsing/itempmt.ts rename to src/core/data_formats/parsing/itempmt.ts diff --git a/src/data_formats/parsing/ninja/index.ts b/src/core/data_formats/parsing/ninja/index.ts similarity index 98% rename from src/data_formats/parsing/ninja/index.ts rename to src/core/data_formats/parsing/ninja/index.ts index 3092c960..b8b257bc 100644 --- a/src/data_formats/parsing/ninja/index.ts +++ b/src/core/data_formats/parsing/ninja/index.ts @@ -35,7 +35,7 @@ export class NjObject { position: Vec3, rotation: Vec3, // Euler angles in radians. scale: Vec3, - children: NjObject[] + children: NjObject[], ) { this.evaluation_flags = evaluation_flags; this.model = model; @@ -70,7 +70,7 @@ export class NjObject { private get_bone_internal( object: NjObject, bone_id: number, - id_ref: [number] + id_ref: [number], ): NjObject | undefined { if (!object.evaluation_flags.skip) { const id = id_ref[0]++; @@ -125,7 +125,7 @@ export function parse_xj_object(cursor: Cursor): NjObject[] { function parse_ninja( cursor: Cursor, parse_model: (cursor: Cursor, context: any) => M, - context: any + context: any, ): NjObject[] { // POF0 and other chunks types are ignored. const njcm_chunks = parse_iff(cursor).filter(chunk => chunk.type === NJCM); @@ -142,7 +142,7 @@ function parse_ninja( function parse_sibling_objects( cursor: Cursor, parse_model: (cursor: Cursor, context: any) => M, - context: any + context: any, ): NjObject[] { const eval_flags = cursor.u32(); const no_translate = (eval_flags & 0b1) !== 0; @@ -205,7 +205,7 @@ function parse_sibling_objects( new Vec3(pos_x, pos_y, pos_z), new Vec3(rotation_x, rotation_y, rotation_z), new Vec3(scale_x, scale_y, scale_z), - children + children, ); return [object, ...siblings]; diff --git a/src/data_formats/parsing/ninja/motion.ts b/src/core/data_formats/parsing/ninja/motion.ts similarity index 97% rename from src/data_formats/parsing/ninja/motion.ts rename to src/core/data_formats/parsing/ninja/motion.ts index 43732148..f2427db8 100644 --- a/src/data_formats/parsing/ninja/motion.ts +++ b/src/core/data_formats/parsing/ninja/motion.ts @@ -1,4 +1,4 @@ -import { ANGLE_TO_RAD } from "."; +import { ANGLE_TO_RAD } from "./index"; import { Cursor } from "../../cursor/Cursor"; import { Vec3 } from "../../vector"; @@ -201,7 +201,7 @@ function parse_motion_data_f(cursor: Cursor, count: number): NjKeyframeF[] { function parse_motion_data_a( cursor: Cursor, keyframe_count: number, - frame_count: number + frame_count: number, ): NjKeyframeA[] { const frames: NjKeyframeA[] = []; const start_pos = cursor.position; @@ -212,7 +212,7 @@ function parse_motion_data_a( value: new Vec3( cursor.u16() * ANGLE_TO_RAD, cursor.u16() * ANGLE_TO_RAD, - cursor.u16() * ANGLE_TO_RAD + cursor.u16() * ANGLE_TO_RAD, ), }); } @@ -240,7 +240,7 @@ function parse_motion_data_a_wide(cursor: Cursor, keyframe_count: number): NjKey value: new Vec3( cursor.i32() * ANGLE_TO_RAD, cursor.i32() * ANGLE_TO_RAD, - cursor.i32() * ANGLE_TO_RAD + cursor.i32() * ANGLE_TO_RAD, ), }); } diff --git a/src/data_formats/parsing/ninja/njcm.ts b/src/core/data_formats/parsing/ninja/njcm.ts similarity index 98% rename from src/data_formats/parsing/ninja/njcm.ts rename to src/core/data_formats/parsing/ninja/njcm.ts index f88a1cdf..1c339619 100644 --- a/src/data_formats/parsing/ninja/njcm.ts +++ b/src/core/data_formats/parsing/ninja/njcm.ts @@ -201,7 +201,7 @@ export function parse_njcm_model(cursor: Cursor, cached_chunk_offsets: number[]) function parse_chunks( cursor: Cursor, cached_chunk_offsets: number[], - wide_end_chunks: boolean + wide_end_chunks: boolean, ): NjcmChunk[] { const chunks: NjcmChunk[] = []; let loop = true; @@ -313,7 +313,7 @@ function parse_chunks( function parse_vertex_chunk( cursor: Cursor, chunk_type_id: number, - flags: number + flags: number, ): NjcmChunkVertex[] { if (chunk_type_id < 32 || chunk_type_id > 50) { logger.warn(`Unknown vertex chunk type ${chunk_type_id}.`); @@ -375,7 +375,7 @@ function parse_vertex_chunk( vertex.normal = new Vec3( ((normal >> 20) & 0x3ff) / 0x3ff, ((normal >> 10) & 0x3ff) / 0x3ff, - (normal & 0x3ff) / 0x3ff + (normal & 0x3ff) / 0x3ff, ); if (chunk_type_id >= 49) { @@ -393,7 +393,7 @@ function parse_vertex_chunk( function parse_triangle_strip_chunk( cursor: Cursor, chunk_type_id: number, - flags: number + flags: number, ): NjcmTriangleStrip[] { const render_flags = { ignore_light: (flags & 0b1) !== 0, @@ -474,7 +474,7 @@ function parse_triangle_strip_chunk( vertex.normal = new Vec3( cursor.u16() / 255, cursor.u16() / 255, - cursor.u16() / 255 + cursor.u16() / 255, ); } diff --git a/src/data_formats/parsing/ninja/texture.ts b/src/core/data_formats/parsing/ninja/texture.ts similarity index 97% rename from src/data_formats/parsing/ninja/texture.ts rename to src/core/data_formats/parsing/ninja/texture.ts index ca100614..576b0835 100644 --- a/src/data_formats/parsing/ninja/texture.ts +++ b/src/core/data_formats/parsing/ninja/texture.ts @@ -37,7 +37,7 @@ export function parse_xvm(cursor: Cursor): Xvm { logger.warn("No header found."); } else if (header.texture_count !== textures.length) { logger.warn( - `Found ${textures.length} textures instead of ${header.texture_count} as defined in the header.` + `Found ${textures.length} textures instead of ${header.texture_count} as defined in the header.`, ); } diff --git a/src/data_formats/parsing/ninja/xj.ts b/src/core/data_formats/parsing/ninja/xj.ts similarity index 96% rename from src/data_formats/parsing/ninja/xj.ts rename to src/core/data_formats/parsing/ninja/xj.ts index dacd9409..f148ece0 100644 --- a/src/data_formats/parsing/ninja/xj.ts +++ b/src/core/data_formats/parsing/ninja/xj.ts @@ -65,15 +65,15 @@ export function parse_xj_model(cursor: Cursor): XjModel { } model.meshes.push( - ...parse_triangle_strip_table(cursor, triangle_strip_table_offset, triangle_strip_count) + ...parse_triangle_strip_table(cursor, triangle_strip_table_offset, triangle_strip_count), ); model.meshes.push( ...parse_triangle_strip_table( cursor, transparent_triangle_strip_table_offset, - transparent_triangle_strip_count - ) + transparent_triangle_strip_count, + ), ); return model; @@ -133,7 +133,7 @@ function parse_vertex_info_table(cursor: Cursor, vertex_info_table_offset: numbe function parse_triangle_strip_table( cursor: Cursor, triangle_strip_list_offset: number, - triangle_strip_count: number + triangle_strip_count: number, ): XjMesh[] { const strips: XjMesh[] = []; @@ -148,7 +148,7 @@ function parse_triangle_strip_table( const material_properties = parse_triangle_strip_material_properties( cursor, material_table_offset, - material_table_size + material_table_size, ); cursor.seek_start(index_list_offset); @@ -166,7 +166,7 @@ function parse_triangle_strip_table( function parse_triangle_strip_material_properties( cursor: Cursor, offset: number, - size: number + size: number, ): XjMaterialProperties { const props: XjMaterialProperties = {}; diff --git a/src/data_formats/parsing/prc.ts b/src/core/data_formats/parsing/prc.ts similarity index 95% rename from src/data_formats/parsing/prc.ts rename to src/core/data_formats/parsing/prc.ts index e722a7a5..066afe98 100644 --- a/src/data_formats/parsing/prc.ts +++ b/src/core/data_formats/parsing/prc.ts @@ -16,7 +16,7 @@ export function parse_prc(cursor: Cursor): Cursor { if (out.size !== size) { logger.warn( - `Size of decrypted, decompressed file was ${out.size} instead of expected ${size}.` + `Size of decrypted, decompressed file was ${out.size} instead of expected ${size}.`, ); } diff --git a/src/data_formats/parsing/quest/Episode.ts b/src/core/data_formats/parsing/quest/Episode.ts similarity index 100% rename from src/data_formats/parsing/quest/Episode.ts rename to src/core/data_formats/parsing/quest/Episode.ts diff --git a/src/data_formats/parsing/quest/areas.ts b/src/core/data_formats/parsing/quest/areas.ts similarity index 100% rename from src/data_formats/parsing/quest/areas.ts rename to src/core/data_formats/parsing/quest/areas.ts diff --git a/src/data_formats/parsing/quest/bin.test.ts b/src/core/data_formats/parsing/quest/bin.test.ts similarity index 94% rename from src/data_formats/parsing/quest/bin.test.ts rename to src/core/data_formats/parsing/quest/bin.test.ts index 5c3f1693..b5af94b5 100644 --- a/src/data_formats/parsing/quest/bin.test.ts +++ b/src/core/data_formats/parsing/quest/bin.test.ts @@ -8,7 +8,7 @@ import { parse_bin, write_bin } from "./bin"; /** * Parse a file, convert the resulting structure to BIN again and check whether the end result is equal to the original. */ -function test_quest(path: string) { +function test_quest(path: string): void { const orig_buffer = readFileSync(path); const orig_bin = prs_decompress(new BufferCursor(orig_buffer, Endianness.Little)); const test_buffer = write_bin(parse_bin(orig_bin)); @@ -25,7 +25,7 @@ function test_quest(path: string) { if (test_byte !== orig_byte) { throw new Error( - `Byte ${matching_bytes} didn't match, expected ${orig_byte}, got ${test_byte}.` + `Byte ${matching_bytes} didn't match, expected ${orig_byte}, got ${test_byte}.`, ); } diff --git a/src/data_formats/parsing/quest/bin.ts b/src/core/data_formats/parsing/quest/bin.ts similarity index 98% rename from src/data_formats/parsing/quest/bin.ts rename to src/core/data_formats/parsing/quest/bin.ts index 01ec2f7d..50950a7a 100644 --- a/src/data_formats/parsing/quest/bin.ts +++ b/src/core/data_formats/parsing/quest/bin.ts @@ -1,8 +1,8 @@ import Logger from "js-logger"; import { Endianness } from "../../Endianness"; -import { ControlFlowGraph } from "../../../scripting/data_flow_analysis/ControlFlowGraph"; -import { register_value } from "../../../scripting/data_flow_analysis/register_value"; -import { stack_value } from "../../../scripting/data_flow_analysis/stack_value"; +import { ControlFlowGraph } from "../../../../quest_editor/scripting/data_flow_analysis/ControlFlowGraph"; +import { register_value } from "../../../../quest_editor/scripting/data_flow_analysis/register_value"; +import { stack_value } from "../../../../quest_editor/scripting/data_flow_analysis/stack_value"; import { Arg, DataSegment, @@ -11,8 +11,13 @@ import { Segment, SegmentType, StringSegment, -} from "../../../scripting/instructions"; -import { Kind, Opcode, OPCODES, StackInteraction } from "../../../scripting/opcodes"; +} from "../../../../quest_editor/scripting/instructions"; +import { + Kind, + Opcode, + OPCODES, + StackInteraction, +} from "../../../../quest_editor/scripting/opcodes"; import { ArrayBufferCursor } from "../../cursor/ArrayBufferCursor"; import { Cursor } from "../../cursor/Cursor"; import { ResizableBufferCursor } from "../../cursor/ResizableBufferCursor"; diff --git a/src/data_formats/parsing/quest/dat.test.ts b/src/core/data_formats/parsing/quest/dat.test.ts similarity index 100% rename from src/data_formats/parsing/quest/dat.test.ts rename to src/core/data_formats/parsing/quest/dat.test.ts diff --git a/src/data_formats/parsing/quest/dat.ts b/src/core/data_formats/parsing/quest/dat.ts similarity index 98% rename from src/data_formats/parsing/quest/dat.ts rename to src/core/data_formats/parsing/quest/dat.ts index 2844dab6..10a0178d 100644 --- a/src/data_formats/parsing/quest/dat.ts +++ b/src/core/data_formats/parsing/quest/dat.ts @@ -58,7 +58,7 @@ export function parse_dat(cursor: Cursor): DatFile { if (entities_size !== total_size - 16) { throw Error( `Malformed DAT file. Expected an entities size of ${total_size - - 16}, got ${entities_size}.` + 16}, got ${entities_size}.`, ); } @@ -94,7 +94,7 @@ export function parse_dat(cursor: Cursor): DatFile { if (bytes_read !== entities_size) { logger.warn( - `Read ${bytes_read} bytes instead of expected ${entities_size} for entity type ${entity_type} (Object).` + `Read ${bytes_read} bytes instead of expected ${entities_size} for entity type ${entity_type} (Object).`, ); cursor.seek(entities_size - bytes_read); } @@ -133,7 +133,7 @@ export function parse_dat(cursor: Cursor): DatFile { if (bytes_read !== entities_size) { logger.warn( - `Read ${bytes_read} bytes instead of expected ${entities_size} for entity type ${entity_type} (NPC).` + `Read ${bytes_read} bytes instead of expected ${entities_size} for entity type ${entity_type} (NPC).`, ); cursor.seek(entities_size - bytes_read); } @@ -157,7 +157,7 @@ export function write_dat({ objs, npcs, unknowns }: DatFile): ResizableBuffer { const buffer = new ResizableBuffer( objs.length * (16 + OBJECT_SIZE) + npcs.length * (16 + NPC_SIZE) + - unknowns.reduce((a, b) => a + b.total_size, 0) + unknowns.reduce((a, b) => a + b.total_size, 0), ); const cursor = new ResizableBufferCursor(buffer, Endianness.Little); diff --git a/src/data_formats/parsing/quest/entities.ts b/src/core/data_formats/parsing/quest/entities.ts similarity index 100% rename from src/data_formats/parsing/quest/entities.ts rename to src/core/data_formats/parsing/quest/entities.ts diff --git a/src/data_formats/parsing/quest/index.test.ts b/src/core/data_formats/parsing/quest/index.test.ts similarity index 98% rename from src/data_formats/parsing/quest/index.test.ts rename to src/core/data_formats/parsing/quest/index.test.ts index 42c6c9ab..b9775cae 100644 --- a/src/data_formats/parsing/quest/index.test.ts +++ b/src/core/data_formats/parsing/quest/index.test.ts @@ -1,6 +1,6 @@ import { readFileSync } from "fs"; import { Endianness } from "../../Endianness"; -import { walk_qst_files } from "../../../../test/src/utils"; +import { walk_qst_files } from "../../../../../test/src/utils"; import { ArrayBufferCursor } from "../../cursor/ArrayBufferCursor"; import { BufferCursor } from "../../cursor/BufferCursor"; import { parse_quest, write_quest_qst } from "./index"; diff --git a/src/data_formats/parsing/quest/index.ts b/src/core/data_formats/parsing/quest/index.ts similarity index 99% rename from src/data_formats/parsing/quest/index.ts rename to src/core/data_formats/parsing/quest/index.ts index 46ce4cd4..3ddbb553 100644 --- a/src/data_formats/parsing/quest/index.ts +++ b/src/core/data_formats/parsing/quest/index.ts @@ -4,8 +4,8 @@ import { InstructionSegment, Segment, SegmentType, -} from "../../../scripting/instructions"; -import { Opcode } from "../../../scripting/opcodes"; +} from "../../../../quest_editor/scripting/instructions"; +import { Opcode } from "../../../../quest_editor/scripting/opcodes"; import { prs_compress } from "../../compression/prs/compress"; import { prs_decompress } from "../../compression/prs/decompress"; import { ArrayBufferCursor } from "../../cursor/ArrayBufferCursor"; diff --git a/src/data_formats/parsing/quest/npc_types.ts b/src/core/data_formats/parsing/quest/npc_types.ts similarity index 99% rename from src/data_formats/parsing/quest/npc_types.ts rename to src/core/data_formats/parsing/quest/npc_types.ts index 7ef3f736..3435c6f7 100644 --- a/src/data_formats/parsing/quest/npc_types.ts +++ b/src/core/data_formats/parsing/quest/npc_types.ts @@ -1,5 +1,6 @@ import { Episode, check_episode } from "./Episode"; +// Make sure ObjectType does not overlap NpcType. export enum NpcType { // // Unknown NPCs @@ -181,7 +182,6 @@ export enum NpcType { GoranDetonator, SaintMilion, Shambertin, - // Kondrieu should be last to make sure ObjectType does not overlap NpcType. See code below. Kondrieu, } @@ -201,6 +201,7 @@ export type NpcTypeData = { readonly rare_type?: NpcType; }; +export const NPC_TYPES: NpcType[] = []; export const ENEMY_NPC_TYPES: NpcType[] = []; export function npc_data(type: NpcType): NpcTypeData { @@ -234,13 +235,10 @@ function define_npc_type_data( enemy: boolean, rare_type?: NpcType, ): void { - if (episode) { - const map = EP_AND_NAME_TO_NPC_TYPE[episode]; + NPC_TYPES.push(npc_type); - if (map) { - map.set(simple_name, npc_type); - map.set(ultimate_name, npc_type); - } + if (enemy) { + ENEMY_NPC_TYPES.push(npc_type); } NPC_TYPE_DATA[npc_type] = { @@ -252,8 +250,13 @@ function define_npc_type_data( rare_type, }; - if (enemy) { - ENEMY_NPC_TYPES.push(npc_type); + if (episode) { + const map = EP_AND_NAME_TO_NPC_TYPE[episode]; + + if (map) { + map.set(simple_name, npc_type); + map.set(ultimate_name, npc_type); + } } } diff --git a/src/data_formats/parsing/quest/object_types.ts b/src/core/data_formats/parsing/quest/object_types.ts similarity index 100% rename from src/data_formats/parsing/quest/object_types.ts rename to src/core/data_formats/parsing/quest/object_types.ts diff --git a/src/data_formats/parsing/quest/qst.test.ts b/src/core/data_formats/parsing/quest/qst.test.ts similarity index 94% rename from src/data_formats/parsing/quest/qst.test.ts rename to src/core/data_formats/parsing/quest/qst.test.ts index cf126533..54accd0e 100644 --- a/src/data_formats/parsing/quest/qst.test.ts +++ b/src/core/data_formats/parsing/quest/qst.test.ts @@ -1,4 +1,4 @@ -import { walk_qst_files } from "../../../../test/src/utils"; +import { walk_qst_files } from "../../../../../test/src/utils"; import { parse_qst, write_qst } from "./qst"; import { Endianness } from "../../Endianness"; import { BufferCursor } from "../../cursor/BufferCursor"; diff --git a/src/data_formats/parsing/quest/qst.ts b/src/core/data_formats/parsing/quest/qst.ts similarity index 97% rename from src/data_formats/parsing/quest/qst.ts rename to src/core/data_formats/parsing/quest/qst.ts index be56c747..9b8f3e70 100644 --- a/src/data_formats/parsing/quest/qst.ts +++ b/src/core/data_formats/parsing/quest/qst.ts @@ -167,16 +167,16 @@ function parse_files(cursor: Cursor, expected_sizes: Map): QstCo expected_size, cursor: new ResizableBufferCursor( new ResizableBuffer(expected_size || 10 * 1024), - Endianness.Little + Endianness.Little, ), chunk_nos: new Set(), - }) + }), ); } if (file.chunk_nos.has(chunk_no)) { logger.warn( - `File chunk number ${chunk_no} of file ${file_name} was already encountered, overwriting previous chunk.` + `File chunk number ${chunk_no} of file ${file_name} was already encountered, overwriting previous chunk.`, ); } else { file.chunk_nos.add(chunk_no); @@ -188,7 +188,7 @@ function parse_files(cursor: Cursor, expected_sizes: Map): QstCo if (size > 1024) { logger.warn( - `Data segment size of ${size} is larger than expected maximum size, reading just 1024 bytes.` + `Data segment size of ${size} is larger than expected maximum size, reading just 1024 bytes.`, ); size = 1024; } @@ -204,7 +204,7 @@ function parse_files(cursor: Cursor, expected_sizes: Map): QstCo if (cursor.position !== start_position + 1056) { throw new Error( `Read ${cursor.position - - start_position} file chunk message bytes instead of expected 1056.` + start_position} file chunk message bytes instead of expected 1056.`, ); } } @@ -221,7 +221,7 @@ function parse_files(cursor: Cursor, expected_sizes: Map): QstCo // Check whether the expected size was correct. if (file.expected_size != null && file.cursor.size !== file.expected_size) { logger.warn( - `File ${file.name} has an actual size of ${file.cursor.size} instead of the expected size ${file.expected_size}.` + `File ${file.name} has an actual size of ${file.cursor.size} instead of the expected size ${file.expected_size}.`, ); } @@ -279,7 +279,7 @@ function write_file_headers(cursor: WritableCursor, files: QstContainedFileParam if (file_name_2.length > 24) { throw Error( - `File ${file.name} has a file_name_2 length (${file_name_2}) longer than 24 characters.` + `File ${file.name} has a file_name_2 length (${file_name_2}) longer than 24 characters.`, ); } @@ -305,7 +305,7 @@ function write_file_chunks(cursor: WritableCursor, files: QstContainedFileParam[ cursor, file_to_chunk.data, file_to_chunk.no++, - file_to_chunk.name + file_to_chunk.name, ) ) { done++; @@ -319,7 +319,7 @@ function write_file_chunks(cursor: WritableCursor, files: QstContainedFileParam[ 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.` + `Expected to write ${expected_chunks} chunks for file "${file_to_chunk.name}" but ${file_to_chunk.no} where written.`, ); } } @@ -332,7 +332,7 @@ function write_file_chunk( cursor: WritableCursor, data: Cursor, chunk_no: number, - name: string + name: string, ): boolean { cursor.write_u8_array([28, 4, 19, 0]); cursor.write_u8(chunk_no); diff --git a/src/data_formats/parsing/rel.ts b/src/core/data_formats/parsing/rel.ts similarity index 100% rename from src/data_formats/parsing/rel.ts rename to src/core/data_formats/parsing/rel.ts diff --git a/src/data_formats/parsing/rlc.ts b/src/core/data_formats/parsing/rlc.ts similarity index 100% rename from src/data_formats/parsing/rlc.ts rename to src/core/data_formats/parsing/rlc.ts diff --git a/src/data_formats/parsing/unitxt.ts b/src/core/data_formats/parsing/unitxt.ts similarity index 100% rename from src/data_formats/parsing/unitxt.ts rename to src/core/data_formats/parsing/unitxt.ts diff --git a/src/data_formats/vector.ts b/src/core/data_formats/vector.ts similarity index 100% rename from src/data_formats/vector.ts rename to src/core/data_formats/vector.ts diff --git a/src/core/domain/index.ts b/src/core/domain/index.ts new file mode 100644 index 00000000..804a058c --- /dev/null +++ b/src/core/domain/index.ts @@ -0,0 +1,34 @@ +import { enum_values } from "../enums"; + +export const RARE_ENEMY_PROB = 1 / 512; +export const KONDRIEU_PROB = 1 / 10; + +export enum Server { + Ephinea = "Ephinea", +} + +export const Servers: Server[] = enum_values(Server); + +export enum SectionId { + Viridia, + Greenill, + Skyly, + Bluefull, + Purplenum, + Pinkal, + Redria, + Oran, + Yellowboze, + Whitill, +} + +export const SectionIds: SectionId[] = enum_values(SectionId); + +export enum Difficulty { + Normal, + Hard, + VHard, + Ultimate, +} + +export const Difficulties: Difficulty[] = enum_values(Difficulty); diff --git a/src/domain/items.ts b/src/core/domain/items.ts similarity index 96% rename from src/domain/items.ts rename to src/core/domain/items.ts index b5ea297d..12335321 100644 --- a/src/domain/items.ts +++ b/src/core/domain/items.ts @@ -19,7 +19,7 @@ export class WeaponItemType implements ItemType { readonly max_atp: number, readonly ata: number, readonly max_grind: number, - readonly required_atp: number + readonly required_atp: number, ) {} } @@ -35,7 +35,7 @@ export class ArmorItemType implements ItemType { readonly max_dfp: number, readonly mst: number, readonly hp: number, - readonly lck: number + readonly lck: number, ) {} } @@ -51,7 +51,7 @@ export class ShieldItemType implements ItemType { readonly max_dfp: number, readonly mst: number, readonly hp: number, - readonly lck: number + readonly lck: number, ) {} } diff --git a/src/dto.ts b/src/core/dto.ts similarity index 100% rename from src/dto.ts rename to src/core/dto.ts diff --git a/src/enums.test.ts b/src/core/enums.test.ts similarity index 100% rename from src/enums.test.ts rename to src/core/enums.test.ts diff --git a/src/enums.ts b/src/core/enums.ts similarity index 100% rename from src/enums.ts rename to src/core/enums.ts diff --git a/src/loading/load_array_buffer.ts b/src/core/loading.ts similarity index 100% rename from src/loading/load_array_buffer.ts rename to src/core/loading.ts diff --git a/src/persistence/Persister.ts b/src/core/persistence.ts similarity index 96% rename from src/persistence/Persister.ts rename to src/core/persistence.ts index bedabf56..ad255b1e 100644 --- a/src/persistence/Persister.ts +++ b/src/core/persistence.ts @@ -1,5 +1,5 @@ import Logger from "js-logger"; -import { Server } from "../domain"; +import { Server } from "./domain"; const logger = Logger.get("persistence/Persister"); diff --git a/src/primitive_conversion.ts b/src/core/primitive_conversion.ts similarity index 100% rename from src/primitive_conversion.ts rename to src/core/primitive_conversion.ts diff --git a/src/read_file.ts b/src/core/read_file.ts similarity index 100% rename from src/read_file.ts rename to src/core/read_file.ts diff --git a/src/rendering/Renderer.ts b/src/core/rendering/Renderer.ts similarity index 99% rename from src/rendering/Renderer.ts rename to src/core/rendering/Renderer.ts index 6ee2320a..c24f4b1e 100644 --- a/src/rendering/Renderer.ts +++ b/src/core/rendering/Renderer.ts @@ -96,7 +96,7 @@ export class Renderer { position.z, look_at.x, look_at.y, - look_at.z + look_at.z, ); } diff --git a/src/rendering/conversion/GeometryBuilder.ts b/src/core/rendering/conversion/GeometryBuilder.ts similarity index 98% rename from src/rendering/conversion/GeometryBuilder.ts rename to src/core/rendering/conversion/GeometryBuilder.ts index dab40dad..d5f0eaaf 100644 --- a/src/rendering/conversion/GeometryBuilder.ts +++ b/src/core/rendering/conversion/GeometryBuilder.ts @@ -58,7 +58,7 @@ export class GeometryBuilder { return new Vector3( this.positions[3 * index], this.positions[3 * index + 1], - this.positions[3 * index + 2] + this.positions[3 * index + 2], ); } @@ -66,7 +66,7 @@ export class GeometryBuilder { return new Vector3( this.normals[3 * index], this.normals[3 * index + 1], - this.normals[3 * index + 2] + this.normals[3 * index + 2], ); } diff --git a/src/rendering/conversion/create_mesh.ts b/src/core/rendering/conversion/create_mesh.ts similarity index 93% rename from src/rendering/conversion/create_mesh.ts rename to src/core/rendering/conversion/create_mesh.ts index c65cde76..0f8f21b7 100644 --- a/src/rendering/conversion/create_mesh.ts +++ b/src/core/rendering/conversion/create_mesh.ts @@ -26,7 +26,7 @@ const DEFAULT_SKINNED_MATERIAL = new MeshLambertMaterial({ export function create_mesh( geometry: BufferGeometry, material?: Material | Material[], - default_material: Material = DEFAULT_MATERIAL + default_material: Material = DEFAULT_MATERIAL, ): Mesh { return create(geometry, material, default_material, Mesh); } @@ -34,7 +34,7 @@ export function create_mesh( export function create_skinned_mesh( geometry: BufferGeometry, material?: Material | Material[], - default_material: Material = DEFAULT_SKINNED_MATERIAL + default_material: Material = DEFAULT_SKINNED_MATERIAL, ): SkinnedMesh { return create(geometry, material, default_material, SkinnedMesh); } @@ -43,7 +43,7 @@ function create( geometry: BufferGeometry, material: Material | Material[] | undefined, default_material: Material, - mesh_constructor: new (geometry: BufferGeometry, material: Material | Material[]) => M + mesh_constructor: new (geometry: BufferGeometry, material: Material | Material[]) => M, ): M { const { created_by_geometry_builder, diff --git a/src/rendering/conversion/index.ts b/src/core/rendering/conversion/index.ts similarity index 100% rename from src/rendering/conversion/index.ts rename to src/core/rendering/conversion/index.ts diff --git a/src/rendering/conversion/ninja_animation.ts b/src/core/rendering/conversion/ninja_animation.ts similarity index 94% rename from src/rendering/conversion/ninja_animation.ts rename to src/core/rendering/conversion/ninja_animation.ts index 22b6842a..dded2114 100644 --- a/src/rendering/conversion/ninja_animation.ts +++ b/src/core/rendering/conversion/ninja_animation.ts @@ -19,7 +19,7 @@ export const PSO_FRAME_RATE = 30; export function create_animation_clip( nj_object: NjObject, - nj_motion: NjMotion + nj_motion: NjMotion, ): AnimationClip { const interpolation = nj_motion.interpolation === NjInterpolation.Spline ? InterpolateSmooth : InterpolateLinear; @@ -40,7 +40,7 @@ export function create_animation_clip( if (type === NjKeyframeTrackType.Rotation) { const order = bone.evaluation_flags.zxy_rotation_order ? "ZXY" : "ZYX"; const quat = new Quaternion().setFromEuler( - new Euler(keyframe.value.x, keyframe.value.y, keyframe.value.z, order) + new Euler(keyframe.value.x, keyframe.value.y, keyframe.value.z, order), ); values.push(quat.x, quat.y, quat.z, quat.w); @@ -55,8 +55,8 @@ export function create_animation_clip( `.bones[${bone_id}].quaternion`, times, values, - interpolation - ) + interpolation, + ), ); } else { const name = @@ -72,6 +72,6 @@ export function create_animation_clip( return new AnimationClip( "Animation", (nj_motion.frame_count - 1) / PSO_FRAME_RATE, - tracks + tracks, ).optimize(); } diff --git a/src/rendering/conversion/ninja_geometry.ts b/src/core/rendering/conversion/ninja_geometry.ts similarity index 96% rename from src/rendering/conversion/ninja_geometry.ts rename to src/core/rendering/conversion/ninja_geometry.ts index 88fda4ee..45256a7d 100644 --- a/src/rendering/conversion/ninja_geometry.ts +++ b/src/core/rendering/conversion/ninja_geometry.ts @@ -1,5 +1,5 @@ import { Bone, BufferGeometry, Euler, Matrix3, Matrix4, Quaternion, Vector2, Vector3 } from "three"; -import { vec3_to_threejs } from "."; +import { vec3_to_threejs } from "./index"; import { is_njcm_model, NjModel, NjObject } from "../../data_formats/parsing/ninja"; import { NjcmModel } from "../../data_formats/parsing/ninja/njcm"; import { XjModel } from "../../data_formats/parsing/ninja/xj"; @@ -13,7 +13,7 @@ const NO_SCALE = new Vector3(1, 1, 1); export function ninja_object_to_geometry_builder( object: NjObject, - builder: GeometryBuilder + builder: GeometryBuilder, ): void { new GeometryCreator(builder).to_geometry_builder(object); } @@ -74,7 +74,7 @@ class GeometryCreator { private object_to_geometry( object: NjObject, parent_bone: Bone | undefined, - parent_matrix: Matrix4 + parent_matrix: Matrix4, ): void { const { no_translate, @@ -91,13 +91,13 @@ class GeometryCreator { rotation.x, rotation.y, rotation.z, - zxy_rotation_order ? "ZXY" : "ZYX" + zxy_rotation_order ? "ZXY" : "ZYX", ); const matrix = new Matrix4() .compose( no_translate ? NO_TRANSLATION : vec3_to_threejs(position), no_rotate ? NO_ROTATION : new Quaternion().setFromEuler(euler), - no_scale ? NO_SCALE : vec3_to_threejs(scale) + no_scale ? NO_SCALE : vec3_to_threejs(scale), ) .premultiply(parent_matrix); @@ -178,7 +178,7 @@ class GeometryCreator { this.builder.add_vertex( vertex.position, normal, - mesh.has_tex_coords ? mesh_vertex.tex_coords! : DEFAULT_UV + mesh.has_tex_coords ? mesh_vertex.tex_coords! : DEFAULT_UV, ); if (i >= 2) { @@ -209,7 +209,7 @@ class GeometryCreator { this.builder.add_group( start_index_count, this.builder.index_count - start_index_count, - mesh.texture_id + mesh.texture_id, ); } } @@ -286,7 +286,7 @@ class GeometryCreator { this.builder.add_group( start_index_count, this.builder.index_count - start_index_count, - current_mat_idx + current_mat_idx, ); } } diff --git a/src/rendering/conversion/ninja_textures.ts b/src/core/rendering/conversion/ninja_textures.ts similarity index 98% rename from src/rendering/conversion/ninja_textures.ts rename to src/core/rendering/conversion/ninja_textures.ts index 279603ea..b108a2fc 100644 --- a/src/rendering/conversion/ninja_textures.ts +++ b/src/core/rendering/conversion/ninja_textures.ts @@ -41,7 +41,7 @@ export function xvm_texture_to_texture(tex: XvmTexture): Texture { ], tex.width, tex.height, - format + format, ); texture_3js.minFilter = LinearFilter; diff --git a/src/stores/ItemTypeStore.ts b/src/core/stores/ItemTypeStore.ts similarity index 93% rename from src/stores/ItemTypeStore.ts rename to src/core/stores/ItemTypeStore.ts index 1582f041..7457c9ae 100644 --- a/src/stores/ItemTypeStore.ts +++ b/src/core/stores/ItemTypeStore.ts @@ -1,16 +1,16 @@ import { observable } from "mobx"; import { - ItemType, - Server, - WeaponItemType, ArmorItemType, + ItemType, ShieldItemType, ToolItemType, UnitItemType, -} from "../domain"; + WeaponItemType, +} from "../domain/items"; import { Loadable } from "../Loadable"; import { ServerMap } from "./ServerMap"; import { ItemTypeDto } from "../dto"; +import { Server } from "../domain"; export class ItemTypeStore { private id_to_item_type: ItemType[] = []; @@ -23,7 +23,7 @@ export class ItemTypeStore { load = async (server: Server): Promise => { const response = await fetch( - `${process.env.PUBLIC_URL}/itemTypes.${Server[server].toLowerCase()}.json` + `${process.env.PUBLIC_URL}/itemTypes.${Server[server].toLowerCase()}.json`, ); const data: ItemTypeDto[] = await response.json(); @@ -41,7 +41,7 @@ export class ItemTypeStore { item_type_dto.maxAtp, item_type_dto.ata, item_type_dto.maxGrind, - item_type_dto.requiredAtp + item_type_dto.requiredAtp, ); break; case "armor": @@ -56,7 +56,7 @@ export class ItemTypeStore { item_type_dto.maxDfp, item_type_dto.mst, item_type_dto.hp, - item_type_dto.lck + item_type_dto.lck, ); break; case "shield": @@ -71,7 +71,7 @@ export class ItemTypeStore { item_type_dto.maxDfp, item_type_dto.mst, item_type_dto.hp, - item_type_dto.lck + item_type_dto.lck, ); break; case "unit": diff --git a/src/stores/ServerMap.ts b/src/core/stores/ServerMap.ts similarity index 86% rename from src/stores/ServerMap.ts rename to src/core/stores/ServerMap.ts index 85ac5295..a10a0220 100644 --- a/src/stores/ServerMap.ts +++ b/src/core/stores/ServerMap.ts @@ -1,6 +1,6 @@ import { computed } from "mobx"; import { Server } from "../domain"; -import { application_store } from "./ApplicationStore"; +import { application_store } from "../../application/stores/ApplicationStore"; import { EnumMap } from "../enums"; /** diff --git a/src/ui/BigSelect.css b/src/core/ui/BigSelect.css similarity index 100% rename from src/ui/BigSelect.css rename to src/core/ui/BigSelect.css diff --git a/src/ui/BigSelect.tsx b/src/core/ui/BigSelect.tsx similarity index 100% rename from src/ui/BigSelect.tsx rename to src/core/ui/BigSelect.tsx diff --git a/src/ui/BigTable.css b/src/core/ui/BigTable.css similarity index 100% rename from src/ui/BigTable.css rename to src/core/ui/BigTable.css diff --git a/src/ui/BigTable.tsx b/src/core/ui/BigTable.tsx similarity index 97% rename from src/ui/BigTable.tsx rename to src/core/ui/BigTable.tsx index cce0b1a5..7c864710 100644 --- a/src/ui/BigTable.tsx +++ b/src/core/ui/BigTable.tsx @@ -107,8 +107,8 @@ export class BigTable extends Component<{ height="18" viewBox="0 0 24 24" > - - + + ); } else { @@ -119,8 +119,8 @@ export class BigTable extends Component<{ height="18" viewBox="0 0 24 24" > - - + + ); } diff --git a/src/ui/DisabledTextComponent.css b/src/core/ui/DisabledTextComponent.css similarity index 100% rename from src/ui/DisabledTextComponent.css rename to src/core/ui/DisabledTextComponent.css diff --git a/src/ui/DisabledTextComponent.tsx b/src/core/ui/DisabledTextComponent.tsx similarity index 100% rename from src/ui/DisabledTextComponent.tsx rename to src/core/ui/DisabledTextComponent.tsx diff --git a/src/ui/ErrorBoundary.css b/src/core/ui/ErrorBoundary.css similarity index 100% rename from src/ui/ErrorBoundary.css rename to src/core/ui/ErrorBoundary.css diff --git a/src/ui/ErrorBoundary.tsx b/src/core/ui/ErrorBoundary.tsx similarity index 100% rename from src/ui/ErrorBoundary.tsx rename to src/core/ui/ErrorBoundary.tsx diff --git a/src/ui/RendererComponent.tsx b/src/core/ui/RendererComponent.tsx similarity index 100% rename from src/ui/RendererComponent.tsx rename to src/core/ui/RendererComponent.tsx diff --git a/src/ui/SectionIdIcon.tsx b/src/core/ui/SectionIdIcon.tsx similarity index 100% rename from src/ui/SectionIdIcon.tsx rename to src/core/ui/SectionIdIcon.tsx diff --git a/src/ui/index.css b/src/core/ui/index.css similarity index 100% rename from src/ui/index.css rename to src/core/ui/index.css diff --git a/src/ui/time.ts b/src/core/ui/time.ts similarity index 100% rename from src/ui/time.ts rename to src/core/ui/time.ts diff --git a/src/undo.test.ts b/src/core/undo.test.ts similarity index 100% rename from src/undo.test.ts rename to src/core/undo.test.ts diff --git a/src/undo.ts b/src/core/undo.ts similarity index 99% rename from src/undo.ts rename to src/core/undo.ts index 993d5e75..a869ff31 100644 --- a/src/undo.ts +++ b/src/core/undo.ts @@ -4,7 +4,7 @@ export class Action { constructor( readonly description: string, readonly undo: () => void, - readonly redo: () => void + readonly redo: () => void, ) {} } diff --git a/src/stores/DpsCalcStore.ts b/src/dps_calc/stores/DpsCalcStore.ts similarity index 94% rename from src/stores/DpsCalcStore.ts rename to src/dps_calc/stores/DpsCalcStore.ts index a24d0b9d..6ca3e045 100644 --- a/src/stores/DpsCalcStore.ts +++ b/src/dps_calc/stores/DpsCalcStore.ts @@ -1,6 +1,6 @@ import { observable, IObservableArray, computed } from "mobx"; -import { WeaponItem, WeaponItemType, ArmorItemType, ShieldItemType } from "../domain"; -import { item_type_stores } from "./ItemTypeStore"; +import { WeaponItem, WeaponItemType, ArmorItemType, ShieldItemType } from "../../core/domain/items"; +import { item_type_stores } from "../../core/stores/ItemTypeStore"; const NORMAL_DAMAGE_FACTOR = 0.2 * 0.9; const HEAVY_DAMAGE_FACTOR = NORMAL_DAMAGE_FACTOR * 1.89; @@ -81,19 +81,19 @@ class Weapon { class DpsCalcStore { @computed get weapon_types(): WeaponItemType[] { return item_type_stores.current.value.item_types.filter( - it => it instanceof WeaponItemType + it => it instanceof WeaponItemType, ) as WeaponItemType[]; } @computed get armor_types(): ArmorItemType[] { return item_type_stores.current.value.item_types.filter( - it => it instanceof ArmorItemType + it => it instanceof ArmorItemType, ) as ArmorItemType[]; } @computed get shield_types(): ShieldItemType[] { return item_type_stores.current.value.item_types.filter( - it => it instanceof ShieldItemType + it => it instanceof ShieldItemType, ) as ShieldItemType[]; } diff --git a/src/ui/dps_calc/DpsCalcComponent.tsx b/src/dps_calc/ui/DpsCalcComponent.tsx similarity index 97% rename from src/ui/dps_calc/DpsCalcComponent.tsx rename to src/dps_calc/ui/DpsCalcComponent.tsx index 52d3e2b2..b0afad10 100644 --- a/src/ui/dps_calc/DpsCalcComponent.tsx +++ b/src/dps_calc/ui/DpsCalcComponent.tsx @@ -1,10 +1,10 @@ import { InputNumber } from "antd"; import { observer } from "mobx-react"; import React, { Component, ReactNode } from "react"; -import { ArmorItemType, ShieldItemType, WeaponItemType } from "../../domain"; -import { dps_calc_store } from "../../stores/DpsCalcStore"; -import { item_type_stores } from "../../stores/ItemTypeStore"; -import { BigSelect } from "../BigSelect"; +import { ArmorItemType, ShieldItemType, WeaponItemType } from "../../core/domain/items"; +import { dps_calc_store } from "../stores/DpsCalcStore"; +import { item_type_stores } from "../../core/stores/ItemTypeStore"; +import { BigSelect } from "../../core/ui/BigSelect"; @observer export class DpsCalcComponent extends Component { diff --git a/src/hunt_optimizer/domain/index.ts b/src/hunt_optimizer/domain/index.ts new file mode 100644 index 00000000..39539f9d --- /dev/null +++ b/src/hunt_optimizer/domain/index.ts @@ -0,0 +1,73 @@ +import { Episode } from "../../core/data_formats/parsing/quest/Episode"; +import { NpcType } from "../../core/data_formats/parsing/quest/npc_types"; +import { computed, observable } from "mobx"; +import { ItemType } from "../../core/domain/items"; +import { Difficulty, SectionId } from "../../core/domain"; + +export class HuntMethod { + readonly id: string; + readonly name: string; + readonly episode: Episode; + readonly quest: SimpleQuest; + readonly enemy_counts: Map; + /** + * The time it takes to complete the quest in hours. + */ + readonly default_time: number; + /** + * The time it takes to complete the quest in hours as specified by the user. + */ + @observable user_time?: number; + + @computed get time(): number { + return this.user_time != null ? this.user_time : this.default_time; + } + + constructor(id: string, name: string, quest: SimpleQuest, default_time: number) { + if (!id) throw new Error("id is required."); + if (default_time <= 0) throw new Error("default_time must be greater than zero."); + if (!name) throw new Error("name is required."); + if (!quest) throw new Error("quest is required."); + + this.id = id; + this.name = name; + this.episode = quest.episode; + this.quest = quest; + this.enemy_counts = quest.enemy_counts; + this.default_time = default_time; + } +} + +export class SimpleQuest { + constructor( + readonly id: number, + readonly name: string, + readonly episode: Episode, + readonly enemy_counts: Map, + ) { + if (!id) throw new Error("id is required."); + if (!name) throw new Error("name is required."); + if (!enemy_counts) throw new Error("enemyCounts is required."); + } +} + +type ItemDrop = { + item_type: ItemType; + anything_rate: number; + rare_rate: number; +}; + +export class EnemyDrop implements ItemDrop { + readonly rate: number; + + constructor( + readonly difficulty: Difficulty, + readonly section_id: SectionId, + readonly npc_type: NpcType, + readonly item_type: ItemType, + readonly anything_rate: number, + readonly rare_rate: number, + ) { + this.rate = anything_rate * rare_rate; + } +} diff --git a/src/persistence/HuntMethodPersister.ts b/src/hunt_optimizer/persistence/HuntMethodPersister.ts similarity index 84% rename from src/persistence/HuntMethodPersister.ts rename to src/hunt_optimizer/persistence/HuntMethodPersister.ts index a26f2a6f..8f4bba83 100644 --- a/src/persistence/HuntMethodPersister.ts +++ b/src/hunt_optimizer/persistence/HuntMethodPersister.ts @@ -1,5 +1,6 @@ -import { Persister } from "./Persister"; -import { Server, HuntMethod } from "../domain"; +import { Persister } from "../../core/persistence"; +import { Server } from "../../core/domain"; +import { HuntMethod } from "../domain"; const METHOD_USER_TIMES_KEY = "HuntMethodStore.methodUserTimes"; @@ -18,11 +19,11 @@ class HuntMethodPersister extends Persister { async load_method_user_times( hunt_methods: HuntMethod[], - server: Server + server: Server, ): Promise { const user_times = await this.load_for_server( server, - METHOD_USER_TIMES_KEY + METHOD_USER_TIMES_KEY, ); if (user_times) { diff --git a/src/persistence/HuntOptimizerPersister.ts b/src/hunt_optimizer/persistence/HuntOptimizerPersister.ts similarity index 87% rename from src/persistence/HuntOptimizerPersister.ts rename to src/hunt_optimizer/persistence/HuntOptimizerPersister.ts index 6b5293ca..5eb5ff5f 100644 --- a/src/persistence/HuntOptimizerPersister.ts +++ b/src/hunt_optimizer/persistence/HuntOptimizerPersister.ts @@ -1,7 +1,7 @@ -import { Server } from "../domain"; +import { Server } from "../../core/domain"; import { WantedItem } from "../stores/HuntOptimizerStore"; -import { item_type_stores } from "../stores/ItemTypeStore"; -import { Persister } from "./Persister"; +import { item_type_stores } from "../../core/stores/ItemTypeStore"; +import { Persister } from "../../core/persistence"; const WANTED_ITEMS_KEY = "HuntOptimizerStore.wantedItems"; @@ -14,8 +14,8 @@ class HuntOptimizerPersister extends Persister { ({ item_type, amount }): PersistedWantedItem => ({ itemTypeId: item_type.id, amount, - }) - ) + }), + ), ); } @@ -24,7 +24,7 @@ class HuntOptimizerPersister extends Persister { const persisted_wanted_items = await this.load_for_server( server, - WANTED_ITEMS_KEY + WANTED_ITEMS_KEY, ); const wanted_items: WantedItem[] = []; diff --git a/src/stores/HuntMethodStore.ts b/src/hunt_optimizer/stores/HuntMethodStore.ts similarity index 90% rename from src/stores/HuntMethodStore.ts rename to src/hunt_optimizer/stores/HuntMethodStore.ts index 0540d145..75930ede 100644 --- a/src/stores/HuntMethodStore.ts +++ b/src/hunt_optimizer/stores/HuntMethodStore.ts @@ -1,11 +1,12 @@ import Logger from "js-logger"; import { autorun, IReactionDisposer, observable } from "mobx"; -import { HuntMethod, Server, SimpleQuest } from "../domain"; -import { QuestDto } from "../dto"; -import { Loadable } from "../Loadable"; +import { Server } from "../../core/domain"; +import { QuestDto } from "../../core/dto"; +import { Loadable } from "../../core/Loadable"; import { hunt_method_persister } from "../persistence/HuntMethodPersister"; -import { ServerMap } from "./ServerMap"; -import { NpcType } from "../data_formats/parsing/quest/npc_types"; +import { ServerMap } from "../../core/stores/ServerMap"; +import { NpcType } from "../../core/data_formats/parsing/quest/npc_types"; +import { HuntMethod, SimpleQuest } from "../domain"; const logger = Logger.get("stores/HuntMethodStore"); diff --git a/src/stores/HuntOptimizerStore.ts b/src/hunt_optimizer/stores/HuntOptimizerStore.ts similarity index 96% rename from src/stores/HuntOptimizerStore.ts rename to src/hunt_optimizer/stores/HuntOptimizerStore.ts index 1e6cf9c4..3da0ea9e 100644 --- a/src/stores/HuntOptimizerStore.ts +++ b/src/hunt_optimizer/stores/HuntOptimizerStore.ts @@ -3,20 +3,20 @@ import { autorun, computed, IObservableArray, observable } from "mobx"; import { Difficulties, Difficulty, - HuntMethod, - ItemType, KONDRIEU_PROB, RARE_ENEMY_PROB, SectionId, SectionIds, -} from "../domain"; +} from "../../core/domain"; import { hunt_optimizer_persister } from "../persistence/HuntOptimizerPersister"; -import { application_store } from "./ApplicationStore"; +import { application_store } from "../../application/stores/ApplicationStore"; import { hunt_method_store } from "./HuntMethodStore"; import { item_drop_stores } from "./ItemDropStore"; -import { item_type_stores } from "./ItemTypeStore"; -import { Episode } from "../data_formats/parsing/quest/Episode"; -import { npc_data, NpcType } from "../data_formats/parsing/quest/npc_types"; +import { item_type_stores } from "../../core/stores/ItemTypeStore"; +import { Episode } from "../../core/data_formats/parsing/quest/Episode"; +import { npc_data, NpcType } from "../../core/data_formats/parsing/quest/npc_types"; +import { HuntMethod } from "../domain"; +import { ItemType } from "../../core/domain/items"; export class WantedItem { @observable readonly item_type: ItemType; diff --git a/src/stores/ItemDropStore.ts b/src/hunt_optimizer/stores/ItemDropStore.ts similarity index 88% rename from src/stores/ItemDropStore.ts rename to src/hunt_optimizer/stores/ItemDropStore.ts index ee5487b6..6b79594e 100644 --- a/src/stores/ItemDropStore.ts +++ b/src/hunt_optimizer/stores/ItemDropStore.ts @@ -1,11 +1,12 @@ import { observable } from "mobx"; -import { Difficulties, Difficulty, EnemyDrop, SectionId, SectionIds, Server } from "../domain"; -import { EnemyDropDto } from "../dto"; -import { Loadable } from "../Loadable"; -import { item_type_stores } from "./ItemTypeStore"; -import { ServerMap } from "./ServerMap"; +import { Difficulties, Difficulty, SectionId, SectionIds, Server } from "../../core/domain"; +import { EnemyDropDto } from "../../core/dto"; +import { Loadable } from "../../core/Loadable"; +import { item_type_stores } from "../../core/stores/ItemTypeStore"; +import { ServerMap } from "../../core/stores/ServerMap"; import Logger from "js-logger"; -import { NpcType } from "../data_formats/parsing/quest/npc_types"; +import { NpcType } from "../../core/data_formats/parsing/quest/npc_types"; +import { EnemyDrop } from "../domain"; const logger = Logger.get("stores/ItemDropStore"); diff --git a/src/ui/hunt_optimizer/HuntOptimizerComponent.css b/src/hunt_optimizer/ui/HuntOptimizerComponent.css similarity index 100% rename from src/ui/hunt_optimizer/HuntOptimizerComponent.css rename to src/hunt_optimizer/ui/HuntOptimizerComponent.css diff --git a/src/ui/hunt_optimizer/HuntOptimizerComponent.tsx b/src/hunt_optimizer/ui/HuntOptimizerComponent.tsx similarity index 100% rename from src/ui/hunt_optimizer/HuntOptimizerComponent.tsx rename to src/hunt_optimizer/ui/HuntOptimizerComponent.tsx diff --git a/src/ui/hunt_optimizer/MethodsComponent.css b/src/hunt_optimizer/ui/MethodsComponent.css similarity index 100% rename from src/ui/hunt_optimizer/MethodsComponent.css rename to src/hunt_optimizer/ui/MethodsComponent.css diff --git a/src/ui/hunt_optimizer/MethodsComponent.tsx b/src/hunt_optimizer/ui/MethodsComponent.tsx similarity index 92% rename from src/ui/hunt_optimizer/MethodsComponent.tsx rename to src/hunt_optimizer/ui/MethodsComponent.tsx index 2b659aa1..2c8efe0c 100644 --- a/src/ui/hunt_optimizer/MethodsComponent.tsx +++ b/src/hunt_optimizer/ui/MethodsComponent.tsx @@ -3,12 +3,16 @@ import { observer } from "mobx-react"; import moment, { Moment } from "moment"; import React, { Component, ReactNode } from "react"; import { AutoSizer, Index, SortDirection } from "react-virtualized"; -import { hunt_method_store } from "../../stores/HuntMethodStore"; -import { BigTable, Column, ColumnSort } from "../BigTable"; +import { hunt_method_store } from "../stores/HuntMethodStore"; +import { BigTable, Column, ColumnSort } from "../../core/ui/BigTable"; import styles from "./MethodsComponent.css"; -import { HuntMethod } from "../../domain"; -import { Episode } from "../../data_formats/parsing/quest/Episode"; -import { ENEMY_NPC_TYPES, npc_data, NpcType } from "../../data_formats/parsing/quest/npc_types"; +import { Episode } from "../../core/data_formats/parsing/quest/Episode"; +import { + ENEMY_NPC_TYPES, + npc_data, + NpcType, +} from "../../core/data_formats/parsing/quest/npc_types"; +import { HuntMethod } from "../domain"; @observer export class MethodsComponent extends Component { diff --git a/src/ui/hunt_optimizer/OptimizationResultComponent.css b/src/hunt_optimizer/ui/OptimizationResultComponent.css similarity index 100% rename from src/ui/hunt_optimizer/OptimizationResultComponent.css rename to src/hunt_optimizer/ui/OptimizationResultComponent.css diff --git a/src/ui/hunt_optimizer/OptimizationResultComponent.tsx b/src/hunt_optimizer/ui/OptimizationResultComponent.tsx similarity index 92% rename from src/ui/hunt_optimizer/OptimizationResultComponent.tsx rename to src/hunt_optimizer/ui/OptimizationResultComponent.tsx index 0a077002..e4977804 100644 --- a/src/ui/hunt_optimizer/OptimizationResultComponent.tsx +++ b/src/hunt_optimizer/ui/OptimizationResultComponent.tsx @@ -2,13 +2,13 @@ import { computed } from "mobx"; import { observer } from "mobx-react"; import React, { Component, ReactNode } from "react"; import { AutoSizer, Index } from "react-virtualized"; -import { Difficulty, SectionId } from "../../domain"; -import { hunt_optimizer_store, OptimalMethod } from "../../stores/HuntOptimizerStore"; -import { BigTable, Column } from "../BigTable"; -import { SectionIdIcon } from "../SectionIdIcon"; -import { hours_to_string } from "../time"; +import { Difficulty, SectionId } from "../../core/domain"; +import { hunt_optimizer_store, OptimalMethod } from "../stores/HuntOptimizerStore"; +import { BigTable, Column } from "../../core/ui/BigTable"; +import { SectionIdIcon } from "../../core/ui/SectionIdIcon"; +import { hours_to_string } from "../../core/ui/time"; import styles from "./OptimizationResultComponent.css"; -import { Episode } from "../../data_formats/parsing/quest/Episode"; +import { Episode } from "../../core/data_formats/parsing/quest/Episode"; @observer export class OptimizationResultComponent extends Component { diff --git a/src/ui/hunt_optimizer/OptimizerComponent.css b/src/hunt_optimizer/ui/OptimizerComponent.css similarity index 100% rename from src/ui/hunt_optimizer/OptimizerComponent.css rename to src/hunt_optimizer/ui/OptimizerComponent.css diff --git a/src/ui/hunt_optimizer/OptimizerComponent.tsx b/src/hunt_optimizer/ui/OptimizerComponent.tsx similarity index 100% rename from src/ui/hunt_optimizer/OptimizerComponent.tsx rename to src/hunt_optimizer/ui/OptimizerComponent.tsx diff --git a/src/ui/hunt_optimizer/WantedItemsComponent.css b/src/hunt_optimizer/ui/WantedItemsComponent.css similarity index 100% rename from src/ui/hunt_optimizer/WantedItemsComponent.css rename to src/hunt_optimizer/ui/WantedItemsComponent.css diff --git a/src/ui/hunt_optimizer/WantedItemsComponent.tsx b/src/hunt_optimizer/ui/WantedItemsComponent.tsx similarity index 96% rename from src/ui/hunt_optimizer/WantedItemsComponent.tsx rename to src/hunt_optimizer/ui/WantedItemsComponent.tsx index ca034f11..38b50af9 100644 --- a/src/ui/hunt_optimizer/WantedItemsComponent.tsx +++ b/src/hunt_optimizer/ui/WantedItemsComponent.tsx @@ -2,9 +2,9 @@ import { Button, InputNumber, Popover } from "antd"; import { observer } from "mobx-react"; import React, { Component, ReactNode } from "react"; import { AutoSizer, Column, Table, TableCellRenderer } from "react-virtualized"; -import { hunt_optimizer_store, WantedItem } from "../../stores/HuntOptimizerStore"; -import { item_type_stores } from "../../stores/ItemTypeStore"; -import { BigSelect } from "../BigSelect"; +import { hunt_optimizer_store, WantedItem } from "../stores/HuntOptimizerStore"; +import { item_type_stores } from "../../core/stores/ItemTypeStore"; +import { BigSelect } from "../../core/ui/BigSelect"; import styles from "./WantedItemsComponent.css"; @observer @@ -90,7 +90,7 @@ export class WantedItemsComponent extends Component { private add_wanted = (selected: any) => { if (selected) { let added = hunt_optimizer_store.wanted_items.find( - w => w.item_type.id === selected.value + w => w.item_type.id === selected.value, ); if (!added) { diff --git a/src/index.tsx b/src/index.tsx index 3a1f9adc..a56a8bce 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,8 +1,8 @@ import React from "react"; import ReactDOM from "react-dom"; import Logger from "js-logger"; -import styles from "./ui/index.css"; -import { ApplicationComponent } from "./ui/ApplicationComponent"; +import styles from "./core/ui/index.css"; +import { ApplicationComponent } from "./application/ui/ApplicationComponent"; import "react-virtualized/styles.css"; import "react-select/dist/react-select.css"; import "react-virtualized-select/styles.css"; diff --git a/src/domain/ObservableArea.ts b/src/quest_editor/domain/ObservableArea.ts similarity index 100% rename from src/domain/ObservableArea.ts rename to src/quest_editor/domain/ObservableArea.ts diff --git a/src/domain/ObservableAreaVariant.ts b/src/quest_editor/domain/ObservableAreaVariant.ts similarity index 93% rename from src/domain/ObservableAreaVariant.ts rename to src/quest_editor/domain/ObservableAreaVariant.ts index d7ec46af..1366346f 100644 --- a/src/domain/ObservableAreaVariant.ts +++ b/src/quest_editor/domain/ObservableAreaVariant.ts @@ -1,6 +1,6 @@ import { ObservableArea } from "./ObservableArea"; import { IObservableArray, observable } from "mobx"; -import { Section } from "./index"; +import { Section } from "./Section"; export class ObservableAreaVariant { readonly id: number; diff --git a/src/domain/ObservableQuest.ts b/src/quest_editor/domain/ObservableQuest.ts similarity index 95% rename from src/domain/ObservableQuest.ts rename to src/quest_editor/domain/ObservableQuest.ts index 5d03445c..d830888c 100644 --- a/src/domain/ObservableQuest.ts +++ b/src/quest_editor/domain/ObservableQuest.ts @@ -1,11 +1,11 @@ import { action, computed, observable } from "mobx"; -import { check_episode, Episode } from "../data_formats/parsing/quest/Episode"; +import { check_episode, Episode } from "../../core/data_formats/parsing/quest/Episode"; import { ObservableAreaVariant } from "./ObservableAreaVariant"; import { area_store } from "../stores/AreaStore"; -import { DatUnknown } from "../data_formats/parsing/quest/dat"; +import { DatUnknown } from "../../core/data_formats/parsing/quest/dat"; import { Segment } from "../scripting/instructions"; -import { ObservableQuestNpc, ObservableQuestObject } from "./index"; import Logger from "js-logger"; +import { ObservableQuestNpc, ObservableQuestObject } from "./observable_quest_entities"; const logger = Logger.get("domain/ObservableQuest"); diff --git a/src/quest_editor/domain/Section.ts b/src/quest_editor/domain/Section.ts new file mode 100644 index 00000000..d6ef5308 --- /dev/null +++ b/src/quest_editor/domain/Section.ts @@ -0,0 +1,22 @@ +import { Vec3 } from "../../core/data_formats/vector"; + +export class Section { + readonly id: number; + readonly position: Vec3; + readonly y_axis_rotation: number; + readonly sin_y_axis_rotation: number; + readonly cos_y_axis_rotation: number; + + constructor(id: number, position: Vec3, y_axis_rotation: number) { + if (!Number.isInteger(id) || id < -1) + throw new Error(`Expected id to be an integer greater than or equal to -1, got ${id}.`); + if (!position) throw new Error("position is required."); + if (!Number.isFinite(y_axis_rotation)) throw new Error("y_axis_rotation is required."); + + this.id = id; + this.position = position; + this.y_axis_rotation = y_axis_rotation; + this.sin_y_axis_rotation = Math.sin(this.y_axis_rotation); + this.cos_y_axis_rotation = Math.cos(this.y_axis_rotation); + } +} diff --git a/src/domain/index.ts b/src/quest_editor/domain/observable_quest_entities.ts similarity index 51% rename from src/domain/index.ts rename to src/quest_editor/domain/observable_quest_entities.ts index 5e91c731..49de5726 100644 --- a/src/domain/index.ts +++ b/src/quest_editor/domain/observable_quest_entities.ts @@ -1,67 +1,9 @@ +import { ObjectType } from "../../core/data_formats/parsing/quest/object_types"; import { action, computed, observable } from "mobx"; -import { EntityType } from "../data_formats/parsing/quest/entities"; -import { Episode } from "../data_formats/parsing/quest/Episode"; -import { Vec3 } from "../data_formats/vector"; -import { enum_values } from "../enums"; -import { ItemType } from "./items"; -import { ObjectType } from "../data_formats/parsing/quest/object_types"; -import { NpcType } from "../data_formats/parsing/quest/npc_types"; - -export * from "./items"; - -export const RARE_ENEMY_PROB = 1 / 512; -export const KONDRIEU_PROB = 1 / 10; - -export enum Server { - Ephinea = "Ephinea", -} - -export const Servers: Server[] = enum_values(Server); - -export enum SectionId { - Viridia, - Greenill, - Skyly, - Bluefull, - Purplenum, - Pinkal, - Redria, - Oran, - Yellowboze, - Whitill, -} - -export const SectionIds: SectionId[] = enum_values(SectionId); - -export enum Difficulty { - Normal, - Hard, - VHard, - Ultimate, -} - -export const Difficulties: Difficulty[] = enum_values(Difficulty); - -export class Section { - readonly id: number; - readonly position: Vec3; - readonly y_axis_rotation: number; - readonly sin_y_axis_rotation: number; - readonly cos_y_axis_rotation: number; - - constructor(id: number, position: Vec3, y_axis_rotation: number) { - if (!Number.isInteger(id) || id < -1) - throw new Error(`Expected id to be an integer greater than or equal to -1, got ${id}.`); - if (!position) throw new Error("position is required."); - if (!Number.isFinite(y_axis_rotation)) throw new Error("y_axis_rotation is required."); - - this.id = id; - this.position = position; - this.y_axis_rotation = y_axis_rotation; - this.sin_y_axis_rotation = Math.sin(this.y_axis_rotation); - this.cos_y_axis_rotation = Math.cos(this.y_axis_rotation); - } -} +import { Vec3 } from "../../core/data_formats/vector"; +import { EntityType } from "../../core/data_formats/parsing/quest/entities"; +import { Section } from "./Section"; +import { NpcType } from "../../core/data_formats/parsing/quest/npc_types"; /** * Abstract class from which ObservableQuestNpc and ObservableQuestObject derive. @@ -210,84 +152,3 @@ export class ObservableQuestNpc extends ObservableQuestEntity { this.unknown = unknown; } } - -type ItemDrop = { - item_type: ItemType; - anything_rate: number; - rare_rate: number; -}; - -export class EnemyDrop implements ItemDrop { - readonly rate: number; - - constructor( - readonly difficulty: Difficulty, - readonly section_id: SectionId, - readonly npc_type: NpcType, - readonly item_type: ItemType, - readonly anything_rate: number, - readonly rare_rate: number, - ) { - this.rate = anything_rate * rare_rate; - } -} - -export class HuntMethod { - readonly id: string; - readonly name: string; - readonly episode: Episode; - readonly quest: SimpleQuest; - readonly enemy_counts: Map; - /** - * The time it takes to complete the quest in hours. - */ - readonly default_time: number; - /** - * The time it takes to complete the quest in hours as specified by the user. - */ - @observable user_time?: number; - - @computed get time(): number { - return this.user_time != null ? this.user_time : this.default_time; - } - - constructor(id: string, name: string, quest: SimpleQuest, default_time: number) { - if (!id) throw new Error("id is required."); - if (default_time <= 0) throw new Error("default_time must be greater than zero."); - if (!name) throw new Error("name is required."); - if (!quest) throw new Error("quest is required."); - - this.id = id; - this.name = name; - this.episode = quest.episode; - this.quest = quest; - this.enemy_counts = quest.enemy_counts; - this.default_time = default_time; - } -} - -export class SimpleQuest { - constructor( - readonly id: number, - readonly name: string, - readonly episode: Episode, - readonly enemy_counts: Map, - ) { - if (!id) throw new Error("id is required."); - if (!name) throw new Error("name is required."); - if (!enemy_counts) throw new Error("enemyCounts is required."); - } -} - -export class PlayerModel { - constructor( - readonly name: string, - readonly head_style_count: number, - readonly hair_styles_count: number, - readonly hair_styles_with_accessory: Set, - ) {} -} - -export class PlayerAnimation { - constructor(readonly id: number, readonly name: string) {} -} diff --git a/src/loading/LoadingCache.ts b/src/quest_editor/loading/LoadingCache.ts similarity index 100% rename from src/loading/LoadingCache.ts rename to src/quest_editor/loading/LoadingCache.ts diff --git a/src/loading/areas.ts b/src/quest_editor/loading/areas.ts similarity index 91% rename from src/loading/areas.ts rename to src/quest_editor/loading/areas.ts index 64d78b26..3be6d9e4 100644 --- a/src/loading/areas.ts +++ b/src/quest_editor/loading/areas.ts @@ -1,15 +1,15 @@ import { Object3D } from "three"; -import { Endianness } from "../data_formats/Endianness"; -import { ArrayBufferCursor } from "../data_formats/cursor/ArrayBufferCursor"; -import { parse_area_collision_geometry } from "../data_formats/parsing/area_collision_geometry"; -import { parse_area_geometry } from "../data_formats/parsing/area_geometry"; -import { Section } from "../domain"; +import { Endianness } from "../../core/data_formats/Endianness"; +import { ArrayBufferCursor } from "../../core/data_formats/cursor/ArrayBufferCursor"; +import { parse_area_collision_geometry } from "../../core/data_formats/parsing/area_collision_geometry"; +import { parse_area_geometry } from "../../core/data_formats/parsing/area_geometry"; import { area_collision_geometry_to_object_3d, area_geometry_to_sections_and_object_3d, } from "../rendering/conversion/areas"; -import { load_array_buffer } from "./load_array_buffer"; +import { load_array_buffer } from "../../core/loading"; import { LoadingCache } from "./LoadingCache"; +import { Section } from "../domain/Section"; const render_geometry_cache = new LoadingCache< string, diff --git a/src/loading/entities.ts b/src/quest_editor/loading/entities.ts similarity index 92% rename from src/loading/entities.ts rename to src/quest_editor/loading/entities.ts index e2a3fdc9..526cd066 100644 --- a/src/loading/entities.ts +++ b/src/quest_editor/loading/entities.ts @@ -1,15 +1,15 @@ import { Texture, CylinderBufferGeometry, BufferGeometry } from "three"; import Logger from "js-logger"; import { LoadingCache } from "./LoadingCache"; -import { Endianness } from "../data_formats/Endianness"; -import { ArrayBufferCursor } from "../data_formats/cursor/ArrayBufferCursor"; -import { ninja_object_to_buffer_geometry } from "../rendering/conversion/ninja_geometry"; -import { parse_nj, parse_xj } from "../data_formats/parsing/ninja"; -import { parse_xvm } from "../data_formats/parsing/ninja/texture"; -import { xvm_to_textures } from "../rendering/conversion/ninja_textures"; -import { load_array_buffer } from "./load_array_buffer"; -import { object_data, ObjectType } from "../data_formats/parsing/quest/object_types"; -import { NpcType } from "../data_formats/parsing/quest/npc_types"; +import { Endianness } from "../../core/data_formats/Endianness"; +import { ArrayBufferCursor } from "../../core/data_formats/cursor/ArrayBufferCursor"; +import { ninja_object_to_buffer_geometry } from "../../core/rendering/conversion/ninja_geometry"; +import { parse_nj, parse_xj } from "../../core/data_formats/parsing/ninja"; +import { parse_xvm } from "../../core/data_formats/parsing/ninja/texture"; +import { xvm_to_textures } from "../../core/rendering/conversion/ninja_textures"; +import { load_array_buffer } from "../../core/loading"; +import { object_data, ObjectType } from "../../core/data_formats/parsing/quest/object_types"; +import { NpcType } from "../../core/data_formats/parsing/quest/npc_types"; const logger = Logger.get("loading/entities"); diff --git a/src/persistence/QuestEditorUiPersister.ts b/src/quest_editor/persistence/QuestEditorUiPersister.ts similarity index 89% rename from src/persistence/QuestEditorUiPersister.ts rename to src/quest_editor/persistence/QuestEditorUiPersister.ts index 772bc07b..a4ff0bd2 100644 --- a/src/persistence/QuestEditorUiPersister.ts +++ b/src/quest_editor/persistence/QuestEditorUiPersister.ts @@ -1,4 +1,4 @@ -import { Persister } from "./Persister"; +import { Persister } from "../../core/persistence"; import { throttle } from "lodash"; import GoldenLayout from "golden-layout"; @@ -10,12 +10,12 @@ class QuestEditorUiPersister extends Persister { this.persist(LAYOUT_CONFIG_KEY, config); }, 500, - { leading: false, trailing: true } + { leading: false, trailing: true }, ); async load_layout_config( components: string[], - default_config: GoldenLayout.ItemConfigType[] + default_config: GoldenLayout.ItemConfigType[], ): Promise { const config = await this.load(LAYOUT_CONFIG_KEY); @@ -28,7 +28,7 @@ class QuestEditorUiPersister extends Persister { private verify_layout_config( config: GoldenLayout.ItemConfigType[], - components: string[] + components: string[], ): boolean { const set = new Set(components); @@ -45,7 +45,7 @@ class QuestEditorUiPersister extends Persister { config: GoldenLayout.ItemConfigType, components: Set, found: Set, - first: boolean + first: boolean, ): boolean { if (!config) { return false; diff --git a/src/rendering/QuestEntityControls.ts b/src/quest_editor/rendering/QuestEntityControls.ts similarity index 98% rename from src/rendering/QuestEntityControls.ts rename to src/quest_editor/rendering/QuestEntityControls.ts index a27fed5f..c8e9821c 100644 --- a/src/rendering/QuestEntityControls.ts +++ b/src/quest_editor/rendering/QuestEntityControls.ts @@ -1,11 +1,12 @@ import { autorun } from "mobx"; import { Intersection, Mesh, MeshLambertMaterial, Plane, Raycaster, Vector2, Vector3 } from "three"; -import { Vec3 } from "../data_formats/vector"; +import { Vec3 } from "../../core/data_formats/vector"; import { quest_editor_store } from "../stores/QuestEditorStore"; import { AreaUserData } from "./conversion/areas"; import { ColorType, EntityUserData, NPC_COLORS, OBJECT_COLORS } from "./conversion/entities"; import { QuestRenderer } from "./QuestRenderer"; -import { ObservableQuestEntity, ObservableQuestNpc, Section } from "../domain"; +import { Section } from "../domain/Section"; +import { ObservableQuestEntity, ObservableQuestNpc } from "../domain/observable_quest_entities"; const DOWN_VECTOR = new Vector3(0, -1, 0); diff --git a/src/rendering/QuestModelManager.ts b/src/quest_editor/rendering/QuestModelManager.ts similarity index 98% rename from src/rendering/QuestModelManager.ts rename to src/quest_editor/rendering/QuestModelManager.ts index ce79287a..3f4c21ad 100644 --- a/src/rendering/QuestModelManager.ts +++ b/src/quest_editor/rendering/QuestModelManager.ts @@ -11,10 +11,10 @@ import { import { create_npc_mesh, create_object_mesh } from "./conversion/entities"; import { QuestRenderer } from "./QuestRenderer"; import { AreaUserData } from "./conversion/areas"; -import { ObservableQuestEntity } from "../domain"; import { ObservableQuest } from "../domain/ObservableQuest"; import { ObservableArea } from "../domain/ObservableArea"; import { ObservableAreaVariant } from "../domain/ObservableAreaVariant"; +import { ObservableQuestEntity } from "../domain/observable_quest_entities"; const logger = Logger.get("rendering/QuestModelManager"); diff --git a/src/rendering/QuestRenderer.ts b/src/quest_editor/rendering/QuestRenderer.ts similarity index 96% rename from src/rendering/QuestRenderer.ts rename to src/quest_editor/rendering/QuestRenderer.ts index 47cfbaf7..705550ee 100644 --- a/src/rendering/QuestRenderer.ts +++ b/src/quest_editor/rendering/QuestRenderer.ts @@ -3,9 +3,9 @@ import { Mesh, Object3D, PerspectiveCamera, Group } from "three"; import { quest_editor_store } from "../stores/QuestEditorStore"; import { QuestEntityControls } from "./QuestEntityControls"; import { QuestModelManager } from "./QuestModelManager"; -import { Renderer } from "./Renderer"; +import { Renderer } from "../../core/rendering/Renderer"; import { EntityUserData } from "./conversion/entities"; -import { ObservableQuestEntity } from "../domain"; +import { ObservableQuestEntity } from "../domain/observable_quest_entities"; let renderer: QuestRenderer | undefined; diff --git a/src/rendering/conversion/areas.ts b/src/quest_editor/rendering/conversion/areas.ts similarity index 90% rename from src/rendering/conversion/areas.ts rename to src/quest_editor/rendering/conversion/areas.ts index 0e0a18e4..816fb05a 100644 --- a/src/rendering/conversion/areas.ts +++ b/src/quest_editor/rendering/conversion/areas.ts @@ -10,11 +10,11 @@ import { Vector3, Color, } from "three"; -import { CollisionObject } from "../../data_formats/parsing/area_collision_geometry"; -import { RenderObject } from "../../data_formats/parsing/area_geometry"; -import { Section } from "../../domain"; -import { GeometryBuilder } from "./GeometryBuilder"; -import { ninja_object_to_geometry_builder } from "./ninja_geometry"; +import { CollisionObject } from "../../../core/data_formats/parsing/area_collision_geometry"; +import { RenderObject } from "../../../core/data_formats/parsing/area_geometry"; +import { GeometryBuilder } from "../../../core/rendering/conversion/GeometryBuilder"; +import { ninja_object_to_geometry_builder } from "../../../core/rendering/conversion/ninja_geometry"; +import { Section } from "../../domain/Section"; const materials = [ // Wall diff --git a/src/rendering/conversion/entities.ts b/src/quest_editor/rendering/conversion/entities.ts similarity index 84% rename from src/rendering/conversion/entities.ts rename to src/quest_editor/rendering/conversion/entities.ts index 2edb6094..eddf4256 100644 --- a/src/rendering/conversion/entities.ts +++ b/src/quest_editor/rendering/conversion/entities.ts @@ -1,8 +1,12 @@ import { BufferGeometry, DoubleSide, Mesh, MeshLambertMaterial, Texture } from "three"; -import { create_mesh } from "./create_mesh"; -import { ObservableQuestEntity, ObservableQuestNpc, ObservableQuestObject } from "../../domain"; -import { ObjectType } from "../../data_formats/parsing/quest/object_types"; -import { NpcType } from "../../data_formats/parsing/quest/npc_types"; +import { create_mesh } from "../../../core/rendering/conversion/create_mesh"; +import { ObjectType } from "../../../core/data_formats/parsing/quest/object_types"; +import { NpcType } from "../../../core/data_formats/parsing/quest/npc_types"; +import { + ObservableQuestEntity, + ObservableQuestNpc, + ObservableQuestObject, +} from "../../domain/observable_quest_entities"; export enum ColorType { Normal, diff --git a/src/scripting/AssemblyAnalyser.ts b/src/quest_editor/scripting/AssemblyAnalyser.ts similarity index 100% rename from src/scripting/AssemblyAnalyser.ts rename to src/quest_editor/scripting/AssemblyAnalyser.ts diff --git a/src/scripting/AssemblyLexer.ts b/src/quest_editor/scripting/AssemblyLexer.ts similarity index 100% rename from src/scripting/AssemblyLexer.ts rename to src/quest_editor/scripting/AssemblyLexer.ts diff --git a/src/scripting/assembly.test.ts b/src/quest_editor/scripting/assembly.test.ts similarity index 98% rename from src/scripting/assembly.test.ts rename to src/quest_editor/scripting/assembly.test.ts index 53dca079..d38c796d 100644 --- a/src/scripting/assembly.test.ts +++ b/src/quest_editor/scripting/assembly.test.ts @@ -13,7 +13,7 @@ test("basic script", () => { 150: set_mainwarp 1 ret 151: ret - `.split("\n") + `.split("\n"), ); expect(warnings).toEqual([]); @@ -83,7 +83,7 @@ test("pass the value of a register via the stack", () => { leti r255, 7 exit r255 ret - `.split("\n") + `.split("\n"), ); expect(warnings).toEqual([]); @@ -106,7 +106,7 @@ test("pass a register reference via the stack", () => { 0: p_dead_v3 r200, 3 ret - `.split("\n") + `.split("\n"), ); expect(warnings).toEqual([]); diff --git a/src/scripting/assembly.ts b/src/quest_editor/scripting/assembly.ts similarity index 99% rename from src/scripting/assembly.ts rename to src/quest_editor/scripting/assembly.ts index c249bf37..9b4b09e1 100644 --- a/src/scripting/assembly.ts +++ b/src/quest_editor/scripting/assembly.ts @@ -1,5 +1,5 @@ import Logger from "js-logger"; -import { reinterpret_f32_as_i32 } from "../primitive_conversion"; +import { reinterpret_f32_as_i32 } from "../../core/primitive_conversion"; import { AssemblyLexer, CodeSectionToken, @@ -37,7 +37,7 @@ export type AssemblyError = AssemblyWarning; export function assemble( assembly: string[], - manual_stack: boolean = false + manual_stack: boolean = false, ): { object_code: Segment[]; warnings: AssemblyWarning[]; @@ -385,7 +385,7 @@ class Assembler { } else { const varargs = opcode.params.findIndex( - p => p.type.kind === Kind.ILabelVar || p.type.kind === Kind.RegRefVar + p => p.type.kind === Kind.ILabelVar || p.type.kind === Kind.RegRefVar, ) !== -1; const param_count = @@ -486,7 +486,7 @@ class Assembler { logger.error( `Line ${this.line_no}: Type ${ Kind[param.type.kind] - } not implemented.` + } not implemented.`, ); break; } diff --git a/src/scripting/assembly_worker.ts b/src/quest_editor/scripting/assembly_worker.ts similarity index 100% rename from src/scripting/assembly_worker.ts rename to src/quest_editor/scripting/assembly_worker.ts diff --git a/src/scripting/assembly_worker_messages.ts b/src/quest_editor/scripting/assembly_worker_messages.ts similarity index 100% rename from src/scripting/assembly_worker_messages.ts rename to src/quest_editor/scripting/assembly_worker_messages.ts diff --git a/src/scripting/data_flow_analysis/ControlFlowGraph.test.ts b/src/quest_editor/scripting/data_flow_analysis/ControlFlowGraph.test.ts similarity index 98% rename from src/scripting/data_flow_analysis/ControlFlowGraph.test.ts rename to src/quest_editor/scripting/data_flow_analysis/ControlFlowGraph.test.ts index 3c67f213..3c1a2b86 100644 --- a/src/scripting/data_flow_analysis/ControlFlowGraph.test.ts +++ b/src/quest_editor/scripting/data_flow_analysis/ControlFlowGraph.test.ts @@ -155,6 +155,6 @@ function to_instructions(assembly: string): InstructionSegment[] { expect(errors).toEqual([]); return object_code.filter( - segment => segment.type === SegmentType.Instructions + segment => segment.type === SegmentType.Instructions, ) as InstructionSegment[]; } diff --git a/src/scripting/data_flow_analysis/ControlFlowGraph.ts b/src/quest_editor/scripting/data_flow_analysis/ControlFlowGraph.ts similarity index 89% rename from src/scripting/data_flow_analysis/ControlFlowGraph.ts rename to src/quest_editor/scripting/data_flow_analysis/ControlFlowGraph.ts index 52977249..21276f96 100644 --- a/src/scripting/data_flow_analysis/ControlFlowGraph.ts +++ b/src/quest_editor/scripting/data_flow_analysis/ControlFlowGraph.ts @@ -1,4 +1,4 @@ -import { Instruction, InstructionSegment, Segment, SegmentType } from "../instructions"; +import { Instruction, InstructionSegment } from "../instructions"; import { Opcode } from "../opcodes"; export enum BranchType { @@ -10,19 +10,30 @@ export enum BranchType { } export class BasicBlock { + readonly segment: InstructionSegment; + readonly start: number; + readonly end: number; + readonly branch_type: BranchType; + /** + * Either jumps or calls, depending on `branch_type`. + */ + readonly branch_labels: number[]; readonly from: BasicBlock[] = []; readonly to: BasicBlock[] = []; constructor( - readonly segment: InstructionSegment, - readonly start: number, - readonly end: number, - readonly branch_type: BranchType, - /** - * Either jumps or calls, depending on `branch_type`. - */ - readonly branch_labels: number[] - ) {} + segment: InstructionSegment, + start: number, + end: number, + branch_type: BranchType, + branch_labels: number[], + ) { + this.segment = segment; + this.start = start; + this.end = end; + this.branch_type = branch_type; + this.branch_labels = branch_labels; + } link_to(other: BasicBlock): void { if (!this.to.includes(other)) { @@ -43,14 +54,10 @@ export class ControlFlowGraph { private readonly instructions_to_block: Map = new Map(); private readonly labels_to_block = new Map(); - get_block_for_instuction(instruction: Instruction): BasicBlock | undefined { + get_block_for_instruction(instruction: Instruction): BasicBlock | undefined { return this.instructions_to_block.get(instruction); } - get_block_for_label(label: number): BasicBlock | undefined { - return this.labels_to_block.get(label); - } - static create(segments: InstructionSegment[]): ControlFlowGraph { const cfg = new ControlFlowGraph(); // Mapping of labels to basic blocks. @@ -63,7 +70,7 @@ export class ControlFlowGraph { return cfg; } - private static create_basic_blocks(cfg: ControlFlowGraph, segment: InstructionSegment) { + private static create_basic_blocks(cfg: ControlFlowGraph, segment: InstructionSegment): void { const len = segment.instructions.length; let start = 0; let first_block = true; @@ -214,7 +221,7 @@ export class ControlFlowGraph { function link_returning_blocks( label_blocks: Map, ret: BasicBlock, - caller: BasicBlock + caller: BasicBlock, ): void { for (const label of caller.branch_labels) { const callee = label_blocks.get(label); @@ -235,7 +242,7 @@ function link_returning_blocks( function link_returning_blocks_recurse( encountered: Set, ret: BasicBlock, - block: BasicBlock + block: BasicBlock, ): void { if (encountered.has(block)) { return; diff --git a/src/scripting/data_flow_analysis/ValueSet.test.ts b/src/quest_editor/scripting/data_flow_analysis/ValueSet.test.ts similarity index 100% rename from src/scripting/data_flow_analysis/ValueSet.test.ts rename to src/quest_editor/scripting/data_flow_analysis/ValueSet.test.ts diff --git a/src/scripting/data_flow_analysis/ValueSet.ts b/src/quest_editor/scripting/data_flow_analysis/ValueSet.ts similarity index 99% rename from src/scripting/data_flow_analysis/ValueSet.ts rename to src/quest_editor/scripting/data_flow_analysis/ValueSet.ts index 373c5647..ec798a23 100644 --- a/src/scripting/data_flow_analysis/ValueSet.ts +++ b/src/quest_editor/scripting/data_flow_analysis/ValueSet.ts @@ -62,7 +62,7 @@ export class ValueSet { set_interval(start: number, end: number): ValueSet { if (end < start) throw new Error( - `Interval upper bound should be greater than or equal to lower bound, got [${start}, ${end}].` + `Interval upper bound should be greater than or equal to lower bound, got [${start}, ${end}].`, ); this.intervals = [{ start, end }]; diff --git a/src/scripting/data_flow_analysis/register_value.test.ts b/src/quest_editor/scripting/data_flow_analysis/register_value.test.ts similarity index 98% rename from src/scripting/data_flow_analysis/register_value.test.ts rename to src/quest_editor/scripting/data_flow_analysis/register_value.test.ts index f2d6ff8f..bf4238cf 100644 --- a/src/scripting/data_flow_analysis/register_value.test.ts +++ b/src/quest_editor/scripting/data_flow_analysis/register_value.test.ts @@ -182,6 +182,6 @@ function to_instructions(assembly: string): InstructionSegment[] { expect(errors).toEqual([]); return object_code.filter( - segment => segment.type === SegmentType.Instructions + segment => segment.type === SegmentType.Instructions, ) as InstructionSegment[]; } diff --git a/src/scripting/data_flow_analysis/register_value.ts b/src/quest_editor/scripting/data_flow_analysis/register_value.ts similarity index 97% rename from src/scripting/data_flow_analysis/register_value.ts rename to src/quest_editor/scripting/data_flow_analysis/register_value.ts index e8d7d588..8b88a277 100644 --- a/src/scripting/data_flow_analysis/register_value.ts +++ b/src/quest_editor/scripting/data_flow_analysis/register_value.ts @@ -22,9 +22,9 @@ export const REGISTER_VALUES = Math.pow(2, 32); export function register_value( cfg: ControlFlowGraph, instruction: Instruction, - register: number + register: number, ): ValueSet { - const block = cfg.get_block_for_instuction(instruction); + const block = cfg.get_block_for_instruction(instruction); if (block) { return find_values( @@ -32,7 +32,7 @@ export function register_value( new Set(), block, block.index_of_instruction(instruction), - register + register, ); } else { return new ValueSet(); @@ -48,7 +48,7 @@ function find_values( path: Set, block: BasicBlock, end: number, - register: number + register: number, ): ValueSet { if (++ctx.iterations > 100) { logger.warn("Too many iterations."); @@ -142,7 +142,7 @@ function find_values( const min = find_values(ctx, new Set(path), block, i, args[0].value).min() || 0; const max = Math.max( find_values(ctx, new Set(path), block, i, args[0].value + 1).max() || 0, - min + 1 + min + 1, ); return new ValueSet().set_interval(min, max - 1); } @@ -179,7 +179,7 @@ function find_values( ) { return new ValueSet().set_interval( MIN_REGISTER_VALUE, - MAX_REGISTER_VALUE + MAX_REGISTER_VALUE, ); } diff --git a/src/scripting/data_flow_analysis/stack_value.ts b/src/quest_editor/scripting/data_flow_analysis/stack_value.ts similarity index 95% rename from src/scripting/data_flow_analysis/stack_value.ts rename to src/quest_editor/scripting/data_flow_analysis/stack_value.ts index ffce2b56..582b58c8 100644 --- a/src/scripting/data_flow_analysis/stack_value.ts +++ b/src/quest_editor/scripting/data_flow_analysis/stack_value.ts @@ -21,9 +21,9 @@ export const MAX_STACK_VALUE = MAX_SIGNED_DWORD_VALUE; export function stack_value( cfg: ControlFlowGraph, instruction: Instruction, - position: number + position: number, ): ValueSet { - const block = cfg.get_block_for_instuction(instruction); + const block = cfg.get_block_for_instruction(instruction); if (block) { return find_values( @@ -31,7 +31,7 @@ export function stack_value( new Set(), block, block.index_of_instruction(instruction), - position + position, ); } else { return new ValueSet(); @@ -49,7 +49,7 @@ function find_values( path: Set, block: BasicBlock, end: number, - position: number + position: number, ): ValueSet { if (++ctx.iterations > 100) { logger.warn("Too many iterations."); diff --git a/src/scripting/disassembly.test.ts b/src/quest_editor/scripting/disassembly.test.ts similarity index 82% rename from src/scripting/disassembly.test.ts rename to src/quest_editor/scripting/disassembly.test.ts index 4e0b7d81..b13a32bc 100644 --- a/src/scripting/disassembly.test.ts +++ b/src/quest_editor/scripting/disassembly.test.ts @@ -1,9 +1,9 @@ import { readFileSync } from "fs"; -import { Endianness } from "../data_formats/Endianness"; -import { prs_decompress } from "../data_formats/compression/prs/decompress"; -import { ArrayBufferCursor } from "../data_formats/cursor/ArrayBufferCursor"; -import { BufferCursor } from "../data_formats/cursor/BufferCursor"; -import { parse_bin, write_bin } from "../data_formats/parsing/quest/bin"; +import { Endianness } from "../../core/data_formats/Endianness"; +import { prs_decompress } from "../../core/data_formats/compression/prs/decompress"; +import { ArrayBufferCursor } from "../../core/data_formats/cursor/ArrayBufferCursor"; +import { BufferCursor } from "../../core/data_formats/cursor/BufferCursor"; +import { parse_bin, write_bin } from "../../core/data_formats/parsing/quest/bin"; import { assemble } from "./assembly"; import { disassemble } from "./disassembly"; @@ -33,7 +33,7 @@ test("assembling dissambled object code with manual stack management should resu if (test_byte !== orig_byte) { throw new Error( - `Byte ${matching_bytes} didn't match, expected ${orig_byte}, got ${test_byte}.` + `Byte ${matching_bytes} didn't match, expected ${orig_byte}, got ${test_byte}.`, ); } diff --git a/src/scripting/disassembly.ts b/src/quest_editor/scripting/disassembly.ts similarity index 97% rename from src/scripting/disassembly.ts rename to src/quest_editor/scripting/disassembly.ts index 4273e2df..02db9bd0 100644 --- a/src/scripting/disassembly.ts +++ b/src/quest_editor/scripting/disassembly.ts @@ -1,4 +1,4 @@ -import { reinterpret_i32_as_f32 } from "../primitive_conversion"; +import { reinterpret_i32_as_f32 } from "../../core/primitive_conversion"; import { Arg, Segment, SegmentType } from "./instructions"; import { Kind, Param, StackInteraction } from "./opcodes"; @@ -75,9 +75,9 @@ export function disassemble(object_code: Segment[], manual_stack: boolean = fals instruction.opcode.params, stack.splice( Math.max(0, stack.length - instruction.opcode.params.length), - instruction.opcode.params.length + instruction.opcode.params.length, ), - true + true, ); } } else { @@ -87,7 +87,7 @@ export function disassemble(object_code: Segment[], manual_stack: boolean = fals lines.push( " " + instruction.opcode.mnemonic + - (args.length ? " " + args.join(", ") : "") + (args.length ? " " + args.join(", ") : ""), ); } } diff --git a/src/scripting/instructions.ts b/src/quest_editor/scripting/instructions.ts similarity index 100% rename from src/scripting/instructions.ts rename to src/quest_editor/scripting/instructions.ts diff --git a/src/scripting/opcodes.ts b/src/quest_editor/scripting/opcodes.ts similarity index 89% rename from src/scripting/opcodes.ts rename to src/quest_editor/scripting/opcodes.ts index 064dac84..b2b74488 100644 --- a/src/scripting/opcodes.ts +++ b/src/quest_editor/scripting/opcodes.ts @@ -236,7 +236,7 @@ export class Opcode { mnemonic: string, doc: string | undefined, params: Param[], - stack: StackInteraction | undefined + stack: StackInteraction | undefined, ) { this.code = code; this.mnemonic = mnemonic; @@ -252,56 +252,56 @@ export class Opcode { "nop", "No operation, does nothing.", [], - undefined + undefined, )); static readonly RET = (OPCODES[0x01] = new Opcode( 0x01, "ret", "Returns control to caller.", [], - undefined + undefined, )); static readonly SYNC = (OPCODES[0x02] = new Opcode( 0x02, "sync", "Yields control for the rest of the current frame. Execution will continue the following frame.", [], - undefined + undefined, )); static readonly EXIT = (OPCODES[0x03] = new Opcode( 0x03, "exit", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly THREAD = (OPCODES[0x04] = new Opcode( 0x04, "thread", "Starts a new thread. Thread execution will start at the given label.\nOften used to check a register every frame. Make sure to yield control with sync when looping.", [new Param(TYPE_I_LABEL, undefined, undefined)], - undefined + undefined, )); static readonly VA_START = (OPCODES[0x05] = new Opcode( 0x05, "va_start", "Initializes a variable argument list.\nMake sure to call va_end after va_start and va_call.", [], - undefined + undefined, )); static readonly VA_END = (OPCODES[0x06] = new Opcode( 0x06, "va_end", "Restores the registers overwritten by arg_push* instructions.\nCalled after va_call.", [], - undefined + undefined, )); static readonly VA_CALL = (OPCODES[0x07] = new Opcode( 0x07, "va_call", "Calls the variable argument function at the given label.\nCalled after initializing the argument list with va_start and pushing arguments onto the stack with arg_push* instructions. Make sure to call va_end afterwards.", [new Param(TYPE_I_LABEL, undefined, undefined)], - undefined + undefined, )); static readonly LET = (OPCODES[0x08] = new Opcode( 0x08, @@ -314,7 +314,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -322,10 +322,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly LETI = (OPCODES[0x09] = new Opcode( 0x09, @@ -338,11 +338,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), ], - undefined + undefined, )); static readonly LETB = (OPCODES[0x0a] = new Opcode( 0x0a, @@ -355,11 +355,11 @@ export class Opcode { register_tuples: [new Param(TYPE_BYTE, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_BYTE, undefined, undefined), ], - undefined + undefined, )); static readonly LETW = (OPCODES[0x0b] = new Opcode( 0x0b, @@ -372,11 +372,11 @@ export class Opcode { register_tuples: [new Param(TYPE_WORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_WORD, undefined, undefined), ], - undefined + undefined, )); static readonly LETA = (OPCODES[0x0c] = new Opcode( 0x0c, @@ -389,7 +389,7 @@ export class Opcode { register_tuples: [new Param(TYPE_POINTER, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -397,10 +397,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly LETO = (OPCODES[0x0d] = new Opcode( 0x0d, @@ -413,25 +413,25 @@ export class Opcode { register_tuples: [new Param(TYPE_POINTER, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly UNKNOWN_0E = (OPCODES[0x0e] = new Opcode( 0x0e, "unknown_0e", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_0F = (OPCODES[0x0f] = new Opcode( 0x0f, "unknown_0f", undefined, [], - undefined + undefined, )); static readonly SET = (OPCODES[0x10] = new Opcode( 0x10, @@ -444,10 +444,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly CLEAR = (OPCODES[0x11] = new Opcode( 0x11, @@ -460,10 +460,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly REV = (OPCODES[0x12] = new Opcode( 0x12, @@ -476,38 +476,38 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.ReadWrite)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly GSET = (OPCODES[0x13] = new Opcode( 0x13, "gset", undefined, [new Param(TYPE_WORD, undefined, undefined)], - undefined + undefined, )); static readonly GCLEAR = (OPCODES[0x14] = new Opcode( 0x14, "gclear", undefined, [new Param(TYPE_WORD, undefined, undefined)], - undefined + undefined, )); static readonly GREV = (OPCODES[0x15] = new Opcode( 0x15, "grev", undefined, [new Param(TYPE_WORD, undefined, undefined)], - undefined + undefined, )); static readonly GLET = (OPCODES[0x16] = new Opcode( 0x16, "glet", undefined, [new Param(TYPE_WORD, undefined, undefined)], - undefined + undefined, )); static readonly GGET = (OPCODES[0x17] = new Opcode( 0x17, @@ -521,10 +521,10 @@ export class Opcode { register_tuples: [new Param(TYPE_WORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly ADD = (OPCODES[0x18] = new Opcode( 0x18, @@ -537,7 +537,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -545,10 +545,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly ADDI = (OPCODES[0x19] = new Opcode( 0x19, @@ -561,11 +561,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), ], - undefined + undefined, )); static readonly SUB = (OPCODES[0x1a] = new Opcode( 0x1a, @@ -578,7 +578,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -586,10 +586,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SUBI = (OPCODES[0x1b] = new Opcode( 0x1b, @@ -602,11 +602,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), ], - undefined + undefined, )); static readonly MUL = (OPCODES[0x1c] = new Opcode( 0x1c, @@ -619,7 +619,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -627,10 +627,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly MULI = (OPCODES[0x1d] = new Opcode( 0x1d, @@ -643,11 +643,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), ], - undefined + undefined, )); static readonly DIV = (OPCODES[0x1e] = new Opcode( 0x1e, @@ -660,7 +660,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -668,10 +668,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly DIVI = (OPCODES[0x1f] = new Opcode( 0x1f, @@ -684,11 +684,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), ], - undefined + undefined, )); static readonly AND = (OPCODES[0x20] = new Opcode( 0x20, @@ -701,7 +701,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -709,10 +709,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly ANDI = (OPCODES[0x21] = new Opcode( 0x21, @@ -725,11 +725,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), ], - undefined + undefined, )); static readonly OR = (OPCODES[0x22] = new Opcode( 0x22, @@ -742,7 +742,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -750,10 +750,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly ORI = (OPCODES[0x23] = new Opcode( 0x23, @@ -766,11 +766,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), ], - undefined + undefined, )); static readonly XOR = (OPCODES[0x24] = new Opcode( 0x24, @@ -783,7 +783,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -791,10 +791,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly XORI = (OPCODES[0x25] = new Opcode( 0x25, @@ -807,11 +807,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), ], - undefined + undefined, )); static readonly MOD = (OPCODES[0x26] = new Opcode( 0x26, @@ -824,7 +824,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -832,10 +832,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly MODI = (OPCODES[0x27] = new Opcode( 0x27, @@ -848,25 +848,25 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), ], - undefined + undefined, )); static readonly JMP = (OPCODES[0x28] = new Opcode( 0x28, "jmp", undefined, [new Param(TYPE_I_LABEL, undefined, undefined)], - undefined + undefined, )); static readonly CALL = (OPCODES[0x29] = new Opcode( 0x29, "call", undefined, [new Param(TYPE_I_LABEL, undefined, undefined)], - undefined + undefined, )); static readonly JMP_ON = (OPCODES[0x2a] = new Opcode( 0x2a, @@ -876,7 +876,7 @@ export class Opcode { new Param(TYPE_I_LABEL, undefined, undefined), new Param(TYPE_REG_REF_VAR, undefined, ParamAccess.Read), ], - undefined + undefined, )); static readonly JMP_OFF = (OPCODES[0x2b] = new Opcode( 0x2b, @@ -886,7 +886,7 @@ export class Opcode { new Param(TYPE_I_LABEL, undefined, undefined), new Param(TYPE_REG_REF_VAR, undefined, ParamAccess.Read), ], - undefined + undefined, )); static readonly JMP_E = (OPCODES[0x2c] = new Opcode( 0x2c, @@ -899,7 +899,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -907,11 +907,11 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly JMPI_E = (OPCODES[0x2d] = new Opcode( 0x2d, @@ -924,12 +924,12 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly JMP_NE = (OPCODES[0x2e] = new Opcode( 0x2e, @@ -942,7 +942,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -950,11 +950,11 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly JMPI_NE = (OPCODES[0x2f] = new Opcode( 0x2f, @@ -967,12 +967,12 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly UJMP_G = (OPCODES[0x30] = new Opcode( 0x30, @@ -985,7 +985,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -993,11 +993,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly UJMPI_G = (OPCODES[0x31] = new Opcode( 0x31, @@ -1010,12 +1010,12 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly JMP_G = (OPCODES[0x32] = new Opcode( 0x32, @@ -1028,7 +1028,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -1036,11 +1036,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly JMPI_G = (OPCODES[0x33] = new Opcode( 0x33, @@ -1053,12 +1053,12 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly UJMP_L = (OPCODES[0x34] = new Opcode( 0x34, @@ -1071,7 +1071,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -1079,11 +1079,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly UJMPI_L = (OPCODES[0x35] = new Opcode( 0x35, @@ -1096,12 +1096,12 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly JMP_L = (OPCODES[0x36] = new Opcode( 0x36, @@ -1114,7 +1114,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -1122,11 +1122,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly JMPI_L = (OPCODES[0x37] = new Opcode( 0x37, @@ -1139,12 +1139,12 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly UJMP_GE = (OPCODES[0x38] = new Opcode( 0x38, @@ -1157,7 +1157,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -1165,11 +1165,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly UJMPI_GE = (OPCODES[0x39] = new Opcode( 0x39, @@ -1182,12 +1182,12 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly JMP_GE = (OPCODES[0x3a] = new Opcode( 0x3a, @@ -1200,7 +1200,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -1208,11 +1208,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly JMPI_GE = (OPCODES[0x3b] = new Opcode( 0x3b, @@ -1225,12 +1225,12 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly UJMP_LE = (OPCODES[0x3c] = new Opcode( 0x3c, @@ -1243,7 +1243,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -1251,11 +1251,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly UJMPI_LE = (OPCODES[0x3d] = new Opcode( 0x3d, @@ -1268,12 +1268,12 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly JMP_LE = (OPCODES[0x3e] = new Opcode( 0x3e, @@ -1286,7 +1286,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -1294,11 +1294,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly JMPI_LE = (OPCODES[0x3f] = new Opcode( 0x3f, @@ -1311,12 +1311,12 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_I_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly SWITCH_JMP = (OPCODES[0x40] = new Opcode( 0x40, @@ -1329,11 +1329,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_I_LABEL_VAR, undefined, undefined), ], - undefined + undefined, )); static readonly SWITCH_CALL = (OPCODES[0x41] = new Opcode( 0x41, @@ -1346,11 +1346,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_I_LABEL_VAR, undefined, undefined), ], - undefined + undefined, )); static readonly STACK_PUSH = (OPCODES[0x42] = new Opcode( 0x42, @@ -1363,10 +1363,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly STACK_POP = (OPCODES[0x43] = new Opcode( 0x43, @@ -1379,10 +1379,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly STACK_PUSHM = (OPCODES[0x44] = new Opcode( 0x44, @@ -1392,7 +1392,7 @@ export class Opcode { new Param(TYPE_REG_REF, undefined, ParamAccess.Read), new Param(TYPE_DWORD, undefined, undefined), ], - undefined + undefined, )); static readonly STACK_POPM = (OPCODES[0x45] = new Opcode( 0x45, @@ -1402,21 +1402,21 @@ export class Opcode { new Param(TYPE_REG_REF, undefined, ParamAccess.Write), new Param(TYPE_DWORD, undefined, undefined), ], - undefined + undefined, )); static readonly UNKNOWN_46 = (OPCODES[0x46] = new Opcode( 0x46, "unknown_46", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_47 = (OPCODES[0x47] = new Opcode( 0x47, "unknown_47", undefined, [], - undefined + undefined, )); static readonly ARG_PUSHR = (OPCODES[0x48] = new Opcode( 0x48, @@ -1429,31 +1429,31 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - StackInteraction.Push + StackInteraction.Push, )); static readonly ARG_PUSHL = (OPCODES[0x49] = new Opcode( 0x49, "arg_pushl", "Pushes the given value onto the stack.", [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Push + StackInteraction.Push, )); static readonly ARG_PUSHB = (OPCODES[0x4a] = new Opcode( 0x4a, "arg_pushb", "Pushes the given value onto the stack.", [new Param(TYPE_BYTE, undefined, undefined)], - StackInteraction.Push + StackInteraction.Push, )); static readonly ARG_PUSHW = (OPCODES[0x4b] = new Opcode( 0x4b, "arg_pushw", "Pushes the given value onto the stack.", [new Param(TYPE_WORD, undefined, undefined)], - StackInteraction.Push + StackInteraction.Push, )); static readonly ARG_PUSHA = (OPCODES[0x4c] = new Opcode( 0x4c, @@ -1466,24 +1466,24 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - StackInteraction.Push + StackInteraction.Push, )); static readonly ARG_PUSHO = (OPCODES[0x4d] = new Opcode( 0x4d, "arg_pusho", "Pushes the memory address of the given label onto the stack. Not used by Sega.", [new Param(TYPE_LABEL, undefined, undefined)], - StackInteraction.Push + StackInteraction.Push, )); static readonly ARG_PUSHS = (OPCODES[0x4e] = new Opcode( 0x4e, "arg_pushs", "Pushes the given value onto the stack.", [new Param(TYPE_STRING, undefined, undefined)], - StackInteraction.Push + StackInteraction.Push, )); static readonly UNKNOWN_4F = (OPCODES[0x4f] = new Opcode( 0x4f, @@ -1496,7 +1496,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -1504,17 +1504,17 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly MESSAGE = (OPCODES[0x50] = new Opcode( 0x50, "message", undefined, [new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly LIST = (OPCODES[0x51] = new Opcode( 0x51, @@ -1527,11 +1527,11 @@ export class Opcode { register_tuples: [new Param(TYPE_BYTE, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_STRING, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly FADEIN = (OPCODES[0x52] = new Opcode(0x52, "fadein", undefined, [], undefined)); static readonly FADEOUT = (OPCODES[0x53] = new Opcode( @@ -1539,63 +1539,63 @@ export class Opcode { "fadeout", undefined, [], - undefined + undefined, )); static readonly SE = (OPCODES[0x54] = new Opcode( 0x54, "se", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly BGM = (OPCODES[0x55] = new Opcode( 0x55, "bgm", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_56 = (OPCODES[0x56] = new Opcode( 0x56, "unknown_56", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_57 = (OPCODES[0x57] = new Opcode( 0x57, "unknown_57", undefined, [], - undefined + undefined, )); static readonly ENABLE = (OPCODES[0x58] = new Opcode( 0x58, "enable", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly DISABLE = (OPCODES[0x59] = new Opcode( 0x59, "disable", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly WINDOW_MSG = (OPCODES[0x5a] = new Opcode( 0x5a, "window_msg", undefined, [new Param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly ADD_MSG = (OPCODES[0x5b] = new Opcode( 0x5b, "add_msg", undefined, [new Param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly MESEND = (OPCODES[0x5c] = new Opcode(0x5c, "mesend", undefined, [], undefined)); static readonly GETTIME = (OPCODES[0x5d] = new Opcode( @@ -1609,10 +1609,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly WINEND = (OPCODES[0x5e] = new Opcode(0x5e, "winend", undefined, [], undefined)); static readonly UNKNOWN_5F = (OPCODES[0x5f] = new Opcode( @@ -1620,7 +1620,7 @@ export class Opcode { "unknown_5f", undefined, [], - undefined + undefined, )); static readonly NPC_CRT_V3 = (OPCODES[0x60] = new Opcode( 0x60, @@ -1633,45 +1633,45 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly NPC_STOP = (OPCODES[0x61] = new Opcode( 0x61, "npc_stop", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly NPC_PLAY = (OPCODES[0x62] = new Opcode( 0x62, "npc_play", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly NPC_KILL = (OPCODES[0x63] = new Opcode( 0x63, "npc_kill", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly NPC_NONT = (OPCODES[0x64] = new Opcode( 0x64, "npc_nont", undefined, [], - undefined + undefined, )); static readonly NPC_TALK = (OPCODES[0x65] = new Opcode( 0x65, "npc_talk", undefined, [], - undefined + undefined, )); static readonly NPC_CRP_V3 = (OPCODES[0x66] = new Opcode( 0x66, @@ -1691,24 +1691,24 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_67 = (OPCODES[0x67] = new Opcode( 0x67, "unknown_67", undefined, [], - undefined + undefined, )); static readonly CREATE_PIPE = (OPCODES[0x68] = new Opcode( 0x68, "create_pipe", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly P_HPSTAT_V3 = (OPCODES[0x69] = new Opcode( 0x69, @@ -1721,11 +1721,11 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly P_DEAD_V3 = (OPCODES[0x6a] = new Opcode( 0x6a, @@ -1738,25 +1738,25 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, "Player slot.", undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly P_DISABLEWARP = (OPCODES[0x6b] = new Opcode( 0x6b, "p_disablewarp", undefined, [], - undefined + undefined, )); static readonly P_ENABLEWARP = (OPCODES[0x6c] = new Opcode( 0x6c, "p_enablewarp", undefined, [], - undefined + undefined, )); static readonly P_MOVE_V3 = (OPCODES[0x6d] = new Opcode( 0x6d, @@ -1769,59 +1769,59 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly P_LOOK = (OPCODES[0x6e] = new Opcode( 0x6e, "p_look", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_6F = (OPCODES[0x6f] = new Opcode( 0x6f, "unknown_6f", undefined, [], - undefined + undefined, )); static readonly P_ACTION_DISABLE = (OPCODES[0x70] = new Opcode( 0x70, "p_action_disable", undefined, [], - undefined + undefined, )); static readonly P_ACTION_ENABLE = (OPCODES[0x71] = new Opcode( 0x71, "p_action_enable", undefined, [], - undefined + undefined, )); static readonly DISABLE_MOVEMENT1 = (OPCODES[0x72] = new Opcode( 0x72, "disable_movement1", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly ENABLE_MOVEMENT1 = (OPCODES[0x73] = new Opcode( 0x73, "enable_movement1", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly P_NONCOL = (OPCODES[0x74] = new Opcode( 0x74, "p_noncol", undefined, [], - undefined + undefined, )); static readonly P_COL = (OPCODES[0x75] = new Opcode(0x75, "p_col", undefined, [], undefined)); static readonly P_SETPOS = (OPCODES[0x76] = new Opcode( @@ -1841,24 +1841,24 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly P_RETURN_GUILD = (OPCODES[0x77] = new Opcode( 0x77, "p_return_guild", undefined, [], - undefined + undefined, )); static readonly P_TALK_GUILD = (OPCODES[0x78] = new Opcode( 0x78, "p_talk_guild", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly NPC_TALK_PL_V3 = (OPCODES[0x79] = new Opcode( 0x79, @@ -1871,17 +1871,17 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly NPC_TALK_KILL = (OPCODES[0x7a] = new Opcode( 0x7a, "npc_talk_kill", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly NPC_CRTPK_V3 = (OPCODES[0x7b] = new Opcode( 0x7b, @@ -1894,10 +1894,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly NPC_CRPPK_V3 = (OPCODES[0x7c] = new Opcode( 0x7c, @@ -1910,10 +1910,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly NPC_CRPTALK_V3 = (OPCODES[0x7d] = new Opcode( 0x7d, @@ -1926,17 +1926,17 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly P_LOOK_AT_V1 = (OPCODES[0x7e] = new Opcode( 0x7e, "p_look_at_v1", undefined, [new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly NPC_CRP_ID_V3 = (OPCODES[0x7f] = new Opcode( 0x7f, @@ -1949,38 +1949,38 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly CAM_QUAKE = (OPCODES[0x80] = new Opcode( 0x80, "cam_quake", undefined, [], - undefined + undefined, )); static readonly CAM_ADJ = (OPCODES[0x81] = new Opcode( 0x81, "cam_adj", undefined, [], - undefined + undefined, )); static readonly CAM_ZMIN = (OPCODES[0x82] = new Opcode( 0x82, "cam_zmin", undefined, [], - undefined + undefined, )); static readonly CAM_ZMOUT = (OPCODES[0x83] = new Opcode( 0x83, "cam_zmout", undefined, [], - undefined + undefined, )); static readonly CAM_PAN_V3 = (OPCODES[0x84] = new Opcode( 0x84, @@ -1999,24 +1999,24 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly GAME_LEV_SUPER = (OPCODES[0x85] = new Opcode( 0x85, "game_lev_super", undefined, [], - undefined + undefined, )); static readonly GAME_LEV_RESET = (OPCODES[0x86] = new Opcode( 0x86, "game_lev_reset", undefined, [], - undefined + undefined, )); static readonly POS_PIPE_V3 = (OPCODES[0x87] = new Opcode( 0x87, @@ -2034,10 +2034,10 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly IF_ZONE_CLEAR = (OPCODES[0x88] = new Opcode( 0x88, @@ -2050,7 +2050,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -2061,10 +2061,10 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly CHK_ENE_NUM = (OPCODES[0x89] = new Opcode( 0x89, @@ -2077,10 +2077,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNHIDE_OBJ = (OPCODES[0x8a] = new Opcode( 0x8a, @@ -2097,10 +2097,10 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNHIDE_ENE = (OPCODES[0x8b] = new Opcode( 0x8b, @@ -2118,10 +2118,10 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly AT_COORDS_CALL = (OPCODES[0x8c] = new Opcode( 0x8c, @@ -2140,10 +2140,10 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly AT_COORDS_TALK = (OPCODES[0x8d] = new Opcode( 0x8d, @@ -2162,10 +2162,10 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly COL_NPCIN = (OPCODES[0x8e] = new Opcode( 0x8e, @@ -2184,10 +2184,10 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly COL_NPCINR = (OPCODES[0x8f] = new Opcode( 0x8f, @@ -2200,38 +2200,38 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SWITCH_ON = (OPCODES[0x90] = new Opcode( 0x90, "switch_on", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly SWITCH_OFF = (OPCODES[0x91] = new Opcode( 0x91, "switch_off", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly PLAYBGM_EPI = (OPCODES[0x92] = new Opcode( 0x92, "playbgm_epi", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly SET_MAINWARP = (OPCODES[0x93] = new Opcode( 0x93, "set_mainwarp", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly SET_OBJ_PARAM = (OPCODES[0x94] = new Opcode( 0x94, @@ -2251,7 +2251,7 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), new Param( { @@ -2259,10 +2259,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, "Object handle.", - undefined + undefined, ), ], - undefined + undefined, )); static readonly SET_FLOOR_HANDLER = (OPCODES[0x95] = new Opcode( 0x95, @@ -2272,14 +2272,14 @@ export class Opcode { new Param(TYPE_DWORD, "Floor number.", undefined), new Param(TYPE_I_LABEL, "Handler function label.", undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly CLR_FLOOR_HANDLER = (OPCODES[0x96] = new Opcode( 0x96, "clr_floor_handler", undefined, [new Param(TYPE_DWORD, "Floor number.", undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly COL_PLINAW = (OPCODES[0x97] = new Opcode( 0x97, @@ -2292,122 +2292,122 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly HUD_HIDE = (OPCODES[0x98] = new Opcode( 0x98, "hud_hide", undefined, [], - undefined + undefined, )); static readonly HUD_SHOW = (OPCODES[0x99] = new Opcode( 0x99, "hud_show", undefined, [], - undefined + undefined, )); static readonly CINE_ENABLE = (OPCODES[0x9a] = new Opcode( 0x9a, "cine_enable", undefined, [], - undefined + undefined, )); static readonly CINE_DISABLE = (OPCODES[0x9b] = new Opcode( 0x9b, "cine_disable", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_9C = (OPCODES[0x9c] = new Opcode( 0x9c, "unknown_9c", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_9D = (OPCODES[0x9d] = new Opcode( 0x9d, "unknown_9d", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_9E = (OPCODES[0x9e] = new Opcode( 0x9e, "unknown_9e", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_9F = (OPCODES[0x9f] = new Opcode( 0x9f, "unknown_9f", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_A0 = (OPCODES[0xa0] = new Opcode( 0xa0, "unknown_a0", undefined, [], - undefined + undefined, )); static readonly SET_QT_FAILURE = (OPCODES[0xa1] = new Opcode( 0xa1, "set_qt_failure", undefined, [new Param(TYPE_I_LABEL, undefined, undefined)], - undefined + undefined, )); static readonly SET_QT_SUCCESS = (OPCODES[0xa2] = new Opcode( 0xa2, "set_qt_success", undefined, [new Param(TYPE_I_LABEL, undefined, undefined)], - undefined + undefined, )); static readonly CLR_QT_FAILURE = (OPCODES[0xa3] = new Opcode( 0xa3, "clr_qt_failure", undefined, [], - undefined + undefined, )); static readonly CLR_QT_SUCCESS = (OPCODES[0xa4] = new Opcode( 0xa4, "clr_qt_success", undefined, [], - undefined + undefined, )); static readonly SET_QT_CANCEL = (OPCODES[0xa5] = new Opcode( 0xa5, "set_qt_cancel", undefined, [new Param(TYPE_I_LABEL, undefined, undefined)], - undefined + undefined, )); static readonly CLR_QT_CANCEL = (OPCODES[0xa6] = new Opcode( 0xa6, "clr_qt_cancel", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_A7 = (OPCODES[0xa7] = new Opcode( 0xa7, "unknown_a7", undefined, [], - undefined + undefined, )); static readonly PL_WALK_V3 = (OPCODES[0xa8] = new Opcode( 0xa8, @@ -2420,73 +2420,73 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_A9 = (OPCODES[0xa9] = new Opcode( 0xa9, "unknown_a9", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_AA = (OPCODES[0xaa] = new Opcode( 0xaa, "unknown_aa", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_AB = (OPCODES[0xab] = new Opcode( 0xab, "unknown_ab", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_AC = (OPCODES[0xac] = new Opcode( 0xac, "unknown_ac", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_AD = (OPCODES[0xad] = new Opcode( 0xad, "unknown_ad", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_AE = (OPCODES[0xae] = new Opcode( 0xae, "unknown_ae", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_AF = (OPCODES[0xaf] = new Opcode( 0xaf, "unknown_af", undefined, [], - undefined + undefined, )); static readonly PL_ADD_MESETA = (OPCODES[0xb0] = new Opcode( 0xb0, "pl_add_meseta", undefined, [new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly THREAD_STG = (OPCODES[0xb1] = new Opcode( 0xb1, "thread_stg", undefined, [new Param(TYPE_I_LABEL, undefined, undefined)], - undefined + undefined, )); static readonly DEL_OBJ_PARAM = (OPCODES[0xb2] = new Opcode( 0xb2, @@ -2499,10 +2499,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, "Object handle.", - undefined + undefined, ), ], - undefined + undefined, )); static readonly ITEM_CREATE = (OPCODES[0xb3] = new Opcode( 0xb3, @@ -2515,7 +2515,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -2523,10 +2523,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly ITEM_CREATE2 = (OPCODES[0xb4] = new Opcode( 0xb4, @@ -2539,7 +2539,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -2547,10 +2547,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly ITEM_DELETE = (OPCODES[0xb5] = new Opcode( 0xb5, @@ -2563,7 +2563,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -2571,10 +2571,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly ITEM_DELETE2 = (OPCODES[0xb6] = new Opcode( 0xb6, @@ -2591,7 +2591,7 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), new Param( { @@ -2599,10 +2599,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly ITEM_CHECK = (OPCODES[0xb7] = new Opcode( 0xb7, @@ -2615,7 +2615,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -2623,17 +2623,17 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SETEVT = (OPCODES[0xb8] = new Opcode( 0xb8, "setevt", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly GET_DIFFLVL = (OPCODES[0xb9] = new Opcode( 0xb9, @@ -2646,52 +2646,52 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SET_QT_EXIT = (OPCODES[0xba] = new Opcode( 0xba, "set_qt_exit", undefined, [new Param(TYPE_I_LABEL, undefined, undefined)], - undefined + undefined, )); static readonly CLR_QT_EXIT = (OPCODES[0xbb] = new Opcode( 0xbb, "clr_qt_exit", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_BC = (OPCODES[0xbc] = new Opcode( 0xbc, "unknown_bc", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_BD = (OPCODES[0xbd] = new Opcode( 0xbd, "unknown_bd", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_BE = (OPCODES[0xbe] = new Opcode( 0xbe, "unknown_be", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_BF = (OPCODES[0xbf] = new Opcode( 0xbf, "unknown_bf", undefined, [], - undefined + undefined, )); static readonly PARTICLE_V3 = (OPCODES[0xc0] = new Opcode( 0xc0, @@ -2704,31 +2704,31 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly NPC_TEXT = (OPCODES[0xc1] = new Opcode( 0xc1, "npc_text", undefined, [new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly NPC_CHKWARP = (OPCODES[0xc2] = new Opcode( 0xc2, "npc_chkwarp", undefined, [], - undefined + undefined, )); static readonly PL_PKOFF = (OPCODES[0xc3] = new Opcode( 0xc3, "pl_pkoff", undefined, [], - undefined + undefined, )); static readonly MAP_DESIGNATE = (OPCODES[0xc4] = new Opcode( 0xc4, @@ -2741,38 +2741,38 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly MASTERKEY_ON = (OPCODES[0xc5] = new Opcode( 0xc5, "masterkey_on", undefined, [], - undefined + undefined, )); static readonly MASTERKEY_OFF = (OPCODES[0xc6] = new Opcode( 0xc6, "masterkey_off", undefined, [], - undefined + undefined, )); static readonly WINDOW_TIME = (OPCODES[0xc7] = new Opcode( 0xc7, "window_time", undefined, [], - undefined + undefined, )); static readonly WINEND_TIME = (OPCODES[0xc8] = new Opcode( 0xc8, "winend_time", undefined, [], - undefined + undefined, )); static readonly WINSET_TIME = (OPCODES[0xc9] = new Opcode( 0xc9, @@ -2785,10 +2785,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly GETMTIME = (OPCODES[0xca] = new Opcode( 0xca, @@ -2801,10 +2801,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SET_QUEST_BOARD_HANDLER = (OPCODES[0xcb] = new Opcode( 0xcb, @@ -2815,14 +2815,14 @@ export class Opcode { new Param(TYPE_I_LABEL, undefined, undefined), new Param(TYPE_STRING, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly CLEAR_QUEST_BOARD_HANDLER = (OPCODES[0xcc] = new Opcode( 0xcc, "clear_quest_board_handler", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly PARTICLE_ID_V3 = (OPCODES[0xcd] = new Opcode( 0xcd, @@ -2840,10 +2840,10 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly NPC_CRPTALK_ID_V3 = (OPCODES[0xce] = new Opcode( 0xce, @@ -2856,24 +2856,24 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly NPC_LANG_CLEAN = (OPCODES[0xcf] = new Opcode( 0xcf, "npc_lang_clean", undefined, [], - undefined + undefined, )); static readonly PL_PKON = (OPCODES[0xd0] = new Opcode( 0xd0, "pl_pkon", undefined, [], - undefined + undefined, )); static readonly PL_CHK_ITEM2 = (OPCODES[0xd1] = new Opcode( 0xd1, @@ -2886,7 +2886,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -2894,59 +2894,59 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly ENABLE_MAINMENU = (OPCODES[0xd2] = new Opcode( 0xd2, "enable_mainmenu", undefined, [], - undefined + undefined, )); static readonly DISABLE_MAINMENU = (OPCODES[0xd3] = new Opcode( 0xd3, "disable_mainmenu", undefined, [], - undefined + undefined, )); static readonly START_BATTLEBGM = (OPCODES[0xd4] = new Opcode( 0xd4, "start_battlebgm", undefined, [], - undefined + undefined, )); static readonly END_BATTLEBGM = (OPCODES[0xd5] = new Opcode( 0xd5, "end_battlebgm", undefined, [], - undefined + undefined, )); static readonly DISP_MSG_QB = (OPCODES[0xd6] = new Opcode( 0xd6, "disp_msg_qb", undefined, [new Param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly CLOSE_MSG_QB = (OPCODES[0xd7] = new Opcode( 0xd7, "close_msg_qb", undefined, [], - undefined + undefined, )); static readonly SET_EVENTFLAG_V3 = (OPCODES[0xd8] = new Opcode( 0xd8, "set_eventflag_v3", undefined, [new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly SYNC_LETI = (OPCODES[0xd9] = new Opcode( 0xd9, @@ -2959,46 +2959,46 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), ], - undefined + undefined, )); static readonly SET_RETURNHUNTER = (OPCODES[0xda] = new Opcode( 0xda, "set_returnhunter", undefined, [], - undefined + undefined, )); static readonly SET_RETURNCITY = (OPCODES[0xdb] = new Opcode( 0xdb, "set_returncity", undefined, [], - undefined + undefined, )); static readonly LOAD_PVR = (OPCODES[0xdc] = new Opcode( 0xdc, "load_pvr", undefined, [], - undefined + undefined, )); static readonly LOAD_MIDI = (OPCODES[0xdd] = new Opcode( 0xdd, "load_midi", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_DE = (OPCODES[0xde] = new Opcode( 0xde, "unknown_de", undefined, [], - undefined + undefined, )); static readonly NPC_PARAM_V3 = (OPCODES[0xdf] = new Opcode( 0xdf, @@ -3011,25 +3011,25 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly PAD_DRAGON = (OPCODES[0xe0] = new Opcode( 0xe0, "pad_dragon", undefined, [], - undefined + undefined, )); static readonly CLEAR_MAINWARP = (OPCODES[0xe1] = new Opcode( 0xe1, "clear_mainwarp", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly PCAM_PARAM_V3 = (OPCODES[0xe2] = new Opcode( 0xe2, @@ -3042,10 +3042,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly START_SETEVT_V3 = (OPCODES[0xe3] = new Opcode( 0xe3, @@ -3058,25 +3058,25 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly WARP_ON = (OPCODES[0xe4] = new Opcode( 0xe4, "warp_on", undefined, [], - undefined + undefined, )); static readonly WARP_OFF = (OPCODES[0xe5] = new Opcode( 0xe5, "warp_off", undefined, [], - undefined + undefined, )); static readonly GET_SLOTNUMBER = (OPCODES[0xe6] = new Opcode( 0xe6, @@ -3089,10 +3089,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly GET_SERVERNUMBER = (OPCODES[0xe7] = new Opcode( 0xe7, @@ -3105,10 +3105,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SET_EVENTFLAG2 = (OPCODES[0xe8] = new Opcode( 0xe8, @@ -3122,10 +3122,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly RES = (OPCODES[0xe9] = new Opcode( 0xe9, @@ -3138,7 +3138,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -3146,10 +3146,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_EA = (OPCODES[0xea] = new Opcode( 0xea, @@ -3162,18 +3162,18 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), ], - undefined + undefined, )); static readonly ENABLE_BGMCTRL = (OPCODES[0xeb] = new Opcode( 0xeb, "enable_bgmctrl", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly SW_SEND = (OPCODES[0xec] = new Opcode( 0xec, @@ -3186,24 +3186,24 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly CREATE_BGMCTRL = (OPCODES[0xed] = new Opcode( 0xed, "create_bgmctrl", undefined, [], - undefined + undefined, )); static readonly PL_ADD_MESETA2 = (OPCODES[0xee] = new Opcode( 0xee, "pl_add_meseta2", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly SYNC_REGISTER = (OPCODES[0xef] = new Opcode( 0xef, @@ -3216,18 +3216,18 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly SEND_REGWORK = (OPCODES[0xf0] = new Opcode( 0xf0, "send_regwork", undefined, [], - undefined + undefined, )); static readonly LETI_FIXED_CAMERA_V3 = (OPCODES[0xf1] = new Opcode( 0xf1, @@ -3247,52 +3247,52 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly DEFAULT_CAMERA_POS1 = (OPCODES[0xf2] = new Opcode( 0xf2, "default_camera_pos1", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F3 = (OPCODES[0xf3] = new Opcode( 0xf3, "unknown_f3", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F4 = (OPCODES[0xf4] = new Opcode( 0xf4, "unknown_f4", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F5 = (OPCODES[0xf5] = new Opcode( 0xf5, "unknown_f5", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F6 = (OPCODES[0xf6] = new Opcode( 0xf6, "unknown_f6", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F7 = (OPCODES[0xf7] = new Opcode( 0xf7, "unknown_f7", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8 = (OPCODES[0xf8] = new Opcode( 0xf8, @@ -3305,17 +3305,17 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F9 = (OPCODES[0xf9] = new Opcode( 0xf9, "unknown_f9", undefined, [], - undefined + undefined, )); static readonly GET_GC_NUMBER = (OPCODES[0xfa] = new Opcode( 0xfa, @@ -3328,52 +3328,52 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_FB = (OPCODES[0xfb] = new Opcode( 0xfb, "unknown_fb", undefined, [new Param(TYPE_WORD, undefined, undefined)], - undefined + undefined, )); static readonly UNKNOWN_FC = (OPCODES[0xfc] = new Opcode( 0xfc, "unknown_fc", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_FD = (OPCODES[0xfd] = new Opcode( 0xfd, "unknown_fd", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_FE = (OPCODES[0xfe] = new Opcode( 0xfe, "unknown_fe", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_FF = (OPCODES[0xff] = new Opcode( 0xff, "unknown_ff", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F800 = (OPCODES[0xf800] = new Opcode( 0xf800, "unknown_f800", undefined, [], - undefined + undefined, )); static readonly SET_CHAT_CALLBACK = (OPCODES[0xf801] = new Opcode( 0xf801, @@ -3386,53 +3386,53 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_STRING, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F802 = (OPCODES[0xf802] = new Opcode( 0xf802, "unknown_f802", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F803 = (OPCODES[0xf803] = new Opcode( 0xf803, "unknown_f803", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F804 = (OPCODES[0xf804] = new Opcode( 0xf804, "unknown_f804", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F805 = (OPCODES[0xf805] = new Opcode( 0xf805, "unknown_f805", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F806 = (OPCODES[0xf806] = new Opcode( 0xf806, "unknown_f806", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F807 = (OPCODES[0xf807] = new Opcode( 0xf807, "unknown_f807", undefined, [], - undefined + undefined, )); static readonly GET_DIFFICULTY_LEVEL2 = (OPCODES[0xf808] = new Opcode( 0xf808, @@ -3445,10 +3445,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly GET_NUMBER_OF_PLAYER1 = (OPCODES[0xf809] = new Opcode( 0xf809, @@ -3461,10 +3461,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly GET_COORD_OF_PLAYER = (OPCODES[0xf80a] = new Opcode( 0xf80a, @@ -3481,7 +3481,7 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), new Param( { @@ -3489,24 +3489,24 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly ENABLE_MAP = (OPCODES[0xf80b] = new Opcode( 0xf80b, "enable_map", undefined, [], - undefined + undefined, )); static readonly DISABLE_MAP = (OPCODES[0xf80c] = new Opcode( 0xf80c, "disable_map", undefined, [], - undefined + undefined, )); static readonly MAP_DESIGNATE_EX = (OPCODES[0xf80d] = new Opcode( 0xf80d, @@ -3525,171 +3525,171 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F80E = (OPCODES[0xf80e] = new Opcode( 0xf80e, "unknown_f80e", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F80F = (OPCODES[0xf80f] = new Opcode( 0xf80f, "unknown_f80f", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly BA_INITIAL_FLOOR = (OPCODES[0xf810] = new Opcode( 0xf810, "ba_initial_floor", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly SET_BA_RULES = (OPCODES[0xf811] = new Opcode( 0xf811, "set_ba_rules", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F812 = (OPCODES[0xf812] = new Opcode( 0xf812, "unknown_f812", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F813 = (OPCODES[0xf813] = new Opcode( 0xf813, "unknown_f813", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F814 = (OPCODES[0xf814] = new Opcode( 0xf814, "unknown_f814", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F815 = (OPCODES[0xf815] = new Opcode( 0xf815, "unknown_f815", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F816 = (OPCODES[0xf816] = new Opcode( 0xf816, "unknown_f816", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F817 = (OPCODES[0xf817] = new Opcode( 0xf817, "unknown_f817", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F818 = (OPCODES[0xf818] = new Opcode( 0xf818, "unknown_f818", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F819 = (OPCODES[0xf819] = new Opcode( 0xf819, "unknown_f819", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F81A = (OPCODES[0xf81a] = new Opcode( 0xf81a, "unknown_f81a", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F81B = (OPCODES[0xf81b] = new Opcode( 0xf81b, "unknown_f81b", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly BA_DISP_MSG = (OPCODES[0xf81c] = new Opcode( 0xf81c, "ba_disp_msg", undefined, [new Param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly DEATH_LVL_UP = (OPCODES[0xf81d] = new Opcode( 0xf81d, "death_lvl_up", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly DEATH_TECH_LVL_UP = (OPCODES[0xf81e] = new Opcode( 0xf81e, "death_tech_lvl_up", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F81F = (OPCODES[0xf81f] = new Opcode( 0xf81f, "unknown_f81f", undefined, [], - undefined + undefined, )); static readonly CMODE_STAGE = (OPCODES[0xf820] = new Opcode( 0xf820, "cmode_stage", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F821 = (OPCODES[0xf821] = new Opcode( 0xf821, "unknown_f821", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F822 = (OPCODES[0xf822] = new Opcode( 0xf822, "unknown_f822", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F823 = (OPCODES[0xf823] = new Opcode( 0xf823, "unknown_f823", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F824 = (OPCODES[0xf824] = new Opcode( 0xf824, "unknown_f824", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly EXP_MULTIPLICATION = (OPCODES[0xf825] = new Opcode( 0xf825, @@ -3702,10 +3702,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly EXP_DIVISION = (OPCODES[0xf826] = new Opcode( 0xf826, @@ -3718,10 +3718,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly GET_USER_IS_DEAD = (OPCODES[0xf827] = new Opcode( 0xf827, @@ -3734,10 +3734,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly GO_FLOOR = (OPCODES[0xf828] = new Opcode( 0xf828, @@ -3750,7 +3750,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -3758,38 +3758,38 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Floor ID.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F829 = (OPCODES[0xf829] = new Opcode( 0xf829, "unknown_f829", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F82A = (OPCODES[0xf82a] = new Opcode( 0xf82a, "unknown_f82a", undefined, [], - undefined + undefined, )); static readonly UNLOCK_DOOR2 = (OPCODES[0xf82b] = new Opcode( 0xf82b, "unlock_door2", undefined, [new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly LOCK_DOOR2 = (OPCODES[0xf82c] = new Opcode( 0xf82c, "lock_door2", undefined, [new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly IF_SWITCH_NOT_PRESSED = (OPCODES[0xf82d] = new Opcode( 0xf82d, @@ -3805,10 +3805,10 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly IF_SWITCH_PRESSED = (OPCODES[0xf82e] = new Opcode( 0xf82e, @@ -3824,22 +3824,22 @@ export class Opcode { new Param( TYPE_DWORD, "Will be set to 1 if the switch is pressed, 0 otherwise.", - ParamAccess.Write + ParamAccess.Write, ), ], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F82F = (OPCODES[0xf82f] = new Opcode( 0xf82f, "unknown_f82f", undefined, [new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly CONTROL_DRAGON = (OPCODES[0xf830] = new Opcode( 0xf830, @@ -3852,59 +3852,59 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly RELEASE_DRAGON = (OPCODES[0xf831] = new Opcode( 0xf831, "release_dragon", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F832 = (OPCODES[0xf832] = new Opcode( 0xf832, "unknown_f832", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F833 = (OPCODES[0xf833] = new Opcode( 0xf833, "unknown_f833", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F834 = (OPCODES[0xf834] = new Opcode( 0xf834, "unknown_f834", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F835 = (OPCODES[0xf835] = new Opcode( 0xf835, "unknown_f835", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F836 = (OPCODES[0xf836] = new Opcode( 0xf836, "unknown_f836", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F837 = (OPCODES[0xf837] = new Opcode( 0xf837, "unknown_f837", undefined, [], - undefined + undefined, )); static readonly SHRINK = (OPCODES[0xf838] = new Opcode( 0xf838, @@ -3917,10 +3917,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNSHRINK = (OPCODES[0xf839] = new Opcode( 0xf839, @@ -3933,24 +3933,24 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F83A = (OPCODES[0xf83a] = new Opcode( 0xf83a, "unknown_f83a", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F83B = (OPCODES[0xf83b] = new Opcode( 0xf83b, "unknown_f83b", undefined, [], - undefined + undefined, )); static readonly DISPLAY_CLOCK2 = (OPCODES[0xf83c] = new Opcode( 0xf83c, @@ -3963,87 +3963,87 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F83D = (OPCODES[0xf83d] = new Opcode( 0xf83d, "unknown_f83d", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly DELETE_AREA_TITLE = (OPCODES[0xf83e] = new Opcode( 0xf83e, "delete_area_title", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F83F = (OPCODES[0xf83f] = new Opcode( 0xf83f, "unknown_f83f", undefined, [], - undefined + undefined, )); static readonly LOAD_NPC_DATA = (OPCODES[0xf840] = new Opcode( 0xf840, "load_npc_data", undefined, [], - undefined + undefined, )); static readonly GET_NPC_DATA = (OPCODES[0xf841] = new Opcode( 0xf841, "get_npc_data", undefined, [new Param(TYPE_D_LABEL, undefined, undefined)], - undefined + undefined, )); static readonly UNKNOWN_F842 = (OPCODES[0xf842] = new Opcode( 0xf842, "unknown_f842", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F843 = (OPCODES[0xf843] = new Opcode( 0xf843, "unknown_f843", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F844 = (OPCODES[0xf844] = new Opcode( 0xf844, "unknown_f844", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F845 = (OPCODES[0xf845] = new Opcode( 0xf845, "unknown_f845", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F846 = (OPCODES[0xf846] = new Opcode( 0xf846, "unknown_f846", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F847 = (OPCODES[0xf847] = new Opcode( 0xf847, "unknown_f847", undefined, [], - undefined + undefined, )); static readonly GIVE_DAMAGE_SCORE = (OPCODES[0xf848] = new Opcode( 0xf848, @@ -4056,10 +4056,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly TAKE_DAMAGE_SCORE = (OPCODES[0xf849] = new Opcode( 0xf849, @@ -4072,10 +4072,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNK_SCORE_F84A = (OPCODES[0xf84a] = new Opcode( 0xf84a, @@ -4088,10 +4088,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNK_SCORE_F84B = (OPCODES[0xf84b] = new Opcode( 0xf84b, @@ -4104,10 +4104,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly KILL_SCORE = (OPCODES[0xf84c] = new Opcode( 0xf84c, @@ -4120,10 +4120,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly DEATH_SCORE = (OPCODES[0xf84d] = new Opcode( 0xf84d, @@ -4136,10 +4136,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNK_SCORE_F84E = (OPCODES[0xf84e] = new Opcode( 0xf84e, @@ -4152,10 +4152,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly ENEMY_DEATH_SCORE = (OPCODES[0xf84f] = new Opcode( 0xf84f, @@ -4168,10 +4168,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly MESETA_SCORE = (OPCODES[0xf850] = new Opcode( 0xf850, @@ -4184,10 +4184,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F851 = (OPCODES[0xf851] = new Opcode( 0xf851, @@ -4200,66 +4200,66 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F852 = (OPCODES[0xf852] = new Opcode( 0xf852, "unknown_f852", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly REVERSE_WARPS = (OPCODES[0xf853] = new Opcode( 0xf853, "reverse_warps", undefined, [], - undefined + undefined, )); static readonly UNREVERSE_WARPS = (OPCODES[0xf854] = new Opcode( 0xf854, "unreverse_warps", undefined, [], - undefined + undefined, )); static readonly SET_ULT_MAP = (OPCODES[0xf855] = new Opcode( 0xf855, "set_ult_map", undefined, [], - undefined + undefined, )); static readonly UNSET_ULT_MAP = (OPCODES[0xf856] = new Opcode( 0xf856, "unset_ult_map", undefined, [], - undefined + undefined, )); static readonly SET_AREA_TITLE = (OPCODES[0xf857] = new Opcode( 0xf857, "set_area_title", undefined, [new Param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F858 = (OPCODES[0xf858] = new Opcode( 0xf858, "unknown_f858", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F859 = (OPCODES[0xf859] = new Opcode( 0xf859, "unknown_f859", undefined, [], - undefined + undefined, )); static readonly EQUIP_ITEM = (OPCODES[0xf85a] = new Opcode( 0xf85a, @@ -4272,94 +4272,94 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNEQUIP_ITEM = (OPCODES[0xf85b] = new Opcode( 0xf85b, "unequip_item", undefined, [new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F85C = (OPCODES[0xf85c] = new Opcode( 0xf85c, "unknown_f85c", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F85D = (OPCODES[0xf85d] = new Opcode( 0xf85d, "unknown_f85d", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F85E = (OPCODES[0xf85e] = new Opcode( 0xf85e, "unknown_f85e", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F85F = (OPCODES[0xf85f] = new Opcode( 0xf85f, "unknown_f85f", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F860 = (OPCODES[0xf860] = new Opcode( 0xf860, "unknown_f860", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F861 = (OPCODES[0xf861] = new Opcode( 0xf861, "unknown_f861", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F862 = (OPCODES[0xf862] = new Opcode( 0xf862, "unknown_f862", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F863 = (OPCODES[0xf863] = new Opcode( 0xf863, "unknown_f863", undefined, [], - undefined + undefined, )); static readonly CMODE_RANK = (OPCODES[0xf864] = new Opcode( 0xf864, "cmode_rank", undefined, [new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly AWARD_ITEM_NAME = (OPCODES[0xf865] = new Opcode( 0xf865, "award_item_name", undefined, [], - undefined + undefined, )); static readonly AWARD_ITEM_SELECT = (OPCODES[0xf866] = new Opcode( 0xf866, "award_item_select", undefined, [], - undefined + undefined, )); static readonly AWARD_ITEM_GIVE_TO = (OPCODES[0xf867] = new Opcode( 0xf867, @@ -4372,10 +4372,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F868 = (OPCODES[0xf868] = new Opcode( 0xf868, @@ -4388,7 +4388,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -4396,10 +4396,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F869 = (OPCODES[0xf869] = new Opcode( 0xf869, @@ -4412,7 +4412,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -4420,10 +4420,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly ITEM_CREATE_CMODE = (OPCODES[0xf86a] = new Opcode( 0xf86a, @@ -4436,7 +4436,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -4444,10 +4444,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F86B = (OPCODES[0xf86b] = new Opcode( 0xf86b, @@ -4460,10 +4460,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly AWARD_ITEM_OK = (OPCODES[0xf86c] = new Opcode( 0xf86c, @@ -4476,52 +4476,52 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F86D = (OPCODES[0xf86d] = new Opcode( 0xf86d, "unknown_f86d", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F86E = (OPCODES[0xf86e] = new Opcode( 0xf86e, "unknown_f86e", undefined, [], - undefined + undefined, )); static readonly BA_SET_LIVES = (OPCODES[0xf86f] = new Opcode( 0xf86f, "ba_set_lives", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly BA_SET_TECH_LVL = (OPCODES[0xf870] = new Opcode( 0xf870, "ba_set_tech_lvl", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly BA_SET_LVL = (OPCODES[0xf871] = new Opcode( 0xf871, "ba_set_lvl", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly BA_SET_TIME_LIMIT = (OPCODES[0xf872] = new Opcode( 0xf872, "ba_set_time_limit", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly BOSS_IS_DEAD = (OPCODES[0xf873] = new Opcode( 0xf873, @@ -4534,31 +4534,31 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F874 = (OPCODES[0xf874] = new Opcode( 0xf874, "unknown_f874", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F875 = (OPCODES[0xf875] = new Opcode( 0xf875, "unknown_f875", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F876 = (OPCODES[0xf876] = new Opcode( 0xf876, "unknown_f876", undefined, [], - undefined + undefined, )); static readonly ENABLE_TECHS = (OPCODES[0xf877] = new Opcode( 0xf877, @@ -4571,10 +4571,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly DISABLE_TECHS = (OPCODES[0xf878] = new Opcode( 0xf878, @@ -4587,10 +4587,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly GET_GENDER = (OPCODES[0xf879] = new Opcode( 0xf879, @@ -4603,7 +4603,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -4611,10 +4611,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player gender.", ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly GET_CHARA_CLASS = (OPCODES[0xf87a] = new Opcode( 0xf87a, @@ -4627,7 +4627,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -4636,20 +4636,20 @@ export class Opcode { new Param( TYPE_DWORD, "Player race. 0 If human, 1 if newman, 2 if cast.", - ParamAccess.Write + ParamAccess.Write, ), new Param( TYPE_DWORD, "Player class. 0 If hunter, 1 if ranger, 2 if force.", - ParamAccess.Write + ParamAccess.Write, ), ], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly TAKE_SLOT_MESETA = (OPCODES[0xf87b] = new Opcode( 0xf87b, @@ -4665,7 +4665,7 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), new Param( { @@ -4674,36 +4674,36 @@ export class Opcode { new Param( TYPE_DWORD, "Will be set to 1 if the meseta was taken, 0 otherwise.", - ParamAccess.Write + ParamAccess.Write, ), ], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F87C = (OPCODES[0xf87c] = new Opcode( 0xf87c, "unknown_f87c", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F87D = (OPCODES[0xf87d] = new Opcode( 0xf87d, "unknown_f87d", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F87E = (OPCODES[0xf87e] = new Opcode( 0xf87e, "unknown_f87e", undefined, [], - undefined + undefined, )); static readonly READ_GUILDCARD_FLAG = (OPCODES[0xf87f] = new Opcode( 0xf87f, @@ -4716,7 +4716,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -4724,10 +4724,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F880 = (OPCODES[0xf880] = new Opcode( 0xf880, @@ -4740,10 +4740,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly GET_PL_NAME = (OPCODES[0xf881] = new Opcode( 0xf881, @@ -4756,17 +4756,17 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F882 = (OPCODES[0xf882] = new Opcode( 0xf882, "unknown_f882", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F883 = (OPCODES[0xf883] = new Opcode( 0xf883, @@ -4779,7 +4779,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -4787,52 +4787,52 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F884 = (OPCODES[0xf884] = new Opcode( 0xf884, "unknown_f884", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F885 = (OPCODES[0xf885] = new Opcode( 0xf885, "unknown_f885", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F886 = (OPCODES[0xf886] = new Opcode( 0xf886, "unknown_f886", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F887 = (OPCODES[0xf887] = new Opcode( 0xf887, "unknown_f887", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F888 = (OPCODES[0xf888] = new Opcode( 0xf888, "unknown_f888", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F889 = (OPCODES[0xf889] = new Opcode( 0xf889, "unknown_f889", undefined, [], - undefined + undefined, )); static readonly GET_PLAYER_STATUS = (OPCODES[0xf88a] = new Opcode( 0xf88a, @@ -4845,7 +4845,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -4853,10 +4853,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SEND_MAIL = (OPCODES[0xf88b] = new Opcode( 0xf88b, @@ -4869,11 +4869,11 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_STRING, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly ONLINE_CHECK = (OPCODES[0xf88c] = new Opcode( 0xf88c, @@ -4886,10 +4886,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly CHL_SET_TIMERECORD = (OPCODES[0xf88d] = new Opcode( 0xf88d, @@ -4902,10 +4902,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly CHL_GET_TIMERECORD = (OPCODES[0xf88e] = new Opcode( 0xf88e, @@ -4918,10 +4918,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F88F = (OPCODES[0xf88f] = new Opcode( 0xf88f, @@ -4934,66 +4934,66 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F890 = (OPCODES[0xf890] = new Opcode( 0xf890, "unknown_f890", undefined, [], - undefined + undefined, )); static readonly LOAD_ENEMY_DATA = (OPCODES[0xf891] = new Opcode( 0xf891, "load_enemy_data", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly GET_PHYSICAL_DATA = (OPCODES[0xf892] = new Opcode( 0xf892, "get_physical_data", undefined, [new Param(TYPE_WORD, undefined, undefined)], - undefined + undefined, )); static readonly GET_ATTACK_DATA = (OPCODES[0xf893] = new Opcode( 0xf893, "get_attack_data", undefined, [new Param(TYPE_WORD, undefined, undefined)], - undefined + undefined, )); static readonly GET_RESIST_DATA = (OPCODES[0xf894] = new Opcode( 0xf894, "get_resist_data", undefined, [new Param(TYPE_WORD, undefined, undefined)], - undefined + undefined, )); static readonly GET_MOVEMENT_DATA = (OPCODES[0xf895] = new Opcode( 0xf895, "get_movement_data", undefined, [new Param(TYPE_WORD, undefined, undefined)], - undefined + undefined, )); static readonly UNKNOWN_F896 = (OPCODES[0xf896] = new Opcode( 0xf896, "unknown_f896", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F897 = (OPCODES[0xf897] = new Opcode( 0xf897, "unknown_f897", undefined, [], - undefined + undefined, )); static readonly SHIFT_LEFT = (OPCODES[0xf898] = new Opcode( 0xf898, @@ -5006,7 +5006,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -5014,10 +5014,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SHIFT_RIGHT = (OPCODES[0xf899] = new Opcode( 0xf899, @@ -5030,7 +5030,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -5038,10 +5038,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly GET_RANDOM = (OPCODES[0xf89a] = new Opcode( 0xf89a, @@ -5057,7 +5057,7 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), new Param( { @@ -5065,17 +5065,17 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly RESET_MAP = (OPCODES[0xf89b] = new Opcode( 0xf89b, "reset_map", "Sets all registers to 0 and resets the quest.", [], - undefined + undefined, )); static readonly DISP_CHL_RETRY_MENU = (OPCODES[0xf89c] = new Opcode( 0xf89c, @@ -5088,24 +5088,24 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly CHL_REVERSER = (OPCODES[0xf89d] = new Opcode( 0xf89d, "chl_reverser", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F89E = (OPCODES[0xf89e] = new Opcode( 0xf89e, "unknown_f89e", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F89F = (OPCODES[0xf89f] = new Opcode( 0xf89f, @@ -5118,73 +5118,73 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F8A0 = (OPCODES[0xf8a0] = new Opcode( 0xf8a0, "unknown_f8a0", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8A1 = (OPCODES[0xf8a1] = new Opcode( 0xf8a1, "unknown_f8a1", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8A2 = (OPCODES[0xf8a2] = new Opcode( 0xf8a2, "unknown_f8a2", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8A3 = (OPCODES[0xf8a3] = new Opcode( 0xf8a3, "unknown_f8a3", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8A4 = (OPCODES[0xf8a4] = new Opcode( 0xf8a4, "unknown_f8a4", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8A5 = (OPCODES[0xf8a5] = new Opcode( 0xf8a5, "unknown_f8a5", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8A6 = (OPCODES[0xf8a6] = new Opcode( 0xf8a6, "unknown_f8a6", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8A7 = (OPCODES[0xf8a7] = new Opcode( 0xf8a7, "unknown_f8a7", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8A8 = (OPCODES[0xf8a8] = new Opcode( 0xf8a8, "unknown_f8a8", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F8A9 = (OPCODES[0xf8a9] = new Opcode( 0xf8a9, @@ -5197,31 +5197,31 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F8AA = (OPCODES[0xf8aa] = new Opcode( 0xf8aa, "unknown_f8aa", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8AB = (OPCODES[0xf8ab] = new Opcode( 0xf8ab, "unknown_f8ab", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8AC = (OPCODES[0xf8ac] = new Opcode( 0xf8ac, "unknown_f8ac", undefined, [], - undefined + undefined, )); static readonly GET_NUMBER_OF_PLAYER2 = (OPCODES[0xf8ad] = new Opcode( 0xf8ad, @@ -5234,143 +5234,143 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F8AE = (OPCODES[0xf8ae] = new Opcode( 0xf8ae, "unknown_f8ae", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8AF = (OPCODES[0xf8af] = new Opcode( 0xf8af, "unknown_f8af", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8B0 = (OPCODES[0xf8b0] = new Opcode( 0xf8b0, "unknown_f8b0", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8B1 = (OPCODES[0xf8b1] = new Opcode( 0xf8b1, "unknown_f8b1", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8B2 = (OPCODES[0xf8b2] = new Opcode( 0xf8b2, "unknown_f8b2", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8B3 = (OPCODES[0xf8b3] = new Opcode( 0xf8b3, "unknown_f8b3", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8B4 = (OPCODES[0xf8b4] = new Opcode( 0xf8b4, "unknown_f8b4", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8B5 = (OPCODES[0xf8b5] = new Opcode( 0xf8b5, "unknown_f8b5", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8B6 = (OPCODES[0xf8b6] = new Opcode( 0xf8b6, "unknown_f8b6", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8B7 = (OPCODES[0xf8b7] = new Opcode( 0xf8b7, "unknown_f8b7", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8B8 = (OPCODES[0xf8b8] = new Opcode( 0xf8b8, "unknown_f8b8", undefined, [], - undefined + undefined, )); static readonly CHL_RECOVERY = (OPCODES[0xf8b9] = new Opcode( 0xf8b9, "chl_recovery", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8BA = (OPCODES[0xf8ba] = new Opcode( 0xf8ba, "unknown_f8ba", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8BB = (OPCODES[0xf8bb] = new Opcode( 0xf8bb, "unknown_f8bb", undefined, [], - undefined + undefined, )); static readonly SET_EPISODE = (OPCODES[0xf8bc] = new Opcode( 0xf8bc, "set_episode", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - undefined + undefined, )); static readonly UNKNOWN_F8BD = (OPCODES[0xf8bd] = new Opcode( 0xf8bd, "unknown_f8bd", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8BE = (OPCODES[0xf8be] = new Opcode( 0xf8be, "unknown_f8be", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8BF = (OPCODES[0xf8bf] = new Opcode( 0xf8bf, "unknown_f8bf", undefined, [], - undefined + undefined, )); static readonly FILE_DL_REQ = (OPCODES[0xf8c0] = new Opcode( 0xf8c0, "file_dl_req", undefined, [new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly GET_DL_STATUS = (OPCODES[0xf8c1] = new Opcode( 0xf8c1, @@ -5383,17 +5383,17 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly GBA_UNKNOWN4 = (OPCODES[0xf8c2] = new Opcode( 0xf8c2, "gba_unknown4", undefined, [], - undefined + undefined, )); static readonly GET_GBA_STATE = (OPCODES[0xf8c3] = new Opcode( 0xf8c3, @@ -5406,10 +5406,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F8C4 = (OPCODES[0xf8c4] = new Opcode( 0xf8c4, @@ -5422,10 +5422,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F8C5 = (OPCODES[0xf8c5] = new Opcode( 0xf8c5, @@ -5438,17 +5438,17 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly QEXIT = (OPCODES[0xf8c6] = new Opcode( 0xf8c6, "qexit", undefined, [], - undefined + undefined, )); static readonly USE_ANIMATION = (OPCODES[0xf8c7] = new Opcode( 0xf8c7, @@ -5461,7 +5461,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -5471,15 +5471,15 @@ export class Opcode { new Param( TYPE_DWORD, "Animation duration in number of frames.", - ParamAccess.Read + ParamAccess.Read, ), ], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly STOP_ANIMATION = (OPCODES[0xf8c8] = new Opcode( 0xf8c8, @@ -5492,10 +5492,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly RUN_TO_COORD = (OPCODES[0xf8c9] = new Opcode( 0xf8c9, @@ -5508,7 +5508,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -5516,10 +5516,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SET_SLOT_INVINCIBLE = (OPCODES[0xf8ca] = new Opcode( 0xf8ca, @@ -5532,7 +5532,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -5540,10 +5540,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F8CB = (OPCODES[0xf8cb] = new Opcode( 0xf8cb, @@ -5556,10 +5556,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SET_SLOT_POISON = (OPCODES[0xf8cc] = new Opcode( 0xf8cc, @@ -5572,10 +5572,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SET_SLOT_PARALYZE = (OPCODES[0xf8cd] = new Opcode( 0xf8cd, @@ -5588,10 +5588,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SET_SLOT_SHOCK = (OPCODES[0xf8ce] = new Opcode( 0xf8ce, @@ -5604,10 +5604,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SET_SLOT_FREEZE = (OPCODES[0xf8cf] = new Opcode( 0xf8cf, @@ -5620,10 +5620,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SET_SLOT_SLOW = (OPCODES[0xf8d0] = new Opcode( 0xf8d0, @@ -5636,10 +5636,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SET_SLOT_CONFUSE = (OPCODES[0xf8d1] = new Opcode( 0xf8d1, @@ -5652,10 +5652,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SET_SLOT_SHIFTA = (OPCODES[0xf8d2] = new Opcode( 0xf8d2, @@ -5668,10 +5668,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SET_SLOT_DEBAND = (OPCODES[0xf8d3] = new Opcode( 0xf8d3, @@ -5684,10 +5684,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SET_SLOT_JELLEN = (OPCODES[0xf8d4] = new Opcode( 0xf8d4, @@ -5700,10 +5700,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SET_SLOT_ZALURE = (OPCODES[0xf8d5] = new Opcode( 0xf8d5, @@ -5716,10 +5716,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly FLETI_FIXED_CAMERA = (OPCODES[0xf8d6] = new Opcode( 0xf8d6, @@ -5732,10 +5732,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly FLETI_LOCKED_CAMERA = (OPCODES[0xf8d7] = new Opcode( 0xf8d7, @@ -5749,31 +5749,31 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly DEFAULT_CAMERA_POS2 = (OPCODES[0xf8d8] = new Opcode( 0xf8d8, "default_camera_pos2", undefined, [], - undefined + undefined, )); static readonly SET_MOTION_BLUR = (OPCODES[0xf8d9] = new Opcode( 0xf8d9, "set_motion_blur", undefined, [], - undefined + undefined, )); static readonly SET_SCREEN_BW = (OPCODES[0xf8da] = new Opcode( 0xf8da, "set_screen_bw", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8DB = (OPCODES[0xf8db] = new Opcode( 0xf8db, @@ -5790,11 +5790,11 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_WORD, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly NPC_ACTION_STRING = (OPCODES[0xf8dc] = new Opcode( 0xf8dc, @@ -5807,7 +5807,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -5815,11 +5815,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_S_LABEL, undefined, undefined), ], - undefined + undefined, )); static readonly GET_PAD_COND = (OPCODES[0xf8dd] = new Opcode( 0xf8dd, @@ -5832,7 +5832,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -5840,10 +5840,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly GET_BUTTON_COND = (OPCODES[0xf8de] = new Opcode( 0xf8de, @@ -5856,7 +5856,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -5864,38 +5864,38 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly FREEZE_ENEMIES = (OPCODES[0xf8df] = new Opcode( 0xf8df, "freeze_enemies", undefined, [], - undefined + undefined, )); static readonly UNFREEZE_ENEMIES = (OPCODES[0xf8e0] = new Opcode( 0xf8e0, "unfreeze_enemies", undefined, [], - undefined + undefined, )); static readonly FREEZE_EVERYTHING = (OPCODES[0xf8e1] = new Opcode( 0xf8e1, "freeze_everything", undefined, [], - undefined + undefined, )); static readonly UNFREEZE_EVERYTHING = (OPCODES[0xf8e2] = new Opcode( 0xf8e2, "unfreeze_everything", undefined, [], - undefined + undefined, )); static readonly RESTORE_HP = (OPCODES[0xf8e3] = new Opcode( 0xf8e3, @@ -5908,10 +5908,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly RESTORE_TP = (OPCODES[0xf8e4] = new Opcode( 0xf8e4, @@ -5924,10 +5924,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly CLOSE_CHAT_BUBBLE = (OPCODES[0xf8e5] = new Opcode( 0xf8e5, @@ -5940,10 +5940,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly MOVE_COORDS_OBJECT = (OPCODES[0xf8e6] = new Opcode( 0xf8e6, @@ -5956,7 +5956,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -5964,10 +5964,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly AT_COORDS_CALL_EX = (OPCODES[0xf8e7] = new Opcode( 0xf8e7, @@ -5980,7 +5980,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -5988,10 +5988,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F8E8 = (OPCODES[0xf8e8] = new Opcode( 0xf8e8, @@ -6004,7 +6004,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -6012,10 +6012,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F8E9 = (OPCODES[0xf8e9] = new Opcode( 0xf8e9, @@ -6028,7 +6028,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -6036,10 +6036,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F8EA = (OPCODES[0xf8ea] = new Opcode( 0xf8ea, @@ -6052,7 +6052,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -6060,10 +6060,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F8EB = (OPCODES[0xf8eb] = new Opcode( 0xf8eb, @@ -6076,7 +6076,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -6084,10 +6084,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F8EC = (OPCODES[0xf8ec] = new Opcode( 0xf8ec, @@ -6100,7 +6100,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -6108,10 +6108,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly ANIMATION_CHECK = (OPCODES[0xf8ed] = new Opcode( 0xf8ed, @@ -6124,7 +6124,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -6132,38 +6132,38 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly CALL_IMAGE_DATA = (OPCODES[0xf8ee] = new Opcode( 0xf8ee, "call_image_data", undefined, [new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_WORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F8EF = (OPCODES[0xf8ef] = new Opcode( 0xf8ef, "unknown_f8ef", undefined, [], - undefined + undefined, )); static readonly TURN_OFF_BGM_P2 = (OPCODES[0xf8f0] = new Opcode( 0xf8f0, "turn_off_bgm_p2", undefined, [], - undefined + undefined, )); static readonly TURN_ON_BGM_P2 = (OPCODES[0xf8f1] = new Opcode( 0xf8f1, "turn_on_bgm_p2", undefined, [], - undefined + undefined, )); static readonly LOAD_UNK_DATA = (OPCODES[0xf8f2] = new Opcode( 0xf8f2, @@ -6180,11 +6180,11 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_D_LABEL, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly PARTICLE2 = (OPCODES[0xf8f3] = new Opcode( 0xf8f3, @@ -6197,103 +6197,103 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_FLOAT, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F8F4 = (OPCODES[0xf8f4] = new Opcode( 0xf8f4, "unknown_f8f4", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8F5 = (OPCODES[0xf8f5] = new Opcode( 0xf8f5, "unknown_f8f5", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8F6 = (OPCODES[0xf8f6] = new Opcode( 0xf8f6, "unknown_f8f6", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8F7 = (OPCODES[0xf8f7] = new Opcode( 0xf8f7, "unknown_f8f7", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8F8 = (OPCODES[0xf8f8] = new Opcode( 0xf8f8, "unknown_f8f8", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8F9 = (OPCODES[0xf8f9] = new Opcode( 0xf8f9, "unknown_f8f9", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8FA = (OPCODES[0xf8fa] = new Opcode( 0xf8fa, "unknown_f8fa", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8FB = (OPCODES[0xf8fb] = new Opcode( 0xf8fb, "unknown_f8fb", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8FC = (OPCODES[0xf8fc] = new Opcode( 0xf8fc, "unknown_f8fc", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8FD = (OPCODES[0xf8fd] = new Opcode( 0xf8fd, "unknown_f8fd", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8FE = (OPCODES[0xf8fe] = new Opcode( 0xf8fe, "unknown_f8fe", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F8FF = (OPCODES[0xf8ff] = new Opcode( 0xf8ff, "unknown_f8ff", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F900 = (OPCODES[0xf900] = new Opcode( 0xf900, "unknown_f900", undefined, [], - undefined + undefined, )); static readonly DEC2FLOAT = (OPCODES[0xf901] = new Opcode( 0xf901, @@ -6306,7 +6306,7 @@ export class Opcode { register_tuples: [new Param(TYPE_FLOAT, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -6314,10 +6314,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly FLOAT2DEC = (OPCODES[0xf902] = new Opcode( 0xf902, @@ -6330,7 +6330,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -6338,10 +6338,10 @@ export class Opcode { register_tuples: [new Param(TYPE_FLOAT, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly FLET = (OPCODES[0xf903] = new Opcode( 0xf903, @@ -6354,7 +6354,7 @@ export class Opcode { register_tuples: [new Param(TYPE_FLOAT, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -6362,10 +6362,10 @@ export class Opcode { register_tuples: [new Param(TYPE_FLOAT, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly FLETI = (OPCODES[0xf904] = new Opcode( 0xf904, @@ -6378,32 +6378,32 @@ export class Opcode { register_tuples: [new Param(TYPE_FLOAT, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_FLOAT, undefined, undefined), ], - undefined + undefined, )); static readonly UNKNOWN_F905 = (OPCODES[0xf905] = new Opcode( 0xf905, "unknown_f905", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F906 = (OPCODES[0xf906] = new Opcode( 0xf906, "unknown_f906", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F907 = (OPCODES[0xf907] = new Opcode( 0xf907, "unknown_f907", undefined, [], - undefined + undefined, )); static readonly FADD = (OPCODES[0xf908] = new Opcode( 0xf908, @@ -6416,7 +6416,7 @@ export class Opcode { register_tuples: [new Param(TYPE_FLOAT, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -6424,10 +6424,10 @@ export class Opcode { register_tuples: [new Param(TYPE_FLOAT, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly FADDI = (OPCODES[0xf909] = new Opcode( 0xf909, @@ -6440,11 +6440,11 @@ export class Opcode { register_tuples: [new Param(TYPE_FLOAT, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_FLOAT, undefined, undefined), ], - undefined + undefined, )); static readonly FSUB = (OPCODES[0xf90a] = new Opcode( 0xf90a, @@ -6457,7 +6457,7 @@ export class Opcode { register_tuples: [new Param(TYPE_FLOAT, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -6465,10 +6465,10 @@ export class Opcode { register_tuples: [new Param(TYPE_FLOAT, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly FSUBI = (OPCODES[0xf90b] = new Opcode( 0xf90b, @@ -6481,11 +6481,11 @@ export class Opcode { register_tuples: [new Param(TYPE_FLOAT, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_FLOAT, undefined, undefined), ], - undefined + undefined, )); static readonly FMUL = (OPCODES[0xf90c] = new Opcode( 0xf90c, @@ -6498,7 +6498,7 @@ export class Opcode { register_tuples: [new Param(TYPE_FLOAT, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -6506,10 +6506,10 @@ export class Opcode { register_tuples: [new Param(TYPE_FLOAT, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly FMULI = (OPCODES[0xf90d] = new Opcode( 0xf90d, @@ -6522,11 +6522,11 @@ export class Opcode { register_tuples: [new Param(TYPE_FLOAT, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_FLOAT, undefined, undefined), ], - undefined + undefined, )); static readonly FDIV = (OPCODES[0xf90e] = new Opcode( 0xf90e, @@ -6539,7 +6539,7 @@ export class Opcode { register_tuples: [new Param(TYPE_FLOAT, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -6547,10 +6547,10 @@ export class Opcode { register_tuples: [new Param(TYPE_FLOAT, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly FDIVI = (OPCODES[0xf90f] = new Opcode( 0xf90f, @@ -6563,11 +6563,11 @@ export class Opcode { register_tuples: [new Param(TYPE_FLOAT, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_FLOAT, undefined, undefined), ], - undefined + undefined, )); static readonly GET_UNKNOWN_COUNT = (OPCODES[0xf910] = new Opcode( 0xf910, @@ -6581,10 +6581,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly GET_STACKABLE_ITEM_COUNT = (OPCODES[0xf911] = new Opcode( 0xf911, @@ -6602,7 +6602,7 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), new Param( { @@ -6610,24 +6610,24 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly FREEZE_AND_HIDE_EQUIP = (OPCODES[0xf912] = new Opcode( 0xf912, "freeze_and_hide_equip", undefined, [], - undefined + undefined, )); static readonly THAW_AND_SHOW_EQUIP = (OPCODES[0xf913] = new Opcode( 0xf913, "thaw_and_show_equip", undefined, [], - undefined + undefined, )); static readonly SET_PALETTEX_CALLBACK = (OPCODES[0xf914] = new Opcode( 0xf914, @@ -6637,35 +6637,35 @@ export class Opcode { new Param(TYPE_DWORD, "Player slot.", undefined), new Param(TYPE_I_LABEL, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly ACTIVATE_PALETTEX = (OPCODES[0xf915] = new Opcode( 0xf915, "activate_palettex", undefined, [new Param(TYPE_DWORD, "Player slot.", undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly ENABLE_PALETTEX = (OPCODES[0xf916] = new Opcode( 0xf916, "enable_palettex", undefined, [new Param(TYPE_DWORD, "Player slot.", undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly RESTORE_PALETTEX = (OPCODES[0xf917] = new Opcode( 0xf917, "restore_palettex", undefined, [new Param(TYPE_DWORD, "Player slot.", undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly DISABLE_PALETTEX = (OPCODES[0xf918] = new Opcode( 0xf918, "disable_palettex", undefined, [new Param(TYPE_DWORD, "Player slot.", undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly GET_PALETTEX_ACTIVATED = (OPCODES[0xf919] = new Opcode( 0xf919, @@ -6679,10 +6679,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly GET_UNKNOWN_PALETTEX_STATUS = (OPCODES[0xf91a] = new Opcode( 0xf91a, @@ -6696,24 +6696,24 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly DISABLE_MOVEMENT2 = (OPCODES[0xf91b] = new Opcode( 0xf91b, "disable_movement2", undefined, [new Param(TYPE_DWORD, "Player slot.", undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly ENABLE_MOVEMENT2 = (OPCODES[0xf91c] = new Opcode( 0xf91c, "enable_movement2", undefined, [new Param(TYPE_DWORD, "Player slot.", undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly GET_TIME_PLAYED = (OPCODES[0xf91d] = new Opcode( 0xf91d, @@ -6726,10 +6726,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly GET_GUILDCARD_TOTAL = (OPCODES[0xf91e] = new Opcode( 0xf91e, @@ -6742,10 +6742,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly GET_SLOT_MESETA = (OPCODES[0xf91f] = new Opcode( 0xf91f, @@ -6758,10 +6758,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly GET_PLAYER_LEVEL = (OPCODES[0xf920] = new Opcode( 0xf920, @@ -6775,10 +6775,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly GET_SECTION_ID = (OPCODES[0xf921] = new Opcode( 0xf921, @@ -6792,10 +6792,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly GET_PLAYER_HP = (OPCODES[0xf922] = new Opcode( 0xf922, @@ -6814,10 +6814,10 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly GET_FLOOR_NUMBER = (OPCODES[0xf923] = new Opcode( 0xf923, @@ -6831,10 +6831,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly GET_COORD_PLAYER_DETECT = (OPCODES[0xf924] = new Opcode( 0xf924, @@ -6847,7 +6847,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, "Player slot.", ParamAccess.Read)], }, undefined, - undefined + undefined, ), new Param( { @@ -6855,10 +6855,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Read)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly READ_GLOBAL_FLAG = (OPCODES[0xf925] = new Opcode( 0xf925, @@ -6872,17 +6872,17 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly WRITE_GLOBAL_FLAG = (OPCODES[0xf926] = new Opcode( 0xf926, "write_global_flag", undefined, [new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F927 = (OPCODES[0xf927] = new Opcode( 0xf927, @@ -6895,7 +6895,7 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -6903,10 +6903,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly FLOOR_PLAYER_DETECT = (OPCODES[0xf928] = new Opcode( 0xf928, @@ -6924,24 +6924,24 @@ export class Opcode { ], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly READ_DISK_FILE = (OPCODES[0xf929] = new Opcode( 0xf929, "read_disk_file", undefined, [new Param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly OPEN_PACK_SELECT = (OPCODES[0xf92a] = new Opcode( 0xf92a, "open_pack_select", undefined, [], - undefined + undefined, )); static readonly ITEM_SELECT = (OPCODES[0xf92b] = new Opcode( 0xf92b, @@ -6954,10 +6954,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly GET_ITEM_ID = (OPCODES[0xf92c] = new Opcode( 0xf92c, @@ -6970,10 +6970,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly COLOR_CHANGE = (OPCODES[0xf92d] = new Opcode( 0xf92d, @@ -6986,7 +6986,7 @@ export class Opcode { new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_DWORD, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly SEND_STATISTIC = (OPCODES[0xf92e] = new Opcode( 0xf92e, @@ -7002,14 +7002,14 @@ export class Opcode { new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_DWORD, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F92F = (OPCODES[0xf92f] = new Opcode( 0xf92f, "unknown_f92f", undefined, [new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly CHAT_BOX = (OPCODES[0xf930] = new Opcode( 0xf930, @@ -7023,21 +7023,21 @@ export class Opcode { new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_STRING, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly CHAT_BUBBLE = (OPCODES[0xf931] = new Opcode( 0xf931, "chat_bubble", undefined, [new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_STRING, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F932 = (OPCODES[0xf932] = new Opcode( 0xf932, "unknown_f932", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F933 = (OPCODES[0xf933] = new Opcode( 0xf933, @@ -7050,10 +7050,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly SCROLL_TEXT = (OPCODES[0xf934] = new Opcode( 0xf934, @@ -7072,46 +7072,46 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_STRING, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly GBA_UNKNOWN1 = (OPCODES[0xf935] = new Opcode( 0xf935, "gba_unknown1", undefined, [], - undefined + undefined, )); static readonly GBA_UNKNOWN2 = (OPCODES[0xf936] = new Opcode( 0xf936, "gba_unknown2", undefined, [], - undefined + undefined, )); static readonly GBA_UNKNOWN3 = (OPCODES[0xf937] = new Opcode( 0xf937, "gba_unknown3", undefined, [], - undefined + undefined, )); static readonly ADD_DAMAGE_TO = (OPCODES[0xf938] = new Opcode( 0xf938, "add_damage_to", undefined, [new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly ITEM_DELETE3 = (OPCODES[0xf939] = new Opcode( 0xf939, "item_delete3", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly GET_ITEM_INFO = (OPCODES[0xf93a] = new Opcode( 0xf93a, @@ -7125,24 +7125,24 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly ITEM_PACKING1 = (OPCODES[0xf93b] = new Opcode( 0xf93b, "item_packing1", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly ITEM_PACKING2 = (OPCODES[0xf93c] = new Opcode( 0xf93c, "item_packing2", undefined, [new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly GET_LANG_SETTING = (OPCODES[0xf93d] = new Opcode( 0xf93d, @@ -7155,10 +7155,10 @@ export class Opcode { register_tuples: [new Param(TYPE_ANY, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly PREPARE_STATISTIC = (OPCODES[0xf93e] = new Opcode( 0xf93e, @@ -7169,14 +7169,14 @@ export class Opcode { new Param(TYPE_I_LABEL, undefined, undefined), new Param(TYPE_I_LABEL, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly KEYWORD_DETECT = (OPCODES[0xf93f] = new Opcode( 0xf93f, "keyword_detect", undefined, [], - undefined + undefined, )); static readonly KEYWORD = (OPCODES[0xf940] = new Opcode( 0xf940, @@ -7189,12 +7189,12 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, "Player slot.", undefined), new Param(TYPE_STRING, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly GET_GUILDCARD_NUM = (OPCODES[0xf941] = new Opcode( 0xf941, @@ -7208,24 +7208,24 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F942 = (OPCODES[0xf942] = new Opcode( 0xf942, "unknown_f942", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F943 = (OPCODES[0xf943] = new Opcode( 0xf943, "unknown_f943", undefined, [], - undefined + undefined, )); static readonly GET_WRAP_STATUS = (OPCODES[0xf944] = new Opcode( 0xf944, @@ -7239,17 +7239,17 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly INITIAL_FLOOR = (OPCODES[0xf945] = new Opcode( 0xf945, "initial_floor", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly SIN = (OPCODES[0xf946] = new Opcode( 0xf946, @@ -7262,11 +7262,11 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly COS = (OPCODES[0xf947] = new Opcode( 0xf947, @@ -7279,25 +7279,25 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F948 = (OPCODES[0xf948] = new Opcode( 0xf948, "unknown_f948", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F949 = (OPCODES[0xf949] = new Opcode( 0xf949, "unknown_f949", undefined, [], - undefined + undefined, )); static readonly BOSS_IS_DEAD2 = (OPCODES[0xf94a] = new Opcode( 0xf94a, @@ -7310,10 +7310,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F94B = (OPCODES[0xf94b] = new Opcode( 0xf94b, @@ -7326,10 +7326,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F94C = (OPCODES[0xf94c] = new Opcode( 0xf94c, @@ -7342,10 +7342,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly IS_THERE_CARDBATTLE = (OPCODES[0xf94d] = new Opcode( 0xf94d, @@ -7358,31 +7358,31 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly UNKNOWN_F94E = (OPCODES[0xf94e] = new Opcode( 0xf94e, "unknown_f94e", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F94F = (OPCODES[0xf94f] = new Opcode( 0xf94f, "unknown_f94f", undefined, [], - undefined + undefined, )); static readonly BB_P2_MENU = (OPCODES[0xf950] = new Opcode( 0xf950, "bb_p2_menu", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly BB_MAP_DESIGNATE = (OPCODES[0xf951] = new Opcode( 0xf951, @@ -7394,7 +7394,7 @@ export class Opcode { new Param(TYPE_BYTE, undefined, undefined), new Param(TYPE_BYTE, undefined, undefined), ], - undefined + undefined, )); static readonly BB_GET_NUMBER_IN_PACK = (OPCODES[0xf952] = new Opcode( 0xf952, @@ -7407,10 +7407,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - undefined + undefined, )); static readonly BB_SWAP_ITEM = (OPCODES[0xf953] = new Opcode( 0xf953, @@ -7426,7 +7426,7 @@ export class Opcode { new Param(TYPE_I_LABEL, undefined, undefined), new Param(TYPE_I_LABEL, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly BB_CHECK_WRAP = (OPCODES[0xf954] = new Opcode( 0xf954, @@ -7440,10 +7440,10 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly BB_EXCHANGE_PD_ITEM = (OPCODES[0xf955] = new Opcode( 0xf955, @@ -7456,7 +7456,7 @@ export class Opcode { new Param(TYPE_I_LABEL, undefined, undefined), new Param(TYPE_I_LABEL, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly BB_EXCHANGE_PD_SRANK = (OPCODES[0xf956] = new Opcode( 0xf956, @@ -7471,7 +7471,7 @@ export class Opcode { new Param(TYPE_I_LABEL, undefined, undefined), new Param(TYPE_I_LABEL, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly BB_EXCHANGE_PD_SPECIAL = (OPCODES[0xf957] = new Opcode( 0xf957, @@ -7487,7 +7487,7 @@ export class Opcode { new Param(TYPE_I_LABEL, undefined, undefined), new Param(TYPE_I_LABEL, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly BB_EXCHANGE_PD_PERCENT = (OPCODES[0xf958] = new Opcode( 0xf958, @@ -7503,28 +7503,28 @@ export class Opcode { new Param(TYPE_I_LABEL, undefined, undefined), new Param(TYPE_I_LABEL, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F959 = (OPCODES[0xf959] = new Opcode( 0xf959, "unknown_f959", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F95A = (OPCODES[0xf95a] = new Opcode( 0xf95a, "unknown_f95a", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F95B = (OPCODES[0xf95b] = new Opcode( 0xf95b, "unknown_f95b", undefined, [], - undefined + undefined, )); static readonly BB_EXCHANGE_SLT = (OPCODES[0xf95c] = new Opcode( 0xf95c, @@ -7538,19 +7538,19 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_I_LABEL, undefined, undefined), new Param(TYPE_I_LABEL, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly BB_EXCHANGE_PC = (OPCODES[0xf95d] = new Opcode( 0xf95d, "bb_exchange_pc", undefined, [], - undefined + undefined, )); static readonly BB_BOX_CREATE_BP = (OPCODES[0xf95e] = new Opcode( 0xf95e, @@ -7561,7 +7561,7 @@ export class Opcode { new Param(TYPE_FLOAT, undefined, undefined), new Param(TYPE_FLOAT, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly BB_EXCHANGE_PT = (OPCODES[0xf95f] = new Opcode( 0xf95f, @@ -7574,7 +7574,7 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param( { @@ -7582,1133 +7582,1133 @@ export class Opcode { register_tuples: [new Param(TYPE_DWORD, undefined, ParamAccess.Write)], }, undefined, - undefined + undefined, ), new Param(TYPE_DWORD, undefined, undefined), new Param(TYPE_I_LABEL, undefined, undefined), new Param(TYPE_I_LABEL, undefined, undefined), ], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F960 = (OPCODES[0xf960] = new Opcode( 0xf960, "unknown_f960", undefined, [new Param(TYPE_DWORD, undefined, undefined)], - StackInteraction.Pop + StackInteraction.Pop, )); static readonly UNKNOWN_F961 = (OPCODES[0xf961] = new Opcode( 0xf961, "unknown_f961", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F962 = (OPCODES[0xf962] = new Opcode( 0xf962, "unknown_f962", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F963 = (OPCODES[0xf963] = new Opcode( 0xf963, "unknown_f963", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F964 = (OPCODES[0xf964] = new Opcode( 0xf964, "unknown_f964", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F965 = (OPCODES[0xf965] = new Opcode( 0xf965, "unknown_f965", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F966 = (OPCODES[0xf966] = new Opcode( 0xf966, "unknown_f966", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F967 = (OPCODES[0xf967] = new Opcode( 0xf967, "unknown_f967", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F968 = (OPCODES[0xf968] = new Opcode( 0xf968, "unknown_f968", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F969 = (OPCODES[0xf969] = new Opcode( 0xf969, "unknown_f969", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F96A = (OPCODES[0xf96a] = new Opcode( 0xf96a, "unknown_f96a", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F96B = (OPCODES[0xf96b] = new Opcode( 0xf96b, "unknown_f96b", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F96C = (OPCODES[0xf96c] = new Opcode( 0xf96c, "unknown_f96c", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F96D = (OPCODES[0xf96d] = new Opcode( 0xf96d, "unknown_f96d", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F96E = (OPCODES[0xf96e] = new Opcode( 0xf96e, "unknown_f96e", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F96F = (OPCODES[0xf96f] = new Opcode( 0xf96f, "unknown_f96f", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F970 = (OPCODES[0xf970] = new Opcode( 0xf970, "unknown_f970", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F971 = (OPCODES[0xf971] = new Opcode( 0xf971, "unknown_f971", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F972 = (OPCODES[0xf972] = new Opcode( 0xf972, "unknown_f972", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F973 = (OPCODES[0xf973] = new Opcode( 0xf973, "unknown_f973", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F974 = (OPCODES[0xf974] = new Opcode( 0xf974, "unknown_f974", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F975 = (OPCODES[0xf975] = new Opcode( 0xf975, "unknown_f975", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F976 = (OPCODES[0xf976] = new Opcode( 0xf976, "unknown_f976", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F977 = (OPCODES[0xf977] = new Opcode( 0xf977, "unknown_f977", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F978 = (OPCODES[0xf978] = new Opcode( 0xf978, "unknown_f978", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F979 = (OPCODES[0xf979] = new Opcode( 0xf979, "unknown_f979", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F97A = (OPCODES[0xf97a] = new Opcode( 0xf97a, "unknown_f97a", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F97B = (OPCODES[0xf97b] = new Opcode( 0xf97b, "unknown_f97b", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F97C = (OPCODES[0xf97c] = new Opcode( 0xf97c, "unknown_f97c", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F97D = (OPCODES[0xf97d] = new Opcode( 0xf97d, "unknown_f97d", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F97E = (OPCODES[0xf97e] = new Opcode( 0xf97e, "unknown_f97e", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F97F = (OPCODES[0xf97f] = new Opcode( 0xf97f, "unknown_f97f", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F980 = (OPCODES[0xf980] = new Opcode( 0xf980, "unknown_f980", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F981 = (OPCODES[0xf981] = new Opcode( 0xf981, "unknown_f981", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F982 = (OPCODES[0xf982] = new Opcode( 0xf982, "unknown_f982", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F983 = (OPCODES[0xf983] = new Opcode( 0xf983, "unknown_f983", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F984 = (OPCODES[0xf984] = new Opcode( 0xf984, "unknown_f984", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F985 = (OPCODES[0xf985] = new Opcode( 0xf985, "unknown_f985", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F986 = (OPCODES[0xf986] = new Opcode( 0xf986, "unknown_f986", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F987 = (OPCODES[0xf987] = new Opcode( 0xf987, "unknown_f987", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F988 = (OPCODES[0xf988] = new Opcode( 0xf988, "unknown_f988", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F989 = (OPCODES[0xf989] = new Opcode( 0xf989, "unknown_f989", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F98A = (OPCODES[0xf98a] = new Opcode( 0xf98a, "unknown_f98a", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F98B = (OPCODES[0xf98b] = new Opcode( 0xf98b, "unknown_f98b", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F98C = (OPCODES[0xf98c] = new Opcode( 0xf98c, "unknown_f98c", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F98D = (OPCODES[0xf98d] = new Opcode( 0xf98d, "unknown_f98d", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F98E = (OPCODES[0xf98e] = new Opcode( 0xf98e, "unknown_f98e", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F98F = (OPCODES[0xf98f] = new Opcode( 0xf98f, "unknown_f98f", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F990 = (OPCODES[0xf990] = new Opcode( 0xf990, "unknown_f990", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F991 = (OPCODES[0xf991] = new Opcode( 0xf991, "unknown_f991", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F992 = (OPCODES[0xf992] = new Opcode( 0xf992, "unknown_f992", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F993 = (OPCODES[0xf993] = new Opcode( 0xf993, "unknown_f993", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F994 = (OPCODES[0xf994] = new Opcode( 0xf994, "unknown_f994", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F995 = (OPCODES[0xf995] = new Opcode( 0xf995, "unknown_f995", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F996 = (OPCODES[0xf996] = new Opcode( 0xf996, "unknown_f996", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F997 = (OPCODES[0xf997] = new Opcode( 0xf997, "unknown_f997", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F998 = (OPCODES[0xf998] = new Opcode( 0xf998, "unknown_f998", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F999 = (OPCODES[0xf999] = new Opcode( 0xf999, "unknown_f999", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F99A = (OPCODES[0xf99a] = new Opcode( 0xf99a, "unknown_f99a", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F99B = (OPCODES[0xf99b] = new Opcode( 0xf99b, "unknown_f99b", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F99C = (OPCODES[0xf99c] = new Opcode( 0xf99c, "unknown_f99c", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F99D = (OPCODES[0xf99d] = new Opcode( 0xf99d, "unknown_f99d", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F99E = (OPCODES[0xf99e] = new Opcode( 0xf99e, "unknown_f99e", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F99F = (OPCODES[0xf99f] = new Opcode( 0xf99f, "unknown_f99f", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9A0 = (OPCODES[0xf9a0] = new Opcode( 0xf9a0, "unknown_f9a0", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9A1 = (OPCODES[0xf9a1] = new Opcode( 0xf9a1, "unknown_f9a1", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9A2 = (OPCODES[0xf9a2] = new Opcode( 0xf9a2, "unknown_f9a2", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9A3 = (OPCODES[0xf9a3] = new Opcode( 0xf9a3, "unknown_f9a3", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9A4 = (OPCODES[0xf9a4] = new Opcode( 0xf9a4, "unknown_f9a4", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9A5 = (OPCODES[0xf9a5] = new Opcode( 0xf9a5, "unknown_f9a5", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9A6 = (OPCODES[0xf9a6] = new Opcode( 0xf9a6, "unknown_f9a6", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9A7 = (OPCODES[0xf9a7] = new Opcode( 0xf9a7, "unknown_f9a7", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9A8 = (OPCODES[0xf9a8] = new Opcode( 0xf9a8, "unknown_f9a8", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9A9 = (OPCODES[0xf9a9] = new Opcode( 0xf9a9, "unknown_f9a9", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9AA = (OPCODES[0xf9aa] = new Opcode( 0xf9aa, "unknown_f9aa", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9AB = (OPCODES[0xf9ab] = new Opcode( 0xf9ab, "unknown_f9ab", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9AC = (OPCODES[0xf9ac] = new Opcode( 0xf9ac, "unknown_f9ac", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9AD = (OPCODES[0xf9ad] = new Opcode( 0xf9ad, "unknown_f9ad", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9AE = (OPCODES[0xf9ae] = new Opcode( 0xf9ae, "unknown_f9ae", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9AF = (OPCODES[0xf9af] = new Opcode( 0xf9af, "unknown_f9af", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9B0 = (OPCODES[0xf9b0] = new Opcode( 0xf9b0, "unknown_f9b0", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9B1 = (OPCODES[0xf9b1] = new Opcode( 0xf9b1, "unknown_f9b1", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9B2 = (OPCODES[0xf9b2] = new Opcode( 0xf9b2, "unknown_f9b2", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9B3 = (OPCODES[0xf9b3] = new Opcode( 0xf9b3, "unknown_f9b3", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9B4 = (OPCODES[0xf9b4] = new Opcode( 0xf9b4, "unknown_f9b4", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9B5 = (OPCODES[0xf9b5] = new Opcode( 0xf9b5, "unknown_f9b5", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9B6 = (OPCODES[0xf9b6] = new Opcode( 0xf9b6, "unknown_f9b6", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9B7 = (OPCODES[0xf9b7] = new Opcode( 0xf9b7, "unknown_f9b7", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9B8 = (OPCODES[0xf9b8] = new Opcode( 0xf9b8, "unknown_f9b8", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9B9 = (OPCODES[0xf9b9] = new Opcode( 0xf9b9, "unknown_f9b9", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9BA = (OPCODES[0xf9ba] = new Opcode( 0xf9ba, "unknown_f9ba", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9BB = (OPCODES[0xf9bb] = new Opcode( 0xf9bb, "unknown_f9bb", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9BC = (OPCODES[0xf9bc] = new Opcode( 0xf9bc, "unknown_f9bc", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9BD = (OPCODES[0xf9bd] = new Opcode( 0xf9bd, "unknown_f9bd", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9BE = (OPCODES[0xf9be] = new Opcode( 0xf9be, "unknown_f9be", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9BF = (OPCODES[0xf9bf] = new Opcode( 0xf9bf, "unknown_f9bf", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9C0 = (OPCODES[0xf9c0] = new Opcode( 0xf9c0, "unknown_f9c0", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9C1 = (OPCODES[0xf9c1] = new Opcode( 0xf9c1, "unknown_f9c1", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9C2 = (OPCODES[0xf9c2] = new Opcode( 0xf9c2, "unknown_f9c2", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9C3 = (OPCODES[0xf9c3] = new Opcode( 0xf9c3, "unknown_f9c3", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9C4 = (OPCODES[0xf9c4] = new Opcode( 0xf9c4, "unknown_f9c4", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9C5 = (OPCODES[0xf9c5] = new Opcode( 0xf9c5, "unknown_f9c5", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9C6 = (OPCODES[0xf9c6] = new Opcode( 0xf9c6, "unknown_f9c6", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9C7 = (OPCODES[0xf9c7] = new Opcode( 0xf9c7, "unknown_f9c7", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9C8 = (OPCODES[0xf9c8] = new Opcode( 0xf9c8, "unknown_f9c8", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9C9 = (OPCODES[0xf9c9] = new Opcode( 0xf9c9, "unknown_f9c9", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9CA = (OPCODES[0xf9ca] = new Opcode( 0xf9ca, "unknown_f9ca", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9CB = (OPCODES[0xf9cb] = new Opcode( 0xf9cb, "unknown_f9cb", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9CC = (OPCODES[0xf9cc] = new Opcode( 0xf9cc, "unknown_f9cc", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9CD = (OPCODES[0xf9cd] = new Opcode( 0xf9cd, "unknown_f9cd", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9CE = (OPCODES[0xf9ce] = new Opcode( 0xf9ce, "unknown_f9ce", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9CF = (OPCODES[0xf9cf] = new Opcode( 0xf9cf, "unknown_f9cf", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9D0 = (OPCODES[0xf9d0] = new Opcode( 0xf9d0, "unknown_f9d0", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9D1 = (OPCODES[0xf9d1] = new Opcode( 0xf9d1, "unknown_f9d1", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9D2 = (OPCODES[0xf9d2] = new Opcode( 0xf9d2, "unknown_f9d2", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9D3 = (OPCODES[0xf9d3] = new Opcode( 0xf9d3, "unknown_f9d3", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9D4 = (OPCODES[0xf9d4] = new Opcode( 0xf9d4, "unknown_f9d4", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9D5 = (OPCODES[0xf9d5] = new Opcode( 0xf9d5, "unknown_f9d5", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9D6 = (OPCODES[0xf9d6] = new Opcode( 0xf9d6, "unknown_f9d6", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9D7 = (OPCODES[0xf9d7] = new Opcode( 0xf9d7, "unknown_f9d7", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9D8 = (OPCODES[0xf9d8] = new Opcode( 0xf9d8, "unknown_f9d8", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9D9 = (OPCODES[0xf9d9] = new Opcode( 0xf9d9, "unknown_f9d9", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9DA = (OPCODES[0xf9da] = new Opcode( 0xf9da, "unknown_f9da", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9DB = (OPCODES[0xf9db] = new Opcode( 0xf9db, "unknown_f9db", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9DC = (OPCODES[0xf9dc] = new Opcode( 0xf9dc, "unknown_f9dc", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9DD = (OPCODES[0xf9dd] = new Opcode( 0xf9dd, "unknown_f9dd", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9DE = (OPCODES[0xf9de] = new Opcode( 0xf9de, "unknown_f9de", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9DF = (OPCODES[0xf9df] = new Opcode( 0xf9df, "unknown_f9df", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9E0 = (OPCODES[0xf9e0] = new Opcode( 0xf9e0, "unknown_f9e0", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9E1 = (OPCODES[0xf9e1] = new Opcode( 0xf9e1, "unknown_f9e1", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9E2 = (OPCODES[0xf9e2] = new Opcode( 0xf9e2, "unknown_f9e2", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9E3 = (OPCODES[0xf9e3] = new Opcode( 0xf9e3, "unknown_f9e3", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9E4 = (OPCODES[0xf9e4] = new Opcode( 0xf9e4, "unknown_f9e4", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9E5 = (OPCODES[0xf9e5] = new Opcode( 0xf9e5, "unknown_f9e5", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9E6 = (OPCODES[0xf9e6] = new Opcode( 0xf9e6, "unknown_f9e6", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9E7 = (OPCODES[0xf9e7] = new Opcode( 0xf9e7, "unknown_f9e7", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9E8 = (OPCODES[0xf9e8] = new Opcode( 0xf9e8, "unknown_f9e8", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9E9 = (OPCODES[0xf9e9] = new Opcode( 0xf9e9, "unknown_f9e9", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9EA = (OPCODES[0xf9ea] = new Opcode( 0xf9ea, "unknown_f9ea", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9EB = (OPCODES[0xf9eb] = new Opcode( 0xf9eb, "unknown_f9eb", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9EC = (OPCODES[0xf9ec] = new Opcode( 0xf9ec, "unknown_f9ec", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9ED = (OPCODES[0xf9ed] = new Opcode( 0xf9ed, "unknown_f9ed", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9EE = (OPCODES[0xf9ee] = new Opcode( 0xf9ee, "unknown_f9ee", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9EF = (OPCODES[0xf9ef] = new Opcode( 0xf9ef, "unknown_f9ef", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9F0 = (OPCODES[0xf9f0] = new Opcode( 0xf9f0, "unknown_f9f0", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9F1 = (OPCODES[0xf9f1] = new Opcode( 0xf9f1, "unknown_f9f1", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9F2 = (OPCODES[0xf9f2] = new Opcode( 0xf9f2, "unknown_f9f2", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9F3 = (OPCODES[0xf9f3] = new Opcode( 0xf9f3, "unknown_f9f3", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9F4 = (OPCODES[0xf9f4] = new Opcode( 0xf9f4, "unknown_f9f4", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9F5 = (OPCODES[0xf9f5] = new Opcode( 0xf9f5, "unknown_f9f5", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9F6 = (OPCODES[0xf9f6] = new Opcode( 0xf9f6, "unknown_f9f6", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9F7 = (OPCODES[0xf9f7] = new Opcode( 0xf9f7, "unknown_f9f7", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9F8 = (OPCODES[0xf9f8] = new Opcode( 0xf9f8, "unknown_f9f8", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9F9 = (OPCODES[0xf9f9] = new Opcode( 0xf9f9, "unknown_f9f9", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9FA = (OPCODES[0xf9fa] = new Opcode( 0xf9fa, "unknown_f9fa", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9FB = (OPCODES[0xf9fb] = new Opcode( 0xf9fb, "unknown_f9fb", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9FC = (OPCODES[0xf9fc] = new Opcode( 0xf9fc, "unknown_f9fc", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9FD = (OPCODES[0xf9fd] = new Opcode( 0xf9fd, "unknown_f9fd", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9FE = (OPCODES[0xf9fe] = new Opcode( 0xf9fe, "unknown_f9fe", undefined, [], - undefined + undefined, )); static readonly UNKNOWN_F9FF = (OPCODES[0xf9ff] = new Opcode( 0xf9ff, "unknown_f9ff", undefined, [], - undefined + undefined, )); // !!! GENERATED_CODE_END !!! } diff --git a/src/scripting/vm/index.ts b/src/quest_editor/scripting/vm/index.ts similarity index 99% rename from src/scripting/vm/index.ts rename to src/quest_editor/scripting/vm/index.ts index 5bd6739f..1509330c 100644 --- a/src/scripting/vm/index.ts +++ b/src/quest_editor/scripting/vm/index.ts @@ -56,7 +56,7 @@ export class VirtualMachine { throw new Error( `Label ${label} points to a ${SegmentType[segment.type]} segment, expecting ${ SegmentType[SegmentType.Instructions] - }.` + }.`, ); } @@ -172,7 +172,7 @@ export class VirtualMachine { logger.warn( `Label ${label} points to a ${SegmentType[segment.type]} segment, expecting ${ SegmentType[SegmentType.Instructions] - }.` + }.`, ); } else { exec.stack.push(new StackElement(seg_idx, -1)); @@ -208,7 +208,7 @@ export class VirtualMachine { if (!inst) { throw new Error( - `Invalid instruction index ${top.inst_idx} for segment ${top.seg_idx}.` + `Invalid instruction index ${top.inst_idx} for segment ${top.seg_idx}.`, ); } diff --git a/src/stores/AreaStore.ts b/src/quest_editor/stores/AreaStore.ts similarity index 89% rename from src/stores/AreaStore.ts rename to src/quest_editor/stores/AreaStore.ts index 99a1b1c8..fb6e53f7 100644 --- a/src/stores/AreaStore.ts +++ b/src/quest_editor/stores/AreaStore.ts @@ -1,9 +1,9 @@ -import { Section } from "../domain"; import { load_area_sections } from "../loading/areas"; -import { Episode, EPISODES } from "../data_formats/parsing/quest/Episode"; -import { get_areas_for_episode } from "../data_formats/parsing/quest/areas"; +import { Episode, EPISODES } from "../../core/data_formats/parsing/quest/Episode"; +import { get_areas_for_episode } from "../../core/data_formats/parsing/quest/areas"; import { ObservableAreaVariant } from "../domain/ObservableAreaVariant"; import { ObservableArea } from "../domain/ObservableArea"; +import { Section } from "../domain/Section"; class AreaStore { private readonly areas: ObservableArea[][] = []; diff --git a/src/stores/QuestEditorStore.ts b/src/quest_editor/stores/QuestEditorStore.ts similarity index 93% rename from src/stores/QuestEditorStore.ts rename to src/quest_editor/stores/QuestEditorStore.ts index 9f3b95e7..ccc4d0ea 100644 --- a/src/stores/QuestEditorStore.ts +++ b/src/quest_editor/stores/QuestEditorStore.ts @@ -1,24 +1,24 @@ import Logger from "js-logger"; import { action, flow, observable } from "mobx"; -import { Endianness } from "../data_formats/Endianness"; -import { ArrayBufferCursor } from "../data_formats/cursor/ArrayBufferCursor"; -import { parse_quest, write_quest_qst } from "../data_formats/parsing/quest"; -import { Vec3 } from "../data_formats/vector"; +import { Endianness } from "../../core/data_formats/Endianness"; +import { ArrayBufferCursor } from "../../core/data_formats/cursor/ArrayBufferCursor"; +import { parse_quest, write_quest_qst } from "../../core/data_formats/parsing/quest"; +import { Vec3 } from "../../core/data_formats/vector"; +import { read_file } from "../../core/read_file"; +import { SimpleUndo, undo_manager, UndoStack } from "../../core/undo"; +import { application_store } from "../../application/stores/ApplicationStore"; +import { area_store } from "./AreaStore"; +import { create_new_quest } from "./quest_creation"; +import { Episode } from "../../core/data_formats/parsing/quest/Episode"; +import { entity_data } from "../../core/data_formats/parsing/quest/entities"; +import { ObservableQuest } from "../domain/ObservableQuest"; +import { ObservableArea } from "../domain/ObservableArea"; +import { Section } from "../domain/Section"; import { ObservableQuestEntity, ObservableQuestNpc, ObservableQuestObject, - Section, -} from "../domain"; -import { read_file } from "../read_file"; -import { SimpleUndo, undo_manager, UndoStack } from "../undo"; -import { application_store } from "./ApplicationStore"; -import { area_store } from "./AreaStore"; -import { create_new_quest } from "./quest_creation"; -import { Episode } from "../data_formats/parsing/quest/Episode"; -import { entity_data } from "../data_formats/parsing/quest/entities"; -import { ObservableQuest } from "../domain/ObservableQuest"; -import { ObservableArea } from "../domain/ObservableArea"; +} from "../domain/observable_quest_entities"; const logger = Logger.get("stores/QuestEditorStore"); diff --git a/src/stores/quest_creation.ts b/src/quest_editor/stores/quest_creation.ts similarity index 98% rename from src/stores/quest_creation.ts rename to src/quest_editor/stores/quest_creation.ts index 7e2dc92e..e5549067 100644 --- a/src/stores/quest_creation.ts +++ b/src/quest_editor/stores/quest_creation.ts @@ -1,11 +1,11 @@ -import { Vec3 } from "../data_formats/vector"; -import { ObservableQuestNpc, ObservableQuestObject } from "../domain"; +import { Vec3 } from "../../core/data_formats/vector"; import { Instruction, SegmentType } from "../scripting/instructions"; import { Opcode } from "../scripting/opcodes"; -import { Episode } from "../data_formats/parsing/quest/Episode"; -import { ObjectType } from "../data_formats/parsing/quest/object_types"; -import { NpcType } from "../data_formats/parsing/quest/npc_types"; +import { Episode } from "../../core/data_formats/parsing/quest/Episode"; +import { ObjectType } from "../../core/data_formats/parsing/quest/object_types"; +import { NpcType } from "../../core/data_formats/parsing/quest/npc_types"; import { ObservableQuest } from "../domain/ObservableQuest"; +import { ObservableQuestNpc, ObservableQuestObject } from "../domain/observable_quest_entities"; export function create_new_quest(episode: Episode): ObservableQuest { if (episode === Episode.II) throw new Error("Episode II not yet supported."); diff --git a/src/ui/quest_editor/AssemblyEditorComponent.css b/src/quest_editor/ui/AssemblyEditorComponent.css similarity index 100% rename from src/ui/quest_editor/AssemblyEditorComponent.css rename to src/quest_editor/ui/AssemblyEditorComponent.css diff --git a/src/ui/quest_editor/AssemblyEditorComponent.tsx b/src/quest_editor/ui/AssemblyEditorComponent.tsx similarity index 97% rename from src/ui/quest_editor/AssemblyEditorComponent.tsx rename to src/quest_editor/ui/AssemblyEditorComponent.tsx index 8ecf43b6..d3203974 100644 --- a/src/ui/quest_editor/AssemblyEditorComponent.tsx +++ b/src/quest_editor/ui/AssemblyEditorComponent.tsx @@ -2,10 +2,10 @@ import { autorun } from "mobx"; import { editor, languages, MarkerSeverity } from "monaco-editor"; import React, { Component, createRef, ReactNode } from "react"; import { AutoSizer } from "react-virtualized"; -import { AssemblyAnalyser } from "../../scripting/AssemblyAnalyser"; -import { OPCODES } from "../../scripting/opcodes"; -import { quest_editor_store } from "../../stores/QuestEditorStore"; -import { Action } from "../../undo"; +import { AssemblyAnalyser } from "../scripting/AssemblyAnalyser"; +import { OPCODES } from "../scripting/opcodes"; +import { quest_editor_store } from "../stores/QuestEditorStore"; +import { Action } from "../../core/undo"; import styles from "./AssemblyEditorComponent.css"; const ASM_SYNTAX: languages.IMonarchLanguage = { diff --git a/src/ui/quest_editor/EntityInfoComponent.css b/src/quest_editor/ui/EntityInfoComponent.css similarity index 100% rename from src/ui/quest_editor/EntityInfoComponent.css rename to src/quest_editor/ui/EntityInfoComponent.css diff --git a/src/ui/quest_editor/EntityInfoComponent.tsx b/src/quest_editor/ui/EntityInfoComponent.tsx similarity index 92% rename from src/ui/quest_editor/EntityInfoComponent.tsx rename to src/quest_editor/ui/EntityInfoComponent.tsx index 7216adfc..3e4a5acb 100644 --- a/src/ui/quest_editor/EntityInfoComponent.tsx +++ b/src/quest_editor/ui/EntityInfoComponent.tsx @@ -2,12 +2,12 @@ import { InputNumber } from "antd"; import { autorun, IReactionDisposer } from "mobx"; import { observer } from "mobx-react"; import React, { Component, PureComponent, ReactNode } from "react"; -import { Vec3 } from "../../data_formats/vector"; -import { quest_editor_store } from "../../stores/QuestEditorStore"; -import { DisabledTextComponent } from "../DisabledTextComponent"; +import { Vec3 } from "../../core/data_formats/vector"; +import { quest_editor_store } from "../stores/QuestEditorStore"; +import { DisabledTextComponent } from "../../core/ui/DisabledTextComponent"; import styles from "./EntityInfoComponent.css"; -import { ObservableQuestEntity, ObservableQuestNpc } from "../../domain"; -import { entity_data, entity_type_to_string } from "../../data_formats/parsing/quest/entities"; +import { entity_data, entity_type_to_string } from "../../core/data_formats/parsing/quest/entities"; +import { ObservableQuestEntity, ObservableQuestNpc } from "../domain/observable_quest_entities"; @observer export class EntityInfoComponent extends Component { diff --git a/src/ui/quest_editor/QuestEditorComponent.css b/src/quest_editor/ui/QuestEditorComponent.css similarity index 100% rename from src/ui/quest_editor/QuestEditorComponent.css rename to src/quest_editor/ui/QuestEditorComponent.css diff --git a/src/ui/quest_editor/QuestEditorComponent.tsx b/src/quest_editor/ui/QuestEditorComponent.tsx similarity index 94% rename from src/ui/quest_editor/QuestEditorComponent.tsx rename to src/quest_editor/ui/QuestEditorComponent.tsx index e9692661..ca13a04a 100644 --- a/src/ui/quest_editor/QuestEditorComponent.tsx +++ b/src/quest_editor/ui/QuestEditorComponent.tsx @@ -2,8 +2,8 @@ import GoldenLayout, { ContentItem, ItemConfigType } from "golden-layout"; import Logger from "js-logger"; import { observer } from "mobx-react"; import React, { Component, createRef, FocusEvent, ReactNode } from "react"; -import { quest_editor_ui_persister } from "../../persistence/QuestEditorUiPersister"; -import { quest_editor_store } from "../../stores/QuestEditorStore"; +import { quest_editor_ui_persister } from "../persistence/QuestEditorUiPersister"; +import { quest_editor_store } from "../stores/QuestEditorStore"; import { AssemblyEditorComponent } from "./AssemblyEditorComponent"; import { EntityInfoComponent } from "./EntityInfoComponent"; import styles from "./QuestEditorComponent.css"; @@ -90,7 +90,7 @@ export class QuestEditorComponent extends Component { if (this.layout_element.current && !this.layout) { const content = await quest_editor_ui_persister.load_layout_config( [...CMP_TO_NAME.values()], - DEFAULT_LAYOUT_CONTENT + DEFAULT_LAYOUT_CONTENT, ); const config: GoldenLayout.Config = { @@ -108,7 +108,7 @@ export class QuestEditorComponent extends Component { ...DEFAULT_LAYOUT_CONFIG, content: DEFAULT_LAYOUT_CONTENT, }, - this.layout_element.current + this.layout_element.current, ); } @@ -119,7 +119,7 @@ export class QuestEditorComponent extends Component { this.layout.on("stateChanged", () => { if (this.layout) { quest_editor_ui_persister.persist_layout_config( - this.layout.toConfig().content + this.layout.toConfig().content, ); } }); diff --git a/src/ui/quest_editor/QuestInfoComponent.css b/src/quest_editor/ui/QuestInfoComponent.css similarity index 100% rename from src/ui/quest_editor/QuestInfoComponent.css rename to src/quest_editor/ui/QuestInfoComponent.css diff --git a/src/ui/quest_editor/QuestInfoComponent.tsx b/src/quest_editor/ui/QuestInfoComponent.tsx similarity index 94% rename from src/ui/quest_editor/QuestInfoComponent.tsx rename to src/quest_editor/ui/QuestInfoComponent.tsx index e93fda33..78b5b96d 100644 --- a/src/ui/quest_editor/QuestInfoComponent.tsx +++ b/src/quest_editor/ui/QuestInfoComponent.tsx @@ -1,11 +1,11 @@ import { Input, InputNumber } from "antd"; import { observer } from "mobx-react"; import React, { ChangeEvent, Component, ReactNode } from "react"; -import { quest_editor_store } from "../../stores/QuestEditorStore"; -import { DisabledTextComponent } from "../DisabledTextComponent"; +import { quest_editor_store } from "../stores/QuestEditorStore"; +import { DisabledTextComponent } from "../../core/ui/DisabledTextComponent"; import styles from "./QuestInfoComponent.css"; -import { Episode } from "../../data_formats/parsing/quest/Episode"; -import { npc_data, NpcType } from "../../data_formats/parsing/quest/npc_types"; +import { Episode } from "../../core/data_formats/parsing/quest/Episode"; +import { npc_data, NpcType } from "../../core/data_formats/parsing/quest/npc_types"; @observer export class QuestInfoComponent extends Component { diff --git a/src/ui/quest_editor/QuestRendererComponent.tsx b/src/quest_editor/ui/QuestRendererComponent.tsx similarity index 76% rename from src/ui/quest_editor/QuestRendererComponent.tsx rename to src/quest_editor/ui/QuestRendererComponent.tsx index c8a359f8..e1ac4b34 100644 --- a/src/ui/quest_editor/QuestRendererComponent.tsx +++ b/src/quest_editor/ui/QuestRendererComponent.tsx @@ -1,9 +1,9 @@ import { observer } from "mobx-react"; import React, { Component, ReactNode } from "react"; import { AutoSizer } from "react-virtualized"; -import { get_quest_renderer } from "../../rendering/QuestRenderer"; -import { quest_editor_store } from "../../stores/QuestEditorStore"; -import { RendererComponent } from "../RendererComponent"; +import { get_quest_renderer } from "../rendering/QuestRenderer"; +import { quest_editor_store } from "../stores/QuestEditorStore"; +import { RendererComponent } from "../../core/ui/RendererComponent"; @observer export class QuestRendererComponent extends Component { diff --git a/src/ui/quest_editor/Toolbar.css b/src/quest_editor/ui/Toolbar.css similarity index 100% rename from src/ui/quest_editor/Toolbar.css rename to src/quest_editor/ui/Toolbar.css diff --git a/src/ui/quest_editor/Toolbar.tsx b/src/quest_editor/ui/Toolbar.tsx similarity index 95% rename from src/ui/quest_editor/Toolbar.tsx rename to src/quest_editor/ui/Toolbar.tsx index 07bb9f67..cbc16713 100644 --- a/src/ui/quest_editor/Toolbar.tsx +++ b/src/quest_editor/ui/Toolbar.tsx @@ -3,11 +3,11 @@ import { ClickParam } from "antd/lib/menu"; import { UploadChangeParam, UploadFile } from "antd/lib/upload/interface"; import { observer } from "mobx-react"; import React, { ChangeEvent, Component, ReactNode } from "react"; -import { area_store } from "../../stores/AreaStore"; -import { quest_editor_store } from "../../stores/QuestEditorStore"; -import { undo_manager } from "../../undo"; +import { area_store } from "../stores/AreaStore"; +import { quest_editor_store } from "../stores/QuestEditorStore"; +import { undo_manager } from "../../core/undo"; import styles from "./Toolbar.css"; -import { Episode } from "../../data_formats/parsing/quest/Episode"; +import { Episode } from "../../core/data_formats/parsing/quest/Episode"; @observer export class Toolbar extends Component { diff --git a/src/viewer/domain/index.ts b/src/viewer/domain/index.ts new file mode 100644 index 00000000..5fbf724a --- /dev/null +++ b/src/viewer/domain/index.ts @@ -0,0 +1,12 @@ +export class PlayerModel { + constructor( + readonly name: string, + readonly head_style_count: number, + readonly hair_styles_count: number, + readonly hair_styles_with_accessory: Set, + ) {} +} + +export class PlayerAnimation { + constructor(readonly id: number, readonly name: string) {} +} diff --git a/src/loading/player.ts b/src/viewer/loading/player.ts similarity index 85% rename from src/loading/player.ts rename to src/viewer/loading/player.ts index 20057989..1dfe6837 100644 --- a/src/loading/player.ts +++ b/src/viewer/loading/player.ts @@ -1,16 +1,16 @@ -import { load_array_buffer } from "./load_array_buffer"; +import { load_array_buffer } from "../../core/loading"; export async function get_player_data( player_class: string, body_part: string, - no?: number + no?: number, ): Promise { return await load_array_buffer(player_class_to_url(player_class, body_part, no)); } export async function get_player_animation_data(animation_id: number): Promise { return await load_array_buffer( - `/player/animation/animation_${animation_id.toString().padStart(3, "0")}.njm` + `/player/animation/animation_${animation_id.toString().padStart(3, "0")}.njm`, ); } diff --git a/src/rendering/ModelRenderer.ts b/src/viewer/rendering/ModelRenderer.ts similarity index 97% rename from src/rendering/ModelRenderer.ts rename to src/viewer/rendering/ModelRenderer.ts index 1e80e57a..7b0112e2 100644 --- a/src/rendering/ModelRenderer.ts +++ b/src/viewer/rendering/ModelRenderer.ts @@ -1,7 +1,7 @@ import { autorun } from "mobx"; import { Object3D, PerspectiveCamera, SkeletonHelper, Vector3 } from "three"; import { model_viewer_store } from "../stores/ModelViewerStore"; -import { Renderer } from "./Renderer"; +import { Renderer } from "../../core/rendering/Renderer"; let renderer: ModelRenderer | undefined; diff --git a/src/rendering/TextureRenderer.ts b/src/viewer/rendering/TextureRenderer.ts similarity index 92% rename from src/rendering/TextureRenderer.ts rename to src/viewer/rendering/TextureRenderer.ts index 564cbde1..0c9afdeb 100644 --- a/src/rendering/TextureRenderer.ts +++ b/src/viewer/rendering/TextureRenderer.ts @@ -9,10 +9,10 @@ import { Vector2, Vector3, } from "three"; -import { Xvm } from "../data_formats/parsing/ninja/texture"; +import { Xvm } from "../../core/data_formats/parsing/ninja/texture"; import { texture_viewer_store } from "../stores/TextureViewerStore"; -import { Renderer } from "./Renderer"; -import { xvm_texture_to_texture } from "./conversion/ninja_textures"; +import { Renderer } from "../../core/rendering/Renderer"; +import { xvm_texture_to_texture } from "../../core/rendering/conversion/ninja_textures"; const logger = Logger.get("rendering/TextureRenderer"); @@ -81,7 +81,7 @@ export class TextureRenderer extends Renderer { x, y + Math.floor((total_height - tex.height) / 2), tex.width, - tex.height + tex.height, ), tex_3js ? new MeshBasicMaterial({ @@ -90,7 +90,7 @@ export class TextureRenderer extends Renderer { }) : new MeshBasicMaterial({ color: 0xff00ff, - }) + }), ); this.quad_meshes.push(quad_mesh); diff --git a/src/stores/ModelViewerStore.ts b/src/viewer/stores/ModelViewerStore.ts similarity index 91% rename from src/stores/ModelViewerStore.ts rename to src/viewer/stores/ModelViewerStore.ts index bf2b7c1a..7032d249 100644 --- a/src/stores/ModelViewerStore.ts +++ b/src/viewer/stores/ModelViewerStore.ts @@ -11,18 +11,21 @@ import { SkinnedMesh, Texture, } from "three"; -import { Endianness } from "../data_formats/Endianness"; -import { ArrayBufferCursor } from "../data_formats/cursor/ArrayBufferCursor"; -import { NjModel, NjObject, parse_nj, parse_xj } from "../data_formats/parsing/ninja"; -import { NjMotion, parse_njm } from "../data_formats/parsing/ninja/motion"; -import { parse_xvm } from "../data_formats/parsing/ninja/texture"; -import { PlayerAnimation, PlayerModel } from "../domain"; +import { Endianness } from "../../core/data_formats/Endianness"; +import { ArrayBufferCursor } from "../../core/data_formats/cursor/ArrayBufferCursor"; +import { NjModel, NjObject, parse_nj, parse_xj } from "../../core/data_formats/parsing/ninja"; +import { NjMotion, parse_njm } from "../../core/data_formats/parsing/ninja/motion"; +import { parse_xvm } from "../../core/data_formats/parsing/ninja/texture"; import { get_player_animation_data, get_player_data } from "../loading/player"; -import { read_file } from "../read_file"; -import { create_skinned_mesh, create_mesh } from "../rendering/conversion/create_mesh"; -import { create_animation_clip, PSO_FRAME_RATE } from "../rendering/conversion/ninja_animation"; -import { ninja_object_to_buffer_geometry } from "../rendering/conversion/ninja_geometry"; -import { xvm_to_textures } from "../rendering/conversion/ninja_textures"; +import { read_file } from "../../core/read_file"; +import { create_skinned_mesh, create_mesh } from "../../core/rendering/conversion/create_mesh"; +import { + create_animation_clip, + PSO_FRAME_RATE, +} from "../../core/rendering/conversion/ninja_animation"; +import { ninja_object_to_buffer_geometry } from "../../core/rendering/conversion/ninja_geometry"; +import { xvm_to_textures } from "../../core/rendering/conversion/ninja_textures"; +import { PlayerAnimation, PlayerModel } from "../domain"; const logger = Logger.get("stores/ModelViewerStore"); const nj_object_cache: Map>> = new Map(); @@ -199,13 +202,13 @@ class ModelViewerStore { this.has_skeleton = skeleton; this.set_obj3d(); - } + }, ); private add_to_bone( object: NjObject, head_part: NjObject, - bone_id: number + bone_id: number, ): void { const bone = object.get_bone(bone_id); @@ -254,7 +257,7 @@ class ModelViewerStore { if (model.hair_styles_with_accessory.has(0)) { const accessory_data = await get_player_data(model.name, "Accessory", 0); const accessory = parse_nj( - new ArrayBufferCursor(accessory_data, Endianness.Little) + new ArrayBufferCursor(accessory_data, Endianness.Little), )[0]; if (accessory) { @@ -275,8 +278,8 @@ class ModelViewerStore { nj_motion = get_player_animation_data(animation.id).then(motion_data => parse_njm( new ArrayBufferCursor(motion_data, Endianness.Little), - this.current_bone_count - ) + this.current_bone_count, + ), ); nj_motion_cache.set(animation.id, nj_motion); @@ -301,13 +304,13 @@ class ModelViewerStore { map: tex, side: DoubleSide, alphaTest: 0.5, - }) + }), ); if (this.has_skeleton) { mesh = create_skinned_mesh( ninja_object_to_buffer_geometry(this.current_model), - materials + materials, ); } else { mesh = create_mesh(ninja_object_to_buffer_geometry(this.current_model), materials); diff --git a/src/stores/TextureViewerStore.ts b/src/viewer/stores/TextureViewerStore.ts similarity index 67% rename from src/stores/TextureViewerStore.ts rename to src/viewer/stores/TextureViewerStore.ts index 7de07501..831d6677 100644 --- a/src/stores/TextureViewerStore.ts +++ b/src/viewer/stores/TextureViewerStore.ts @@ -1,8 +1,8 @@ import { observable } from "mobx"; -import { Xvm, parse_xvm } from "../data_formats/parsing/ninja/texture"; -import { ArrayBufferCursor } from "../data_formats/cursor/ArrayBufferCursor"; -import { read_file } from "../read_file"; -import { Endianness } from "../data_formats/Endianness"; +import { Xvm, parse_xvm } from "../../core/data_formats/parsing/ninja/texture"; +import { ArrayBufferCursor } from "../../core/data_formats/cursor/ArrayBufferCursor"; +import { read_file } from "../../core/read_file"; +import { Endianness } from "../../core/data_formats/Endianness"; import Logger from "js-logger"; const logger = Logger.get("stores/TextureViewerStore"); diff --git a/src/ui/viewer/ViewerComponent.css b/src/viewer/ui/ViewerComponent.css similarity index 100% rename from src/ui/viewer/ViewerComponent.css rename to src/viewer/ui/ViewerComponent.css diff --git a/src/ui/viewer/ViewerComponent.tsx b/src/viewer/ui/ViewerComponent.tsx similarity index 100% rename from src/ui/viewer/ViewerComponent.tsx rename to src/viewer/ui/ViewerComponent.tsx diff --git a/src/ui/viewer/models/AnimationSelectionComponent.css b/src/viewer/ui/models/AnimationSelectionComponent.css similarity index 100% rename from src/ui/viewer/models/AnimationSelectionComponent.css rename to src/viewer/ui/models/AnimationSelectionComponent.css diff --git a/src/ui/viewer/models/AnimationSelectionComponent.tsx b/src/viewer/ui/models/AnimationSelectionComponent.tsx similarity index 94% rename from src/ui/viewer/models/AnimationSelectionComponent.tsx rename to src/viewer/ui/models/AnimationSelectionComponent.tsx index 351d15f6..12b0dd64 100644 --- a/src/ui/viewer/models/AnimationSelectionComponent.tsx +++ b/src/viewer/ui/models/AnimationSelectionComponent.tsx @@ -1,5 +1,5 @@ import React, { Component, ReactNode } from "react"; -import { model_viewer_store } from "../../../stores/ModelViewerStore"; +import { model_viewer_store } from "../../stores/ModelViewerStore"; import styles from "./AnimationSelectionComponent.css"; import { observer } from "mobx-react"; diff --git a/src/ui/viewer/models/ModelSelectionComponent.css b/src/viewer/ui/models/ModelSelectionComponent.css similarity index 100% rename from src/ui/viewer/models/ModelSelectionComponent.css rename to src/viewer/ui/models/ModelSelectionComponent.css diff --git a/src/ui/viewer/models/ModelSelectionComponent.tsx b/src/viewer/ui/models/ModelSelectionComponent.tsx similarity index 95% rename from src/ui/viewer/models/ModelSelectionComponent.tsx rename to src/viewer/ui/models/ModelSelectionComponent.tsx index 239c9d82..918cdf12 100644 --- a/src/ui/viewer/models/ModelSelectionComponent.tsx +++ b/src/viewer/ui/models/ModelSelectionComponent.tsx @@ -1,7 +1,7 @@ import { List } from "antd"; import { observer } from "mobx-react"; import React, { Component, ReactNode } from "react"; -import { model_viewer_store } from "../../../stores/ModelViewerStore"; +import { model_viewer_store } from "../../stores/ModelViewerStore"; import styles from "./ModelSelectionComponent.css"; @observer diff --git a/src/ui/viewer/models/ModelViewerComponent.css b/src/viewer/ui/models/ModelViewerComponent.css similarity index 100% rename from src/ui/viewer/models/ModelViewerComponent.css rename to src/viewer/ui/models/ModelViewerComponent.css diff --git a/src/ui/viewer/models/ModelViewerComponent.tsx b/src/viewer/ui/models/ModelViewerComponent.tsx similarity index 95% rename from src/ui/viewer/models/ModelViewerComponent.tsx rename to src/viewer/ui/models/ModelViewerComponent.tsx index f884190a..112267df 100644 --- a/src/ui/viewer/models/ModelViewerComponent.tsx +++ b/src/viewer/ui/models/ModelViewerComponent.tsx @@ -4,9 +4,9 @@ import { UploadFile } from "antd/lib/upload/interface"; import { observer } from "mobx-react"; import React, { Component, ReactNode } from "react"; import { AutoSizer } from "react-virtualized"; -import { get_model_renderer } from "../../../rendering/ModelRenderer"; -import { model_viewer_store } from "../../../stores/ModelViewerStore"; -import { RendererComponent } from "../../RendererComponent"; +import { get_model_renderer } from "../../rendering/ModelRenderer"; +import { model_viewer_store } from "../../stores/ModelViewerStore"; +import { RendererComponent } from "../../../core/ui/RendererComponent"; import { AnimationSelectionComponent } from "./AnimationSelectionComponent"; import { ModelSelectionComponent } from "./ModelSelectionComponent"; import styles from "./ModelViewerComponent.css"; diff --git a/src/ui/viewer/textures/TextureViewerComponent.css b/src/viewer/ui/textures/TextureViewerComponent.css similarity index 100% rename from src/ui/viewer/textures/TextureViewerComponent.css rename to src/viewer/ui/textures/TextureViewerComponent.css diff --git a/src/ui/viewer/textures/TextureViewerComponent.tsx b/src/viewer/ui/textures/TextureViewerComponent.tsx similarity index 89% rename from src/ui/viewer/textures/TextureViewerComponent.tsx rename to src/viewer/ui/textures/TextureViewerComponent.tsx index e3fbc33c..38171c26 100644 --- a/src/ui/viewer/textures/TextureViewerComponent.tsx +++ b/src/viewer/ui/textures/TextureViewerComponent.tsx @@ -2,9 +2,9 @@ import { Button, Upload } from "antd"; import { UploadChangeParam, UploadFile } from "antd/lib/upload/interface"; import { observer } from "mobx-react"; import React, { Component, ReactNode } from "react"; -import { get_texture_renderer } from "../../../rendering/TextureRenderer"; -import { texture_viewer_store } from "../../../stores/TextureViewerStore"; -import { RendererComponent } from "../../RendererComponent"; +import { get_texture_renderer } from "../../rendering/TextureRenderer"; +import { texture_viewer_store } from "../../stores/TextureViewerStore"; +import { RendererComponent } from "../../../core/ui/RendererComponent"; import styles from "./TextureViewerComponent.css"; import { AutoSizer } from "react-virtualized"; diff --git a/test/src/utils.ts b/test/src/utils.ts index 2ae040f2..f4ef4690 100644 --- a/test/src/utils.ts +++ b/test/src/utils.ts @@ -7,7 +7,7 @@ import * as fs from "fs"; */ export function walk_qst_files( f: (path: string, file_name: string, contents: Buffer) => void, - dir: string = "test/resources/tethealla_v0.143_quests" + dir: string = "test/resources/tethealla_v0.143_quests", ): void { for (const [path, file] of get_qst_files(dir)) { f(path, file, fs.readFileSync(path)); diff --git a/webpack.common.js b/webpack.common.js index 508d5a79..8a23c494 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -1,28 +1,28 @@ const path = require("path"); const HtmlWebpackPlugin = require("html-webpack-plugin"); -const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin'); +const MonacoWebpackPlugin = require("monaco-editor-webpack-plugin"); const { ProvidePlugin } = require("webpack"); module.exports = { entry: "./src/index.tsx", output: { - path: path.resolve(__dirname, "dist") + path: path.resolve(__dirname, "dist"), }, resolve: { - extensions: [".js", ".ts", ".tsx"] + extensions: [".js", ".ts", ".tsx"], }, plugins: [ new HtmlWebpackPlugin({ - title: "Phantasmal World" + title: "Phantasmal World", }), new MonacoWebpackPlugin({ - languages: [] + languages: [], }), new ProvidePlugin({ React: "react", ReactDOM: "react-dom", $: "jquery", jQuery: "jquery", - }) - ] + }), + ], }; diff --git a/webpack.dev.js b/webpack.dev.js index eaf02125..72172784 100644 --- a/webpack.dev.js +++ b/webpack.dev.js @@ -13,13 +13,15 @@ module.exports = merge(common, { rules: [ { test: /\.tsx?$/, - use: [{ - loader: "ts-loader", - options: { - // fork-ts-checker-webpack-plugin does the type checking in a seperate process. - transpileOnly: true, - } - }], + use: [ + { + loader: "ts-loader", + options: { + // fork-ts-checker-webpack-plugin does the type checking in a separate process. + transpileOnly: true, + }, + }, + ], include: path.resolve(__dirname, "src"), }, { @@ -30,18 +32,18 @@ module.exports = merge(common, { loader: MiniCssExtractPlugin.loader, options: { hmr: true, - } + }, }, { loader: "css-loader", options: { sourceMap: true, modules: { - localIdentName: '[path][name]__[local]', + localIdentName: "[path][name]__[local]", }, - } + }, }, - ] + ], }, { test: /\.css$/, @@ -52,9 +54,9 @@ module.exports = merge(common, { loader: "css-loader", options: { sourceMap: true, - } + }, }, - ] + ], }, { test: /\.less$/, @@ -65,7 +67,7 @@ module.exports = merge(common, { loader: "css-loader", options: { sourceMap: true, - } + }, }, { loader: "less-loader", @@ -73,19 +75,19 @@ module.exports = merge(common, { sourceMap: true, javascriptEnabled: true, modifyVars: antd_theme, - } + }, }, - ] + ], }, { test: /\.(png|svg|jpg|gif)$/, - use: ["file-loader"] + use: ["file-loader"], }, { test: /\.worker\.js$/, - use: { loader: 'worker-loader' } + use: { loader: "worker-loader" }, }, - ] + ], }, plugins: [ new Dotenv({ @@ -93,5 +95,5 @@ module.exports = merge(common, { }), new ForkTsCheckerWebpackPlugin(), new MiniCssExtractPlugin(), - ] + ], }); diff --git a/webpack.prod.js b/webpack.prod.js index 8d95f48f..be048700 100644 --- a/webpack.prod.js +++ b/webpack.prod.js @@ -27,9 +27,9 @@ module.exports = merge(common, { test: /node_modules/, name: "vendors", chunks: "all", - } - } - } + }, + }, + }, }, module: { rules: [ @@ -47,19 +47,16 @@ module.exports = merge(common, { loader: "css-loader", options: { modules: { - localIdentName: '[local]--[hash:base64:5]', - } - } + localIdentName: "[local]--[hash:base64:5]", + }, + }, }, - ] + ], }, { test: /\.css$/, include: /node_modules/, - use: [ - MiniCssExtractPlugin.loader, - "css-loader", - ] + use: [MiniCssExtractPlugin.loader, "css-loader"], }, { test: /\.less$/, @@ -72,19 +69,19 @@ module.exports = merge(common, { options: { javascriptEnabled: true, modifyVars: antd_theme, - } + }, }, - ] + ], }, { test: /\.(png|svg|jpg|gif)$/, - use: ["file-loader"] + use: ["file-loader"], }, { test: /\.worker\.js$/, - use: { loader: 'worker-loader' } + use: { loader: "worker-loader" }, }, - ] + ], }, plugins: [ new CleanWebpackPlugin(), @@ -92,11 +89,13 @@ module.exports = merge(common, { path: "./.env.prod", }), new MiniCssExtractPlugin({ - filename: "[name].[contenthash].css" + filename: "[name].[contenthash].css", }), - new CopyWebpackPlugin([{ - from: path.resolve(__dirname, "assets"), - to: path.resolve(__dirname, "dist/assets"), - }]), - ] + new CopyWebpackPlugin([ + { + from: path.resolve(__dirname, "assets"), + to: path.resolve(__dirname, "dist/assets"), + }, + ]), + ], });