1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2024-12-02 15:55:59 +00:00
oot/src/code/z_debug.c

311 lines
9.5 KiB
C
Raw Normal View History

#include "global.h"
2020-03-17 04:31:30 +00:00
2020-03-22 21:19:43 +00:00
typedef struct {
2020-03-18 14:27:49 +00:00
u8 x;
u8 y;
u8 colorIndex;
char text[21];
} DbCameraTextBufferEntry; // size = 0x18
2020-03-18 14:27:49 +00:00
2020-03-22 21:19:43 +00:00
typedef struct {
u16 hold;
u16 press;
} InputCombo; // size = 0x4
2020-03-18 14:27:49 +00:00
RegEditor* gRegEditor;
2020-03-18 14:27:49 +00:00
DbCameraTextBufferEntry sDbCameraTextBuffer[22];
s16 sDbCameraTextEntryCount = 0;
Color_RGBA8 sDbCameraTextColors[] = {
{ 255, 255, 32, 192 }, // DBCAMERA_TEXT_YELLOW
{ 255, 150, 128, 192 }, // DBCAMERA_TEXT_PEACH
{ 128, 96, 0, 64 }, // DBCAMERA_TEXT_BROWN
{ 192, 128, 16, 128 }, // DBCAMERA_TEXT_ORANGE
{ 255, 192, 32, 128 }, // DBCAMERA_TEXT_GOLD
{ 230, 230, 220, 64 }, // DBCAMERA_TEXT_WHITE
{ 128, 150, 255, 128 }, // DBCAMERA_TEXT_BLUE
{ 128, 255, 32, 128 }, // DBCAMERA_TEXT_GREEN
2020-03-18 16:31:36 +00:00
};
InputCombo sRegGroupInputCombos[REG_GROUPS] = {
{ BTN_L, BTN_CUP }, // REG
{ BTN_L, BTN_CLEFT }, // SREG
{ BTN_L, BTN_CDOWN }, // OREG
{ BTN_L, BTN_A }, // PREG
{ BTN_R, BTN_CDOWN }, // QREG
{ BTN_L, BTN_CRIGHT }, // MREG
{ BTN_L, BTN_R }, // YREG
{ BTN_L, BTN_DLEFT }, // DREG
{ BTN_L, BTN_DRIGHT }, // UREG
{ BTN_L, BTN_DUP }, // IREG
{ BTN_L, BTN_B }, // ZREG
{ BTN_L, BTN_Z }, // CREG
{ BTN_L, BTN_DDOWN }, // NREG
{ BTN_R, BTN_A }, // KREG
{ BTN_R, BTN_B }, // XREG
{ BTN_R, BTN_Z }, // cREG
{ BTN_R, BTN_L }, // sREG
{ BTN_R, BTN_CUP }, // iREG
{ BTN_R, BTN_CRIGHT }, // WREG
{ BTN_R, BTN_DLEFT }, // AREG
{ BTN_R, BTN_CLEFT }, // VREG
{ BTN_R, BTN_START }, // HREG
{ BTN_L, BTN_START }, // GREG
{ BTN_R, BTN_DRIGHT }, // mREG
{ BTN_R, BTN_DUP }, // nREG
{ BTN_START, BTN_R }, // BREG
{ BTN_START, BTN_A }, // dREG
{ BTN_START, BTN_B }, // kREG
{ BTN_START, BTN_CRIGHT }, // bREG
2020-03-18 16:31:36 +00:00
};
char sRegGroupChars[REG_GROUPS] = {
' ', // REG
'S', // SREG
'O', // OREG
'P', // PREG
'Q', // QREG
'M', // MREG
'Y', // YREG
'D', // DREG
'U', // UREG
'I', // IREG
'Z', // ZREG
'C', // CREG
'N', // NREG
'K', // KREG
'X', // XREG
'c', // cREG
's', // sREG
'i', // iREG
'W', // WREG
'A', // AREG
'V', // VREG
'H', // HREG
'G', // GREG
'm', // mREG
'n', // nREG
'B', // BREG
'd', // dREG
'k', // kREG
'b', // bREG
};
2020-03-18 14:27:49 +00:00
void Regs_Init(void) {
2020-03-18 14:27:49 +00:00
s32 i;
gRegEditor = SystemArena_MallocDebug(sizeof(RegEditor), "../z_debug.c", 260);
gRegEditor->regPage = 0;
gRegEditor->regGroup = 0;
gRegEditor->regCur = 0;
gRegEditor->dPadInputPrev = 0;
gRegEditor->inputRepeatTimer = 0;
for (i = 0; i < ARRAY_COUNT(gRegEditor->data); i++) {
gRegEditor->data[i] = 0;
2020-03-18 14:27:49 +00:00
}
}
// Function is stubbed. Name is assumed by similarities in signature to `DbCamera_ScreenTextColored` and usage.
void DbCamera_ScreenText(u8 x, u8 y, const char* text) {
2020-03-17 04:31:30 +00:00
}
void DbCamera_ScreenTextColored(u8 x, u8 y, u8 colorIndex, const char* text) {
DbCameraTextBufferEntry* entry = &sDbCameraTextBuffer[sDbCameraTextEntryCount];
char* textDest;
s16 charCount;
if (sDbCameraTextEntryCount < ARRAY_COUNT(sDbCameraTextBuffer)) {
entry->x = x;
entry->y = y;
entry->colorIndex = colorIndex;
// Copy text into the entry, truncating if needed
charCount = 0;
textDest = entry->text;
while ((*textDest++ = *text++) != '\0') {
if (charCount++ > (ARRAY_COUNT(entry->text) - 1)) {
2020-03-23 00:38:25 +00:00
break;
}
2020-03-18 14:27:49 +00:00
}
*textDest = '\0';
2020-03-18 14:27:49 +00:00
sDbCameraTextEntryCount++;
2020-03-18 14:27:49 +00:00
}
}
void DbCamera_DrawScreenText(GfxPrint* printer) {
2020-03-18 14:27:49 +00:00
s32 i;
Color_RGBA8* color;
DbCameraTextBufferEntry* entry;
for (i = 0; i < sDbCameraTextEntryCount; i++) {
entry = &sDbCameraTextBuffer[i];
color = &sDbCameraTextColors[entry->colorIndex];
GfxPrint_SetColor(printer, color->r, color->g, color->b, color->a);
GfxPrint_SetPos(printer, entry->x, entry->y);
GfxPrint_Printf(printer, "%s", entry->text);
2020-03-18 14:27:49 +00:00
}
}
/**
* Updates the state of the Reg Editor according to user input.
* Also contains a controller rumble test that can be interfaced with via related REGs.
*/
void Regs_UpdateEditor(Input* input) {
s32 dPadInputCur;
s32 pageDataStart = ((gRegEditor->regGroup * REG_PAGES) + gRegEditor->regPage - 1) * REGS_PER_PAGE;
2020-03-18 14:27:49 +00:00
s32 increment;
s32 i;
2020-03-17 04:31:30 +00:00
dPadInputCur = input->cur.button & (BTN_DUP | BTN_DLEFT | BTN_DRIGHT | BTN_DDOWN);
if (CHECK_BTN_ALL(input->cur.button, BTN_L) || CHECK_BTN_ALL(input->cur.button, BTN_R) ||
CHECK_BTN_ALL(input->cur.button, BTN_START)) {
2020-03-22 21:19:43 +00:00
for (i = 0; i < REG_GROUPS; i++) {
if (CHECK_BTN_ALL(input->cur.button, sRegGroupInputCombos[i].hold) &&
CHECK_BTN_ALL(input->press.button, sRegGroupInputCombos[i].press)) {
2020-03-18 14:27:49 +00:00
break;
2020-03-22 21:19:43 +00:00
}
2020-03-18 14:27:49 +00:00
}
2020-03-17 04:31:30 +00:00
// If a combo corresponding to a reg group was found
2020-03-19 22:06:41 +00:00
if (i < REG_GROUPS) {
if (i == gRegEditor->regGroup) {
// Same reg group as current, advance page index
gRegEditor->regPage = (gRegEditor->regPage + 1) % (REG_PAGES + 1);
} else {
gRegEditor->regGroup = i; // Switch current reg group
gRegEditor->regPage = 0; // Disable reg editor
2020-03-18 14:27:49 +00:00
}
}
2020-03-22 21:19:43 +00:00
} else {
switch (gRegEditor->regPage) {
2020-03-20 00:10:32 +00:00
case 1:
case 2:
case 3:
case 4:
case 5:
case 6:
if (dPadInputCur == gRegEditor->dPadInputPrev) {
gRegEditor->inputRepeatTimer--;
if (gRegEditor->inputRepeatTimer < 0) {
gRegEditor->inputRepeatTimer = 1;
2020-03-22 21:19:43 +00:00
} else {
dPadInputCur ^= gRegEditor->dPadInputPrev;
2020-03-22 21:19:43 +00:00
}
} else {
gRegEditor->inputRepeatTimer = 16;
gRegEditor->dPadInputPrev = dPadInputCur;
2020-03-18 14:27:49 +00:00
}
2020-03-17 04:31:30 +00:00
increment =
CHECK_BTN_ANY(dPadInputCur, BTN_DRIGHT) ? (CHECK_BTN_ALL(input->cur.button, BTN_A | BTN_B) ? 1000
: CHECK_BTN_ALL(input->cur.button, BTN_A) ? 100
: CHECK_BTN_ALL(input->cur.button, BTN_B) ? 10
: 1)
: CHECK_BTN_ANY(dPadInputCur, BTN_DLEFT) ? (CHECK_BTN_ALL(input->cur.button, BTN_A | BTN_B) ? -1000
: CHECK_BTN_ALL(input->cur.button, BTN_A) ? -100
: CHECK_BTN_ALL(input->cur.button, BTN_B) ? -10
: -1)
: 0;
2020-03-22 21:19:43 +00:00
gRegEditor->data[gRegEditor->regCur + pageDataStart] += increment;
if (CHECK_BTN_ANY(dPadInputCur, BTN_DUP)) {
gRegEditor->regCur--;
if (gRegEditor->regCur < 0) {
gRegEditor->regCur = REGS_PER_PAGE - 1;
2020-03-22 21:19:43 +00:00
}
} else if (CHECK_BTN_ANY(dPadInputCur, BTN_DDOWN)) {
gRegEditor->regCur++;
if (gRegEditor->regCur >= REGS_PER_PAGE) {
gRegEditor->regCur = 0;
2020-03-22 21:19:43 +00:00
}
2020-03-18 14:27:49 +00:00
}
2020-03-22 21:19:43 +00:00
if (iREG(0)) {
iREG(0) = 0;
Rumble_Request(0.0f, iREG(1), iREG(2), iREG(3));
2020-03-18 14:27:49 +00:00
}
break;
default:
break;
2020-03-18 14:27:49 +00:00
}
}
}
void Regs_DrawEditor(GfxPrint* printer) {
2020-03-18 14:27:49 +00:00
s32 i;
s32 pageStart = (gRegEditor->regPage - 1) * REGS_PER_PAGE;
s32 pageDataStart = ((gRegEditor->regGroup * REG_PAGES) + gRegEditor->regPage - 1) * REGS_PER_PAGE;
s32 pad;
char regGroupName[3];
regGroupName[0] = 'R';
regGroupName[1] = sRegGroupChars[gRegEditor->regGroup];
regGroupName[2] = '\0';
2020-03-18 14:27:49 +00:00
GfxPrint_SetColor(printer, 0, 128, 128, 128);
2020-03-18 14:27:49 +00:00
for (i = 0; i < REGS_PER_PAGE; i++) {
if (i == gRegEditor->regCur) {
GfxPrint_SetColor(printer, 0, 255, 255, 255);
2020-03-18 14:27:49 +00:00
}
GfxPrint_SetPos(printer, 3, i + 5);
GfxPrint_Printf(printer, "%s%02d%6d", regGroupName, pageStart + i, gRegEditor->data[i + pageDataStart]);
if (i == gRegEditor->regCur) {
GfxPrint_SetColor(printer, 0, 128, 128, 128);
2020-03-18 14:27:49 +00:00
}
}
}
/**
* Draws the Reg Editor and Debug Camera text on screen
*/
void Debug_DrawText(GraphicsContext* gfxCtx) {
Gfx* gfx;
Gfx* opaStart;
GfxPrint printer;
s32 pad;
2020-03-18 14:27:49 +00:00
OPEN_DISPS(gfxCtx, "../z_debug.c", 628);
GfxPrint_Init(&printer);
opaStart = POLY_OPA_DISP;
gfx = Graph_GfxPlusOne(POLY_OPA_DISP);
gSPDisplayList(OVERLAY_DISP++, gfx);
GfxPrint_Open(&printer, gfx);
2020-03-18 14:27:49 +00:00
if ((OREG(0) == 1) || (OREG(0) == 8)) {
DbCamera_DrawScreenText(&printer);
2020-03-18 14:27:49 +00:00
}
if (gRegEditor->regPage != 0) {
Regs_DrawEditor(&printer);
2020-03-18 14:27:49 +00:00
}
sDbCameraTextEntryCount = 0;
gfx = GfxPrint_Close(&printer);
gSPEndDisplayList(gfx++);
Graph_BranchDlist(opaStart, gfx);
POLY_OPA_DISP = gfx;
if (1) {}
CLOSE_DISPS(gfxCtx, "../z_debug.c", 664);
GfxPrint_Destroy(&printer);
2020-03-18 14:27:49 +00:00
}