general cleanup, d_menu_quit / d_a_obj_testcube mostly done, d_msg_scrn_explain debug (#3065)

* typedef for cPhs_Step

* make sdk includes consistent

* d_menu_quit / d_msg_scrn_explain debug

* d_a_obj_testcube mostly done

* d_debug_pad mostly done

* jstudio tool library headers

* some JStudioCameraEditor headers

* d_jcam_editor mostly done

* try fixing some shield regressions

* d_bg_parts mostly done

* fix merge errors

* debug fix
This commit is contained in:
TakaRikka
2026-01-24 23:36:23 -08:00
committed by GitHub
parent 6f73e18bd2
commit c9e2a73dda
612 changed files with 4052 additions and 1141 deletions
@@ -1,7 +1,7 @@
#ifndef C_API_CONTROLLER_PAD_
#define C_API_CONTROLLER_PAD_
#include "dolphin/types.h"
#include <dolphin/types.h>
struct interface_of_controller_pad {
/* 0x00 */ f32 mMainStickPosX;
@@ -35,4 +35,4 @@ struct interface_of_controller_pad {
void cAPICPad_recalibrate(void);
u32 cAPICPad_ANY_BUTTON(u32 param_0);
#endif
#endif
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef C_BG_S_CHK_H
#define C_BG_S_CHK_H
#include "dolphin/mtx.h"
#include <dolphin/mtx.h>
#include "f_pc/f_pc_base.h"
#include "SSystem/SComponent/c_bg_s_grp_pass_chk.h"
#include "SSystem/SComponent/c_bg_s_poly_pass_chk.h"
@@ -1,7 +1,7 @@
#ifndef C_BG_S_POLY_INFO_H
#define C_BG_S_POLY_INFO_H
#include "dolphin/types.h"
#include <dolphin/types.h>
#include "f_pc/f_pc_manager.h"
class cBgS_PolyInfo {
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef C_BG_W_H
#define C_BG_W_H
#include "dolphin/types.h"
#include <dolphin/types.h>
class cBgW_BgId {
private:
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef C_COUNTER_H
#define C_COUNTER_H
#include "dolphin/types.h"
#include <dolphin/types.h>
struct counter_class {
u32 mCounter0;
+1 -1
View File
@@ -2,7 +2,7 @@
#define C_LIB_H_
#include "SSystem/SComponent/c_xyz.h"
#include "dolphin/mtx.h"
#include <dolphin/mtx.h>
#include "SSystem/SComponent/c_math.h"
inline bool cLib_IsZero(f32 value) {
+1 -1
View File
@@ -2,7 +2,7 @@
#define C_M3D_H_
#include <cmath>
#include "dolphin/mtx.h"
#include <dolphin/mtx.h>
class cM3dGAab;
class cM3dGCps;
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef C_M3D_G_CIR_H
#define C_M3D_G_CIR_H
#include "dolphin/types.h"
#include <dolphin/types.h>
class cM2dGCir {
public:
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef C_MALLOC_H
#define C_MALLOC_H
#include "dolphin/types.h"
#include <dolphin/types.h>
class JKRHeap;
+4 -2
View File
@@ -1,11 +1,13 @@
#ifndef C_PHASE_H
#define C_PHASE_H
#include "dolphin/types.h"
#include <dolphin/types.h>
typedef int (*cPhs__Handler)(void*);
enum cPhs__Step {
typedef int cPhs_Step;
enum {
/* 0x0 */ cPhs_INIT_e,
/* 0x1 */ cPhs_LOADING_e,
/* 0x2 */ cPhs_NEXT_e,
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef C_REQUEST_H
#define C_REQUEST_H
#include "dolphin/types.h"
#include <dolphin/types.h>
struct request_base_class {
u8 flag0 : 1;
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef C_SXYZ_H
#define C_SXYZ_H
#include "dolphin/mtx.h"
#include <dolphin/mtx.h>
struct SVec {
s16 x, y, z;
+1 -1
View File
@@ -2,7 +2,7 @@
#define C_TAG_H
#include "SSystem/SComponent/c_node.h"
#include "dolphin/types.h"
#include <dolphin/types.h>
typedef struct node_list_class node_list_class;
typedef struct node_lists_tree_class node_lists_tree_class;
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef C_XYZ_H
#define C_XYZ_H
#include "dolphin/mtx.h"
#include <dolphin/mtx.h>
#include <cmath>
struct cXyz : Vec {