diff --git a/assets/quests/defaults/default_ep_1.qst b/assets/quests/defaults/default_ep_1.qst index 16af68e9..8e30b593 100644 Binary files a/assets/quests/defaults/default_ep_1.qst and b/assets/quests/defaults/default_ep_1.qst differ diff --git a/src/core/data_formats/parsing/quest/QuestNpc.ts b/src/core/data_formats/parsing/quest/QuestNpc.ts index a3a89163..e326c667 100644 --- a/src/core/data_formats/parsing/quest/QuestNpc.ts +++ b/src/core/data_formats/parsing/quest/QuestNpc.ts @@ -145,6 +145,13 @@ export function get_npc_script_label(npc: QuestNpc): number { return Math.round(npc.view.getFloat32(60, true)); } +/** + * Only seems to be valid for non-enemies. + */ +export function set_npc_script_label(npc: QuestNpc, script_label: number): void { + npc.view.setFloat32(60, script_label, true); +} + export function get_npc_skin(npc: QuestNpc): number { return npc.view.getUint32(64, true); } diff --git a/src/core/data_formats/parsing/quest/object_code.ts b/src/core/data_formats/parsing/quest/object_code.ts index 0af2a71e..1669674a 100644 --- a/src/core/data_formats/parsing/quest/object_code.ts +++ b/src/core/data_formats/parsing/quest/object_code.ts @@ -32,6 +32,25 @@ SEGMENT_PRIORITY[SegmentType.Instructions] = 2; SEGMENT_PRIORITY[SegmentType.String] = 1; SEGMENT_PRIORITY[SegmentType.Data] = 0; +const BUILTIN_FUNCTIONS = new Set([ + 60, + 70, + 80, + 90, + 100, + 110, + 120, + 130, + 140, + 800, + 810, + 820, + 830, + 840, + 850, + 860, +]); + export function parse_object_code( object_code: ArrayBuffer, label_offsets: readonly number[], @@ -409,7 +428,9 @@ function parse_segment( const info = label_holder.get_info(label); if (info == undefined) { - logger.warn(`Label ${label} is not registered in the label table.`); + if (!BUILTIN_FUNCTIONS.has(label)) { + logger.warn(`Label ${label} is not registered in the label table.`); + } return; } diff --git a/test/src/utils.ts b/test/src/utils.ts index 1fc37058..741cc6e2 100644 --- a/test/src/utils.ts +++ b/test/src/utils.ts @@ -82,7 +82,7 @@ export function get_qst_files(dir: string): [string, string][] { // TODO: Some quests can not yet be parsed correctly. const exceptions = [ "/battle/", // Battle mode quests - "/princ/", // Goverment quests + "/princ/", // Government quests "fragmentofmemoryen.qst", "lost havoc vulcan.qst", "ep2/event/ma4-a.qst",