sm64

A Super Mario 64 decompilation
Log | Files | Refs | README | LICENSE

gd_main.h (3563B)


      1 #ifndef GD_MAIN_H
      2 #define GD_MAIN_H
      3 
      4 #include <PR/ultratypes.h>
      5 
      6 // In various files of the Goddard subsystem, there are miscellaneous
      7 // unused rodata strings. These are likely byproducts of a printf macro
      8 // that was stubbed out as "#define printf", letting printf calls expand
      9 // to no-op comma expressions. (IDO doesn't support variadic macros, so
     10 // "#define printf(...) /* nothing */" wasn't an option.)
     11 // This macro is separate from the gd_printf function; one probably
     12 // forwarded to the other, but it is hard to tell in which direction.
     13 #ifdef __GNUC__
     14 #define printf(...)                                       \
     15     _Pragma ("GCC diagnostic push")                       \
     16     _Pragma ("GCC diagnostic ignored \"-Wunused-value\"") \
     17     (__VA_ARGS__);                                        \
     18     _Pragma ("GCC diagnostic pop")
     19 #else
     20 #define printf
     21 #endif
     22 
     23 // structs
     24 struct GdControl { // gGdCtrl
     25     /* 0x00 */ s32 unk00;  // set but never used
     26     /* 0x04 */ u8  filler1[4];
     27     /* 0x08 */ s32 dleft; // Dpad-left (mask)
     28     /* 0x0C */ s32 dright; // Dpad-right (mask)
     29     /* 0x10 */ s32 dup; // Dpad-up (mask)
     30     /* 0x14 */ s32 ddown; // Dpad-down (mask)
     31     /* 0x18 */ s32 cleft; // bool C-left
     32     /* 0x1C */ s32 cright; // bool C-right
     33     /* 0x20 */ s32 cup; // bool C-up
     34     /* 0x24 */ s32 cdown; // bool C-down
     35     /* 0x28 */ void * unk28;     // null-checked ptr? symbol not deref-ed in extant code?
     36     /* 0x2C */ void * unk2C;     // some sort of old texture ptr? symbol not deref-ed in extant code?
     37     /* 0x30 */ void * unk30;     // null-checked ptr? symbol not deref-ed in extant code?
     38     /* 0x34 */ s32 btnA; // bool A button
     39     /* 0x38 */ s32 btnB; // bool B button
     40     /* 0x3C */ u8  filler2[8];
     41     /* 0x44 */ s32 trgL; // bool L trigger pressed
     42     /* 0x48 */ s32 trgR; // bool R trigger pressed
     43     /* 0x4C */ s32 unk4C;
     44     /* 0x50 */ s32 unk50;
     45     /* 0x54 */ s32 newStartPress; // toggle bit? start pressed?
     46     /* 0x58 */ u8  filler3[36];
     47     /* 0x7C */ f32 stickXf;
     48     /* 0x80 */ f32 stickYf;
     49     /* 0x84 */ u8  filler4[4];
     50     /* 0x88 */ f32 unk88;  // set but never used
     51     /* 0x8C */ u8  filler5[20];
     52     /* 0xA0 */ f32 unkA0;  // set but never used
     53     /* 0xA4 */ u8  filler6[8];
     54     /* 0xAC */ f32 unkAC;
     55     /* 0xB0 */ u8  filler7[8];
     56     /* 0xB8 */ s32 dragStartX; // cursor x position when there was a new (A) press?
     57     /* 0xBC */ s32 dragStartY; // cursor y position when there was a new (A) press?
     58     /* 0xC0 */ s32 stickDeltaX;
     59     /* 0xC4 */ s32 stickDeltaY;
     60     /* 0xC8 */ s32 stickX;
     61     /* 0xCC */ s32 stickY;
     62     /* 0xD0 */ s32 csrX; // bounded by screen view
     63     /* 0xD4 */ s32 csrY; // bounded by screen view
     64     /* 0xD8 */ /* hand/cursor state bitfield? */
     65         /* b80 */ u8 dragging : 1;  // bool (A) pressed
     66         /* b40 */ u8 unkD8b40 : 1; // set to FALSE and unused
     67         /* b20 */ u8 unkD8b20 : 1; // set to FALSE and unused
     68         /* b10 */ u8 startedDragging : 1;  // bool new (A) press
     69         /* b08 */ u8 unkD8b08 : 1;
     70         /* b04 */ u8 unkD8b04 : 1;
     71         /* b02 */ u8 AbtnPressWait : 1;  // bool 10 frames between (A) presses (cursor cool down?)
     72     /* 0xDC */ u32 dragStartFrame; // first frame of new a press
     73     /* 0xE0 */ u8  filler8[8];
     74     /* 0xE8 */ u32 currFrame; // frame count?
     75     /* 0xEC */ u8  filler9[4];
     76     /* 0xF0 */ struct GdControl *prevFrame; // previous frame data
     77 };
     78 
     79 // data
     80 extern s32 gGdMoveScene;
     81 extern f32 D_801A8058;
     82 extern s32 gGdUseVtxNormal;
     83 
     84 // bss
     85 extern struct GdControl gGdCtrl;
     86 extern struct GdControl gGdCtrlPrev;
     87 
     88 #endif // GD_MAIN_H