mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 11:45:09 +00:00
afc665ed61
* add Jukebox library todo: - saving / loading of new format - inferrence of unknown data like past versions - move the temporary float casts to proper use of double - make sound related functions take double for timing - inform people that the Jukebox sound player was renamed to SoundByte lol * make sound, input scheduling, and super curve use double precision * successfully load charts * editor works again v1 riqs can be saved and loaded * first tempo and volume markers are unmovable fix loading of charts' easing values * use gsync / freesync * update Jukebox refs to SoundByte * game events use double part 1 Air Rally - Glee Club converted * don't load song if chart load fails * finish conversion of all minigames * remove editor waveform toggle * timeline now respects added song offset length clear cache files on app close prepped notes for dsp sync * update timeline length when offset changed * update to latest Jukebox * make error panel object in global game manager * improve conductor music scheduling * added error message box fix first game events sometimes not playing
225 lines
6.8 KiB
C#
225 lines
6.8 KiB
C#
using System;
|
|
using System.Collections;
|
|
using UnityEngine;
|
|
using Starpelly;
|
|
|
|
namespace HeavenStudio.Util
|
|
{
|
|
public class Sound : MonoBehaviour
|
|
{
|
|
public AudioClip clip;
|
|
public float pitch = 1;
|
|
public float bendedPitch = 1; //only used with rockers
|
|
public float volume = 1;
|
|
|
|
// For use with PlayOneShotScheduled
|
|
public bool scheduled;
|
|
public double scheduledTime;
|
|
|
|
public bool looping;
|
|
public double loopEndBeat = -1;
|
|
public double fadeTime;
|
|
int loopIndex = 0;
|
|
|
|
private AudioSource audioSource;
|
|
|
|
private int pauseTimes = 0;
|
|
|
|
private double startTime;
|
|
|
|
public double beat;
|
|
public double offset;
|
|
public float scheduledPitch = 1f;
|
|
|
|
bool playInstant = false;
|
|
bool played = false;
|
|
|
|
private void Start()
|
|
{
|
|
audioSource = GetComponent<AudioSource>();
|
|
audioSource.clip = clip;
|
|
audioSource.pitch = pitch;
|
|
audioSource.volume = volume;
|
|
audioSource.loop = looping;
|
|
Conductor cnd = Conductor.instance;
|
|
|
|
if (beat == -1 && !scheduled)
|
|
{
|
|
audioSource.Play();
|
|
playInstant = true;
|
|
played = true;
|
|
startTime = AudioSettings.dspTime;
|
|
StartCoroutine(NotRelyOnBeatSound());
|
|
}
|
|
else
|
|
{
|
|
playInstant = false;
|
|
scheduledPitch = cnd.SongPitch;
|
|
startTime = (AudioSettings.dspTime + (cnd.GetSongPosFromBeat(beat) - cnd.songPositionAsDouble)/(double)scheduledPitch) - offset;
|
|
audioSource.PlayScheduled(startTime);
|
|
}
|
|
}
|
|
|
|
private void Update()
|
|
{
|
|
Conductor cnd = Conductor.instance;
|
|
if (!played)
|
|
{
|
|
if (scheduled)
|
|
{
|
|
if (scheduledPitch != 0 && AudioSettings.dspTime > scheduledTime)
|
|
{
|
|
StartCoroutine(NotRelyOnBeatSound());
|
|
played = true;
|
|
}
|
|
}
|
|
else if (!playInstant)
|
|
{
|
|
if (scheduledPitch != 0 && AudioSettings.dspTime > startTime)
|
|
{
|
|
played = true;
|
|
StartCoroutine(NotRelyOnBeatSound());
|
|
}
|
|
else
|
|
{
|
|
if (!played && scheduledPitch != cnd.SongPitch)
|
|
{
|
|
if (cnd.SongPitch == 0)
|
|
{
|
|
scheduledPitch = cnd.SongPitch;
|
|
audioSource.Pause();
|
|
}
|
|
else
|
|
{
|
|
if (scheduledPitch == 0)
|
|
{
|
|
audioSource.UnPause();
|
|
}
|
|
scheduledPitch = cnd.SongPitch;
|
|
startTime = (AudioSettings.dspTime + (cnd.GetSongPosFromBeat(beat) - cnd.songPositionAsDouble)/(double)scheduledPitch);
|
|
audioSource.SetScheduledStartTime(startTime);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (loopIndex < 1)
|
|
{
|
|
if (looping && loopEndBeat != -1) // Looping sounds play forever unless params are set.
|
|
{
|
|
if (cnd.songPositionInBeats > loopEndBeat)
|
|
{
|
|
KillLoop(fadeTime);
|
|
loopIndex++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
IEnumerator NotRelyOnBeatSound()
|
|
{
|
|
if (!looping) // Looping sounds are destroyed manually.
|
|
{
|
|
yield return new WaitForSeconds(clip.length / pitch);
|
|
Delete();
|
|
}
|
|
}
|
|
|
|
public void SetLoopParams(double endBeat, double fadeTime)
|
|
{
|
|
loopEndBeat = endBeat;
|
|
this.fadeTime = fadeTime;
|
|
}
|
|
|
|
public void Stop()
|
|
{
|
|
if (audioSource != null)
|
|
audioSource.Stop();
|
|
}
|
|
|
|
public void Pause()
|
|
{
|
|
if (audioSource != null)
|
|
audioSource.Pause();
|
|
}
|
|
|
|
public void UnPause()
|
|
{
|
|
if (audioSource != null)
|
|
audioSource.UnPause();
|
|
}
|
|
|
|
public void Delete()
|
|
{
|
|
GameManager.instance.SoundObjects.Remove(gameObject);
|
|
Destroy(gameObject);
|
|
}
|
|
|
|
#region Bend
|
|
// All of these should only be used with rockers.
|
|
// minenice: consider doing these in the audio thread so they can work per-sample?
|
|
public void BendUp(float bendTime, float bendedPitch)
|
|
{
|
|
this.bendedPitch = bendedPitch;
|
|
StartCoroutine(BendUpLoop(bendTime));
|
|
}
|
|
|
|
public void BendDown(float bendTime)
|
|
{
|
|
StartCoroutine(BendDownLoop(bendTime));
|
|
}
|
|
|
|
IEnumerator BendUpLoop(float bendTime)
|
|
{
|
|
float startingPitch = audioSource.pitch;
|
|
float bendTimer = 0f;
|
|
|
|
while (bendTimer < bendTime)
|
|
{
|
|
bendTimer += Time.deltaTime;
|
|
float normalizedProgress = Mathp.Normalize(bendTimer, 0, bendTime);
|
|
float currentPitch = Mathf.Lerp(startingPitch, bendedPitch, normalizedProgress);
|
|
audioSource.pitch = Mathf.Min(currentPitch, bendedPitch);
|
|
yield return null;
|
|
}
|
|
}
|
|
|
|
IEnumerator BendDownLoop(float bendTime)
|
|
{
|
|
float bendTimer = 0f;
|
|
float startingPitch = pitch;
|
|
|
|
while (bendTimer < bendTime)
|
|
{
|
|
bendTimer += Time.deltaTime;
|
|
float normalizedProgress = Mathp.Normalize(bendTimer, 0, bendTime);
|
|
float currentPitch = Mathf.Lerp(startingPitch, bendedPitch, 1 - normalizedProgress);
|
|
audioSource.pitch = Mathf.Max(currentPitch, pitch);
|
|
yield return null;
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
public void KillLoop(double fadeTime)
|
|
{
|
|
StartCoroutine(FadeLoop(fadeTime));
|
|
}
|
|
|
|
float loopFadeTimer = 0f;
|
|
IEnumerator FadeLoop(double fadeTime)
|
|
{
|
|
float startingVol = audioSource.volume;
|
|
|
|
while (loopFadeTimer < fadeTime)
|
|
{
|
|
loopFadeTimer += Time.deltaTime;
|
|
audioSource.volume = (float) Math.Max((1f - (loopFadeTimer / fadeTime)) * startingVol, 0.0);
|
|
yield return null;
|
|
}
|
|
|
|
Delete();
|
|
}
|
|
}
|
|
}
|