1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-23 05:45:03 +00:00
oot/src/code/z_debug.c

250 lines
7.8 KiB
C
Raw Normal View History

2020-03-17 04:31:30 +00:00
#include <ultra64.h>
#include <global.h>
2020-03-19 22:06:41 +00:00
#include <PR/os_cont.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 colorId;
char text[0x15];
} PrintTextBuffer;
2020-03-22 21:19:43 +00:00
typedef struct {
2020-03-18 14:27:49 +00:00
u16 push;
u16 held;
} InputCombo;
2020-03-22 21:19:43 +00:00
GameInfo* gGameInfo;
int D_8015FA94; // no known symbols
2020-03-18 16:31:36 +00:00
PrintTextBuffer D_8015FA98[0x16];
2020-03-18 14:27:49 +00:00
2020-03-22 21:19:43 +00:00
s16 D_8011E0B0 = 0; // PrintTextBuffer index
2020-03-18 16:31:36 +00:00
Color_RGBA8 printTextColors[] = {
2020-03-22 21:19:43 +00:00
{ 0xFF, 0xFF, 0x20, 0xC0 }, { 0xFF, 0x96, 0x80, 0xC0 }, { 0x80, 0x60, 0x00, 0x40 }, { 0xC0, 0x80, 0x10, 0x80 },
{ 0xFF, 0xC0, 0x20, 0x80 }, { 0xE6, 0xE6, 0xDC, 0x40 }, { 0x80, 0x96, 0xFF, 0x80 }, { 0x80, 0xFF, 0x20, 0x80 },
2020-03-18 16:31:36 +00:00
};
2020-03-19 22:06:41 +00:00
InputCombo inputCombos[REG_GROUPS] = {
2020-03-22 21:19:43 +00:00
{ L_TRIG, U_CBUTTONS }, { L_TRIG, L_CBUTTONS }, { L_TRIG, D_CBUTTONS }, { L_TRIG, A_BUTTON },
{ R_TRIG, D_CBUTTONS }, { L_TRIG, R_CBUTTONS }, { L_TRIG, R_TRIG }, { L_TRIG, L_JPAD },
{ L_TRIG, R_JPAD }, { L_TRIG, U_JPAD }, { L_TRIG, B_BUTTON }, { L_TRIG, Z_TRIG },
{ L_TRIG, D_JPAD }, { R_TRIG, A_BUTTON }, { R_TRIG, B_BUTTON }, { R_TRIG, Z_TRIG },
{ R_TRIG, L_TRIG }, { R_TRIG, U_CBUTTONS }, { R_TRIG, R_CBUTTONS }, { R_TRIG, L_JPAD },
{ R_TRIG, L_CBUTTONS }, { R_TRIG, START_BUTTON }, { L_TRIG, START_BUTTON }, { R_TRIG, R_JPAD },
{ R_TRIG, U_JPAD }, { START_BUTTON, R_TRIG }, { START_BUTTON, A_BUTTON }, { START_BUTTON, B_BUTTON },
2020-03-19 22:06:41 +00:00
{ START_BUTTON, R_CBUTTONS },
2020-03-18 16:31:36 +00:00
};
char regChar[] = " SOPQMYDUIZCNKXcsiWAVHGmnBdkb";
2020-03-18 14:27:49 +00:00
2020-03-22 21:19:43 +00:00
// initialize GameInfo
void func_800636C0() {
2020-03-18 14:27:49 +00:00
s32 i;
2020-03-19 22:06:41 +00:00
gGameInfo = (GameInfo*)SystemArena_MallocDebug(sizeof(GameInfo), "../z_debug.c", 260);
gGameInfo->regPage = 0;
gGameInfo->regGroup = 0;
gGameInfo->regCur = 0;
gGameInfo->dpadLast = 0;
2020-03-18 14:27:49 +00:00
gGameInfo->repeat = 0;
2020-03-22 21:19:43 +00:00
for (i = 0; i < ARRAY_COUNT(gGameInfo->data); i++) {
2020-03-18 14:27:49 +00:00
gGameInfo->data[i] = 0;
}
}
2020-03-22 21:19:43 +00:00
// Called when free movement is active.
// 8011D394 to enable camera debugger
void func_8006375C(s32 arg0, s32 arg1, float* d_80855320) {
2020-03-17 04:31:30 +00:00
}
2020-03-22 21:19:43 +00:00
// Copy Camera Debugger Text
void func_8006376C(u8 x, u8 y, u8 colorId, const char* text) {
2020-03-18 14:27:49 +00:00
PrintTextBuffer* buf;
2020-03-19 22:06:41 +00:00
char* bufText;
2020-03-23 00:38:25 +00:00
s16 i;
2020-03-18 14:27:49 +00:00
buf = &D_8015FA98[D_8011E0B0];
if (D_8011E0B0 < 0x16) {
buf->x = x;
buf->y = y;
buf->colorId = colorId;
i = 0;
2020-03-23 00:38:25 +00:00
bufText = buf->text;
while (*bufText++ = *text++) {
if (i++ > 0x14) {
break;
}
2020-03-18 14:27:49 +00:00
}
2020-03-19 22:06:41 +00:00
*bufText = '\0';
2020-03-18 14:27:49 +00:00
D_8011E0B0++;
}
}
2020-03-22 21:19:43 +00:00
// Draw Text
void func_80063828(GfxPrint* gfxPrint) {
2020-03-18 14:27:49 +00:00
s32 i;
Color_RGBA8* color;
PrintTextBuffer* buffer;
char* text;
i = 0;
2020-03-22 21:19:43 +00:00
if (D_8011E0B0 > 0) {
do {
2020-03-18 14:27:49 +00:00
buffer = &D_8015FA98[i];
text = buffer->text;
2020-03-18 16:31:36 +00:00
color = &printTextColors[buffer->colorId];
2020-03-18 14:27:49 +00:00
GfxPrint_SetColor(gfxPrint, color->r, color->g, color->b, color->a);
GfxPrint_SetPos(gfxPrint, buffer->x, buffer->y);
2020-03-22 21:19:43 +00:00
GfxPrint_Printf(gfxPrint, "%s", text);
2020-03-18 14:27:49 +00:00
i += 1;
} while (i < D_8011E0B0);
}
}
2020-03-22 21:19:43 +00:00
// Edit REG
2020-03-18 14:27:49 +00:00
void func_8006390C(Input* input) {
s32 dpad;
2020-03-19 22:06:41 +00:00
s32 regGroup;
2020-03-18 14:27:49 +00:00
s32 increment;
InputCombo* input_combo;
s32 i;
2020-03-17 04:31:30 +00:00
2020-03-20 00:10:32 +00:00
regGroup = (gGameInfo->regGroup * REG_PAGES + gGameInfo->regPage) * REG_PER_PAGE - REG_PER_PAGE;
2020-03-18 14:27:49 +00:00
dpad = input->raw.pad & 0xF00;
2020-03-22 21:19:43 +00:00
if (!~(input->raw.pad | ~L_TRIG) || !~(input->raw.pad | ~R_TRIG) || !~(input->raw.pad | ~START_BUTTON)) {
2020-03-18 16:31:36 +00:00
input_combo = inputCombos;
2020-03-22 21:19:43 +00:00
for (i = 0; i < REG_GROUPS; i++) {
if (~(~input_combo->push | input->raw.pad) || ~(~input_combo->held | input->padPressed)) {
2020-03-18 14:27:49 +00:00
input_combo++;
2020-03-22 21:19:43 +00:00
} else {
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
2020-03-19 22:06:41 +00:00
if (i < REG_GROUPS) {
if (i == gGameInfo->regGroup) {
2020-03-20 00:10:32 +00:00
gGameInfo->regPage = (gGameInfo->regPage + 1) % (REG_PAGES + 1);
2020-03-18 14:27:49 +00:00
return;
}
2020-03-19 22:06:41 +00:00
gGameInfo->regGroup = i;
gGameInfo->regPage = 0;
2020-03-18 14:27:49 +00:00
}
2020-03-22 21:19:43 +00:00
} else {
switch (gGameInfo->regPage - 1) {
2020-03-20 00:10:32 +00:00
case 0:
case 1:
case 2:
case 3:
case 4:
case 5:
2020-03-17 04:31:30 +00:00
2020-03-22 21:19:43 +00:00
if (dpad == gGameInfo->dpadLast) {
gGameInfo->repeat--;
if (gGameInfo->repeat < 0) {
gGameInfo->repeat = 1;
} else {
dpad ^= gGameInfo->dpadLast;
}
} else {
gGameInfo->repeat = 0x10;
gGameInfo->dpadLast = dpad;
2020-03-18 14:27:49 +00:00
}
2020-03-17 04:31:30 +00:00
2020-03-22 21:19:43 +00:00
increment = (dpad & R_JPAD)
? (!~(input->raw.pad | ~(A_BUTTON | B_BUTTON))
? 1000
: !~(input->raw.pad | ~A_BUTTON) ? 100 : !~(input->raw.pad | ~B_BUTTON) ? 10 : 1)
: (dpad & L_JPAD) ? (!~(input->raw.pad | ~(A_BUTTON | B_BUTTON))
? -1000
: !~(input->raw.pad | ~A_BUTTON)
? -100
: !~(input->raw.pad | ~B_BUTTON) ? -10 : -1)
: 0;
gGameInfo->data[gGameInfo->regCur + regGroup] += increment;
if (dpad & U_JPAD) {
gGameInfo->regCur--;
if (gGameInfo->regCur < 0) {
gGameInfo->regCur = REG_PER_PAGE - 1;
}
} else if (dpad & D_JPAD) {
gGameInfo->regCur++;
if (gGameInfo->regCur >= REG_PER_PAGE) {
gGameInfo->regCur = 0;
}
2020-03-18 14:27:49 +00:00
}
2020-03-22 21:19:43 +00:00
if (iREG(0)) {
iREG(0) = 0;
func_800AA000(0, iREG(1), iREG(2), iREG(3));
2020-03-18 14:27:49 +00:00
}
}
}
}
2020-03-22 21:19:43 +00:00
// Draw Memory Viewer
void func_80063C04(GfxPrint* gfxPrint) {
2020-03-18 14:27:49 +00:00
s32 i;
s32 page;
2020-03-19 22:06:41 +00:00
s32 regGroup;
2020-03-22 21:19:43 +00:00
s32 test; // removing affects stack
2020-03-19 22:06:41 +00:00
char name[3];
2020-03-18 14:27:49 +00:00
2020-03-20 00:10:32 +00:00
page = (gGameInfo->regPage * REG_PER_PAGE) - REG_PER_PAGE;
regGroup = (gGameInfo->regGroup * REG_PAGES + gGameInfo->regPage) * REG_PER_PAGE - REG_PER_PAGE;
2020-03-18 14:27:49 +00:00
2020-03-22 21:19:43 +00:00
// set up register name string
2020-03-19 22:06:41 +00:00
name[0] = 'R';
2020-03-22 21:19:43 +00:00
name[1] = regChar[gGameInfo->regGroup]; // r_group type char
2020-03-19 22:06:41 +00:00
name[2] = '\0';
2020-03-18 14:27:49 +00:00
GfxPrint_SetColor(gfxPrint, 0, 0x80, 0x80, 0x80);
2020-03-22 21:19:43 +00:00
for (i = 0; i != REG_PER_PAGE; i++) {
if (i == gGameInfo->regCur) {
2020-03-18 14:27:49 +00:00
GfxPrint_SetColor(gfxPrint, 0, 0xff, 0xff, 0xff);
}
GfxPrint_SetPos(gfxPrint, 3, i + 5);
2020-03-19 22:06:41 +00:00
GfxPrint_Printf(gfxPrint, "%s%02d%6d", &name, page + i, gGameInfo->data[i + regGroup]);
2020-03-22 21:19:43 +00:00
if (i == gGameInfo->regCur) {
2020-03-18 14:27:49 +00:00
GfxPrint_SetColor(gfxPrint, 0, 0x80, 0x80, 0x80);
}
}
}
void func_80063D7C(GraphicsContext* gfxCtx) {
Gfx* sp7C;
Gfx* sp78;
2020-03-19 22:06:41 +00:00
Gfx* tempRet;
2020-03-18 14:27:49 +00:00
void* unk2[6];
GfxPrint gfxPrint;
void* unk[2];
Gfx* dispRefs[4]; // stores state of GfxCtx next ptrs
2020-03-18 14:27:49 +00:00
Graph_OpenDisps(dispRefs, gfxCtx, "../z_debug.c", 628);
2020-03-18 14:27:49 +00:00
GfxPrint_Ctor(&gfxPrint);
sp78 = gfxCtx->polyOpa.p;
tempRet = Graph_GfxPlusOne(gfxCtx->polyOpa.p);
2020-03-19 22:06:41 +00:00
gSPDisplayList(gfxCtx->overlay.p++, tempRet);
GfxPrint_Open(&gfxPrint, tempRet);
2020-03-18 14:27:49 +00:00
if ((OREG(0) == 1) || (OREG(0) == 8)) {
func_80063828(&gfxPrint);
}
2020-03-19 22:06:41 +00:00
if (gGameInfo->regPage != 0) {
2020-03-18 14:27:49 +00:00
func_80063C04(&gfxPrint);
}
D_8011E0B0 = 0;
sp7C = GfxPrint_Close(&gfxPrint);
gSPEndDisplayList(sp7C++);
Graph_BranchDlist(sp78, sp7C);
2020-03-18 14:27:49 +00:00
gfxCtx->polyOpa.p = sp7C;
2020-03-22 21:19:43 +00:00
if (0) {}
Graph_CloseDisps(dispRefs, gfxCtx, "../z_debug.c", 664);
2020-03-18 14:27:49 +00:00
GfxPrint_Dtor(&gfxPrint);
}