mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-14 13:45:10 +00:00
Merge branch 'release_1'
This commit is contained in:
commit
6d972398ae
6 changed files with 66 additions and 19 deletions
Binary file not shown.
|
@ -50,6 +50,7 @@ namespace HeavenStudio
|
||||||
double dspSizeSeconds;
|
double dspSizeSeconds;
|
||||||
double dspMargin = 128 / 44100.0;
|
double dspMargin = 128 / 44100.0;
|
||||||
bool deferTimeKeeping = false;
|
bool deferTimeKeeping = false;
|
||||||
|
public bool WaitingForDsp => deferTimeKeeping;
|
||||||
|
|
||||||
// the dspTime we started at
|
// the dspTime we started at
|
||||||
private double dspStart;
|
private double dspStart;
|
||||||
|
@ -163,6 +164,12 @@ namespace HeavenStudio
|
||||||
GameManager.instance.SetCurrentEventToClosest(beat);
|
GameManager.instance.SetCurrentEventToClosest(beat);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void PlaySetup(double beat)
|
||||||
|
{
|
||||||
|
deferTimeKeeping = true;
|
||||||
|
songPosBeat = beat;
|
||||||
|
}
|
||||||
|
|
||||||
public void Play(double beat)
|
public void Play(double beat)
|
||||||
{
|
{
|
||||||
if (isPlaying) return;
|
if (isPlaying) return;
|
||||||
|
@ -220,7 +227,7 @@ namespace HeavenStudio
|
||||||
|
|
||||||
startTime = DateTime.Now;
|
startTime = DateTime.Now;
|
||||||
absTimeAdjust = 0;
|
absTimeAdjust = 0;
|
||||||
deferTimeKeeping = (musicSource.clip != null);
|
deferTimeKeeping = musicSource.clip != null;
|
||||||
|
|
||||||
isPlaying = true;
|
isPlaying = true;
|
||||||
isPaused = false;
|
isPaused = false;
|
||||||
|
|
|
@ -731,6 +731,7 @@ namespace HeavenStudio
|
||||||
|
|
||||||
if (!paused)
|
if (!paused)
|
||||||
{
|
{
|
||||||
|
Conductor.instance.PlaySetup(beat);
|
||||||
Minigame miniGame = null;
|
Minigame miniGame = null;
|
||||||
if (currentGameO != null && currentGameO.TryGetComponent<Minigame>(out miniGame))
|
if (currentGameO != null && currentGameO.TryGetComponent<Minigame>(out miniGame))
|
||||||
{
|
{
|
||||||
|
|
|
@ -472,8 +472,6 @@ namespace HeavenStudio.Games
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if (thatsIt && i + 1 == length)
|
if (thatsIt && i + 1 == length)
|
||||||
{
|
{
|
||||||
int noiseToPlay = (flopCount == 4) ? 2 : flopCount;
|
int noiseToPlay = (flopCount == 4) ? 2 : flopCount;
|
||||||
|
@ -613,7 +611,7 @@ namespace HeavenStudio.Games
|
||||||
{
|
{
|
||||||
for (int i = 0; i < uh; i++)
|
for (int i = 0; i < uh; i++)
|
||||||
{
|
{
|
||||||
int voiceLineIndex = i + 1;
|
int voiceLineIndex = 3 - uh + i + 1;
|
||||||
string voiceLine = $"flipperFlop/uh{voiceLineIndex}";
|
string voiceLine = $"flipperFlop/uh{voiceLineIndex}";
|
||||||
string failVoiceLine = $"flipperFlop/uhfail{voiceLineIndex}";
|
string failVoiceLine = $"flipperFlop/uhfail{voiceLineIndex}";
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
using DG.Tweening;
|
|
||||||
using NaughtyBezierCurves;
|
using NaughtyBezierCurves;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
@ -169,7 +168,7 @@ namespace HeavenStudio.Games
|
||||||
|
|
||||||
void OnDestroy()
|
void OnDestroy()
|
||||||
{
|
{
|
||||||
if (queuedInputs.Count > 0) queuedInputs.Clear();
|
queuedInputs.Clear();
|
||||||
foreach (var evt in scheduledInputs)
|
foreach (var evt in scheduledInputs)
|
||||||
{
|
{
|
||||||
evt.Disable();
|
evt.Disable();
|
||||||
|
@ -194,14 +193,29 @@ namespace HeavenStudio.Games
|
||||||
girlAnim.DoScaledAnimationAsync("Bop");
|
girlAnim.DoScaledAnimationAsync("Bop");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Update()
|
public override void OnPlay(double beat)
|
||||||
{
|
{
|
||||||
var cond = Conductor.instance;
|
queuedInputs.Clear();
|
||||||
if (cond.isPlaying && !cond.isPaused)
|
}
|
||||||
|
|
||||||
|
public override void OnGameSwitch(double beat)
|
||||||
{
|
{
|
||||||
|
if (!Conductor.instance.isPlaying) return;
|
||||||
if (queuedInputs.Count > 0)
|
if (queuedInputs.Count > 0)
|
||||||
{
|
{
|
||||||
foreach (var input in queuedInputs)
|
foreach (var input in queuedInputs)
|
||||||
|
{
|
||||||
|
if (input.type is (int)TrickObjType.Blast)
|
||||||
|
{
|
||||||
|
BeatAction.New(instance, new List<BeatAction.Action>()
|
||||||
|
{
|
||||||
|
new BeatAction.Action(input.beat, delegate
|
||||||
|
{
|
||||||
|
instance.DoBlast(input.beat);
|
||||||
|
})
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
BeatAction.New(instance, new List<BeatAction.Action>()
|
BeatAction.New(instance, new List<BeatAction.Action>()
|
||||||
{
|
{
|
||||||
|
@ -216,10 +230,13 @@ namespace HeavenStudio.Games
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
queuedInputs.Clear();
|
queuedInputs.Clear();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
private void Update()
|
||||||
|
{
|
||||||
if (PlayerInput.GetIsAction(InputAction_TouchPressing) && (!playerReady) && (playerCanDodge <= Conductor.instance.songPositionInBeatsAsDouble))
|
if (PlayerInput.GetIsAction(InputAction_TouchPressing) && (!playerReady) && (playerCanDodge <= Conductor.instance.songPositionInBeatsAsDouble))
|
||||||
{
|
{
|
||||||
playerAnim.DoScaledAnimationAsync("Prepare");
|
playerAnim.DoScaledAnimationAsync("Prepare");
|
||||||
|
@ -392,11 +409,6 @@ namespace HeavenStudio.Games
|
||||||
{
|
{
|
||||||
girlAnim.DoScaledAnimationAsync("Charge1");
|
girlAnim.DoScaledAnimationAsync("Charge1");
|
||||||
}),
|
}),
|
||||||
new BeatAction.Action(beat + 2, delegate
|
|
||||||
{
|
|
||||||
//test
|
|
||||||
// girlAnim.DoScaledAnimationAsync("BlastDodged", 0.5f);
|
|
||||||
}),
|
|
||||||
new BeatAction.Action(beat + 4, delegate
|
new BeatAction.Action(beat + 4, delegate
|
||||||
{
|
{
|
||||||
girlBopEnable = true;
|
girlBopEnable = true;
|
||||||
|
|
|
@ -2,6 +2,8 @@ using System.Collections;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
using Cysharp.Threading.Tasks;
|
||||||
|
using Cysharp.Threading.Tasks.Triggers;
|
||||||
|
|
||||||
namespace HeavenStudio.Util
|
namespace HeavenStudio.Util
|
||||||
{
|
{
|
||||||
|
@ -10,6 +12,7 @@ namespace HeavenStudio.Util
|
||||||
private double startBeat;
|
private double startBeat;
|
||||||
private bool game;
|
private bool game;
|
||||||
private bool forcePlay;
|
private bool forcePlay;
|
||||||
|
private bool commited;
|
||||||
public List<Sound> sounds = new List<Sound>();
|
public List<Sound> sounds = new List<Sound>();
|
||||||
public List<Util.Sound> playingSounds = new List<Util.Sound>();
|
public List<Util.Sound> playingSounds = new List<Util.Sound>();
|
||||||
|
|
||||||
|
@ -36,14 +39,33 @@ namespace HeavenStudio.Util
|
||||||
|
|
||||||
public static MultiSound Play(Sound[] snds, bool game = true, bool forcePlay = false)
|
public static MultiSound Play(Sound[] snds, bool game = true, bool forcePlay = false)
|
||||||
{
|
{
|
||||||
|
if (Conductor.instance == null) return null;
|
||||||
|
|
||||||
List<Sound> sounds = snds.ToList();
|
List<Sound> sounds = snds.ToList();
|
||||||
GameObject go = new GameObject("MultiSound");
|
GameObject go = new GameObject("MultiSound");
|
||||||
MultiSound ms = go.AddComponent<MultiSound>();
|
MultiSound ms = go.AddComponent<MultiSound>();
|
||||||
|
|
||||||
ms.sounds = sounds;
|
ms.sounds = sounds;
|
||||||
ms.startBeat = sounds[0].beat;
|
ms.startBeat = sounds[0].beat;
|
||||||
ms.game = game;
|
ms.game = game;
|
||||||
ms.forcePlay = forcePlay;
|
ms.forcePlay = forcePlay;
|
||||||
|
ms.commited = false;
|
||||||
|
|
||||||
|
if (Conductor.instance.WaitingForDsp)
|
||||||
|
{
|
||||||
|
Debug.Log("Multisound waiting for DSP, deferring play");
|
||||||
|
ms.PlayDeferred().Forget();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ms.CommitPlay();
|
||||||
|
}
|
||||||
|
|
||||||
|
return ms;
|
||||||
|
}
|
||||||
|
|
||||||
|
void CommitPlay()
|
||||||
|
{
|
||||||
for (int i = 0; i < sounds.Count; i++)
|
for (int i = 0; i < sounds.Count; i++)
|
||||||
{
|
{
|
||||||
Util.Sound s;
|
Util.Sound s;
|
||||||
|
@ -51,14 +73,21 @@ namespace HeavenStudio.Util
|
||||||
s = SoundByte.PlayOneShotGame(sounds[i].name, sounds[i].beat, sounds[i].pitch, sounds[i].volume, sounds[i].looping, forcePlay, sounds[i].offset);
|
s = SoundByte.PlayOneShotGame(sounds[i].name, sounds[i].beat, sounds[i].pitch, sounds[i].volume, sounds[i].looping, forcePlay, sounds[i].offset);
|
||||||
else
|
else
|
||||||
s = SoundByte.PlayOneShot(sounds[i].name, sounds[i].beat, sounds[i].pitch, sounds[i].volume, sounds[i].looping, null, sounds[i].offset);
|
s = SoundByte.PlayOneShot(sounds[i].name, sounds[i].beat, sounds[i].pitch, sounds[i].volume, sounds[i].looping, null, sounds[i].offset);
|
||||||
ms.playingSounds.Add(s);
|
playingSounds.Add(s);
|
||||||
|
}
|
||||||
|
commited = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ms;
|
async UniTaskVoid PlayDeferred()
|
||||||
|
{
|
||||||
|
await UniTask.WaitUntil(() => !Conductor.instance.WaitingForDsp, PlayerLoopTiming.LastUpdate);
|
||||||
|
Debug.Log("Multisound DSP ready, playing");
|
||||||
|
CommitPlay();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Update()
|
private void Update()
|
||||||
{
|
{
|
||||||
|
if (!commited) return;
|
||||||
foreach (Util.Sound sound in playingSounds)
|
foreach (Util.Sound sound in playingSounds)
|
||||||
{
|
{
|
||||||
if (sound == null) continue;
|
if (sound == null) continue;
|
||||||
|
|
Loading…
Reference in a new issue