summaryrefslogtreecommitdiff
path: root/include/d
diff options
context:
space:
mode:
authorJcw87 <Jcw87@users.noreply.github.com>2026-02-11 00:05:16 -0800
committerGitHub <noreply@github.com>2026-02-11 00:05:16 -0800
commitd8a4157b9f8de4054defe551e07ffc7a7aaae6e2 (patch)
tree6bb0763f121c6c34601c8e9e4e4592aad0d973f8 /include/d
parenta772c05f4dc6a724c5a4c3f646ca44110465b788 (diff)
d_jnt_col debug (#3088)
Diffstat (limited to 'include/d')
-rw-r--r--include/d/d_jnt_col.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/include/d/d_jnt_col.h b/include/d/d_jnt_col.h
index f8107f9440..763b41db52 100644
--- a/include/d/d_jnt_col.h
+++ b/include/d/d_jnt_col.h
@@ -25,6 +25,7 @@ public:
int getArrowOffsetPosAndAngle(cXyz const*, csXyz const*, cXyz*, cXyz*) const;
int getHitmarkPosAndAngle(cXyz const*, csXyz const*, cXyz*, csXyz*, int) const;
void setArrowPosAndAngle(cXyz const*, cXyz const*, int, cXyz*, csXyz*);
+ void debugDraw();
BOOL checkPassNum(int bit) { return field_0xc & (1 << bit); }
void onPassNum(int num) { field_0xc |= (1 << num); }
@@ -40,4 +41,26 @@ public:
/* 0x0C */ int field_0xc;
};
+extern dJntColData_c l_debugColData[];
+
+class dJntCol_HIO_c : public JORReflexible {
+public:
+ dJntCol_HIO_c() {
+ field_0x5 = 0;
+ field_0xc = l_debugColData;
+ }
+ virtual ~dJntCol_HIO_c() {}
+ virtual void listenPropertyEvent(const JORPropertyEvent*);
+ virtual void genMessage(JORMContext*);
+
+ void update();
+ void fileOut();
+
+ /* 0x04 */ s8 field_0x4;
+ /* 0x05 */ u8 field_0x5;
+ /* 0x06 */ u8 field_0x6[0xC - 0x6];
+ /* 0x0C */ dJntColData_c* field_0xc;
+
+};
+
#endif /* D_D_JNT_COL_H */