mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
0b0fdd1f60
* Consolidate fopAcM_STATUS into fopAc_Status_e * Add _e suffix to fopAcStts enums * Prepare for profile enumeration * Correct typo in scene_process_profile_definition * Manually handle g_profile_Obj_DamCps (inline preprocessing) * Correct g_profile_TAG_LV5SOUP procname to enum * Create d_priority.h * Update process profile definitions * Moved inline comments to the left * Add missing fopAcStts enums * Add d_priority.h include in f_pc_leaf.h * Manually update d_a_obj_damCps profile * Replace fopAcStts enums replacing and anticipatory profile size correction * Changed profile size from literal to sizeof() in anticipation of PR #3116 * Provided putative names to staff-related status enums * Replaced appropriate literals with fopAcStts enums * Fix borked merge * Rename item number enums and move to d_item_data.h * Rename process profile name & draw priority enums * Move process profile name & draw priority enums to appropriate files * Moved fpcNm_ enums from d/d_procname.h to f_pc/f_pc_name.h * Moved fpcDwPi_ enums from d/d_priority.h to f_pc/f_pc_draw_priority.h * ACTUALLY (whoops) stage merge * Correct item mistranslation Co-authored-by: LagoLunatic <LagoLunatic@users.noreply.github.com> --------- Co-authored-by: LagoLunatic <LagoLunatic@users.noreply.github.com>
30 lines
717 B
C++
30 lines
717 B
C++
#ifndef F_F_OP_SCENE_H_
|
|
#define F_F_OP_SCENE_H_
|
|
|
|
#include "f_op/f_op_scene_tag.h"
|
|
#include "f_pc/f_pc_leaf.h"
|
|
|
|
struct request_of_phase_process_class;
|
|
class mDoDvdThd_command_c;
|
|
|
|
struct scene_method_class {
|
|
/* 0x00 */ leafdraw_method_class base;
|
|
};
|
|
|
|
typedef struct scene_process_profile_definition {
|
|
/* 0x00 */ node_process_profile_definition base;
|
|
/* 0x20 */ scene_method_class* submethod; // Subclass methods
|
|
/* 0x24 */ u32 unk_0x24; // padding?
|
|
} scene_process_profile_definition;
|
|
|
|
class scene_class {
|
|
public:
|
|
/* 0x000 */ process_node_class base;
|
|
/* 0x1AC */ scene_method_class* submethod;
|
|
/* 0x1B0 */ scene_tag_class scene_tag;
|
|
};
|
|
|
|
extern leafdraw_method_class g_fopScn_Method;
|
|
|
|
#endif
|