mirror of https://github.com/zeldaret/mm.git
557 lines
18 KiB
C
557 lines
18 KiB
C
#include "global.h"
|
|
#include "message_data_static.h"
|
|
|
|
#if 0
|
|
|
|
s16 D_801D02D8[15] = {
|
|
ACTOR_OCEFF_WIPE5, ACTOR_OCEFF_WIPE5, // Sonata of Awakening Effect, Sonata of Awakening Effect
|
|
ACTOR_OCEFF_WIPE5, ACTOR_OCEFF_WIPE5, // Sonata of Awakening Effect, Sonata of Awakening Effect
|
|
ACTOR_OCEFF_WIPE5, ACTOR_OCEFF_WIPE5, // Sonata of Awakening Effect, Sonata of Awakening Effect
|
|
ACTOR_OCEFF_WIPE, ACTOR_OCEFF_WIPE7, // Song of Time Effect, Song of Healing Effect
|
|
ACTOR_OCEFF_WIPE2, ACTOR_OCEFF_WIPE6, // Epona's Song Effect, Song of Soaring Effect
|
|
ACTOR_OCEFF_STORM, ACTOR_OCEFF_SPOT, // Song of Storms Effect II [?], Sun's Song Effect
|
|
ACTOR_OCEFF_WIPE, ACTOR_OCEFF_WIPE, // Song of Time Effect, Song of Time Effect
|
|
ACTOR_OCEFF_WIPE4 // Scarecrow's Song Effect
|
|
};
|
|
s32 D_801D02F8[15] = { 0,1,2,3,4,0,1,0,0,0,0,0,1,1,0 };
|
|
|
|
#endif
|
|
|
|
extern u16 D_801C6AB8[];
|
|
extern u16 D_801C6B28[];
|
|
extern s16 D_801D02D8[];
|
|
extern s32 D_801D02F8[];
|
|
extern s16 D_801F6B0C;
|
|
extern s16 D_801F6B0E;
|
|
extern s16 D_801F6B10;
|
|
extern s16 D_801F6B12;
|
|
extern s16 D_801F6B14;
|
|
extern s16 D_801F6B16;
|
|
extern s16 D_801F6B18;
|
|
extern s16 D_801F6B1A;
|
|
extern s16 D_801F6B1C;
|
|
extern s16 D_801F6B1E;
|
|
extern s16 D_801F6B20;
|
|
extern s16 D_801F6B22;
|
|
extern MessageTableEntry D_801C6B98[];
|
|
extern MessageTableEntry D_801CFB08[];
|
|
|
|
void func_80147520(void) {
|
|
D_801CFC98 = 0xFF;
|
|
D_801CFCA4[0] = D_801CFCA4[1] = D_801CFCA4[2] = D_801CFCA4[3] = D_801CFCA4[4] = D_801CFCA4[5] = D_801CFCA4[6] =
|
|
D_801CFCA4[7] = D_801CFCA4[8] = 0;
|
|
}
|
|
|
|
void func_80147564(GlobalContext* globalCtx) {
|
|
MessageContext* msgCtx = &globalCtx->msgCtx;
|
|
|
|
msgCtx->unk1204A[0] = 0xBD;
|
|
msgCtx->unk1204A[1] = 0xB8;
|
|
msgCtx->unk1204A[2] = 0xB3;
|
|
msgCtx->unk1204A[3] = 0xAE;
|
|
msgCtx->unk1204A[4] = 0xA9;
|
|
func_80147520();
|
|
D_801F6B0C = 0x50;
|
|
D_801F6B10 = 0x96;
|
|
D_801F6B0E = 0xFF;
|
|
D_801F6B12 = 0xA;
|
|
D_801F6B16 = 0xA;
|
|
D_801F6B14 = 0xA;
|
|
D_801F6B18 = 0xFF;
|
|
D_801F6B1C = 0xFF;
|
|
D_801F6B1A = 0x32;
|
|
D_801F6B1E = 0xA;
|
|
D_801F6B22 = 0xA;
|
|
D_801F6B20 = 0xA;
|
|
}
|
|
|
|
s32 Message_ShouldAdvance(GlobalContext* globalCtx) {
|
|
MessageContext* msgCtx = &globalCtx->msgCtx;
|
|
Input* controller = CONTROLLER1(&globalCtx->state);
|
|
|
|
if ((msgCtx->unk12020 == 0x10) || (msgCtx->unk12020 == 0x11)) {
|
|
if (CHECK_BTN_ALL(controller->press.button, BTN_A)) {
|
|
play_sound(NA_SE_SY_MESSAGE_PASS);
|
|
}
|
|
return CHECK_BTN_ALL(controller->press.button, BTN_A);
|
|
} else {
|
|
if (CHECK_BTN_ALL(controller->press.button, BTN_A) || CHECK_BTN_ALL(controller->press.button, BTN_B) ||
|
|
CHECK_BTN_ALL(controller->press.button, BTN_CUP)) {
|
|
play_sound(NA_SE_SY_MESSAGE_PASS);
|
|
}
|
|
return CHECK_BTN_ALL(controller->press.button, BTN_A) || CHECK_BTN_ALL(controller->press.button, BTN_B) ||
|
|
CHECK_BTN_ALL(controller->press.button, BTN_CUP);
|
|
}
|
|
}
|
|
|
|
s32 Message_ShouldAdvanceSilent(GlobalContext* globalCtx) {
|
|
MessageContext* msgCtx = &globalCtx->msgCtx;
|
|
Input* controller = CONTROLLER1(&globalCtx->state);
|
|
|
|
if (msgCtx->unk12020 == 0x10 || msgCtx->unk12020 == 0x11) {
|
|
return CHECK_BTN_ALL(controller->press.button, BTN_A);
|
|
} else {
|
|
return CHECK_BTN_ALL(controller->press.button, BTN_A) || CHECK_BTN_ALL(controller->press.button, BTN_B) ||
|
|
CHECK_BTN_ALL(controller->press.button, BTN_CUP);
|
|
}
|
|
}
|
|
|
|
void func_801477B4(GlobalContext* globalCtx) {
|
|
MessageContext* msgCtx = &globalCtx->msgCtx;
|
|
|
|
if (globalCtx->msgCtx.unk11F10 != 0) {
|
|
msgCtx->unk12023 = 2;
|
|
msgCtx->msgMode = 0x43;
|
|
msgCtx->unk12020 = 0;
|
|
play_sound(NA_SE_PL_WALK_GROUND - SFX_FLAG);
|
|
}
|
|
}
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_80147818.s")
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_80147F18.s")
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_80148558.s")
|
|
|
|
#ifdef NON_MATCHING
|
|
void func_80148B98(GlobalContext* globalCtx, u8 arg1) {
|
|
static s16 held = 0;
|
|
MessageContext* msgCtx = &globalCtx->msgCtx;
|
|
Input* curInput = CONTROLLER1(&globalCtx->state);
|
|
|
|
if ((curInput->rel.stick_y > 29) && held == 0) {
|
|
held = 1;
|
|
msgCtx->choiceIndex--;
|
|
if (msgCtx->choiceIndex > 128) {
|
|
msgCtx->choiceIndex = 0;
|
|
} else {
|
|
play_sound(NA_SE_SY_CURSOR);
|
|
}
|
|
return;
|
|
} else if ((curInput->rel.stick_y < -29) && held == 0) {
|
|
held = 1;
|
|
msgCtx->choiceIndex++;
|
|
if (msgCtx->choiceIndex > arg1) {
|
|
msgCtx->choiceIndex = arg1;
|
|
} else {
|
|
play_sound(NA_SE_SY_CURSOR);
|
|
}
|
|
return;
|
|
} else {
|
|
if (ABS_ALT(curInput->rel.stick_y) < 30) {
|
|
held = 0;
|
|
}
|
|
}
|
|
}
|
|
#else
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_80148B98.s")
|
|
#endif
|
|
|
|
void func_80148CBC(GlobalContext* globalCtx, UNK_PTR puParm2, u8 arg2) {
|
|
MessageContext* msgCtx = &globalCtx->msgCtx;
|
|
|
|
msgCtx->unk11FF4 = 0x30;
|
|
if (arg2 == 1) {
|
|
msgCtx->unk11FF6 = msgCtx->unk11FFE[1 + msgCtx->choiceIndex];
|
|
} else {
|
|
msgCtx->unk11FF6 = msgCtx->unk11FFE[msgCtx->choiceIndex];
|
|
}
|
|
func_80147818(globalCtx, puParm2, msgCtx->unk11FF4, msgCtx->unk11FF6);
|
|
}
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_80148D64.s")
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_80149048.s")
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_801491DC.s")
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_80149454.s")
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_801496C8.s")
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_8014995C.s")
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_80149C18.s")
|
|
|
|
void Message_FindMessage(GlobalContext* globalCtx, u16 textId) {
|
|
MessageContext* msgCtx = &globalCtx->msgCtx;
|
|
Font* font = &msgCtx->font;
|
|
MessageTableEntry* msgEntry = msgCtx->messageEntryTable;
|
|
const char* segment = msgEntry->segment;
|
|
const char* foundSegment;
|
|
const char* nextSegment;
|
|
|
|
while (msgEntry->textId != 0xFFFF) {
|
|
if (msgEntry->textId == textId) {
|
|
foundSegment = msgEntry->segment;
|
|
msgEntry++;
|
|
nextSegment = msgEntry->segment;
|
|
font->messageStart = foundSegment - segment;
|
|
font->messageEnd = nextSegment - foundSegment;
|
|
return;
|
|
}
|
|
msgEntry++;
|
|
}
|
|
|
|
msgEntry = msgCtx->messageEntryTable;
|
|
foundSegment = msgEntry->segment;
|
|
msgEntry++;
|
|
nextSegment = msgEntry->segment;
|
|
font->messageStart = foundSegment - segment;
|
|
font->messageEnd = nextSegment - foundSegment;
|
|
}
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_80149F74.s")
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_8014AAD0.s")
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_8014ADBC.s")
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_8014C70C.s")
|
|
|
|
void Message_LoadChar(GlobalContext* globalCtx, u16 codePointIndex, s32* offset, f32* arg3, s16 decodedBufPos) {
|
|
MessageContext* msgCtx = &globalCtx->msgCtx;
|
|
s32 temp1 = *offset;
|
|
f32 temp2 = *arg3;
|
|
|
|
Font_LoadChar(globalCtx, codePointIndex, temp1);
|
|
msgCtx->decodedBuffer.wchar[decodedBufPos] = codePointIndex;
|
|
temp1 += FONT_CHAR_TEX_SIZE;
|
|
temp2 += (16.0f * msgCtx->unk12098);
|
|
*offset = temp1;
|
|
*arg3 = temp2;
|
|
}
|
|
|
|
// Message_LoadRupees JPN ?
|
|
void func_8014CCB4(GlobalContext* globalCtx, s16* decodedBufPos, s32* offset, f32* arg3) {
|
|
MessageContext* msgCtx = &globalCtx->msgCtx;
|
|
s16 t = *decodedBufPos;
|
|
s32 k = *offset;
|
|
f32 f = *arg3;
|
|
|
|
Font_LoadChar(globalCtx, 0x838B, k); // 0x838b = ル in JISX0213
|
|
k += FONT_CHAR_TEX_SIZE;
|
|
msgCtx->decodedBuffer.wchar[t] = 0x838B;
|
|
t += 1;
|
|
Font_LoadChar(globalCtx, 0x8373, k); // 0x8373 = ピ in JISX0213
|
|
k += FONT_CHAR_TEX_SIZE;
|
|
msgCtx->decodedBuffer.wchar[t] = 0x8373;
|
|
t += 1;
|
|
Font_LoadChar(globalCtx, 0x815C, k); // Ox815C = ― in JISX0213
|
|
k += FONT_CHAR_TEX_SIZE;
|
|
msgCtx->decodedBuffer.wchar[t] = 0x815C;
|
|
|
|
f += 16.0f * msgCtx->unk12098 * 3.0f;
|
|
*decodedBufPos = t;
|
|
*offset = k;
|
|
*arg3 = f;
|
|
}
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_8014CDF0.s")
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_8014CFDC.s")
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_8014D304.s")
|
|
|
|
#ifdef NON_EQUIVALENT
|
|
extern u16* D_801D0188;
|
|
extern s16* D_801D0250;
|
|
|
|
void func_8014D62C(GlobalContext* arg0, s32* arg1, f32* arg2, s16* arg3) {
|
|
f32 sp3C;
|
|
s16 temp_s0;
|
|
s16 temp_s1;
|
|
s16 temp_s1_2;
|
|
s16 temp_s6;
|
|
s32 temp_s2;
|
|
s32 temp_s2_2;
|
|
u16* temp_v0;
|
|
s16 phi_v0;
|
|
s16 phi_s0;
|
|
s16 phi_s1;
|
|
s32 phi_s2;
|
|
s16 phi_s1_2;
|
|
s32 phi_s2_2;
|
|
|
|
temp_s1 = *arg3;
|
|
temp_s2 = *arg1;
|
|
sp3C = *arg2;
|
|
if ((func_8010A0A4(arg0) != 0) || (arg0->sceneNum == 0x4F)) {
|
|
phi_v0 = 0xA;
|
|
} else {
|
|
phi_v0 = arg0->pauseCtx.unk_238[4];
|
|
}
|
|
temp_s6 = *(&D_801D0250 + (phi_v0 * 2));
|
|
phi_s0 = 0;
|
|
phi_s1_2 = temp_s1;
|
|
phi_s2_2 = temp_s2;
|
|
if ((s32)temp_s6 > 0) {
|
|
phi_s1 = temp_s1;
|
|
phi_s2 = temp_s2;
|
|
do {
|
|
temp_v0 = (phi_v0 * 0x12) + &D_801D0188 + (phi_s0 * 2);
|
|
(arg0 + 0x4908 + (phi_s1 * 2))->decodedBuffer = (u16)*temp_v0;
|
|
Font_LoadChar(arg0, *temp_v0, phi_s2);
|
|
temp_s0 = phi_s0 + 1;
|
|
temp_s1_2 = phi_s1 + 1;
|
|
temp_s2_2 = phi_s2 + 0x80;
|
|
phi_s0 = temp_s0;
|
|
phi_s1 = temp_s1_2;
|
|
phi_s2 = temp_s2_2;
|
|
phi_s1_2 = temp_s1_2;
|
|
phi_s2_2 = temp_s2_2;
|
|
} while ((s32)temp_s0 < (s32)temp_s6);
|
|
}
|
|
*arg3 = phi_s1_2 - 1;
|
|
*arg1 = phi_s2_2;
|
|
*arg2 = sp3C + ((f32)(temp_s6 - 1) * (16.0f * arg0->msgCtx.unk12098));
|
|
}
|
|
#else
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_8014D62C.s")
|
|
#endif
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_8014D7B4.s")
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_80150A84.s")
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_80150D08.s")
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_801514B0.s")
|
|
|
|
void Message_StartTextbox(GlobalContext* globalCtx, u16 textId, Actor* Actor) {
|
|
MessageContext* msgCtx = &globalCtx->msgCtx;
|
|
|
|
msgCtx->ocarinaAction = 0xFFFF;
|
|
func_80150D08(globalCtx, textId);
|
|
msgCtx->unkActor = Actor;
|
|
msgCtx->msgMode = 1;
|
|
msgCtx->unk12023 = 0;
|
|
msgCtx->unk12024 = 0;
|
|
globalCtx->msgCtx.ocarinaMode = 0;
|
|
}
|
|
|
|
void func_80151938(GlobalContext* globalCtx, u16 textId) {
|
|
MessageContext* msgCtx = &globalCtx->msgCtx;
|
|
InterfaceContext* interfaceCtx = &globalCtx->interfaceCtx;
|
|
|
|
msgCtx->unk11F10 = 0;
|
|
func_80150D08(globalCtx, textId);
|
|
func_80150A84(globalCtx);
|
|
msgCtx->msgMode = 5;
|
|
msgCtx->unk12023 = 8;
|
|
msgCtx->unk12024 = 0;
|
|
|
|
if (interfaceCtx->unk_222 == 0) {
|
|
if (textId != 0x1B93) {
|
|
func_8011552C(globalCtx, 0x10);
|
|
} else if (textId != 0xF8) {
|
|
func_8011552C(globalCtx, 6);
|
|
}
|
|
}
|
|
msgCtx->unk1203C = msgCtx->unk1203A;
|
|
|
|
if (globalCtx->pauseCtx.unk_1F0 != 0) {
|
|
msgCtx->unk12004 = 0x22;
|
|
msgCtx->unk12006 = 0x15E;
|
|
func_80149C18(globalCtx);
|
|
msgCtx->unk12023 = 1;
|
|
}
|
|
}
|
|
|
|
void func_80151A68(GlobalContext* globalCtx, u16 textId) {
|
|
MessageContext* msgCtx = &globalCtx->msgCtx;
|
|
|
|
msgCtx->unk11F10 = 0;
|
|
func_80150D08(globalCtx, textId);
|
|
func_80150A84(globalCtx);
|
|
func_8015B198(globalCtx);
|
|
msgCtx->msgMode = 0x45;
|
|
msgCtx->unk12024 = 0;
|
|
msgCtx->unk1203C = msgCtx->unk1203A = msgCtx->unk1201E = 0;
|
|
msgCtx->unk12023 = 0x1E;
|
|
|
|
// Day/Dawn/Night.. Messages
|
|
if ((msgCtx->currentTextId >= 0x1BB2) && (msgCtx->currentTextId < 0x1BB7)) {
|
|
XREG(74) = 0x6A;
|
|
XREG(75) = 0;
|
|
XREG(77) = 0x58;
|
|
XREG(76) = 0x44;
|
|
} else {
|
|
XREG(74) = 0x42;
|
|
XREG(75) = 0x1E;
|
|
XREG(77) = 0x3C;
|
|
XREG(76) = 0x1C;
|
|
msgCtx->unk11F1A[0] = msgCtx->unk11F1A[1] = msgCtx->unk11F1A[2] = 0;
|
|
Interface_ChangeAlpha(1);
|
|
}
|
|
}
|
|
|
|
void func_80151BB4(GlobalContext* globalCtx, u8 arg1) {
|
|
MessageContext* msgCtx = &globalCtx->msgCtx;
|
|
u8 temp = arg1;
|
|
|
|
if (CHECK_QUEST_ITEM(QUEST_BOMBERS_NOTEBOOK)) {
|
|
if ((gSaveContext.save.weekEventReg[D_801C6B28[arg1] >> 8] & (u8)D_801C6B28[arg1]) == 0) {
|
|
msgCtx->unk120B2[msgCtx->unk120B1] = temp;
|
|
msgCtx->unk120B1++;
|
|
}
|
|
} else if (arg1 >= 20) {
|
|
if ((gSaveContext.save.weekEventReg[D_801C6B28[arg1] >> 8] & (u8)D_801C6B28[arg1]) == 0) {
|
|
msgCtx->unk120B2[msgCtx->unk120B1] = temp;
|
|
msgCtx->unk120B1++;
|
|
}
|
|
}
|
|
}
|
|
|
|
u32 func_80151C9C(GlobalContext* globalCtx) {
|
|
MessageContext* msgCtx = &globalCtx->msgCtx;
|
|
|
|
while (true) {
|
|
if (msgCtx->unk120B1 == 0) {
|
|
return false;
|
|
}
|
|
msgCtx->unk120B1--;
|
|
|
|
if ((gSaveContext.save.weekEventReg[D_801C6B28[msgCtx->unk120B2[msgCtx->unk120B1]] >> 8] &
|
|
(u8)D_801C6B28[msgCtx->unk120B2[msgCtx->unk120B1]]) == 0) {
|
|
gSaveContext.save.weekEventReg[D_801C6B28[msgCtx->unk120B2[msgCtx->unk120B1]] >> 8] =
|
|
((void)0, gSaveContext.save.weekEventReg[D_801C6B28[msgCtx->unk120B2[msgCtx->unk120B1]] >> 8]) |
|
|
(u8)D_801C6B28[msgCtx->unk120B2[msgCtx->unk120B1]];
|
|
|
|
if ((D_801C6AB8[msgCtx->unk120B2[msgCtx->unk120B1]] != 0) && CHECK_QUEST_ITEM(QUEST_BOMBERS_NOTEBOOK)) {
|
|
func_80151938(globalCtx, D_801C6AB8[msgCtx->unk120B2[msgCtx->unk120B1]]);
|
|
play_sound(NA_SE_SY_SCHEDULE_WRITE);
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_80151DA4.s")
|
|
|
|
void func_80152434(GlobalContext* globalCtx, u16 arg2) {
|
|
globalCtx->msgCtx.unk12046 = 0;
|
|
func_80151DA4(globalCtx, arg2);
|
|
}
|
|
|
|
void func_80152464(GlobalContext* globalCtx, u16 arg1) {
|
|
globalCtx->msgCtx.unk12046 = 1;
|
|
func_80151DA4(globalCtx, arg1);
|
|
}
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/Message_GetState.s")
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_8015268C.s")
|
|
|
|
void func_80152C64(View* view) {
|
|
SET_FULLSCREEN_VIEWPORT(view);
|
|
func_8013FBC8(view);
|
|
}
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_80152CAC.s")
|
|
|
|
// Spawn song effect?
|
|
void func_80152EC0(GlobalContext* globalCtx) {
|
|
MessageContext* msgCtx = &globalCtx->msgCtx;
|
|
Player* player = GET_PLAYER(globalCtx);
|
|
|
|
if (1) {}
|
|
if ((msgCtx->songPlayed < 0x17) && (msgCtx->songPlayed != 0xE) &&
|
|
((msgCtx->ocarinaAction < 0x43) || (msgCtx->ocarinaAction >= 0x47))) {
|
|
msgCtx->unk120B0 = 1;
|
|
if (msgCtx->songPlayed != 0x16) {
|
|
Actor_Spawn(&globalCtx->actorCtx, globalCtx, D_801D02D8[msgCtx->songPlayed], player->actor.world.pos.x,
|
|
player->actor.world.pos.y, player->actor.world.pos.z, 0, 0, 0, D_801D02F8[msgCtx->songPlayed]);
|
|
return;
|
|
}
|
|
Actor_Spawn(&globalCtx->actorCtx, globalCtx, ACTOR_OCEFF_WIPE4, player->actor.world.pos.x,
|
|
player->actor.world.pos.y, player->actor.world.pos.z, 0, 0, 0, 0);
|
|
}
|
|
}
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_80152FB8.s")
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_80153750.s")
|
|
|
|
void func_80153E7C(GlobalContext* globalCtx, void* arg1) {
|
|
if ((gSaveContext.options.language == 0) && (globalCtx->msgCtx.unk12090 == 0)) {
|
|
func_8014ADBC(globalCtx, arg1);
|
|
return;
|
|
}
|
|
if (globalCtx->msgCtx.unk12090 != 0) {
|
|
func_8015E7EC(globalCtx, arg1);
|
|
return;
|
|
}
|
|
func_8015966C(globalCtx, arg1, 0);
|
|
}
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_80153EF0.s")
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_801541D4.s")
|
|
|
|
void func_80156758(GlobalContext* globalCtx) {
|
|
Gfx* nextDisplayList;
|
|
Gfx* polyOpa;
|
|
GraphicsContext* gfxCtx = globalCtx->state.gfxCtx;
|
|
|
|
OPEN_DISPS(gfxCtx);
|
|
polyOpa = POLY_OPA_DISP;
|
|
nextDisplayList = Graph_GfxPlusOne(polyOpa);
|
|
gSPDisplayList(OVERLAY_DISP++, nextDisplayList);
|
|
|
|
if ((globalCtx->msgCtx.currentTextId != 0x5E6) || !Play_InCsMode(globalCtx)) {
|
|
func_801541D4(globalCtx, &nextDisplayList);
|
|
}
|
|
|
|
gSPEndDisplayList(nextDisplayList++);
|
|
Graph_BranchDlist(polyOpa, nextDisplayList);
|
|
POLY_OPA_DISP = nextDisplayList;
|
|
CLOSE_DISPS(gfxCtx);
|
|
}
|
|
|
|
#pragma GLOBAL_ASM("asm/non_matchings/code/z_message/func_8015680C.s")
|
|
|
|
void func_801586A4(GlobalContext* globalCtx) {
|
|
globalCtx->msgCtx.messageEntryTableNes = D_801C6B98;
|
|
globalCtx->msgCtx.messageTableStaff = D_801CFB08;
|
|
}
|
|
|
|
void Message_Init(GlobalContext* globalCtx) {
|
|
Font* font;
|
|
MessageContext* messageCtx = &globalCtx->msgCtx;
|
|
|
|
func_801586A4(globalCtx);
|
|
globalCtx->msgCtx.ocarinaMode = 0;
|
|
messageCtx->msgMode = 0;
|
|
messageCtx->unk11F10 = 0;
|
|
messageCtx->currentTextId = 0;
|
|
messageCtx->unk12020 = 0;
|
|
messageCtx->choiceIndex = 0;
|
|
messageCtx->ocarinaAction = messageCtx->unk11FF2 = 0;
|
|
messageCtx->unk1201E = 0xFF;
|
|
View_Init(&messageCtx->view, globalCtx->state.gfxCtx);
|
|
messageCtx->unk11EF8 = THA_AllocEndAlign16(&globalCtx->state.heap, 0x13C00);
|
|
font = &globalCtx->msgCtx.font;
|
|
Font_LoadOrderedFont(&globalCtx->msgCtx.font);
|
|
font->unk_11D88 = 0;
|
|
messageCtx->unk12090 = messageCtx->unk12092 = 0;
|
|
messageCtx->unk12094 = 0;
|
|
messageCtx->unk1209C = 0;
|
|
messageCtx->unk120A0 = 0;
|
|
messageCtx->unk12068 = 0x34;
|
|
messageCtx->unk1206A = 0x24;
|
|
messageCtx->unk120B0 = 0;
|
|
messageCtx->unk120BE = 0;
|
|
messageCtx->unk120C0 = 0;
|
|
messageCtx->unk120C2 = 0;
|
|
messageCtx->unk120C4 = 0;
|
|
messageCtx->unk120C8 = 0;
|
|
messageCtx->unk120CA = 0;
|
|
messageCtx->unk120CC = 0;
|
|
messageCtx->unk120CE = 0;
|
|
messageCtx->unk120D0 = 0;
|
|
messageCtx->unk120D2 = 0;
|
|
messageCtx->unk120D4 = 0;
|
|
messageCtx->unk120D6 = 0;
|
|
}
|