2020-03-17 04:31:30 +00:00
|
|
|
#include <global.h>
|
2020-06-17 11:16:30 +00:00
|
|
|
#include <ultra64/controller.h>
|
2020-03-17 04:31:30 +00:00
|
|
|
|
2020-06-09 22:14:18 +00:00
|
|
|
void FlagSet_Update(GlobalContext* globalCtx) {
|
|
|
|
static s32 entryIdx = 0;
|
|
|
|
static u32 curBit = 0;
|
|
|
|
static s32 timer = 0;
|
|
|
|
static s32 bitIdx; // ? this doesn't need to be static
|
|
|
|
|
|
|
|
FlagSetEntry entries[53] = {
|
|
|
|
{ &gSaveContext.eventChkInf[0], "event_chk_inf[0]" }, { &gSaveContext.eventChkInf[1], "event_chk_inf[1]" },
|
|
|
|
{ &gSaveContext.eventChkInf[2], "event_chk_inf[2]" }, { &gSaveContext.eventChkInf[3], "event_chk_inf[3]" },
|
|
|
|
{ &gSaveContext.eventChkInf[4], "event_chk_inf[4]" }, { &gSaveContext.eventChkInf[5], "event_chk_inf[5]" },
|
|
|
|
{ &gSaveContext.eventChkInf[6], "event_chk_inf[6]" }, { &gSaveContext.eventChkInf[7], "event_chk_inf[7]" },
|
|
|
|
{ &gSaveContext.eventChkInf[8], "event_chk_inf[8]" }, { &gSaveContext.eventChkInf[9], "event_chk_inf[9]" },
|
|
|
|
{ &gSaveContext.eventChkInf[10], "event_chk_inf[10]" }, { &gSaveContext.eventChkInf[11], "event_chk_inf[11]" },
|
|
|
|
{ &gSaveContext.eventChkInf[12], "event_chk_inf[12]" }, { &gSaveContext.eventChkInf[13], "event_chk_inf[13]" },
|
|
|
|
{ &gSaveContext.itemGetInf[0], "item_get_inf[0]" }, { &gSaveContext.itemGetInf[1], "item_get_inf[1]" },
|
|
|
|
{ &gSaveContext.itemGetInf[2], "item_get_inf[2]" }, { &gSaveContext.itemGetInf[3], "item_get_inf[3]" },
|
|
|
|
{ &gSaveContext.infTable[0], "inf_table[0]" }, { &gSaveContext.infTable[1], "inf_table[1]" },
|
|
|
|
{ &gSaveContext.infTable[2], "inf_table[2]" }, { &gSaveContext.infTable[3], "inf_table[3]" },
|
|
|
|
{ &gSaveContext.infTable[4], "inf_table[4]" }, { &gSaveContext.infTable[5], "inf_table[5]" },
|
|
|
|
{ &gSaveContext.infTable[6], "inf_table[6]" }, { &gSaveContext.infTable[7], "inf_table[7]" },
|
|
|
|
{ &gSaveContext.infTable[8], "inf_table[8]" }, { &gSaveContext.infTable[9], "inf_table[9]" },
|
|
|
|
{ &gSaveContext.infTable[10], "inf_table[10]" }, { &gSaveContext.infTable[11], "inf_table[11]" },
|
|
|
|
{ &gSaveContext.infTable[12], "inf_table[12]" }, { &gSaveContext.infTable[13], "inf_table[13]" },
|
|
|
|
{ &gSaveContext.infTable[14], "inf_table[14]" }, { &gSaveContext.infTable[15], "inf_table[15]" },
|
|
|
|
{ &gSaveContext.infTable[16], "inf_table[16]" }, { &gSaveContext.infTable[17], "inf_table[17]" },
|
|
|
|
{ &gSaveContext.infTable[18], "inf_table[18]" }, { &gSaveContext.infTable[19], "inf_table[19]" },
|
|
|
|
{ &gSaveContext.infTable[20], "inf_table[20]" }, { &gSaveContext.infTable[21], "inf_table[21]" },
|
|
|
|
{ &gSaveContext.infTable[22], "inf_table[22]" }, { &gSaveContext.infTable[23], "inf_table[23]" },
|
|
|
|
{ &gSaveContext.infTable[24], "inf_table[24]" }, { &gSaveContext.infTable[25], "inf_table[25]" },
|
|
|
|
{ &gSaveContext.infTable[26], "inf_table[26]" }, { &gSaveContext.infTable[27], "inf_table[27]" },
|
|
|
|
{ &gSaveContext.infTable[28], "inf_table[28]" }, { &gSaveContext.infTable[29], "inf_table[29]" },
|
|
|
|
{ &gSaveContext.eventInf[0], "event_inf[0]" }, { &gSaveContext.eventInf[1], "event_inf[1]" },
|
|
|
|
{ &gSaveContext.eventInf[2], "event_inf[2]" }, { &gSaveContext.eventInf[3], "event_inf[3]" },
|
|
|
|
};
|
|
|
|
|
|
|
|
GraphicsContext* gfxCtx;
|
2020-07-30 19:50:18 +00:00
|
|
|
s32 pad;
|
2020-06-09 22:14:18 +00:00
|
|
|
Gfx* gfx;
|
|
|
|
Gfx* polyOpa;
|
|
|
|
Gfx* dispRefs[5];
|
|
|
|
GfxPrint printer;
|
|
|
|
Input* input = &globalCtx->state.input[0];
|
|
|
|
|
|
|
|
gfxCtx = globalCtx->state.gfxCtx;
|
|
|
|
Graph_OpenDisps(dispRefs, gfxCtx, "../flg_set.c", 131);
|
|
|
|
polyOpa = gfxCtx->polyOpa.p;
|
|
|
|
gfx = Graph_GfxPlusOne(polyOpa);
|
|
|
|
gSPDisplayList(gfxCtx->overlay.p++, gfx);
|
|
|
|
|
2020-06-14 02:59:58 +00:00
|
|
|
GfxPrint_Init(&printer);
|
2020-06-09 22:14:18 +00:00
|
|
|
GfxPrint_Open(&printer, gfx);
|
2020-07-17 01:37:53 +00:00
|
|
|
GfxPrint_SetColor(&printer, 250, 50, 50, 255);
|
2020-06-09 22:14:18 +00:00
|
|
|
GfxPrint_SetPos(&printer, 4, 13);
|
|
|
|
GfxPrint_Printf(&printer, entries[entryIdx].name);
|
|
|
|
GfxPrint_SetPos(&printer, 4, 15);
|
|
|
|
|
|
|
|
for (bitIdx = 15; bitIdx >= 0; bitIdx--) {
|
|
|
|
if (bitIdx == curBit) {
|
|
|
|
GfxPrint_SetColor(&printer, 200, 200, 200, 255);
|
|
|
|
} else {
|
|
|
|
GfxPrint_SetColor(&printer, 100, 100, 100, 255);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*entries[entryIdx].value & (1 << bitIdx)) {
|
|
|
|
GfxPrint_Printf(&printer, "1");
|
|
|
|
} else {
|
|
|
|
GfxPrint_Printf(&printer, "0");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((bitIdx % 4) == 0) {
|
|
|
|
GfxPrint_Printf(&printer, " ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (CHECK_PAD(input->press, L_JPAD)) {
|
|
|
|
timer = 10;
|
|
|
|
curBit++;
|
|
|
|
}
|
|
|
|
if (CHECK_PAD(input->press, R_JPAD)) {
|
|
|
|
curBit--;
|
|
|
|
timer = 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (timer == 0) {
|
|
|
|
if (CHECK_PAD(input->cur, L_JPAD)) {
|
|
|
|
curBit++;
|
|
|
|
timer = 2;
|
|
|
|
}
|
|
|
|
if (CHECK_PAD(input->cur, R_JPAD)) {
|
|
|
|
curBit--;
|
|
|
|
timer = 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
curBit %= 16;
|
|
|
|
if (CHECK_PAD(input->press, U_JPAD)) {
|
|
|
|
entryIdx--;
|
|
|
|
if (entryIdx < 0) {
|
|
|
|
entryIdx = 0;
|
|
|
|
}
|
|
|
|
timer = 10;
|
|
|
|
}
|
|
|
|
if (CHECK_PAD(input->press, D_JPAD)) {
|
|
|
|
timer = 10;
|
|
|
|
entryIdx++;
|
|
|
|
if (!entries[entryIdx].value) {
|
|
|
|
entryIdx--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (timer == 0) {
|
|
|
|
if (CHECK_PAD(input->cur, U_JPAD)) {
|
|
|
|
entryIdx--;
|
|
|
|
timer = 2;
|
|
|
|
if (entryIdx < 0) {
|
|
|
|
entryIdx = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (CHECK_PAD(input->cur, D_JPAD)) {
|
|
|
|
timer = 2;
|
|
|
|
entryIdx++;
|
|
|
|
if (!entries[entryIdx].value) {
|
|
|
|
entryIdx--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (CHECK_PAD(input->press, A_BUTTON)) {
|
|
|
|
*entries[entryIdx].value ^= (1 << curBit);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (timer != 0) {
|
|
|
|
timer--;
|
|
|
|
}
|
|
|
|
|
|
|
|
gfx = GfxPrint_Close(&printer);
|
2020-06-14 02:59:58 +00:00
|
|
|
GfxPrint_Destroy(&printer);
|
2020-06-09 22:14:18 +00:00
|
|
|
gSPEndDisplayList(gfx++);
|
|
|
|
Graph_BranchDlist(polyOpa, gfx);
|
|
|
|
gfxCtx->polyOpa.p = gfx;
|
|
|
|
|
|
|
|
if (CHECK_PAD(input->press, L_TRIG)) {
|
|
|
|
globalCtx->pauseCtx.flag = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
Graph_CloseDisps(dispRefs, gfxCtx, "../flg_set.c", 241);
|
|
|
|
}
|