mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
Ensure object has the right amount of properties when converting QuestObjects to DatObjects.
This commit is contained in:
parent
0d4a15a035
commit
103de10b02
@ -594,17 +594,35 @@ function get_npc_type(episode: number, { type_id, scale, roaming, area_id }: Dat
|
|||||||
}
|
}
|
||||||
|
|
||||||
function objects_to_dat_data(objects: readonly QuestObject[]): DatObject[] {
|
function objects_to_dat_data(objects: readonly QuestObject[]): DatObject[] {
|
||||||
return objects.map(object => ({
|
return objects.map(object => {
|
||||||
type_id: object_data(object.type).pso_id!,
|
const props = [...object.properties.values()];
|
||||||
id: object.id,
|
const props_target_len = 7;
|
||||||
group_id: object.group_id,
|
|
||||||
section_id: object.section_id,
|
// Truncate or pad property list if it is not the correct length.
|
||||||
position: object.position,
|
if (props.length > props_target_len) {
|
||||||
rotation: object.rotation,
|
logger.warn(
|
||||||
properties: [...object.properties.values()],
|
`Object #${object.id} has too many properties. Truncating property list to length of ${props_target_len}.`,
|
||||||
area_id: object.area_id,
|
);
|
||||||
unknown: object.unknown,
|
props.splice(props_target_len);
|
||||||
}));
|
} else if (props.length < props_target_len) {
|
||||||
|
const to_add = props_target_len - props.length;
|
||||||
|
for (let i = 0; i < to_add; i++) {
|
||||||
|
props.push(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
type_id: object_data(object.type).pso_id!,
|
||||||
|
id: object.id,
|
||||||
|
group_id: object.group_id,
|
||||||
|
section_id: object.section_id,
|
||||||
|
position: object.position,
|
||||||
|
rotation: object.rotation,
|
||||||
|
properties: props,
|
||||||
|
area_id: object.area_id,
|
||||||
|
unknown: object.unknown,
|
||||||
|
};
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function npcs_to_dat_data(npcs: readonly QuestNpc[]): DatNpc[] {
|
function npcs_to_dat_data(npcs: readonly QuestNpc[]): DatNpc[] {
|
||||||
|
Loading…
Reference in New Issue
Block a user