From 2f40fed5c1193a31558bb30b0169318b2612675d Mon Sep 17 00:00:00 2001 From: Yanis <35189056+Yanis002@users.noreply.github.com> Date: Fri, 13 Dec 2024 23:03:51 +0100 Subject: [PATCH] Naming some cutscenes 4 (Gerudo Fortress, Death Mountain Crater and Goron City) (#2356) * name cs from gerudo fortress, dmc and goron city * format and updated comment about the darunia dancing cutscene * review 2 --- assets/xml/scenes/overworld/spot12.xml | 2 ++ assets/xml/scenes/overworld/spot12_pal_n64.xml | 2 ++ assets/xml/scenes/overworld/spot17.xml | 1 + assets/xml/scenes/overworld/spot17_pal_n64.xml | 1 + assets/xml/scenes/overworld/spot18.xml | 11 ++++++++--- assets/xml/scenes/overworld/spot18_pal_n64.xml | 11 ++++++++--- src/overlays/actors/ovl_En_Du/z_en_du.c | 6 +++--- 7 files changed, 25 insertions(+), 9 deletions(-) diff --git a/assets/xml/scenes/overworld/spot12.xml b/assets/xml/scenes/overworld/spot12.xml index 9f4efd31e8..e4b38cbe88 100644 --- a/assets/xml/scenes/overworld/spot12.xml +++ b/assets/xml/scenes/overworld/spot12.xml @@ -2,6 +2,8 @@ + + diff --git a/assets/xml/scenes/overworld/spot12_pal_n64.xml b/assets/xml/scenes/overworld/spot12_pal_n64.xml index c771c2e825..d1f94eb6b4 100644 --- a/assets/xml/scenes/overworld/spot12_pal_n64.xml +++ b/assets/xml/scenes/overworld/spot12_pal_n64.xml @@ -2,6 +2,8 @@ + + diff --git a/assets/xml/scenes/overworld/spot17.xml b/assets/xml/scenes/overworld/spot17.xml index 3aecc15a60..926eeb3e10 100644 --- a/assets/xml/scenes/overworld/spot17.xml +++ b/assets/xml/scenes/overworld/spot17.xml @@ -2,6 +2,7 @@ + diff --git a/assets/xml/scenes/overworld/spot17_pal_n64.xml b/assets/xml/scenes/overworld/spot17_pal_n64.xml index 6aca94ff73..046da9144c 100644 --- a/assets/xml/scenes/overworld/spot17_pal_n64.xml +++ b/assets/xml/scenes/overworld/spot17_pal_n64.xml @@ -2,6 +2,7 @@ + diff --git a/assets/xml/scenes/overworld/spot18.xml b/assets/xml/scenes/overworld/spot18.xml index 513e67cbc9..affece84b7 100644 --- a/assets/xml/scenes/overworld/spot18.xml +++ b/assets/xml/scenes/overworld/spot18.xml @@ -1,9 +1,14 @@ - - - + + + + + + + + diff --git a/assets/xml/scenes/overworld/spot18_pal_n64.xml b/assets/xml/scenes/overworld/spot18_pal_n64.xml index adbbc51121..809e099cfc 100644 --- a/assets/xml/scenes/overworld/spot18_pal_n64.xml +++ b/assets/xml/scenes/overworld/spot18_pal_n64.xml @@ -1,9 +1,14 @@ - - - + + + + + + + + diff --git a/src/overlays/actors/ovl_En_Du/z_en_du.c b/src/overlays/actors/ovl_En_Du/z_en_du.c index 67ddf4a1f7..f77bec5a85 100644 --- a/src/overlays/actors/ovl_En_Du/z_en_du.c +++ b/src/overlays/actors/ovl_En_Du/z_en_du.c @@ -293,7 +293,7 @@ void EnDu_Init(Actor* thisx, PlayState* play) { this->interactInfo.talkState = NPC_TALK_STATE_IDLE; if (gSaveContext.save.cutsceneIndex >= 0xFFF0) { - play->csCtx.script = SEGMENTED_TO_VIRTUAL(gGoronCityDarunia01Cs); + play->csCtx.script = SEGMENTED_TO_VIRTUAL(gGoronCityDaruniaDancingCs); gSaveContext.cutsceneTrigger = 1; EnDu_SetupAction(this, func_809FE890); } else if (play->sceneId == SCENE_FIRE_TEMPLE) { @@ -341,7 +341,7 @@ void func_809FE4A4(EnDu* this, PlayState* play) { play->msgCtx.ocarinaMode = OCARINA_MODE_00; EnDu_SetupAction(this, func_809FE3C0); } else if (play->msgCtx.ocarinaMode >= OCARINA_MODE_06) { - play->csCtx.script = SEGMENTED_TO_VIRTUAL(gGoronCityDaruniaWrongCs); + play->csCtx.script = SEGMENTED_TO_VIRTUAL(gGoronCityDaruniaWrongSongCs); gSaveContext.cutsceneTrigger = 1; this->unk_1E8 = 1; EnDu_SetupAction(this, func_809FE890); @@ -349,7 +349,7 @@ void func_809FE4A4(EnDu* this, PlayState* play) { } else if (play->msgCtx.ocarinaMode == OCARINA_MODE_03) { Audio_PlaySfxGeneral(NA_SE_SY_CORRECT_CHIME, &gSfxDefaultPos, 4, &gSfxDefaultFreqAndVolScale, &gSfxDefaultFreqAndVolScale, &gSfxDefaultReverb); - play->csCtx.script = SEGMENTED_TO_VIRTUAL(gGoronCityDaruniaCorrectCs); + play->csCtx.script = SEGMENTED_TO_VIRTUAL(gGoronCityDaruniaCorrectSongCs); gSaveContext.cutsceneTrigger = 1; this->unk_1E8 = 0; EnDu_SetupAction(this, func_809FE890);