mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Reverted change to default_ep_1.qst so it sets NPC script labels correctly again. Added a check before warning about invalid label references to see if it's a built-in function.
This commit is contained in:
parent
a0361fdc7c
commit
6d9e7120d8
Binary file not shown.
@ -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);
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user