Pseudocode decompialtion improvements and docs

This commit is contained in:
MaddoScientisto 2026-03-26 22:10:48 +01:00
commit 589bfc31ef
1898 changed files with 60634 additions and 6597 deletions

View file

@ -2,7 +2,7 @@ function dooregg_hatch() /* entry=350 class_id=0x090A slot=0x07 */
{
set_info(0x0210, *(arg_06));
process_exclude();
spawn class_090A_slot_20(pid, arg_06);
spawn DOOREGG.slot_20(pid, arg_06);
suspend;
return;
}

View file

@ -2,7 +2,7 @@ function dooregg_unhatch() /* entry=350 class_id=0x090A slot=0x15 */
{
set_info(0x0239, *(arg_06));
process_exclude();
spawn class_090A_slot_21(pid, arg_06);
spawn DOOREGG.slot_21(pid, arg_06);
suspend;
return;
}

View file

@ -5,14 +5,10 @@ function dooregg_slot_20() /* entry=350 class_id=0x090A slot=0x20 */
door; /* [BP-02h] type=0x24 */
set_info(0x0001, *(arg_06));
/* loopscr value_u8=0x24 */
/* loopscr value_u8=0x3D */
/* loopscr value_u8=0x3A */
/* loopscr value_u8=0x25 */
/* loop current_var=0xFE string_bytes=0x6 loop_type=0x2 */
/* loop_selector door in nearby_items(family=1, origin=arg_06) */
while (!condition) {
if (Item.getQLo(door) == Egg.getEggId(arg_06)) {
spawn class_0A06_slot_21(1, door);
spawn DOOR.slot_21(1, door);
}
/* loopnext */
}

View file

@ -5,14 +5,10 @@ function dooregg_slot_21() /* entry=350 class_id=0x090A slot=0x21 */
door; /* [BP-02h] type=0x24 */
set_info(0x0001, *(arg_06));
/* loopscr value_u8=0x24 */
/* loopscr value_u8=0x3D */
/* loopscr value_u8=0x3A */
/* loopscr value_u8=0x25 */
/* loop current_var=0xFE string_bytes=0x6 loop_type=0x2 */
/* loop_selector door in nearby_items(family=1, origin=arg_06) */
while (!condition) {
if (Item.getQLo(door) == Egg.getEggId(arg_06)) {
spawn class_0A06_slot_21(2, door);
spawn DOOR.slot_21(2, door);
}
/* loopnext */
}