diff --git a/FEATURES.md b/FEATURES.md index aa97639e..8ab5c63b 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -155,7 +155,8 @@ Features that are in ***bold italics*** are planned but not yet implemented. ## Bugs - [Load Quest](#load-quest): Can't parse quest 125 White Day -- [Script Assembly Editor](#script-assembly-editor): Go to definition doesn't work in RT (#231) and PW2 (#234) +- [Script Assembly Editor](#script-assembly-editor): Go to definition doesn't work in RT (#231), PW2 +(#234) and Magnitude of Metal (#1, can jump to label 207 from line 433, but not from line 465) - When a modal dialog is open, global keybindings should be disabled - Entities with rendering issues: - Caves 4 Button door @@ -174,3 +175,4 @@ Features that are in ***bold italics*** are planned but not yet implemented. - Merissa A - Merissa AA - All "Sonic" objects, even the ones that aren't actually Sonic, are rendered as Sonic +- [Event Actions](#Event Actions): Editing event actions can't be undone diff --git a/README.md b/README.md index 461b9ed2..def04552 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ re-run whenever a file is changed. The testing framework used is Jest. ### Code Style, Linting and Formatting -Class names are in `PascalCase` and all other identifiers are in `snake_case`. +Class/interface/type names are in `PascalCase` and all other identifiers are in `snake_case`. ESLint and Prettier are used for linting and formatting. Run with `yarn lint` and/or configure your editor to use the ESLint/Prettier configuration. @@ -84,4 +84,6 @@ Create an optimized production build with `yarn build`. ### prs-rs -Provides faster PRS routines using WebAssembly. Build for WebPack with `yarn build_prs_rs_browser`. Build for Jest with `yarn build_prs_rs_testing`. Building requires [wasm-pack](https://github.com/rustwasm/wasm-pack). +Provides faster PRS routines using WebAssembly. Build for WebPack with `yarn build_prs_rs_browser`. +Build for Jest with `yarn build_prs_rs_testing`. Building requires +[wasm-pack](https://github.com/rustwasm/wasm-pack). diff --git a/src/core/data_formats/parsing/area_geometry.ts b/src/core/data_formats/parsing/area_geometry.ts index 6f8a8e78..e2efc37c 100644 --- a/src/core/data_formats/parsing/area_geometry.ts +++ b/src/core/data_formats/parsing/area_geometry.ts @@ -1,8 +1,9 @@ import { Cursor } from "../block/cursor/Cursor"; import { Vec3 } from "../vector"; -import { ANGLE_TO_RAD, NjObject, parse_xj_object } from "./ninja"; +import { NjObject, parse_xj_object } from "./ninja"; import { XjModel } from "./ninja/xj"; import { parse_rel } from "./rel"; +import { angle_to_rad } from "./ninja/angle"; export type RenderObject = { sections: RenderSection[]; @@ -34,9 +35,9 @@ export function parse_area_geometry(cursor: Cursor): RenderObject { const section_id = cursor.i32(); const section_position = cursor.vec3_f32(); const section_rotation = { - x: cursor.u32() * ANGLE_TO_RAD, - y: cursor.u32() * ANGLE_TO_RAD, - z: cursor.u32() * ANGLE_TO_RAD, + x: angle_to_rad(cursor.u32()), + y: angle_to_rad(cursor.u32()), + z: angle_to_rad(cursor.u32()), }; cursor.seek(4); diff --git a/src/core/data_formats/parsing/ninja/angle.ts b/src/core/data_formats/parsing/ninja/angle.ts new file mode 100644 index 00000000..73b39b26 --- /dev/null +++ b/src/core/data_formats/parsing/ninja/angle.ts @@ -0,0 +1,10 @@ +const ANGLE_TO_RAD = (2 * Math.PI) / 0x10000; +const RAD_TO_ANGLE = 0x10000 / (2 * Math.PI); + +export function angle_to_rad(angle: number): number { + return angle * ANGLE_TO_RAD; +} + +export function rad_to_angle(rad: number): number { + return Math.round(rad * RAD_TO_ANGLE); +} diff --git a/src/core/data_formats/parsing/ninja/index.ts b/src/core/data_formats/parsing/ninja/index.ts index 69613e94..d3c72c28 100644 --- a/src/core/data_formats/parsing/ninja/index.ts +++ b/src/core/data_formats/parsing/ninja/index.ts @@ -4,8 +4,7 @@ import { parse_iff } from "../iff"; import { NjcmModel, parse_njcm_model } from "./njcm"; import { parse_xj_model, XjModel } from "./xj"; import { Result, success } from "../../../Result"; - -export const ANGLE_TO_RAD = (2 * Math.PI) / 0xffff; +import { angle_to_rad } from "./angle"; const NJCM = 0x4d434a4e; @@ -159,9 +158,9 @@ function parse_sibling_objects( const model_offset = cursor.u32(); const pos = cursor.vec3_f32(); const rotation = { - x: cursor.i32() * ANGLE_TO_RAD, - y: cursor.i32() * ANGLE_TO_RAD, - z: cursor.i32() * ANGLE_TO_RAD, + x: angle_to_rad(cursor.i32()), + y: angle_to_rad(cursor.i32()), + z: angle_to_rad(cursor.i32()), }; const scale = cursor.vec3_f32(); const child_offset = cursor.u32(); diff --git a/src/core/data_formats/parsing/ninja/motion.ts b/src/core/data_formats/parsing/ninja/motion.ts index 8ee65252..98e7870a 100644 --- a/src/core/data_formats/parsing/ninja/motion.ts +++ b/src/core/data_formats/parsing/ninja/motion.ts @@ -1,6 +1,6 @@ -import { ANGLE_TO_RAD } from "./index"; import { Cursor } from "../../block/cursor/Cursor"; import { Vec3 } from "../../vector"; +import { angle_to_rad } from "./angle"; const NMDM = 0x4d444d4e; @@ -210,9 +210,9 @@ function parse_motion_data_a( frames.push({ frame: cursor.u16(), value: { - x: cursor.u16() * ANGLE_TO_RAD, - y: cursor.u16() * ANGLE_TO_RAD, - z: cursor.u16() * ANGLE_TO_RAD, + x: angle_to_rad(cursor.u16()), + y: angle_to_rad(cursor.u16()), + z: angle_to_rad(cursor.u16()), }, }); } @@ -238,9 +238,9 @@ function parse_motion_data_a_wide(cursor: Cursor, keyframe_count: number): NjKey frames.push({ frame: cursor.u32(), value: { - x: cursor.i32() * ANGLE_TO_RAD, - y: cursor.i32() * ANGLE_TO_RAD, - z: cursor.i32() * ANGLE_TO_RAD, + x: angle_to_rad(cursor.i32()), + y: angle_to_rad(cursor.i32()), + z: angle_to_rad(cursor.i32()), }, }); } diff --git a/src/core/data_formats/parsing/quest/Quest.ts b/src/core/data_formats/parsing/quest/Quest.ts index 6237b8d8..9a41ce9e 100644 --- a/src/core/data_formats/parsing/quest/Quest.ts +++ b/src/core/data_formats/parsing/quest/Quest.ts @@ -1,10 +1,13 @@ import { npc_data, NpcType, NpcTypeData } from "./npc_types"; import { object_data, ObjectType, ObjectTypeData } from "./object_types"; -import { DatEvent, DatUnknown } from "./dat"; +import { DatEvent, DatUnknown, NPC_BYTE_SIZE } from "./dat"; import { Episode } from "./Episode"; import { Segment } from "../../asm/instructions"; -import { QuestNpc } from "./QuestNpc"; -import { QuestObject } from "./QuestObject"; +import { get_npc_type, QuestNpc } from "./QuestNpc"; +import { get_object_type, QuestObject } from "./QuestObject"; +import { EntityProp, EntityPropType } from "./properties"; +import { angle_to_rad, rad_to_angle } from "../ninja/angle"; +import { assert, require_finite, require_integer } from "../../../util"; export type Quest = { id: number; @@ -48,3 +51,72 @@ export function is_object_type(entity_type: EntityType): entity_type is ObjectTy export function entity_data(type: EntityType): EntityTypeData { return npc_data(type as NpcType) ?? object_data(type as ObjectType); } + +export function get_entity_type(entity: QuestEntity): EntityType { + return entity.data.byteLength === NPC_BYTE_SIZE + ? get_npc_type(entity as QuestNpc) + : get_object_type(entity as QuestObject); +} + +export function get_entity_prop_value(entity: QuestEntity, prop: EntityProp): number { + switch (prop.type) { + case EntityPropType.U8: + return entity.view.getUint8(prop.offset); + case EntityPropType.U16: + return entity.view.getUint16(prop.offset, true); + case EntityPropType.U32: + return entity.view.getUint32(prop.offset, true); + case EntityPropType.I8: + return entity.view.getInt8(prop.offset); + case EntityPropType.I16: + return entity.view.getInt16(prop.offset, true); + case EntityPropType.I32: + return entity.view.getInt32(prop.offset, true); + case EntityPropType.F32: + return entity.view.getFloat32(prop.offset, true); + case EntityPropType.Angle: + return angle_to_rad(entity.view.getInt32(prop.offset, true)); + } +} + +export function set_entity_prop_value(entity: QuestEntity, prop: EntityProp, value: number): void { + switch (prop.type) { + case EntityPropType.U8: + require_in_bounds(value, 0, 0xff); + entity.view.setUint8(prop.offset, value); + break; + case EntityPropType.U16: + require_in_bounds(value, 0, 0xffff); + entity.view.setUint16(prop.offset, value, true); + break; + case EntityPropType.U32: + require_in_bounds(value, 0, 0xffffffff); + entity.view.setUint32(prop.offset, value, true); + break; + case EntityPropType.I8: + require_in_bounds(value, -0x80, 0x7f); + entity.view.setInt8(prop.offset, value); + break; + case EntityPropType.I16: + require_in_bounds(value, -0x8000, 0x7fff); + entity.view.setInt16(prop.offset, value, true); + break; + case EntityPropType.I32: + require_in_bounds(value, -0x80000000, 0x7fffffff); + entity.view.setInt32(prop.offset, value, true); + break; + case EntityPropType.F32: + entity.view.setFloat32(prop.offset, value, true); + break; + case EntityPropType.Angle: + require_finite(value, "value"); + entity.view.setInt32(prop.offset, rad_to_angle(value), true); + break; + } +} + +function require_in_bounds(value: unknown, min: number, max: number): asserts value is number { + require_integer(value, "value"); + assert(value >= min, () => `value should be greater than or equal to ${min} but was ${value}.`); + assert(value <= max, () => `value should be less than or equal to ${max} but was ${value}.`); +} diff --git a/src/core/data_formats/parsing/quest/QuestNpc.ts b/src/core/data_formats/parsing/quest/QuestNpc.ts index 097aaf3b..a3a89163 100644 --- a/src/core/data_formats/parsing/quest/QuestNpc.ts +++ b/src/core/data_formats/parsing/quest/QuestNpc.ts @@ -3,6 +3,7 @@ import { Vec3 } from "../../vector"; import { Episode } from "./Episode"; import { NPC_BYTE_SIZE } from "./dat"; import { assert } from "../../../util"; +import { angle_to_rad, rad_to_angle } from "../ninja/angle"; const DEFAULT_SCALE: Vec3 = Object.freeze({ x: 1, y: 1, z: 1 }); @@ -103,16 +104,16 @@ export function set_npc_position(npc: QuestNpc, position: Vec3): void { export function get_npc_rotation(npc: QuestNpc): Vec3 { return { - x: (npc.view.getInt32(32, true) / 0xffff) * 2 * Math.PI, - y: (npc.view.getInt32(36, true) / 0xffff) * 2 * Math.PI, - z: (npc.view.getInt32(40, true) / 0xffff) * 2 * Math.PI, + x: angle_to_rad(npc.view.getInt32(32, true)), + y: angle_to_rad(npc.view.getInt32(36, true)), + z: angle_to_rad(npc.view.getInt32(40, true)), }; } export function set_npc_rotation(npc: QuestNpc, rotation: Vec3): void { - npc.view.setInt32(32, Math.round((rotation.x / (2 * Math.PI)) * 0xffff), true); - npc.view.setInt32(36, Math.round((rotation.y / (2 * Math.PI)) * 0xffff), true); - npc.view.setInt32(40, Math.round((rotation.z / (2 * Math.PI)) * 0xffff), true); + npc.view.setInt32(32, rad_to_angle(rotation.x), true); + npc.view.setInt32(36, rad_to_angle(rotation.y), true); + npc.view.setInt32(40, rad_to_angle(rotation.z), true); } /** diff --git a/src/core/data_formats/parsing/quest/QuestObject.ts b/src/core/data_formats/parsing/quest/QuestObject.ts index 68583a9a..03e9a03c 100644 --- a/src/core/data_formats/parsing/quest/QuestObject.ts +++ b/src/core/data_formats/parsing/quest/QuestObject.ts @@ -2,6 +2,7 @@ import { id_to_object_type, object_data, ObjectType } from "./object_types"; import { Vec3 } from "../../vector"; import { OBJECT_BYTE_SIZE } from "./dat"; import { assert } from "../../../util"; +import { angle_to_rad, rad_to_angle } from "../ninja/angle"; export type QuestObject = { area_id: number; @@ -82,20 +83,20 @@ export function set_object_position(object: QuestObject, position: Vec3): void { export function get_object_rotation(object: QuestObject): Vec3 { return { - x: (object.view.getInt32(28, true) / 0xffff) * 2 * Math.PI, - y: (object.view.getInt32(32, true) / 0xffff) * 2 * Math.PI, - z: (object.view.getInt32(36, true) / 0xffff) * 2 * Math.PI, + x: angle_to_rad(object.view.getInt32(28, true)), + y: angle_to_rad(object.view.getInt32(32, true)), + z: angle_to_rad(object.view.getInt32(36, true)), }; } export function set_object_rotation(object: QuestObject, rotation: Vec3): void { - object.view.setInt32(28, Math.round((rotation.x / (2 * Math.PI)) * 0xffff), true); - object.view.setInt32(32, Math.round((rotation.y / (2 * Math.PI)) * 0xffff), true); - object.view.setInt32(36, Math.round((rotation.z / (2 * Math.PI)) * 0xffff), true); + object.view.setInt32(28, rad_to_angle(rotation.x), true); + object.view.setInt32(32, rad_to_angle(rotation.y), true); + object.view.setInt32(36, rad_to_angle(rotation.z), true); } // -// Complex properties that use multiple parts of the data block and possible other properties. +// Complex properties that use multiple parts of the data block and possibly other properties. // export function get_object_type(object: QuestObject): ObjectType { diff --git a/src/core/data_formats/parsing/quest/npc_types.ts b/src/core/data_formats/parsing/quest/npc_types.ts index c4a983cd..552a3af9 100644 --- a/src/core/data_formats/parsing/quest/npc_types.ts +++ b/src/core/data_formats/parsing/quest/npc_types.ts @@ -1,4 +1,5 @@ import { check_episode, Episode } from "./Episode"; +import { EntityProp } from "./properties"; // Make sure ObjectType does not overlap NpcType. export enum NpcType { @@ -222,6 +223,10 @@ export type NpcTypeData = { * Slime). */ readonly regular?: boolean; + /** + * Default object-specific properties. + */ + readonly properties: readonly EntityProp[]; }; export const NPC_TYPES: NpcType[] = []; @@ -279,6 +284,7 @@ function define_npc_type_data( type_id, skin, regular, + properties: [], }); if (episode) { diff --git a/src/core/data_formats/parsing/quest/object_types.ts b/src/core/data_formats/parsing/quest/object_types.ts index 73873217..0eeb7253 100644 --- a/src/core/data_formats/parsing/quest/object_types.ts +++ b/src/core/data_formats/parsing/quest/object_types.ts @@ -1,4 +1,5 @@ import { Episode } from "./Episode"; +import { EntityProp, EntityPropType } from "./properties"; export enum ObjectType { // Make sure ObjectType does not overlap NpcType. @@ -292,6 +293,10 @@ export type ObjectTypeData = { */ readonly area_ids: number[][]; readonly type_id?: number; + /** + * Default object-specific properties. + */ + readonly properties: readonly EntityProp[]; }; export const OBJECT_TYPES: ObjectType[] = []; @@ -873,6 +878,7 @@ function define_object_type_data( type_id: number | undefined, name: string, area_ids: [Episode, number[]][], + properties: [string, number, keyof typeof EntityPropType][], ): void { OBJECT_TYPES.push(object_type); @@ -886,298 +892,665 @@ function define_object_type_data( name, area_ids: area_ids_per_episode, type_id, + properties: properties.map(([name, offset, type]) => ({ + name, + offset, + type: EntityPropType[type], + })), }); } -define_object_type_data(ObjectType.Unknown, undefined, "Unknown", []); +define_object_type_data(ObjectType.Unknown, undefined, "Unknown", [], []); -define_object_type_data(ObjectType.PlayerSet, 0, "Player Set", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]], -]); -define_object_type_data(ObjectType.Particle, 1, "Particle", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], -]); -define_object_type_data(ObjectType.Teleporter, 2, "Teleporter", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14]], - [Episode.II, [0, 1, 2, 3, 4, 12, 13, 14, 15]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]], -]); -define_object_type_data(ObjectType.Warp, 3, "Warp", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]], -]); -define_object_type_data(ObjectType.LightCollision, 4, "Light Collision", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], -]); -define_object_type_data(ObjectType.Item, 5, "Item", []); -define_object_type_data(ObjectType.EnvSound, 6, "Env Sound", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], -]); -define_object_type_data(ObjectType.FogCollision, 7, "Fog Collision", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], -]); -define_object_type_data(ObjectType.EventCollision, 8, "Event Collision", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]], -]); -define_object_type_data(ObjectType.CharaCollision, 9, "Chara Collision", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 8, 9, 10]], - [Episode.II, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.ElementalTrap, 10, "Elemental Trap", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9]], -]); -define_object_type_data(ObjectType.StatusTrap, 11, "Status Trap", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9]], -]); -define_object_type_data(ObjectType.HealTrap, 12, "Heal Trap", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9]], -]); -define_object_type_data(ObjectType.LargeElementalTrap, 13, "Large Elemental Trap", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9]], -]); -define_object_type_data(ObjectType.ObjRoomID, 14, "Obj Room ID", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9]], -]); -define_object_type_data(ObjectType.Sensor, 15, "Sensor", [[Episode.I, [1, 2, 4, 5, 6, 7]]]); -define_object_type_data(ObjectType.UnknownItem16, 16, "Unknown Item (16)", []); -define_object_type_data(ObjectType.LensFlare, 17, "Lens Flare", [[Episode.I, [1, 2, 3, 4, 8, 14]]]); -define_object_type_data(ObjectType.ScriptCollision, 18, "Script Collision", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], -]); -define_object_type_data(ObjectType.HealRing, 19, "Heal Ring", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.MapCollision, 20, "Map Collision", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 8, 9, 10, 16, 17]], - [Episode.II, [0, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.ScriptCollisionA, 21, "Script Collision A", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], -]); -define_object_type_data(ObjectType.ItemLight, 22, "Item Light", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], -]); -define_object_type_data(ObjectType.RadarCollision, 23, "Radar Collision", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.FogCollisionSW, 24, "Fog Collision SW", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.BossTeleporter, 25, "Boss Teleporter", [ - [Episode.I, [0, 2, 5, 7, 10]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [5, 6, 7, 8, 0]], -]); -define_object_type_data(ObjectType.ImageBoard, 26, "Image Board", [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.QuestWarp, 27, "Quest Warp", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14]], - [Episode.IV, [9]], -]); -define_object_type_data(ObjectType.Epilogue, 28, "Epilogue", [ - [Episode.I, [14]], - [Episode.II, [13]], - [Episode.IV, [9]], -]); -define_object_type_data(ObjectType.UnknownItem29, 29, "Unknown Item (29)", [[Episode.I, [1]]]); -define_object_type_data(ObjectType.UnknownItem30, 30, "Unknown Item (30)", [ - [Episode.I, [1, 2, 17]], - [Episode.II, [1, 2, 14]], - [Episode.IV, [1, 2, 3, 4, 5]], -]); -define_object_type_data(ObjectType.UnknownItem31, 31, "Unknown Item (31)", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.BoxDetectObject, 32, "Box Detect Object", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], -]); -define_object_type_data(ObjectType.SymbolChatObject, 33, "Symbol Chat Object", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], -]); -define_object_type_data(ObjectType.TouchPlateObject, 34, "Touch plate Object", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.TargetableObject, 35, "Targetable Object", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.EffectObject, 36, "Effect object", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [0, 1, 2, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.CountDownObject, 37, "Count Down Object", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], -]); -define_object_type_data(ObjectType.UnknownItem38, 38, "Unknown Item (38)", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], -]); -define_object_type_data(ObjectType.UnknownItem39, 39, "Unknown Item (39)", [ - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.UnknownItem40, 40, "Unknown Item (40)", [ - [Episode.I, [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 13, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], -]); -define_object_type_data(ObjectType.UnknownItem41, 41, "Unknown Item (41)", [ - [Episode.I, [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 13, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], -]); -define_object_type_data(ObjectType.MenuActivation, 64, "Menu activation", [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.TelepipeLocation, 65, "Telepipe Location", [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.BGMCollision, 66, "BGM Collision", [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.MainRagolTeleporter, 67, "Main Ragol Teleporter", [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.LobbyTeleporter, 68, "Lobby Teleporter", [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.PrincipalWarp, 69, "Principal warp", [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.ShopDoor, 70, "Shop Door", [ - [Episode.I, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.HuntersGuildDoor, 71, "Hunter's Guild Door", [ - [Episode.I, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.TeleporterDoor, 72, "Teleporter Door", [ - [Episode.I, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.MedicalCenterDoor, 73, "Medical Center Door", [ - [Episode.I, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.Elevator, 74, "Elevator", [ - [Episode.I, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.EasterEgg, 75, "Easter Egg", [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.ValentinesHeart, 76, "Valentines Heart", [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.ChristmasTree, 77, "Christmas Tree", [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.ChristmasWreath, 78, "Christmas Wreath", [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.HalloweenPumpkin, 79, "Halloween Pumpkin", [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.TwentyFirstCentury, 80, "21st Century", [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.Sonic, 81, "Sonic", [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.WelcomeBoard, 82, "Welcome Board", [ - [Episode.I, [0]], - [Episode.II, [0]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.Firework, 83, "Firework", [ - [Episode.I, [0]], - [Episode.II, [0, 16]], - [Episode.IV, [0]], -]); -define_object_type_data(ObjectType.LobbyScreenDoor, 84, "Lobby Screen Door", [ - [Episode.I, [0]], - [Episode.IV, [0]], -]); +define_object_type_data( + ObjectType.PlayerSet, + 0, + "Player Set", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]], + ], + [], +); +define_object_type_data( + ObjectType.Particle, + 1, + "Particle", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], + ], + [], +); +define_object_type_data( + ObjectType.Teleporter, + 2, + "Teleporter", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14]], + [Episode.II, [0, 1, 2, 3, 4, 12, 13, 14, 15]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]], + ], + [], +); +define_object_type_data( + ObjectType.Warp, + 3, + "Warp", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14, 16, 17]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]], + ], + [], +); +define_object_type_data( + ObjectType.LightCollision, + 4, + "Light Collision", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 16, 17]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], + ], + [], +); +define_object_type_data(ObjectType.Item, 5, "Item", [], []); +define_object_type_data( + ObjectType.EnvSound, + 6, + "Env Sound", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], + ], + [], +); +define_object_type_data( + ObjectType.FogCollision, + 7, + "Fog Collision", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], + ], + [], +); +define_object_type_data( + ObjectType.EventCollision, + 8, + "Event Collision", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]], + ], + [ + ["Radius", 40, "F32"], + ["Event ID", 52, "U32"], + ], +); +define_object_type_data( + ObjectType.CharaCollision, + 9, + "Chara Collision", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 8, 9, 10]], + [Episode.II, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.ElementalTrap, + 10, + "Elemental Trap", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], + [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9]], + ], + [], +); +define_object_type_data( + ObjectType.StatusTrap, + 11, + "Status Trap", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], + [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9]], + ], + [], +); +define_object_type_data( + ObjectType.HealTrap, + 12, + "Heal Trap", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], + [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9]], + ], + [], +); +define_object_type_data( + ObjectType.LargeElementalTrap, + 13, + "Large Elemental Trap", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], + [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9]], + ], + [], +); +define_object_type_data( + ObjectType.ObjRoomID, + 14, + "Obj Room ID", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]], + [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9]], + ], + [], +); +define_object_type_data(ObjectType.Sensor, 15, "Sensor", [[Episode.I, [1, 2, 4, 5, 6, 7]]], []); +define_object_type_data(ObjectType.UnknownItem16, 16, "Unknown Item (16)", [], []); +define_object_type_data( + ObjectType.LensFlare, + 17, + "Lens Flare", + [[Episode.I, [1, 2, 3, 4, 8, 14]]], + [], +); +define_object_type_data( + ObjectType.ScriptCollision, + 18, + "Script Collision", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], + ], + [], +); +define_object_type_data( + ObjectType.HealRing, + 19, + "Heal Ring", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]], + [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.MapCollision, + 20, + "Map Collision", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 8, 9, 10, 16, 17]], + [Episode.II, [0, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.ScriptCollisionA, + 21, + "Script Collision A", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], + ], + [], +); +define_object_type_data( + ObjectType.ItemLight, + 22, + "Item Light", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], + ], + [], +); +define_object_type_data( + ObjectType.RadarCollision, + 23, + "Radar Collision", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]], + [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.FogCollisionSW, + 24, + "Fog Collision SW", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]], + [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.BossTeleporter, + 25, + "Boss Teleporter", + [ + [Episode.I, [0, 2, 5, 7, 10]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [5, 6, 7, 8, 0]], + ], + [], +); +define_object_type_data( + ObjectType.ImageBoard, + 26, + "Image Board", + [ + [Episode.I, [0]], + [Episode.II, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.QuestWarp, + 27, + "Quest Warp", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14]], + [Episode.IV, [9]], + ], + [], +); +define_object_type_data( + ObjectType.Epilogue, + 28, + "Epilogue", + [ + [Episode.I, [14]], + [Episode.II, [13]], + [Episode.IV, [9]], + ], + [], +); +define_object_type_data(ObjectType.UnknownItem29, 29, "Unknown Item (29)", [[Episode.I, [1]]], []); +define_object_type_data( + ObjectType.UnknownItem30, + 30, + "Unknown Item (30)", + [ + [Episode.I, [1, 2, 17]], + [Episode.II, [1, 2, 14]], + [Episode.IV, [1, 2, 3, 4, 5]], + ], + [], +); +define_object_type_data( + ObjectType.UnknownItem31, + 31, + "Unknown Item (31)", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], + [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.BoxDetectObject, + 32, + "Box Detect Object", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], + ], + [], +); +define_object_type_data( + ObjectType.SymbolChatObject, + 33, + "Symbol Chat Object", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], + ], + [], +); +define_object_type_data( + ObjectType.TouchPlateObject, + 34, + "Touch plate Object", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], + [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.TargetableObject, + 35, + "Targetable Object", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], + [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.EffectObject, + 36, + "Effect object", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], + [Episode.II, [0, 1, 2, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.CountDownObject, + 37, + "Count Down Object", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], + ], + [], +); +define_object_type_data( + ObjectType.UnknownItem38, + 38, + "Unknown Item (38)", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], + ], + [], +); +define_object_type_data( + ObjectType.UnknownItem39, + 39, + "Unknown Item (39)", + [ + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.UnknownItem40, + 40, + "Unknown Item (40)", + [ + [Episode.I, [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 13, 16, 17]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], + ], + [], +); +define_object_type_data( + ObjectType.UnknownItem41, + 41, + "Unknown Item (41)", + [ + [Episode.I, [0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 13, 16, 17]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], + ], + [], +); +define_object_type_data( + ObjectType.MenuActivation, + 64, + "Menu activation", + [ + [Episode.I, [0]], + [Episode.II, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.TelepipeLocation, + 65, + "Telepipe Location", + [ + [Episode.I, [0]], + [Episode.II, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.BGMCollision, + 66, + "BGM Collision", + [ + [Episode.I, [0]], + [Episode.II, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.MainRagolTeleporter, + 67, + "Main Ragol Teleporter", + [ + [Episode.I, [0]], + [Episode.II, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.LobbyTeleporter, + 68, + "Lobby Teleporter", + [ + [Episode.I, [0]], + [Episode.II, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.PrincipalWarp, + 69, + "Principal warp", + [ + [Episode.I, [0]], + [Episode.II, [0]], + [Episode.IV, [0]], + ], + [ + ["Destination x", 40, "F32"], + ["Destination y", 44, "F32"], + ["Destination z", 48, "F32"], + ["Dst. rotation y", 52, "Angle"], + ], +); +define_object_type_data( + ObjectType.ShopDoor, + 70, + "Shop Door", + [ + [Episode.I, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.HuntersGuildDoor, + 71, + "Hunter's Guild Door", + [ + [Episode.I, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.TeleporterDoor, + 72, + "Teleporter Door", + [ + [Episode.I, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.MedicalCenterDoor, + 73, + "Medical Center Door", + [ + [Episode.I, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.Elevator, + 74, + "Elevator", + [ + [Episode.I, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.EasterEgg, + 75, + "Easter Egg", + [ + [Episode.I, [0]], + [Episode.II, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.ValentinesHeart, + 76, + "Valentines Heart", + [ + [Episode.I, [0]], + [Episode.II, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.ChristmasTree, + 77, + "Christmas Tree", + [ + [Episode.I, [0]], + [Episode.II, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.ChristmasWreath, + 78, + "Christmas Wreath", + [ + [Episode.I, [0]], + [Episode.II, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.HalloweenPumpkin, + 79, + "Halloween Pumpkin", + [ + [Episode.I, [0]], + [Episode.II, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.TwentyFirstCentury, + 80, + "21st Century", + [ + [Episode.I, [0]], + [Episode.II, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.Sonic, + 81, + "Sonic", + [ + [Episode.I, [0]], + [Episode.II, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.WelcomeBoard, + 82, + "Welcome Board", + [ + [Episode.I, [0]], + [Episode.II, [0]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.Firework, + 83, + "Firework", + [ + [Episode.I, [0]], + [Episode.II, [0, 16]], + [Episode.IV, [0]], + ], + [], +); +define_object_type_data( + ObjectType.LobbyScreenDoor, + 84, + "Lobby Screen Door", + [ + [Episode.I, [0]], + [Episode.IV, [0]], + ], + [], +); define_object_type_data( ObjectType.MainRagolTeleporterBattleInNextArea, 85, @@ -1187,10 +1560,15 @@ define_object_type_data( [Episode.II, [0]], [Episode.IV, [0]], ], + [], +); +define_object_type_data( + ObjectType.LabTeleporterDoor, + 86, + "Lab Teleporter Door", + [[Episode.II, [0]]], + [], ); -define_object_type_data(ObjectType.LabTeleporterDoor, 86, "Lab Teleporter Door", [ - [Episode.II, [0]], -]); define_object_type_data( ObjectType.Pioneer2InvisibleTouchplate, 87, @@ -1200,201 +1578,452 @@ define_object_type_data( [Episode.II, [0]], [Episode.IV, [0]], ], + [], +); +define_object_type_data(ObjectType.ForestDoor, 128, "Forest Door", [[Episode.I, [1, 2]]], []); +define_object_type_data( + ObjectType.ForestSwitch, + 129, + "Forest Switch", + [ + [Episode.I, [1, 2, 3, 4, 5]], + [Episode.II, [1, 2, 3, 4]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.LaserFence, + 130, + "Laser Fence", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.LaserSquareFence, + 131, + "Laser Square Fence", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7, 16, 17]], + [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.ForestLaserFenceSwitch, + 132, + "Forest Laser Fence Switch", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7, 16, 17]], + [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.LightRays, + 133, + "Light rays", + [ + [Episode.I, [1, 2]], + [Episode.II, [5, 6, 7, 8, 9]], + [Episode.IV, [6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.BlueButterfly, + 134, + "Blue Butterfly", + [ + [Episode.I, [1, 2]], + [Episode.IV, [6, 7, 8]], + ], + [], +); +define_object_type_data(ObjectType.Probe, 135, "Probe", [[Episode.I, [1, 2]]], []); +define_object_type_data( + ObjectType.RandomTypeBox1, + 136, + "Random Type Box 1", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7]], + [Episode.II, [10, 11, 13]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.ForestWeatherStation, + 137, + "Forest Weather Station", + [[Episode.I, [1, 2]]], + [], +); +define_object_type_data(ObjectType.Battery, 138, "Battery", [], []); +define_object_type_data( + ObjectType.ForestConsole, + 139, + "Forest Console", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], + [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.BlackSlidingDoor, + 140, + "Black Sliding Door", + [[Episode.I, [1, 2, 3]]], + [], +); +define_object_type_data( + ObjectType.RicoMessagePod, + 141, + "Rico Message Pod", + [[Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13]]], + [], +); +define_object_type_data( + ObjectType.EnergyBarrier, + 142, + "Energy Barrier", + [ + [Episode.I, [1, 2, 4, 5, 6, 7]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.ForestRisingBridge, + 143, + "Forest Rising Bridge", + [[Episode.I, [1, 2]]], + [], +); +define_object_type_data( + ObjectType.SwitchNoneDoor, + 144, + "Switch (none door)", + [ + [Episode.I, [1, 2, 6, 7, 16, 17]], + [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.EnemyBoxGrey, + 145, + "Enemy Box (Grey)", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7]], + [Episode.II, [10, 11]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.FixedTypeBox, + 146, + "Fixed Type Box", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14]], + [Episode.II, [10, 11, 13]], + [Episode.IV, [1, 2, 3, 4, 6, 7, 8, 9]], + ], + [], +); +define_object_type_data( + ObjectType.EnemyBoxBrown, + 147, + "Enemy Box (Brown)", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7]], + [Episode.II, [10, 11]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.EmptyTypeBox, + 149, + "Empty Type Box", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.LaserFenceEx, + 150, + "Laser Fence Ex", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], + [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data(ObjectType.LaserSquareFenceEx, 151, "Laser Square Fence Ex", [], []); +define_object_type_data( + ObjectType.FloorPanel1, + 192, + "Floor Panel 1", + [ + [Episode.I, [3, 4, 5, 16, 17]], + [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.Caves4ButtonDoor, + 193, + "Caves 4 Button door", + [[Episode.I, [3, 4, 5]]], + [], +); +define_object_type_data( + ObjectType.CavesNormalDoor, + 194, + "Caves Normal door", + [[Episode.I, [3, 4, 5]]], + [], +); +define_object_type_data( + ObjectType.CavesSmashingPillar, + 195, + "Caves Smashing Pillar", + [ + [Episode.I, [3, 4, 5]], + [Episode.II, [1, 2, 3, 4, 17]], + ], + [], +); +define_object_type_data(ObjectType.CavesSign1, 196, "Caves Sign 1", [[Episode.I, [4, 5]]], []); +define_object_type_data(ObjectType.CavesSign2, 197, "Caves Sign 2", [[Episode.I, [4, 5]]], []); +define_object_type_data(ObjectType.CavesSign3, 198, "Caves Sign 3", [[Episode.I, [4, 5]]], []); +define_object_type_data(ObjectType.HexagonalTank, 199, "Hexagonal Tank", [[Episode.I, [4, 5]]], []); +define_object_type_data(ObjectType.BrownPlatform, 200, "Brown Platform", [[Episode.I, [4, 5]]], []); +define_object_type_data( + ObjectType.WarningLightObject, + 201, + "Warning Light Object", + [ + [Episode.I, [4, 5]], + [Episode.IV, [5]], + ], + [], +); +define_object_type_data(ObjectType.Rainbow, 203, "Rainbow", [[Episode.I, [4]]], []); +define_object_type_data( + ObjectType.FloatingJellyfish, + 204, + "Floating Jellyfish", + [ + [Episode.I, [4]], + [Episode.II, [10, 11]], + ], + [], +); +define_object_type_data( + ObjectType.FloatingDragonfly, + 205, + "Floating Dragonfly", + [ + [Episode.I, [4, 16]], + [Episode.II, [3, 4]], + [Episode.IV, [6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.CavesSwitchDoor, + 206, + "Caves Switch Door", + [[Episode.I, [3, 4, 5]]], + [], +); +define_object_type_data( + ObjectType.RobotRechargeStation, + 207, + "Robot Recharge Station", + [ + [Episode.I, [3, 4, 5, 6, 7]], + [Episode.II, [17]], + ], + [], +); +define_object_type_data(ObjectType.CavesCakeShop, 208, "Caves Cake Shop", [[Episode.I, [5]]], []); +define_object_type_data( + ObjectType.Caves1SmallRedRock, + 209, + "Caves 1 Small Red Rock", + [[Episode.I, [3]]], + [], +); +define_object_type_data( + ObjectType.Caves1MediumRedRock, + 210, + "Caves 1 Medium Red Rock", + [[Episode.I, [3]]], + [], +); +define_object_type_data( + ObjectType.Caves1LargeRedRock, + 211, + "Caves 1 Large Red Rock", + [ + [Episode.I, [3]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.Caves2SmallRock1, + 212, + "Caves 2 Small Rock 1", + [[Episode.I, [4]]], + [], +); +define_object_type_data( + ObjectType.Caves2MediumRock1, + 213, + "Caves 2 Medium Rock 1", + [[Episode.I, [4]]], + [], +); +define_object_type_data( + ObjectType.Caves2LargeRock1, + 214, + "Caves 2 Large Rock 1", + [[Episode.I, [4]]], + [], +); +define_object_type_data( + ObjectType.Caves2SmallRock2, + 215, + "Caves 2 Small Rock 2", + [[Episode.I, [4]]], + [], +); +define_object_type_data( + ObjectType.Caves2MediumRock2, + 216, + "Caves 2 Medium Rock 2", + [[Episode.I, [4]]], + [], +); +define_object_type_data( + ObjectType.Caves2LargeRock2, + 217, + "Caves 2 Large Rock 2", + [[Episode.I, [4]]], + [], +); +define_object_type_data( + ObjectType.Caves3SmallRock, + 218, + "Caves 3 Small Rock", + [[Episode.I, [5]]], + [], +); +define_object_type_data( + ObjectType.Caves3MediumRock, + 219, + "Caves 3 Medium Rock", + [[Episode.I, [5]]], + [], +); +define_object_type_data( + ObjectType.Caves3LargeRock, + 220, + "Caves 3 Large Rock", + [[Episode.I, [5]]], + [], +); +define_object_type_data( + ObjectType.FloorPanel2, + 222, + "Floor Panel 2", + [ + [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], + [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.DestructableRockCaves1, + 223, + "Destructable Rock (Caves 1)", + [[Episode.I, [3]]], + [], +); +define_object_type_data( + ObjectType.DestructableRockCaves2, + 224, + "Destructable Rock (Caves 2)", + [[Episode.I, [4]]], + [], +); +define_object_type_data( + ObjectType.DestructableRockCaves3, + 225, + "Destructable Rock (Caves 3)", + [[Episode.I, [5]]], + [], +); +define_object_type_data(ObjectType.MinesDoor, 256, "Mines Door", [[Episode.I, [6, 7]]], []); +define_object_type_data( + ObjectType.FloorPanel3, + 257, + "Floor Panel 3", + [ + [Episode.I, [1, 2, 6, 7, 16, 17]], + [Episode.II, [1, 2, 3, 4]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.MinesSwitchDoor, + 258, + "Mines Switch Door", + [ + [Episode.I, [6, 7]], + [Episode.IV, [6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.LargeCryoTube, + 259, + "Large Cryo-Tube", + [ + [Episode.I, [6, 7]], + [Episode.II, [17]], + ], + [], +); +define_object_type_data( + ObjectType.ComputerLikeCalus, + 260, + "Computer (like calus)", + [ + [Episode.I, [6, 7]], + [Episode.II, [17]], + ], + [], ); -define_object_type_data(ObjectType.ForestDoor, 128, "Forest Door", [[Episode.I, [1, 2]]]); -define_object_type_data(ObjectType.ForestSwitch, 129, "Forest Switch", [ - [Episode.I, [1, 2, 3, 4, 5]], - [Episode.II, [1, 2, 3, 4]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.LaserFence, 130, "Laser Fence", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.LaserSquareFence, 131, "Laser Square Fence", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.ForestLaserFenceSwitch, 132, "Forest Laser Fence Switch", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.LightRays, 133, "Light rays", [ - [Episode.I, [1, 2]], - [Episode.II, [5, 6, 7, 8, 9]], - [Episode.IV, [6, 7, 8]], -]); -define_object_type_data(ObjectType.BlueButterfly, 134, "Blue Butterfly", [ - [Episode.I, [1, 2]], - [Episode.IV, [6, 7, 8]], -]); -define_object_type_data(ObjectType.Probe, 135, "Probe", [[Episode.I, [1, 2]]]); -define_object_type_data(ObjectType.RandomTypeBox1, 136, "Random Type Box 1", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7]], - [Episode.II, [10, 11, 13]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.ForestWeatherStation, 137, "Forest Weather Station", [ - [Episode.I, [1, 2]], -]); -define_object_type_data(ObjectType.Battery, 138, "Battery", []); -define_object_type_data(ObjectType.ForestConsole, 139, "Forest Console", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.BlackSlidingDoor, 140, "Black Sliding Door", [ - [Episode.I, [1, 2, 3]], -]); -define_object_type_data(ObjectType.RicoMessagePod, 141, "Rico Message Pod", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13]], -]); -define_object_type_data(ObjectType.EnergyBarrier, 142, "Energy Barrier", [ - [Episode.I, [1, 2, 4, 5, 6, 7]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.ForestRisingBridge, 143, "Forest Rising Bridge", [ - [Episode.I, [1, 2]], -]); -define_object_type_data(ObjectType.SwitchNoneDoor, 144, "Switch (none door)", [ - [Episode.I, [1, 2, 6, 7, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.EnemyBoxGrey, 145, "Enemy Box (Grey)", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7]], - [Episode.II, [10, 11]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.FixedTypeBox, 146, "Fixed Type Box", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14]], - [Episode.II, [10, 11, 13]], - [Episode.IV, [1, 2, 3, 4, 6, 7, 8, 9]], -]); -define_object_type_data(ObjectType.EnemyBoxBrown, 147, "Enemy Box (Brown)", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7]], - [Episode.II, [10, 11]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.EmptyTypeBox, 149, "Empty Type Box", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.LaserFenceEx, 150, "Laser Fence Ex", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.LaserSquareFenceEx, 151, "Laser Square Fence Ex", []); -define_object_type_data(ObjectType.FloorPanel1, 192, "Floor Panel 1", [ - [Episode.I, [3, 4, 5, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.Caves4ButtonDoor, 193, "Caves 4 Button door", [ - [Episode.I, [3, 4, 5]], -]); -define_object_type_data(ObjectType.CavesNormalDoor, 194, "Caves Normal door", [ - [Episode.I, [3, 4, 5]], -]); -define_object_type_data(ObjectType.CavesSmashingPillar, 195, "Caves Smashing Pillar", [ - [Episode.I, [3, 4, 5]], - [Episode.II, [1, 2, 3, 4, 17]], -]); -define_object_type_data(ObjectType.CavesSign1, 196, "Caves Sign 1", [[Episode.I, [4, 5]]]); -define_object_type_data(ObjectType.CavesSign2, 197, "Caves Sign 2", [[Episode.I, [4, 5]]]); -define_object_type_data(ObjectType.CavesSign3, 198, "Caves Sign 3", [[Episode.I, [4, 5]]]); -define_object_type_data(ObjectType.HexagonalTank, 199, "Hexagonal Tank", [[Episode.I, [4, 5]]]); -define_object_type_data(ObjectType.BrownPlatform, 200, "Brown Platform", [[Episode.I, [4, 5]]]); -define_object_type_data(ObjectType.WarningLightObject, 201, "Warning Light Object", [ - [Episode.I, [4, 5]], - [Episode.IV, [5]], -]); -define_object_type_data(ObjectType.Rainbow, 203, "Rainbow", [[Episode.I, [4]]]); -define_object_type_data(ObjectType.FloatingJellyfish, 204, "Floating Jellyfish", [ - [Episode.I, [4]], - [Episode.II, [10, 11]], -]); -define_object_type_data(ObjectType.FloatingDragonfly, 205, "Floating Dragonfly", [ - [Episode.I, [4, 16]], - [Episode.II, [3, 4]], - [Episode.IV, [6, 7, 8]], -]); -define_object_type_data(ObjectType.CavesSwitchDoor, 206, "Caves Switch Door", [ - [Episode.I, [3, 4, 5]], -]); -define_object_type_data(ObjectType.RobotRechargeStation, 207, "Robot Recharge Station", [ - [Episode.I, [3, 4, 5, 6, 7]], - [Episode.II, [17]], -]); -define_object_type_data(ObjectType.CavesCakeShop, 208, "Caves Cake Shop", [[Episode.I, [5]]]); -define_object_type_data(ObjectType.Caves1SmallRedRock, 209, "Caves 1 Small Red Rock", [ - [Episode.I, [3]], -]); -define_object_type_data(ObjectType.Caves1MediumRedRock, 210, "Caves 1 Medium Red Rock", [ - [Episode.I, [3]], -]); -define_object_type_data(ObjectType.Caves1LargeRedRock, 211, "Caves 1 Large Red Rock", [ - [Episode.I, [3]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.Caves2SmallRock1, 212, "Caves 2 Small Rock 1", [ - [Episode.I, [4]], -]); -define_object_type_data(ObjectType.Caves2MediumRock1, 213, "Caves 2 Medium Rock 1", [ - [Episode.I, [4]], -]); -define_object_type_data(ObjectType.Caves2LargeRock1, 214, "Caves 2 Large Rock 1", [ - [Episode.I, [4]], -]); -define_object_type_data(ObjectType.Caves2SmallRock2, 215, "Caves 2 Small Rock 2", [ - [Episode.I, [4]], -]); -define_object_type_data(ObjectType.Caves2MediumRock2, 216, "Caves 2 Medium Rock 2", [ - [Episode.I, [4]], -]); -define_object_type_data(ObjectType.Caves2LargeRock2, 217, "Caves 2 Large Rock 2", [ - [Episode.I, [4]], -]); -define_object_type_data(ObjectType.Caves3SmallRock, 218, "Caves 3 Small Rock", [[Episode.I, [5]]]); -define_object_type_data(ObjectType.Caves3MediumRock, 219, "Caves 3 Medium Rock", [ - [Episode.I, [5]], -]); -define_object_type_data(ObjectType.Caves3LargeRock, 220, "Caves 3 Large Rock", [[Episode.I, [5]]]); -define_object_type_data(ObjectType.FloorPanel2, 222, "Floor Panel 2", [ - [Episode.I, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.DestructableRockCaves1, 223, "Destructable Rock (Caves 1)", [ - [Episode.I, [3]], -]); -define_object_type_data(ObjectType.DestructableRockCaves2, 224, "Destructable Rock (Caves 2)", [ - [Episode.I, [4]], -]); -define_object_type_data(ObjectType.DestructableRockCaves3, 225, "Destructable Rock (Caves 3)", [ - [Episode.I, [5]], -]); -define_object_type_data(ObjectType.MinesDoor, 256, "Mines Door", [[Episode.I, [6, 7]]]); -define_object_type_data(ObjectType.FloorPanel3, 257, "Floor Panel 3", [ - [Episode.I, [1, 2, 6, 7, 16, 17]], - [Episode.II, [1, 2, 3, 4]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.MinesSwitchDoor, 258, "Mines Switch Door", [ - [Episode.I, [6, 7]], - [Episode.IV, [6, 7, 8]], -]); -define_object_type_data(ObjectType.LargeCryoTube, 259, "Large Cryo-Tube", [ - [Episode.I, [6, 7]], - [Episode.II, [17]], -]); -define_object_type_data(ObjectType.ComputerLikeCalus, 260, "Computer (like calus)", [ - [Episode.I, [6, 7]], - [Episode.II, [17]], -]); define_object_type_data( ObjectType.GreenScreenOpeningAndClosing, 261, @@ -1403,188 +2032,412 @@ define_object_type_data( [Episode.I, [6, 7]], [Episode.II, [17]], ], + [], +); +define_object_type_data(ObjectType.FloatingRobot, 262, "Floating Robot", [[Episode.I, [6, 7]]], []); +define_object_type_data( + ObjectType.FloatingBlueLight, + 263, + "Floating Blue Light", + [[Episode.I, [6, 7]]], + [], +); +define_object_type_data( + ObjectType.SelfDestructingObject1, + 264, + "Self Destructing Object 1", + [[Episode.I, [6, 7]]], + [], +); +define_object_type_data( + ObjectType.SelfDestructingObject2, + 265, + "Self Destructing Object 2", + [[Episode.I, [6, 7]]], + [], +); +define_object_type_data( + ObjectType.SelfDestructingObject3, + 266, + "Self Destructing Object 3", + [[Episode.I, [6, 7]]], + [], +); +define_object_type_data(ObjectType.SparkMachine, 267, "Spark Machine", [[Episode.I, [6, 7]]], []); +define_object_type_data( + ObjectType.MinesLargeFlashingCrate, + 268, + "Mines Large Flashing Crate", + [[Episode.I, [6, 7]]], + [], +); +define_object_type_data(ObjectType.RuinsSeal, 304, "Ruins Seal", [[Episode.I, [13]]], []); +define_object_type_data( + ObjectType.RuinsTeleporter, + 320, + "Ruins Teleporter", + [[Episode.I, [8, 9, 10]]], + [], +); +define_object_type_data( + ObjectType.RuinsWarpSiteToSite, + 321, + "Ruins Warp (Site to site)", + [[Episode.I, [8, 9, 10]]], + [], +); +define_object_type_data(ObjectType.RuinsSwitch, 322, "Ruins Switch", [[Episode.I, [8, 9, 10]]], []); +define_object_type_data( + ObjectType.FloorPanel4, + 323, + "Floor Panel 4", + [[Episode.I, [8, 9, 10]]], + [], +); +define_object_type_data(ObjectType.Ruins1Door, 324, "Ruins 1 Door", [[Episode.I, [8]]], []); +define_object_type_data(ObjectType.Ruins3Door, 325, "Ruins 3 Door", [[Episode.I, [10]]], []); +define_object_type_data(ObjectType.Ruins2Door, 326, "Ruins 2 Door", [[Episode.I, [9]]], []); +define_object_type_data( + ObjectType.Ruins11ButtonDoor, + 327, + "Ruins 1-1 Button Door", + [[Episode.I, [8]]], + [], +); +define_object_type_data( + ObjectType.Ruins21ButtonDoor, + 328, + "Ruins 2-1 Button Door", + [[Episode.I, [9]]], + [], +); +define_object_type_data( + ObjectType.Ruins31ButtonDoor, + 329, + "Ruins 3-1 Button Door", + [[Episode.I, [10]]], + [], +); +define_object_type_data( + ObjectType.Ruins4ButtonDoor, + 330, + "Ruins 4-Button Door", + [[Episode.I, [8, 9, 10]]], + [], +); +define_object_type_data( + ObjectType.Ruins2ButtonDoor, + 331, + "Ruins 2-Button Door", + [[Episode.I, [8, 9, 10]]], + [], +); +define_object_type_data(ObjectType.RuinsSensor, 332, "Ruins Sensor", [[Episode.I, [8, 9, 10]]], []); +define_object_type_data( + ObjectType.RuinsFenceSwitch, + 333, + "Ruins Fence Switch", + [[Episode.I, [8, 9, 10]]], + [], +); +define_object_type_data( + ObjectType.RuinsLaserFence4x2, + 334, + "Ruins Laser Fence 4x2", + [ + [Episode.I, [8, 9, 10]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.RuinsLaserFence6x2, + 335, + "Ruins Laser Fence 6x2", + [ + [Episode.I, [8, 9, 10]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.RuinsLaserFence4x4, + 336, + "Ruins Laser Fence 4x4", + [[Episode.I, [8, 9, 10]]], + [], +); +define_object_type_data( + ObjectType.RuinsLaserFence6x4, + 337, + "Ruins Laser Fence 6x4", + [[Episode.I, [8, 9, 10]]], + [], +); +define_object_type_data( + ObjectType.RuinsPoisonBlob, + 338, + "Ruins poison Blob", + [ + [Episode.I, [8, 9, 10]], + [Episode.II, [5, 6, 7, 8, 9]], + [Episode.IV, [6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.RuinsPillarTrap, + 339, + "Ruins Pillar Trap", + [ + [Episode.I, [8, 9, 10]], + [Episode.II, [1, 2, 3, 4]], + ], + [], +); +define_object_type_data( + ObjectType.PopupTrapNoTech, + 340, + "Popup Trap (No Tech)", + [[Episode.I, [8, 9, 10]]], + [], +); +define_object_type_data( + ObjectType.RuinsCrystal, + 341, + "Ruins Crystal", + [[Episode.I, [8, 9, 10]]], + [], +); +define_object_type_data(ObjectType.Monument, 342, "Monument", [[Episode.I, [2, 4, 7]]], []); +define_object_type_data(ObjectType.RuinsRock1, 345, "Ruins Rock 1", [[Episode.I, [8, 9, 10]]], []); +define_object_type_data(ObjectType.RuinsRock2, 346, "Ruins Rock 2", [[Episode.I, [8, 9, 10]]], []); +define_object_type_data(ObjectType.RuinsRock3, 347, "Ruins Rock 3", [[Episode.I, [8, 9, 10]]], []); +define_object_type_data(ObjectType.RuinsRock4, 348, "Ruins Rock 4", [[Episode.I, [8, 9, 10]]], []); +define_object_type_data(ObjectType.RuinsRock5, 349, "Ruins Rock 5", [[Episode.I, [8, 9, 10]]], []); +define_object_type_data(ObjectType.RuinsRock6, 350, "Ruins Rock 6", [[Episode.I, [8, 9, 10]]], []); +define_object_type_data(ObjectType.RuinsRock7, 351, "Ruins Rock 7", [[Episode.I, [8, 9, 10]]], []); +define_object_type_data( + ObjectType.Poison, + 352, + "Poison", + [ + [Episode.I, [8, 9, 10, 13]], + [Episode.II, [3, 4, 10, 11]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.FixedBoxTypeRuins, + 353, + "Fixed Box Type (Ruins)", + [ + [Episode.I, [8, 9, 10, 16, 17]], + [Episode.II, [1, 2, 3, 4, 14, 15]], + ], + [], +); +define_object_type_data( + ObjectType.RandomBoxTypeRuins, + 354, + "Random Box Type (Ruins)", + [ + [Episode.I, [8, 9, 10, 16, 17]], + [Episode.II, [1, 2, 3, 4, 14, 15]], + ], + [], +); +define_object_type_data( + ObjectType.EnemyTypeBoxYellow, + 355, + "Enemy Type Box (Yellow)", + [ + [Episode.I, [8, 9, 10, 16, 17]], + [Episode.II, [1, 2, 3, 4]], + ], + [], +); +define_object_type_data( + ObjectType.EnemyTypeBoxBlue, + 356, + "Enemy Type Box (Blue)", + [ + [Episode.I, [8, 9, 10, 16, 17]], + [Episode.II, [1, 2, 3, 4]], + ], + [], +); +define_object_type_data( + ObjectType.EmptyTypeBoxBlue, + 357, + "Empty Type Box (Blue)", + [ + [Episode.I, [8, 9, 10, 16, 17]], + [Episode.II, [1, 2, 3, 4]], + ], + [], +); +define_object_type_data( + ObjectType.DestructableRock, + 358, + "Destructable Rock", + [[Episode.I, [8, 9, 10]]], + [], +); +define_object_type_data( + ObjectType.PopupTrapsTechs, + 359, + "Popup Traps (techs)", + [ + [Episode.I, [6, 7, 8, 9, 10]], + [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + ], + [], +); +define_object_type_data( + ObjectType.FlyingWhiteBird, + 368, + "Flying White Bird", + [ + [Episode.I, [14, 16]], + [Episode.II, [3, 4]], + ], + [], +); +define_object_type_data(ObjectType.Tower, 369, "Tower", [[Episode.I, [14]]], []); +define_object_type_data(ObjectType.FloatingRocks, 370, "Floating Rocks", [[Episode.I, [14]]], []); +define_object_type_data(ObjectType.FloatingSoul, 371, "Floating Soul", [[Episode.I, [14]]], []); +define_object_type_data(ObjectType.Butterfly, 372, "Butterfly", [[Episode.I, [14]]], []); +define_object_type_data(ObjectType.LobbyGameMenu, 384, "Lobby Game menu", [[Episode.I, [15]]], []); +define_object_type_data( + ObjectType.LobbyWarpObject, + 385, + "Lobby Warp Object", + [[Episode.I, [15]]], + [], ); -define_object_type_data(ObjectType.FloatingRobot, 262, "Floating Robot", [[Episode.I, [6, 7]]]); -define_object_type_data(ObjectType.FloatingBlueLight, 263, "Floating Blue Light", [ - [Episode.I, [6, 7]], -]); -define_object_type_data(ObjectType.SelfDestructingObject1, 264, "Self Destructing Object 1", [ - [Episode.I, [6, 7]], -]); -define_object_type_data(ObjectType.SelfDestructingObject2, 265, "Self Destructing Object 2", [ - [Episode.I, [6, 7]], -]); -define_object_type_data(ObjectType.SelfDestructingObject3, 266, "Self Destructing Object 3", [ - [Episode.I, [6, 7]], -]); -define_object_type_data(ObjectType.SparkMachine, 267, "Spark Machine", [[Episode.I, [6, 7]]]); -define_object_type_data(ObjectType.MinesLargeFlashingCrate, 268, "Mines Large Flashing Crate", [ - [Episode.I, [6, 7]], -]); -define_object_type_data(ObjectType.RuinsSeal, 304, "Ruins Seal", [[Episode.I, [13]]]); -define_object_type_data(ObjectType.RuinsTeleporter, 320, "Ruins Teleporter", [ - [Episode.I, [8, 9, 10]], -]); -define_object_type_data(ObjectType.RuinsWarpSiteToSite, 321, "Ruins Warp (Site to site)", [ - [Episode.I, [8, 9, 10]], -]); -define_object_type_data(ObjectType.RuinsSwitch, 322, "Ruins Switch", [[Episode.I, [8, 9, 10]]]); -define_object_type_data(ObjectType.FloorPanel4, 323, "Floor Panel 4", [[Episode.I, [8, 9, 10]]]); -define_object_type_data(ObjectType.Ruins1Door, 324, "Ruins 1 Door", [[Episode.I, [8]]]); -define_object_type_data(ObjectType.Ruins3Door, 325, "Ruins 3 Door", [[Episode.I, [10]]]); -define_object_type_data(ObjectType.Ruins2Door, 326, "Ruins 2 Door", [[Episode.I, [9]]]); -define_object_type_data(ObjectType.Ruins11ButtonDoor, 327, "Ruins 1-1 Button Door", [ - [Episode.I, [8]], -]); -define_object_type_data(ObjectType.Ruins21ButtonDoor, 328, "Ruins 2-1 Button Door", [ - [Episode.I, [9]], -]); -define_object_type_data(ObjectType.Ruins31ButtonDoor, 329, "Ruins 3-1 Button Door", [ - [Episode.I, [10]], -]); -define_object_type_data(ObjectType.Ruins4ButtonDoor, 330, "Ruins 4-Button Door", [ - [Episode.I, [8, 9, 10]], -]); -define_object_type_data(ObjectType.Ruins2ButtonDoor, 331, "Ruins 2-Button Door", [ - [Episode.I, [8, 9, 10]], -]); -define_object_type_data(ObjectType.RuinsSensor, 332, "Ruins Sensor", [[Episode.I, [8, 9, 10]]]); -define_object_type_data(ObjectType.RuinsFenceSwitch, 333, "Ruins Fence Switch", [ - [Episode.I, [8, 9, 10]], -]); -define_object_type_data(ObjectType.RuinsLaserFence4x2, 334, "Ruins Laser Fence 4x2", [ - [Episode.I, [8, 9, 10]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.RuinsLaserFence6x2, 335, "Ruins Laser Fence 6x2", [ - [Episode.I, [8, 9, 10]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.RuinsLaserFence4x4, 336, "Ruins Laser Fence 4x4", [ - [Episode.I, [8, 9, 10]], -]); -define_object_type_data(ObjectType.RuinsLaserFence6x4, 337, "Ruins Laser Fence 6x4", [ - [Episode.I, [8, 9, 10]], -]); -define_object_type_data(ObjectType.RuinsPoisonBlob, 338, "Ruins poison Blob", [ - [Episode.I, [8, 9, 10]], - [Episode.II, [5, 6, 7, 8, 9]], - [Episode.IV, [6, 7, 8]], -]); -define_object_type_data(ObjectType.RuinsPillarTrap, 339, "Ruins Pillar Trap", [ - [Episode.I, [8, 9, 10]], - [Episode.II, [1, 2, 3, 4]], -]); -define_object_type_data(ObjectType.PopupTrapNoTech, 340, "Popup Trap (No Tech)", [ - [Episode.I, [8, 9, 10]], -]); -define_object_type_data(ObjectType.RuinsCrystal, 341, "Ruins Crystal", [[Episode.I, [8, 9, 10]]]); -define_object_type_data(ObjectType.Monument, 342, "Monument", [[Episode.I, [2, 4, 7]]]); -define_object_type_data(ObjectType.RuinsRock1, 345, "Ruins Rock 1", [[Episode.I, [8, 9, 10]]]); -define_object_type_data(ObjectType.RuinsRock2, 346, "Ruins Rock 2", [[Episode.I, [8, 9, 10]]]); -define_object_type_data(ObjectType.RuinsRock3, 347, "Ruins Rock 3", [[Episode.I, [8, 9, 10]]]); -define_object_type_data(ObjectType.RuinsRock4, 348, "Ruins Rock 4", [[Episode.I, [8, 9, 10]]]); -define_object_type_data(ObjectType.RuinsRock5, 349, "Ruins Rock 5", [[Episode.I, [8, 9, 10]]]); -define_object_type_data(ObjectType.RuinsRock6, 350, "Ruins Rock 6", [[Episode.I, [8, 9, 10]]]); -define_object_type_data(ObjectType.RuinsRock7, 351, "Ruins Rock 7", [[Episode.I, [8, 9, 10]]]); -define_object_type_data(ObjectType.Poison, 352, "Poison", [ - [Episode.I, [8, 9, 10, 13]], - [Episode.II, [3, 4, 10, 11]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.FixedBoxTypeRuins, 353, "Fixed Box Type (Ruins)", [ - [Episode.I, [8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 14, 15]], -]); -define_object_type_data(ObjectType.RandomBoxTypeRuins, 354, "Random Box Type (Ruins)", [ - [Episode.I, [8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4, 14, 15]], -]); -define_object_type_data(ObjectType.EnemyTypeBoxYellow, 355, "Enemy Type Box (Yellow)", [ - [Episode.I, [8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4]], -]); -define_object_type_data(ObjectType.EnemyTypeBoxBlue, 356, "Enemy Type Box (Blue)", [ - [Episode.I, [8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4]], -]); -define_object_type_data(ObjectType.EmptyTypeBoxBlue, 357, "Empty Type Box (Blue)", [ - [Episode.I, [8, 9, 10, 16, 17]], - [Episode.II, [1, 2, 3, 4]], -]); -define_object_type_data(ObjectType.DestructableRock, 358, "Destructable Rock", [ - [Episode.I, [8, 9, 10]], -]); -define_object_type_data(ObjectType.PopupTrapsTechs, 359, "Popup Traps (techs)", [ - [Episode.I, [6, 7, 8, 9, 10]], - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], -]); -define_object_type_data(ObjectType.FlyingWhiteBird, 368, "Flying White Bird", [ - [Episode.I, [14, 16]], - [Episode.II, [3, 4]], -]); -define_object_type_data(ObjectType.Tower, 369, "Tower", [[Episode.I, [14]]]); -define_object_type_data(ObjectType.FloatingRocks, 370, "Floating Rocks", [[Episode.I, [14]]]); -define_object_type_data(ObjectType.FloatingSoul, 371, "Floating Soul", [[Episode.I, [14]]]); -define_object_type_data(ObjectType.Butterfly, 372, "Butterfly", [[Episode.I, [14]]]); -define_object_type_data(ObjectType.LobbyGameMenu, 384, "Lobby Game menu", [[Episode.I, [15]]]); -define_object_type_data(ObjectType.LobbyWarpObject, 385, "Lobby Warp Object", [[Episode.I, [15]]]); define_object_type_data( ObjectType.Lobby1EventObjectDefaultTree, 386, "Lobby 1 Event Object (Default Tree)", [[Episode.I, [15]]], + [], +); +define_object_type_data( + ObjectType.UnknownItem387, + 387, + "Unknown Item (387)", + [[Episode.I, [15]]], + [], +); +define_object_type_data( + ObjectType.UnknownItem388, + 388, + "Unknown Item (388)", + [[Episode.I, [15]]], + [], +); +define_object_type_data( + ObjectType.UnknownItem389, + 389, + "Unknown Item (389)", + [[Episode.I, [15]]], + [], ); -define_object_type_data(ObjectType.UnknownItem387, 387, "Unknown Item (387)", [[Episode.I, [15]]]); -define_object_type_data(ObjectType.UnknownItem388, 388, "Unknown Item (388)", [[Episode.I, [15]]]); -define_object_type_data(ObjectType.UnknownItem389, 389, "Unknown Item (389)", [[Episode.I, [15]]]); define_object_type_data( ObjectType.LobbyEventObjectStaticPumpkin, 390, "Lobby Event Object (Static Pumpkin)", [[Episode.I, [15]]], + [], ); define_object_type_data( ObjectType.LobbyEventObject3ChristmasWindows, 391, "Lobby Event Object (3 Christmas Windows)", [[Episode.I, [15]]], + [], ); define_object_type_data( ObjectType.LobbyEventObjectRedAndWhiteCurtain, 392, "Lobby Event Object (Red and White Curtain)", [[Episode.I, [15]]], + [], ); -define_object_type_data(ObjectType.UnknownItem393, 393, "Unknown Item (393)", [[Episode.I, [15]]]); -define_object_type_data(ObjectType.UnknownItem394, 394, "Unknown Item (394)", [[Episode.I, [15]]]); -define_object_type_data(ObjectType.LobbyFishTank, 395, "Lobby Fish Tank", [[Episode.I, [15]]]); +define_object_type_data( + ObjectType.UnknownItem393, + 393, + "Unknown Item (393)", + [[Episode.I, [15]]], + [], +); +define_object_type_data( + ObjectType.UnknownItem394, + 394, + "Unknown Item (394)", + [[Episode.I, [15]]], + [], +); +define_object_type_data(ObjectType.LobbyFishTank, 395, "Lobby Fish Tank", [[Episode.I, [15]]], []); define_object_type_data( ObjectType.LobbyEventObjectButterflies, 396, "Lobby Event Object (Butterflies)", [[Episode.I, [15]]], + [], +); +define_object_type_data( + ObjectType.UnknownItem400, + 400, + "Unknown Item (400)", + [ + [Episode.I, [16]], + [Episode.II, [3, 4]], + ], + [], +); +define_object_type_data( + ObjectType.GreyWallLow, + 401, + "grey wall low", + [ + [Episode.I, [16]], + [Episode.II, [3, 4, 17]], + ], + [], +); +define_object_type_data( + ObjectType.SpaceshipDoor, + 402, + "Spaceship Door", + [ + [Episode.I, [16]], + [Episode.II, [3, 4]], + ], + [], +); +define_object_type_data( + ObjectType.GreyWallHigh, + 403, + "grey wall high", + [ + [Episode.I, [16]], + [Episode.II, [3, 4, 17]], + ], + [], +); +define_object_type_data( + ObjectType.TempleNormalDoor, + 416, + "Temple Normal Door", + [ + [Episode.I, [17]], + [Episode.II, [1, 2]], + ], + [], ); -define_object_type_data(ObjectType.UnknownItem400, 400, "Unknown Item (400)", [ - [Episode.I, [16]], - [Episode.II, [3, 4]], -]); -define_object_type_data(ObjectType.GreyWallLow, 401, "grey wall low", [ - [Episode.I, [16]], - [Episode.II, [3, 4, 17]], -]); -define_object_type_data(ObjectType.SpaceshipDoor, 402, "Spaceship Door", [ - [Episode.I, [16]], - [Episode.II, [3, 4]], -]); -define_object_type_data(ObjectType.GreyWallHigh, 403, "grey wall high", [ - [Episode.I, [16]], - [Episode.II, [3, 4, 17]], -]); -define_object_type_data(ObjectType.TempleNormalDoor, 416, "Temple Normal Door", [ - [Episode.I, [17]], - [Episode.II, [1, 2]], -]); define_object_type_data( ObjectType.BreakableWallWallButUnbreakable, 417, @@ -1593,11 +2446,18 @@ define_object_type_data( [Episode.I, [17]], [Episode.II, [1, 2]], ], + [], +); +define_object_type_data( + ObjectType.BrokenCylinderAndRubble, + 418, + "Broken cylinder and rubble", + [ + [Episode.I, [17]], + [Episode.II, [1, 2]], + ], + [], ); -define_object_type_data(ObjectType.BrokenCylinderAndRubble, 418, "Broken cylinder and rubble", [ - [Episode.I, [17]], - [Episode.II, [1, 2]], -]); define_object_type_data( ObjectType.ThreeBrokenWallPiecesOnFloor, 419, @@ -1606,28 +2466,59 @@ define_object_type_data( [Episode.I, [17]], [Episode.II, [1, 2]], ], + [], +); +define_object_type_data( + ObjectType.HighBrickCylinder, + 420, + "high brick cylinder", + [ + [Episode.I, [17]], + [Episode.II, [1, 2]], + ], + [], +); +define_object_type_data( + ObjectType.LyingCylinder, + 421, + "lying cylinder", + [ + [Episode.I, [17]], + [Episode.II, [1, 2]], + ], + [], +); +define_object_type_data( + ObjectType.BrickConeWithFlatTop, + 422, + "brick cone with flat top", + [ + [Episode.I, [17]], + [Episode.II, [1, 2]], + ], + [], +); +define_object_type_data( + ObjectType.BreakableTempleWall, + 423, + "breakable temple wall", + [ + [Episode.I, [17]], + [Episode.II, [1, 2]], + ], + [], +); +define_object_type_data( + ObjectType.TempleMapDetect, + 424, + "Temple Map Detect", + [ + [Episode.I, [17]], + [Episode.II, [1, 2, 14]], + [Episode.IV, [1, 2, 3, 4, 5]], + ], + [], ); -define_object_type_data(ObjectType.HighBrickCylinder, 420, "high brick cylinder", [ - [Episode.I, [17]], - [Episode.II, [1, 2]], -]); -define_object_type_data(ObjectType.LyingCylinder, 421, "lying cylinder", [ - [Episode.I, [17]], - [Episode.II, [1, 2]], -]); -define_object_type_data(ObjectType.BrickConeWithFlatTop, 422, "brick cone with flat top", [ - [Episode.I, [17]], - [Episode.II, [1, 2]], -]); -define_object_type_data(ObjectType.BreakableTempleWall, 423, "breakable temple wall", [ - [Episode.I, [17]], - [Episode.II, [1, 2]], -]); -define_object_type_data(ObjectType.TempleMapDetect, 424, "Temple Map Detect", [ - [Episode.I, [17]], - [Episode.II, [1, 2, 14]], - [Episode.IV, [1, 2, 3, 4, 5]], -]); define_object_type_data( ObjectType.SmallBrownBrickRisingBridge, 425, @@ -1636,6 +2527,7 @@ define_object_type_data( [Episode.I, [17]], [Episode.II, [1, 2]], ], + [], ); define_object_type_data( ObjectType.LongRisingBridgeWithPinkHighEdges, @@ -1645,212 +2537,475 @@ define_object_type_data( [Episode.I, [17]], [Episode.II, [1, 2]], ], + [], +); +define_object_type_data( + ObjectType.FourSwitchTempleDoor, + 427, + "4 switch temple door", + [[Episode.II, [1, 2]]], + [], +); +define_object_type_data( + ObjectType.FourButtonSpaceshipDoor, + 448, + "4 button spaceship door", + [[Episode.II, [3, 4]]], + [], +); +define_object_type_data( + ObjectType.ItemBoxCca, + 512, + "item box cca", + [ + [Episode.II, [5, 6, 7, 8, 9, 12, 16, 17]], + [Episode.IV, [5]], + ], + [], +); +define_object_type_data( + ObjectType.TeleporterEp2, + 513, + "Teleporter (Ep 2)", + [[Episode.II, [5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17]]], + [], +); +define_object_type_data( + ObjectType.CCADoor, + 514, + "CCA Door", + [[Episode.II, [5, 6, 7, 8, 9, 16, 17]]], + [], +); +define_object_type_data( + ObjectType.SpecialBoxCCA, + 515, + "Special Box CCA", + [ + [Episode.II, [5, 6, 7, 8, 9, 12, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5]], + ], + [], +); +define_object_type_data(ObjectType.BigCCADoor, 516, "Big CCA Door", [[Episode.II, [5]]], []); +define_object_type_data( + ObjectType.BigCCADoorSwitch, + 517, + "Big CCA Door Switch", + [[Episode.II, [5, 6, 7, 8, 9, 16, 17]]], + [], +); +define_object_type_data( + ObjectType.LittleRock, + 518, + "Little Rock", + [[Episode.II, [5, 6, 7, 8, 9, 16]]], + [], +); +define_object_type_data( + ObjectType.Little3StoneWall, + 519, + "Little 3 Stone Wall", + [[Episode.II, [5, 6, 7, 8, 9, 16]]], + [], +); +define_object_type_data( + ObjectType.Medium3StoneWall, + 520, + "Medium 3 stone wall", + [[Episode.II, [5, 6, 7, 8, 9, 16]]], + [], +); +define_object_type_data( + ObjectType.SpiderPlant, + 521, + "Spider Plant", + [[Episode.II, [5, 6, 7, 8, 9, 16]]], + [], +); +define_object_type_data( + ObjectType.CCAAreaTeleporter, + 522, + "CCA Area Teleporter", + [[Episode.II, [5, 6, 7, 8, 9, 16, 17]]], + [], +); +define_object_type_data( + ObjectType.UnknownItem523, + 523, + "Unknown Item (523)", + [[Episode.II, [5, 12]]], + [], +); +define_object_type_data( + ObjectType.WhiteBird, + 524, + "White Bird", + [ + [Episode.II, [6, 7, 9, 16, 17]], + [Episode.IV, [6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.OrangeBird, + 525, + "Orange Bird", + [[Episode.II, [6, 7, 9, 17]]], + [], +); +define_object_type_data( + ObjectType.Saw, + 527, + "Saw", + [[Episode.II, [5, 6, 7, 8, 9, 10, 11, 16, 17]]], + [], +); +define_object_type_data( + ObjectType.LaserDetect, + 528, + "Laser Detect", + [[Episode.II, [5, 6, 7, 8, 9, 10, 11, 16, 17]]], + [], +); +define_object_type_data( + ObjectType.UnknownItem529, + 529, + "Unknown Item (529)", + [ + [Episode.II, [5, 6, 7]], + [Episode.IV, [6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.UnknownItem530, + 530, + "Unknown Item (530)", + [[Episode.II, [5, 6, 7, 8, 9, 17]]], + [], +); +define_object_type_data( + ObjectType.Seagull, + 531, + "Seagull", + [ + [Episode.II, [6, 7, 8, 9, 16]], + [Episode.IV, [6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.Fish, + 544, + "Fish", + [ + [Episode.I, [15]], + [Episode.II, [6, 9, 10, 11, 16]], + ], + [], +); +define_object_type_data( + ObjectType.SeabedDoorWithBlueEdges, + 545, + "Seabed Door (with blue edges)", + [[Episode.II, [10, 11]]], + [], ); -define_object_type_data(ObjectType.FourSwitchTempleDoor, 427, "4 switch temple door", [ - [Episode.II, [1, 2]], -]); -define_object_type_data(ObjectType.FourButtonSpaceshipDoor, 448, "4 button spaceship door", [ - [Episode.II, [3, 4]], -]); -define_object_type_data(ObjectType.ItemBoxCca, 512, "item box cca", [ - [Episode.II, [5, 6, 7, 8, 9, 12, 16, 17]], - [Episode.IV, [5]], -]); -define_object_type_data(ObjectType.TeleporterEp2, 513, "Teleporter (Ep 2)", [ - [Episode.II, [5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17]], -]); -define_object_type_data(ObjectType.CCADoor, 514, "CCA Door", [ - [Episode.II, [5, 6, 7, 8, 9, 16, 17]], -]); -define_object_type_data(ObjectType.SpecialBoxCCA, 515, "Special Box CCA", [ - [Episode.II, [5, 6, 7, 8, 9, 12, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5]], -]); -define_object_type_data(ObjectType.BigCCADoor, 516, "Big CCA Door", [[Episode.II, [5]]]); -define_object_type_data(ObjectType.BigCCADoorSwitch, 517, "Big CCA Door Switch", [ - [Episode.II, [5, 6, 7, 8, 9, 16, 17]], -]); -define_object_type_data(ObjectType.LittleRock, 518, "Little Rock", [ - [Episode.II, [5, 6, 7, 8, 9, 16]], -]); -define_object_type_data(ObjectType.Little3StoneWall, 519, "Little 3 Stone Wall", [ - [Episode.II, [5, 6, 7, 8, 9, 16]], -]); -define_object_type_data(ObjectType.Medium3StoneWall, 520, "Medium 3 stone wall", [ - [Episode.II, [5, 6, 7, 8, 9, 16]], -]); -define_object_type_data(ObjectType.SpiderPlant, 521, "Spider Plant", [ - [Episode.II, [5, 6, 7, 8, 9, 16]], -]); -define_object_type_data(ObjectType.CCAAreaTeleporter, 522, "CCA Area Teleporter", [ - [Episode.II, [5, 6, 7, 8, 9, 16, 17]], -]); -define_object_type_data(ObjectType.UnknownItem523, 523, "Unknown Item (523)", [ - [Episode.II, [5, 12]], -]); -define_object_type_data(ObjectType.WhiteBird, 524, "White Bird", [ - [Episode.II, [6, 7, 9, 16, 17]], - [Episode.IV, [6, 7, 8]], -]); -define_object_type_data(ObjectType.OrangeBird, 525, "Orange Bird", [[Episode.II, [6, 7, 9, 17]]]); -define_object_type_data(ObjectType.Saw, 527, "Saw", [ - [Episode.II, [5, 6, 7, 8, 9, 10, 11, 16, 17]], -]); -define_object_type_data(ObjectType.LaserDetect, 528, "Laser Detect", [ - [Episode.II, [5, 6, 7, 8, 9, 10, 11, 16, 17]], -]); -define_object_type_data(ObjectType.UnknownItem529, 529, "Unknown Item (529)", [ - [Episode.II, [5, 6, 7]], - [Episode.IV, [6, 7, 8]], -]); -define_object_type_data(ObjectType.UnknownItem530, 530, "Unknown Item (530)", [ - [Episode.II, [5, 6, 7, 8, 9, 17]], -]); -define_object_type_data(ObjectType.Seagull, 531, "Seagull", [ - [Episode.II, [6, 7, 8, 9, 16]], - [Episode.IV, [6, 7, 8]], -]); -define_object_type_data(ObjectType.Fish, 544, "Fish", [ - [Episode.I, [15]], - [Episode.II, [6, 9, 10, 11, 16]], -]); -define_object_type_data(ObjectType.SeabedDoorWithBlueEdges, 545, "Seabed Door (with blue edges)", [ - [Episode.II, [10, 11]], -]); define_object_type_data( ObjectType.SeabedDoorAlwaysOpenNonTriggerable, 546, "Seabed door (always open, non-triggerable)", [[Episode.II, [10, 11]]], + [], +); +define_object_type_data( + ObjectType.LittleCryotube, + 547, + "Little Cryotube", + [[Episode.II, [10, 11, 17]]], + [], +); +define_object_type_data( + ObjectType.WideGlassWallBreakable, + 548, + "Wide Glass Wall (breakable)", + [[Episode.II, [10, 11]]], + [], +); +define_object_type_data( + ObjectType.BlueFloatingRobot, + 549, + "Blue floating robot", + [[Episode.II, [10, 11]]], + [], +); +define_object_type_data( + ObjectType.RedFloatingRobot, + 550, + "Red floating robot", + [[Episode.II, [10, 11]]], + [], +); +define_object_type_data(ObjectType.Dolphin, 551, "Dolphin", [[Episode.II, [10, 11]]], []); +define_object_type_data( + ObjectType.CaptureTrap, + 552, + "Capture Trap", + [[Episode.II, [5, 6, 7, 8, 9, 10, 11, 16, 17]]], + [], +); +define_object_type_data( + ObjectType.VRLink, + 553, + "VR link", + [[Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]]], + [], +); +define_object_type_data( + ObjectType.UnknownItem576, + 576, + "Unknown Item (576)", + [[Episode.II, [12]]], + [], +); +define_object_type_data( + ObjectType.WarpInBarbaRayRoom, + 640, + "Warp in Barba Ray Room", + [[Episode.II, [14]]], + [], +); +define_object_type_data( + ObjectType.UnknownItem672, + 672, + "Unknown Item (672)", + [[Episode.II, [15]]], + [], +); +define_object_type_data( + ObjectType.GeeNest, + 688, + "Gee Nest", + [ + [Episode.I, [8, 9, 10]], + [Episode.II, [5, 6, 7, 8, 9, 16, 17]], + [Episode.IV, [6, 7, 8]], + ], + [], +); +define_object_type_data( + ObjectType.LabComputerConsole, + 689, + "Lab Computer Console", + [[Episode.II, [0]]], + [], ); -define_object_type_data(ObjectType.LittleCryotube, 547, "Little Cryotube", [ - [Episode.II, [10, 11, 17]], -]); -define_object_type_data(ObjectType.WideGlassWallBreakable, 548, "Wide Glass Wall (breakable)", [ - [Episode.II, [10, 11]], -]); -define_object_type_data(ObjectType.BlueFloatingRobot, 549, "Blue floating robot", [ - [Episode.II, [10, 11]], -]); -define_object_type_data(ObjectType.RedFloatingRobot, 550, "Red floating robot", [ - [Episode.II, [10, 11]], -]); -define_object_type_data(ObjectType.Dolphin, 551, "Dolphin", [[Episode.II, [10, 11]]]); -define_object_type_data(ObjectType.CaptureTrap, 552, "Capture Trap", [ - [Episode.II, [5, 6, 7, 8, 9, 10, 11, 16, 17]], -]); -define_object_type_data(ObjectType.VRLink, 553, "VR link", [ - [Episode.II, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], -]); -define_object_type_data(ObjectType.UnknownItem576, 576, "Unknown Item (576)", [[Episode.II, [12]]]); -define_object_type_data(ObjectType.WarpInBarbaRayRoom, 640, "Warp in Barba Ray Room", [ - [Episode.II, [14]], -]); -define_object_type_data(ObjectType.UnknownItem672, 672, "Unknown Item (672)", [[Episode.II, [15]]]); -define_object_type_data(ObjectType.GeeNest, 688, "Gee Nest", [ - [Episode.I, [8, 9, 10]], - [Episode.II, [5, 6, 7, 8, 9, 16, 17]], - [Episode.IV, [6, 7, 8]], -]); -define_object_type_data(ObjectType.LabComputerConsole, 689, "Lab Computer Console", [ - [Episode.II, [0]], -]); define_object_type_data( ObjectType.LabComputerConsoleGreenScreen, 690, "Lab Computer Console (Green Screen)", [[Episode.II, [0]]], + [], +); +define_object_type_data( + ObjectType.ChairYellowPillow, + 691, + "Chair, Yellow Pillow", + [[Episode.II, [0]]], + [], ); -define_object_type_data(ObjectType.ChairYellowPillow, 691, "Chair, Yellow Pillow", [ - [Episode.II, [0]], -]); define_object_type_data( ObjectType.OrangeWallWithHoleInMiddle, 692, "orange wall with hole in middle", [[Episode.II, [0]]], + [], +); +define_object_type_data( + ObjectType.GreyWallWithHoleInMiddle, + 693, + "grey wall with hole in middle", + [[Episode.II, [0]]], + [], +); +define_object_type_data(ObjectType.LongTable, 694, "long table", [[Episode.II, [0]]], []); +define_object_type_data(ObjectType.GBAStation, 695, "GBA Station", [], []); +define_object_type_data( + ObjectType.TalkLinkToSupport, + 696, + "Talk (link to support)", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], + ], + [], +); +define_object_type_data( + ObjectType.InstaWarp, + 697, + "insta-warp", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14, 16, 17]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]], + ], + [], +); +define_object_type_data( + ObjectType.LabInvisibleObject, + 698, + "Lab Invisible Object", + [ + [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]], + [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], + [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], + ], + [], +); +define_object_type_data( + ObjectType.LabGlassWindowDoor, + 699, + "Lab Glass window Door", + [[Episode.II, [0]]], + [], +); +define_object_type_data( + ObjectType.UnknownItem700, + 700, + "Unknown Item (700)", + [[Episode.II, [13]]], + [], +); +define_object_type_data( + ObjectType.LabCeilingWarp, + 701, + "Lab Ceiling Warp", + [[Episode.II, [0]]], + [], +); +define_object_type_data( + ObjectType.Ep4LightSource, + 768, + "Ep4 Light Source", + [[Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9]]], + [], +); +define_object_type_data( + ObjectType.Cactus, + 769, + "Cactus", + [[Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]]], + [], +); +define_object_type_data( + ObjectType.BigBrownRock, + 770, + "Big Brown Rock", + [[Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]]], + [], +); +define_object_type_data( + ObjectType.BreakableBrownRock, + 771, + "Breakable Brown Rock", + [[Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]]], + [], +); +define_object_type_data(ObjectType.UnknownItem832, 832, "Unknown Item (832)", [], []); +define_object_type_data(ObjectType.UnknownItem833, 833, "Unknown Item (833)", [], []); +define_object_type_data(ObjectType.PoisonPlant, 896, "Poison Plant", [[Episode.IV, [6, 7, 8]]], []); +define_object_type_data( + ObjectType.UnknownItem897, + 897, + "Unknown Item (897)", + [[Episode.IV, [6, 7, 8]]], + [], +); +define_object_type_data( + ObjectType.UnknownItem898, + 898, + "Unknown Item (898)", + [[Episode.IV, [6, 7, 8]]], + [], +); +define_object_type_data( + ObjectType.OozingDesertPlant, + 899, + "Oozing Desert Plant", + [[Episode.IV, [6, 7, 8]]], + [], +); +define_object_type_data( + ObjectType.UnknownItem901, + 901, + "Unknown Item (901)", + [[Episode.IV, [6, 7, 8]]], + [], +); +define_object_type_data( + ObjectType.BigBlackRocks, + 902, + "big black rocks", + [[Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]]], + [], +); +define_object_type_data( + ObjectType.UnknownItem903, + 903, + "Unknown Item (903)", + [[Episode.IV, [6, 7, 8]]], + [], +); +define_object_type_data( + ObjectType.UnknownItem904, + 904, + "Unknown Item (904)", + [[Episode.IV, [6, 7, 8]]], + [], +); +define_object_type_data(ObjectType.UnknownItem905, 905, "Unknown Item (905)", [], []); +define_object_type_data(ObjectType.UnknownItem906, 906, "Unknown Item (906)", [], []); +define_object_type_data(ObjectType.FallingRock, 907, "Falling Rock", [[Episode.IV, [6, 7, 8]]], []); +define_object_type_data( + ObjectType.DesertPlantHasCollision, + 908, + "Desert Plant (has collision)", + [[Episode.IV, [6, 7, 8]]], + [], ); -define_object_type_data(ObjectType.GreyWallWithHoleInMiddle, 693, "grey wall with hole in middle", [ - [Episode.II, [0]], -]); -define_object_type_data(ObjectType.LongTable, 694, "long table", [[Episode.II, [0]]]); -define_object_type_data(ObjectType.GBAStation, 695, "GBA Station", []); -define_object_type_data(ObjectType.TalkLinkToSupport, 696, "Talk (link to support)", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], -]); -define_object_type_data(ObjectType.InstaWarp, 697, "insta-warp", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14, 16, 17]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]], -]); -define_object_type_data(ObjectType.LabInvisibleObject, 698, "Lab Invisible Object", [ - [Episode.I, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]], - [Episode.II, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]], - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 0]], -]); -define_object_type_data(ObjectType.LabGlassWindowDoor, 699, "Lab Glass window Door", [ - [Episode.II, [0]], -]); -define_object_type_data(ObjectType.UnknownItem700, 700, "Unknown Item (700)", [[Episode.II, [13]]]); -define_object_type_data(ObjectType.LabCeilingWarp, 701, "Lab Ceiling Warp", [[Episode.II, [0]]]); -define_object_type_data(ObjectType.Ep4LightSource, 768, "Ep4 Light Source", [ - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8, 9]], -]); -define_object_type_data(ObjectType.Cactus, 769, "Cactus", [[Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]]]); -define_object_type_data(ObjectType.BigBrownRock, 770, "Big Brown Rock", [ - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.BreakableBrownRock, 771, "Breakable Brown Rock", [ - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.UnknownItem832, 832, "Unknown Item (832)", []); -define_object_type_data(ObjectType.UnknownItem833, 833, "Unknown Item (833)", []); -define_object_type_data(ObjectType.PoisonPlant, 896, "Poison Plant", [[Episode.IV, [6, 7, 8]]]); -define_object_type_data(ObjectType.UnknownItem897, 897, "Unknown Item (897)", [ - [Episode.IV, [6, 7, 8]], -]); -define_object_type_data(ObjectType.UnknownItem898, 898, "Unknown Item (898)", [ - [Episode.IV, [6, 7, 8]], -]); -define_object_type_data(ObjectType.OozingDesertPlant, 899, "Oozing Desert Plant", [ - [Episode.IV, [6, 7, 8]], -]); -define_object_type_data(ObjectType.UnknownItem901, 901, "Unknown Item (901)", [ - [Episode.IV, [6, 7, 8]], -]); -define_object_type_data(ObjectType.BigBlackRocks, 902, "big black rocks", [ - [Episode.IV, [1, 2, 3, 4, 5, 6, 7, 8]], -]); -define_object_type_data(ObjectType.UnknownItem903, 903, "Unknown Item (903)", [ - [Episode.IV, [6, 7, 8]], -]); -define_object_type_data(ObjectType.UnknownItem904, 904, "Unknown Item (904)", [ - [Episode.IV, [6, 7, 8]], -]); -define_object_type_data(ObjectType.UnknownItem905, 905, "Unknown Item (905)", []); -define_object_type_data(ObjectType.UnknownItem906, 906, "Unknown Item (906)", []); -define_object_type_data(ObjectType.FallingRock, 907, "Falling Rock", [[Episode.IV, [6, 7, 8]]]); -define_object_type_data(ObjectType.DesertPlantHasCollision, 908, "Desert Plant (has collision)", [ - [Episode.IV, [6, 7, 8]], -]); define_object_type_data( ObjectType.DesertFixedTypeBoxBreakableCrystals, 909, "Desert Fixed Type Box (Breakable Crystals)", [[Episode.IV, [6, 7, 8]]], + [], +); +define_object_type_data(ObjectType.UnknownItem910, 910, "Unknown Item (910)", [], []); +define_object_type_data(ObjectType.BeeHive, 911, "Bee Hive", [[Episode.IV, [6, 7, 8]]], []); +define_object_type_data( + ObjectType.UnknownItem912, + 912, + "Unknown Item (912)", + [[Episode.IV, [6, 7, 8]]], + [], +); +define_object_type_data(ObjectType.Heat, 913, "Heat", [[Episode.IV, [6, 7, 8]]], []); +define_object_type_data( + ObjectType.TopOfSaintMillionEgg, + 960, + "Top of saint million egg", + [[Episode.IV, [9]]], + [], +); +define_object_type_data( + ObjectType.UnknownItem961, + 961, + "Unknown Item (961)", + [[Episode.IV, [9]]], + [], ); -define_object_type_data(ObjectType.UnknownItem910, 910, "Unknown Item (910)", []); -define_object_type_data(ObjectType.BeeHive, 911, "Bee Hive", [[Episode.IV, [6, 7, 8]]]); -define_object_type_data(ObjectType.UnknownItem912, 912, "Unknown Item (912)", [ - [Episode.IV, [6, 7, 8]], -]); -define_object_type_data(ObjectType.Heat, 913, "Heat", [[Episode.IV, [6, 7, 8]]]); -define_object_type_data(ObjectType.TopOfSaintMillionEgg, 960, "Top of saint million egg", [ - [Episode.IV, [9]], -]); -define_object_type_data(ObjectType.UnknownItem961, 961, "Unknown Item (961)", [[Episode.IV, [9]]]); Object.freeze(OBJECT_TYPES); Object.freeze(OBJECT_TYPE_DATA); diff --git a/src/core/data_formats/parsing/quest/properties.ts b/src/core/data_formats/parsing/quest/properties.ts new file mode 100644 index 00000000..1d93b30d --- /dev/null +++ b/src/core/data_formats/parsing/quest/properties.ts @@ -0,0 +1,23 @@ +/** + * Represents a configurable property for accessing parts of entity data of which the use is not + * fully understood or ambiguous. + */ +export type EntityProp = { + readonly name: string; + readonly offset: number; + readonly type: EntityPropType; +}; + +export enum EntityPropType { + U8, + U16, + U32, + I8, + I16, + I32, + F32, + /** + * Signed 32-bit integer that represents an angle. 0x10000 is 360°. + */ + Angle, +} diff --git a/src/core/util.ts b/src/core/util.ts index 4445f6e4..c78d3b18 100644 --- a/src/core/util.ts +++ b/src/core/util.ts @@ -104,17 +104,24 @@ export function defined(value: T | undefined | null, name: string): asserts v assert(value != undefined, () => `${name} should not be null or undefined (was ${value}).`); } -export function require_finite(value: number, name: string): void { +export function require_finite(value: unknown, name: string): asserts value is number { assert(Number.isFinite(value), () => `${name} should be a finite number (was ${value}).`); } -export function require_integer(value: number, name: string): void { +export function require_number(value: unknown, name: string): asserts value is number { + assert(typeof value === "number", () => `${name} should be a number (was ${value}).`); +} + +export function require_integer(value: unknown, name: string): asserts value is number { assert(Number.isInteger(value), () => `${name} should be an integer (was ${value}).`); } -export function require_non_negative_integer(value: number, name: string): void { +export function require_non_negative_integer( + value: unknown, + name: string, +): asserts value is number { assert( - Number.isInteger(value) && value >= 0, + Number.isInteger(value) && (value as any) >= 0, () => `${name} should be a non-negative integer (was ${value}).`, ); } diff --git a/src/quest_editor/controllers/EntityInfoController.ts b/src/quest_editor/controllers/EntityInfoController.ts index 6e61e38e..16b535e8 100644 --- a/src/quest_editor/controllers/EntityInfoController.ts +++ b/src/quest_editor/controllers/EntityInfoController.ts @@ -2,13 +2,15 @@ import { Controller } from "../../core/controllers/Controller"; import { QuestEditorStore } from "../stores/QuestEditorStore"; import { Property } from "../../core/observable/property/Property"; import { QuestNpcModel } from "../model/QuestNpcModel"; -import { property } from "../../core/observable"; +import { flat_map_to_list, list_property, property } from "../../core/observable"; import { Euler, Vector3 } from "three"; import { deg_to_rad } from "../../core/math"; import { TranslateEntityAction } from "../actions/TranslateEntityAction"; import { RotateEntityAction } from "../actions/RotateEntityAction"; import { euler } from "../model/euler"; import { entity_data } from "../../core/data_formats/parsing/quest/Quest"; +import { ListProperty } from "../../core/observable/property/list/ListProperty"; +import { QuestEntityPropModel } from "../model/QuestEntityPropModel"; const DUMMY_VECTOR = Object.freeze(new Vector3()); const DUMMY_EULER = Object.freeze(new Euler()); @@ -23,6 +25,7 @@ export class EntityInfoController extends Controller { readonly wave_hidden: Property; readonly position: Property; readonly rotation: Property; + readonly props: ListProperty; constructor(private readonly store: QuestEditorStore) { super(); @@ -44,6 +47,7 @@ export class EntityInfoController extends Controller { this.wave_hidden = entity.map(e => !(e instanceof QuestNpcModel)); this.position = entity.flat_map(e => e?.position ?? property(DUMMY_VECTOR)); this.rotation = entity.flat_map(e => e?.rotation ?? property(DUMMY_EULER)); + this.props = flat_map_to_list(e => e?.props ?? list_property(), entity); } focused = (): void => { diff --git a/src/quest_editor/gui/EntityInfoView.ts b/src/quest_editor/gui/EntityInfoView.ts index 422333e4..0dfc5ebb 100644 --- a/src/quest_editor/gui/EntityInfoView.ts +++ b/src/quest_editor/gui/EntityInfoView.ts @@ -1,17 +1,22 @@ -import { bind_attr, div, table, td, th, tr } from "../../core/gui/dom"; +import { bind_attr, bind_children_to, div, table, td, th, tr } from "../../core/gui/dom"; import { UnavailableView } from "./UnavailableView"; import "./EntityInfoView.css"; import { NumberInput } from "../../core/gui/NumberInput"; import { rad_to_deg } from "../../core/math"; import { EntityInfoController } from "../controllers/EntityInfoController"; import { ResizableView } from "../../core/gui/ResizableView"; +import { QuestEntityPropModel } from "../model/QuestEntityPropModel"; +import { Disposable } from "../../core/observable/Disposable"; +import { Disposer } from "../../core/observable/Disposer"; +import { EntityPropType } from "../../core/data_formats/parsing/quest/properties"; export class EntityInfoView extends ResizableView { readonly element = div({ className: "quest_editor_EntityInfoView", tabIndex: -1 }); private readonly no_entity_view = new UnavailableView("No entity selected."); - private readonly table_element = table(); + private readonly standard_props_element = table(); + private readonly specific_props_element = table(); private readonly type_element: HTMLTableCellElement; private readonly name_element: HTMLTableCellElement; @@ -30,7 +35,7 @@ export class EntityInfoView extends ResizableView { const coord_class = "quest_editor_EntityInfoView_coord"; - this.table_element.append( + this.standard_props_element.append( tr(th("Type:"), (this.type_element = td())), tr(th("Name:"), (this.name_element = td())), tr(th("Section:"), (this.section_id_element = td())), @@ -45,12 +50,18 @@ export class EntityInfoView extends ResizableView { tr(th({ className: coord_class }, "Z:"), td(this.rot_z_element.element)), ); - this.element.append(this.table_element, this.no_entity_view.element); + bind_children_to(this.specific_props_element, ctrl.props, this.create_prop_row); + + this.element.append( + this.standard_props_element, + this.specific_props_element, + this.no_entity_view.element, + ); this.element.addEventListener("focus", ctrl.focused, true); this.disposables( - bind_attr(this.table_element, "hidden", ctrl.unavailable), + bind_attr(this.standard_props_element, "hidden", ctrl.unavailable), this.no_entity_view.visible.bind_to(ctrl.unavailable), bind_attr(this.type_element, "textContent", ctrl.type), @@ -102,4 +113,60 @@ export class EntityInfoView extends ResizableView { this.rot_y_element.enabled.val = enabled; this.rot_z_element.enabled.val = enabled; } + + private create_prop_row(prop: QuestEntityPropModel): [HTMLTableRowElement, Disposable] { + const disposer = new Disposer(); + + let min: number | undefined; + let max: number | undefined; + + switch (prop.type) { + case EntityPropType.U8: + min = 0; + max = 0xff; + break; + case EntityPropType.U16: + min = 0; + max = 0xffff; + break; + case EntityPropType.U32: + min = 0; + max = 0xffffffff; + break; + case EntityPropType.I8: + min = -0x80; + max = 0x7f; + break; + case EntityPropType.I16: + min = -0x8000; + max = 0x7fff; + break; + case EntityPropType.I32: + min = -0x80000000; + max = 0x7fffffff; + break; + case EntityPropType.Angle: + min = -2 * Math.PI; + max = 2 * Math.PI; + break; + } + + const round_to = + prop.type === EntityPropType.F32 || prop.type === EntityPropType.Angle ? 3 : 1; + + const value_input = disposer.add( + new NumberInput(prop.value.val, { + min, + max, + round_to, + enabled: false, + }), + ); + + disposer.add_all(value_input.value.bind_to(prop.value)); + + const element = tr(th(`${prop.name}:`), td(value_input.element)); + + return [element, disposer]; + } } diff --git a/src/quest_editor/model/QuestEntityModel.ts b/src/quest_editor/model/QuestEntityModel.ts index 8e7fc8a4..2b040282 100644 --- a/src/quest_editor/model/QuestEntityModel.ts +++ b/src/quest_editor/model/QuestEntityModel.ts @@ -1,6 +1,11 @@ -import { EntityType, QuestEntity } from "../../core/data_formats/parsing/quest/Quest"; +import { + entity_data, + EntityType, + get_entity_type, + QuestEntity, +} from "../../core/data_formats/parsing/quest/Quest"; import { Property } from "../../core/observable/property/Property"; -import { property } from "../../core/observable"; +import { list_property, property } from "../../core/observable"; import { WritableProperty } from "../../core/observable/property/WritableProperty"; import { SectionModel } from "./SectionModel"; import { Euler, Quaternion, Vector3 } from "three"; @@ -8,6 +13,9 @@ import { floor_mod } from "../../core/math"; import { euler, euler_from_quat } from "./euler"; import { vec3_to_threejs } from "../../core/rendering/conversion"; import { Vec3 } from "../../core/data_formats/vector"; +import { WritableListProperty } from "../../core/observable/property/list/WritableListProperty"; +import { QuestEntityPropModel } from "./QuestEntityPropModel"; +import { ListProperty } from "../../core/observable/property/list/ListProperty"; // These quaternions are used as temporary variables to avoid memory allocation. const q1 = new Quaternion(); @@ -23,6 +31,7 @@ export abstract class QuestEntityModel< private readonly _world_position: WritableProperty; private readonly _rotation: WritableProperty; private readonly _world_rotation: WritableProperty; + private readonly _props: WritableListProperty; /** * Many modifications done to the underlying entity directly will not be reflected in this @@ -54,6 +63,8 @@ export abstract class QuestEntityModel< readonly world_rotation: Property; + readonly props: ListProperty; + protected constructor(entity: Entity) { this.entity = entity; @@ -78,6 +89,14 @@ export abstract class QuestEntityModel< this._world_rotation = property(rotation); this.world_rotation = this._world_rotation; + + this._props = list_property( + undefined, + ...entity_data(get_entity_type(entity)).properties.map( + p => new QuestEntityPropModel(entity, p), + ), + ); + this.props = this._props; } set_section(section: SectionModel): this { diff --git a/src/quest_editor/model/QuestEntityPropModel.ts b/src/quest_editor/model/QuestEntityPropModel.ts new file mode 100644 index 00000000..41275042 --- /dev/null +++ b/src/quest_editor/model/QuestEntityPropModel.ts @@ -0,0 +1,36 @@ +import { WritableProperty } from "../../core/observable/property/WritableProperty"; +import { Property } from "../../core/observable/property/Property"; +import { EntityProp, EntityPropType } from "../../core/data_formats/parsing/quest/properties"; +import { property } from "../../core/observable"; +import { + get_entity_prop_value, + QuestEntity, + set_entity_prop_value, +} from "../../core/data_formats/parsing/quest/Quest"; + +export class QuestEntityPropModel { + private readonly entity: QuestEntity; + private readonly prop: EntityProp; + private readonly _value: WritableProperty; + + readonly name: string; + readonly type: EntityPropType; + readonly value: Property; + + constructor(quest_entity: QuestEntity, entity_prop: EntityProp) { + this.entity = quest_entity; + this.prop = entity_prop; + + this.name = entity_prop.name; + + this.type = entity_prop.type; + + this._value = property(get_entity_prop_value(quest_entity, entity_prop)); + this.value = this._value; + } + + set_value(value: number): void { + set_entity_prop_value(this.entity, this.prop, value); + this._value.val = value; + } +}