mirror of
https://github.com/zeldaret/tp
synced 2026-07-11 15:28:38 -04:00
c_dylink
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
#ifndef D_CC_D_CC_UTY_H
|
||||
#define D_CC_D_CC_UTY_H
|
||||
|
||||
#include "d/com/d_com_inf_game.h"
|
||||
#include "dolphin/types.h"
|
||||
#include "f_op/f_op_actor_mng.h"
|
||||
#include "d/com/d_com_inf_game.h"
|
||||
|
||||
struct dCcU_AtInfo {
|
||||
/* 0x00 */ cCcD_Obj* mpCollider;
|
||||
|
||||
@@ -555,8 +555,6 @@ extern GXColor g_blackColor;
|
||||
extern GXColor g_clearColor;
|
||||
extern GXColor g_whiteColor;
|
||||
|
||||
typedef int (**request_of_phase_process_fn)(void*);
|
||||
|
||||
void dComIfGp_setItemLifeCount(float, u8);
|
||||
void dComIfGp_setItemRupeeCount(long);
|
||||
int dComIfGs_isItemFirstBit(u8);
|
||||
|
||||
+12
-12
@@ -43,15 +43,7 @@ struct stage_stag_info_class {
|
||||
/* 0x20 */ u8 field_0x20[8];
|
||||
/* 0x28 */ u8 mMsgGroup;
|
||||
/* 0x2A */ u16 mStageTitleNo;
|
||||
}; // Size: Unknown
|
||||
|
||||
inline s16 dStage_stagInfo_GetUpButton(stage_stag_info_class* p_info) {
|
||||
return p_info->field_0x0a & 7;
|
||||
}
|
||||
|
||||
inline u32 dStage_stagInfo_GetArg0(stage_stag_info_class* p_info) {
|
||||
return (p_info->field_0x0c >> 0x14) & 0xFF;
|
||||
}
|
||||
}; // Size: 0x2C
|
||||
|
||||
struct stage_scls_info_class {
|
||||
/* 0x0 */ char mStage[8];
|
||||
@@ -701,11 +693,11 @@ inline u8 dStage_roomRead_dt_c_GetLoadRoomIndex(u8 param_0) {
|
||||
}
|
||||
|
||||
inline u32 dStage_stagInfo_GetSTType(stage_stag_info_class* pstag) {
|
||||
return pstag->field_0x0c >> 0x10 & 7;
|
||||
return (pstag->field_0x0c >> 16) & 7;
|
||||
}
|
||||
|
||||
inline u32 dStage_stagInfo_GetEscapeWarp(stage_stag_info_class* pstag) {
|
||||
return pstag->field_0x10 >> 0x18;
|
||||
inline int dStage_stagInfo_GetEscapeWarp(stage_stag_info_class* pstag) {
|
||||
return (pstag->field_0x10 >> 24);
|
||||
}
|
||||
|
||||
inline u32 dStage_stagInfo_GetMiniMap(stage_stag_info_class* pstag) {
|
||||
@@ -716,6 +708,14 @@ inline u8 dStage_stagInfo_GetParticleNo(stage_stag_info_class* p_info) {
|
||||
return (p_info->field_0x0a >> 0x3) & 0xFF;
|
||||
}
|
||||
|
||||
inline s16 dStage_stagInfo_GetUpButton(stage_stag_info_class* p_info) {
|
||||
return p_info->field_0x0a & 7;
|
||||
}
|
||||
|
||||
inline u32 dStage_stagInfo_GetArg0(stage_stag_info_class* p_info) {
|
||||
return (p_info->field_0x0c >> 0x14) & 0xFF;
|
||||
}
|
||||
|
||||
inline s8 dStage_sclsInfo_getSceneLayer(stage_scls_info_class* p_info) {
|
||||
return p_info->field_0xb & 0xF;
|
||||
}
|
||||
|
||||
@@ -1,6 +1,60 @@
|
||||
#ifndef D_D_TRESURE_H
|
||||
#define D_D_TRESURE_H
|
||||
|
||||
#include "dolphin/mtx/mtxvec.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
class dTres_c {
|
||||
public:
|
||||
struct data_s {
|
||||
/* 0x00 */ u8 mNo;
|
||||
/* 0x01 */ s8 mRoomNo;
|
||||
/* 0x02 */ u8 mStatus;
|
||||
/* 0x03 */ u8 mArg1;
|
||||
/* 0x04 */ Vec mPos;
|
||||
/* 0x10 */ u8 mSwBit;
|
||||
/* 0x11 */ u8 mType;
|
||||
/* 0x12 */ u8 mArg2;
|
||||
/* 0x13 */ u8 mAngleY;
|
||||
};
|
||||
|
||||
class typeGroupData_c {
|
||||
public:
|
||||
data_s* getDataPointer() { return &mData; }
|
||||
void setNextDataPointer(typeGroupData_c* data) { mNextData = data; }
|
||||
void setTypeGroupNo(u8 no) { mTypeGroupNo = no; }
|
||||
|
||||
/* 0x00 */ data_s mData;
|
||||
/* 0x14 */ typeGroupData_c* mNextData;
|
||||
/* 0x18 */ u8 mTypeGroupNo;
|
||||
}; // Size: 0x1C
|
||||
|
||||
struct list_class {
|
||||
/* 0x0 */ int field_0x0;
|
||||
/* 0x4 */ typeGroupData_c* field_0x4;
|
||||
/* 0x8 */ u8 field_0x8;
|
||||
};
|
||||
|
||||
/* 8009BBD8 */ static int createWork();
|
||||
/* 8009BC18 */ static void create();
|
||||
/* 8009BC60 */ void remove();
|
||||
/* 8009BC6C */ static void reset();
|
||||
/* 8009BCB4 */ static void addData(dTres_c::list_class*, s8);
|
||||
/* 8009BE28 */ static void checkTreasureBox(dTres_c::data_s*);
|
||||
/* 8009C168 */ void onStatus(u8, int, int);
|
||||
/* 8009C1F0 */ void offStatus(u8, int, int);
|
||||
/* 8009C27C */ void getBossIconFloorNo(int*);
|
||||
/* 8009C360 */ void getFirstData(u8);
|
||||
/* 8009C39C */ void getNextData(dTres_c::typeGroupData_c*);
|
||||
/* 8009C3B4 */ void getNextData(dTres_c::typeGroupData_c const*);
|
||||
/* 8009C3CC */ void setPosition(int, u8, Vec const*, int);
|
||||
/* 8009C49C */ void getTypeGroupNoToType(u8);
|
||||
/* 8009C4B0 */ static u8 getTypeToTypeGroupNo(u8);
|
||||
|
||||
static u8 const typeToTypeGroup[34];
|
||||
static list_class mTypeGroupListAll[17];
|
||||
static typeGroupData_c* mTypeGroupData;
|
||||
static u16 mNum;
|
||||
};
|
||||
|
||||
#endif /* D_D_TRESURE_H */
|
||||
|
||||
@@ -2,25 +2,10 @@
|
||||
#define D_MAP_D_MAP_PATH_DMAP_H
|
||||
|
||||
#include "d/d_stage.h"
|
||||
#include "d/d_tresure.h"
|
||||
#include "d/map/d_map_path.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
struct dTres_c {
|
||||
struct data_s {};
|
||||
|
||||
struct typeGroupData_c {};
|
||||
|
||||
struct list_class {};
|
||||
|
||||
/* 8009BCB4 */ void addData(dTres_c::list_class*, s8);
|
||||
/* 8009C360 */ void getFirstData(u8);
|
||||
/* 8009C3B4 */ void getNextData(dTres_c::typeGroupData_c const*);
|
||||
/* 8009C39C */ void getNextData(dTres_c::typeGroupData_c*);
|
||||
/* 8009C4B0 */ void getTypeToTypeGroupNo(u8);
|
||||
|
||||
static u8 mTypeGroupListAll[204 + 4 /* padding */];
|
||||
};
|
||||
|
||||
class dMpath_c {
|
||||
public:
|
||||
/* 8003F758 */ static u8 isExistMapPathData();
|
||||
|
||||
Reference in New Issue
Block a user