From 60cc4fc751a76eb1f003d74b254deee73975a321 Mon Sep 17 00:00:00 2001 From: Jenny Crowe Date: Mon, 14 Feb 2022 06:48:41 -0700 Subject: [PATCH] Space Soccer: Lateness margin tweaked. Karate Man: "Hit" voice in hit3 and hit4 is now played early to account for sound offset. --- Assets/Scripts/Games/KarateMan/KarateMan.cs | 20 ++++++++++++++++++-- Assets/Scripts/Games/SpaceSoccer/Kicker.cs | 6 +++--- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/Assets/Scripts/Games/KarateMan/KarateMan.cs b/Assets/Scripts/Games/KarateMan/KarateMan.cs index ccbf82c7..aa5696e8 100644 --- a/Assets/Scripts/Games/KarateMan/KarateMan.cs +++ b/Assets/Scripts/Games/KarateMan/KarateMan.cs @@ -8,6 +8,8 @@ namespace RhythmHeavenMania.Games.KarateMan { public class KarateMan : Minigame { + const float hitVoiceOffset = 0.042f; + public GameObject Pot, Bomb; public KarateJoe KarateJoe; @@ -153,6 +155,7 @@ namespace RhythmHeavenMania.Games.KarateMan } } + List cuedVoices = new List(); // "Hit" voices cued in advance are stored here so they aren't called multiple times in Update(). private void Update() { if (Conductor.instance.ReportBeat(ref newBeat)) @@ -193,6 +196,19 @@ namespace RhythmHeavenMania.Games.KarateMan prepare.length = 0; } } + + // Call "hit" voice slightly early to account for sound offset. + var hitVoiceEvents = GameManager.instance.Beatmap.entities.FindAll(c => c.datamodel == "karateman/hit3" || c.datamodel == "karateman/hit4"); + for (int i = 0; i < hitVoiceEvents.Count; i++) + { + var hitEvent = hitVoiceEvents[i]; + var timeToEvent = hitEvent.beat - Conductor.instance.songPositionInBeats; + if (timeToEvent <= 1f && timeToEvent > 0f && !cuedVoices.Contains(hitEvent)) + { + cuedVoices.Add(hitEvent); + MultiSound.Play(new MultiSound.Sound[] { new MultiSound.Sound("karateman/hit", hitEvent.beat - hitVoiceOffset * Conductor.instance.songBpm / 60f) }); + } + } } public void BGFXOn() @@ -214,7 +230,7 @@ namespace RhythmHeavenMania.Games.KarateMan public void Hit3(float beat) { - MultiSound.Play(new MultiSound.Sound[] { new MultiSound.Sound("karateman/hit", beat), new MultiSound.Sound("karateman/three", beat + 0.5f) }); + MultiSound.Play(new MultiSound.Sound[] { new MultiSound.Sound("karateman/three", beat + 0.5f) }); GameObject hit3 = Instantiate(HIT3Ref, this.transform); hit3.transform.GetChild(0).GetChild(1).GetComponent().sprite = Numbers[2]; BeatAction.New(hit3, new List() @@ -226,7 +242,7 @@ namespace RhythmHeavenMania.Games.KarateMan public void Hit4(float beat) { - MultiSound.Play(new MultiSound.Sound[] { new MultiSound.Sound("karateman/hit", beat), new MultiSound.Sound("karateman/four", beat + 0.5f) }); + MultiSound.Play(new MultiSound.Sound[] { new MultiSound.Sound("karateman/four", beat + 0.5f) }); GameObject hit4 = Instantiate(HIT3Ref, this.transform); hit4.transform.GetChild(0).GetChild(1).GetComponent().sprite = Numbers[3]; BeatAction.New(hit4, new List() diff --git a/Assets/Scripts/Games/SpaceSoccer/Kicker.cs b/Assets/Scripts/Games/SpaceSoccer/Kicker.cs index c511ae20..ec456c9a 100644 --- a/Assets/Scripts/Games/SpaceSoccer/Kicker.cs +++ b/Assets/Scripts/Games/SpaceSoccer/Kicker.cs @@ -258,7 +258,7 @@ namespace RhythmHeavenMania.Games.SpaceSoccer } else if (ball.highKicked.enabled) { - float normalizedBeat = Conductor.instance.GetPositionFromBeat(ball.highKicked.startBeat, ball.GetHighKickLength(false)); + float normalizedBeat = Conductor.instance.GetPositionFromMargin(ball.highKicked.startBeat + ball.GetHighKickLength(false), 1f); if (!kickPrepare) { float normalizedBeatPrepare = Conductor.instance.GetPositionFromBeat(ball.highKicked.startBeat, 1f); @@ -296,7 +296,7 @@ namespace RhythmHeavenMania.Games.SpaceSoccer } else if (ball.toe.enabled) { - float normalizedBeat = Conductor.instance.GetPositionFromBeat(ball.toe.startBeat, ball.GetHighKickLength(true)); + float normalizedBeat = Conductor.instance.GetPositionFromMargin(ball.toe.startBeat + ball.GetHighKickLength(true), 1f); StateCheck(normalizedBeat, !player); CheckIfFall(normalizedBeat); @@ -346,7 +346,7 @@ namespace RhythmHeavenMania.Games.SpaceSoccer private void CheckIfFall(float normalizedBeat) { - if (normalizedBeat > 1.05f && !GameManager.instance.autoplay) + if (normalizedBeat > Minigame.LateTime() && !GameManager.instance.autoplay) { Jukebox.PlayOneShotGame("spaceSoccer/missNeutral"); ball = null;