mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
d24b09c2d9
* setup TU * JASResArcLoader OK * d_a_obj_stoneMark work * some funcs in d_a_obj_stoneMark * many changes * quat, d_a_obj_stone, d_a_alink, fix python script, tidy makefile * d_file_select functions + pr cleanup * match many dfile_select_c methods * m_Do_main OK * selFileWakuAnm & bookIconAnm * selCopyFileWakuAnm & copyBookIconAnm * dataDelEffAnm & dataCopyEffAnm * selectDataBaseMoveAnmInitSet & selectDataBaseMoveAnm * dataSelectIn * _move & dataSelectInit * match a few more * comment * J2DPicture::drawTexCoord * draw_function * dScnPly_Create + fix typing on request_of_phase_process_fn * checkpoint * checkpoint * checkpoint * checkpoint 2 (fixed) * dFile_select_c::dataSelectAnmSet * dFile_select_c::selectDataOpenMove * dFile_select_c::copySelMoveAnmInitSet * fix brightcheck issues * rm comments, fix status update * small mod to pr template
35 lines
1.0 KiB
C
35 lines
1.0 KiB
C
#ifndef C_PHASE_H
|
|
#define C_PHASE_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
typedef int (*cPhs__Handler)(void*);
|
|
|
|
enum cPhs__Step {
|
|
/* 0x0 */ cPhs_ZERO_e,
|
|
/* 0x1 */ cPhs_ONE_e, // next?
|
|
/* 0x2 */ cPhs_TWO_e, // ready?
|
|
/* 0x3 */ cPhs_UNK3_e,
|
|
/* 0x4 */ cPhs_COMPLEATE_e,
|
|
/* 0x5 */ cPhs_ERROR_e,
|
|
/* 0x6 */ cPhs_NEXT_e,
|
|
};
|
|
|
|
typedef struct request_of_phase_process_class {
|
|
cPhs__Handler* mpHandlerTable;
|
|
int id;
|
|
} request_of_phase_process_class;
|
|
|
|
typedef int (*request_of_phase_process_fn)(void*);
|
|
|
|
void cPhs_Reset(request_of_phase_process_class* pPhase);
|
|
void cPhs_Set(request_of_phase_process_class* pPhase, cPhs__Handler* pHandlerTable);
|
|
void cPhs_UnCompleate(request_of_phase_process_class* pPhase);
|
|
int cPhs_Compleate(request_of_phase_process_class* pPhase);
|
|
int cPhs_Next(request_of_phase_process_class* pPhase);
|
|
int cPhs_Do(request_of_phase_process_class* pPhase, void* pUserData);
|
|
int cPhs_Handler(request_of_phase_process_class* pPhase, cPhs__Handler* pHandlerTable,
|
|
void* pUserData);
|
|
|
|
#endif /* C_PHASE_H */
|