HeavenStudioPlus/Assets/Scripts/Util/Sound.cs

141 lines
3.6 KiB
C#
Raw Normal View History

2021-12-21 01:10:49 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
2022-03-14 14:21:05 +00:00
namespace HeavenStudio.Util
2021-12-21 01:10:49 +00:00
{
public class Sound : MonoBehaviour
{
public AudioClip clip;
2022-01-15 07:08:23 +00:00
public float pitch = 1;
public float volume = 1;
2021-12-21 01:10:49 +00:00
// For use with PlayOneShotScheduled
public bool scheduled;
public double scheduledTime;
2022-03-07 09:16:31 +00:00
public bool looping;
public float loopEndBeat = -1;
public float fadeTime;
int loopIndex = 0;
2022-03-07 09:16:31 +00:00
2021-12-21 01:10:49 +00:00
private AudioSource audioSource;
2022-01-15 07:08:23 +00:00
private int pauseTimes = 0;
private float startTime;
2022-01-21 01:24:30 +00:00
public float beat;
bool playInstant = false;
int playIndex = 0;
2021-12-21 01:10:49 +00:00
private void Start()
{
audioSource = GetComponent<AudioSource>();
2022-01-15 07:08:23 +00:00
audioSource.clip = clip;
audioSource.pitch = pitch;
audioSource.volume = volume;
2022-03-07 09:16:31 +00:00
audioSource.loop = looping;
if (beat == -1 && !scheduled)
2022-01-21 01:24:30 +00:00
{
audioSource.PlayScheduled(Time.time);
playInstant = true;
playIndex++;
}
else
{
2022-01-21 01:24:30 +00:00
playInstant = false;
}
2022-01-21 01:24:30 +00:00
startTime = Conductor.instance.songPosition;
2022-03-07 09:16:31 +00:00
if (!scheduled && !looping)
StartCoroutine(NotRelyOnBeatSound());
2021-12-21 01:10:49 +00:00
}
2022-01-15 07:08:23 +00:00
private void Update()
2021-12-21 01:10:49 +00:00
{
2022-03-07 09:16:31 +00:00
if (playIndex < 1)
{
2022-03-07 09:16:31 +00:00
if (scheduled)
{
2022-03-07 09:16:31 +00:00
if (AudioSettings.dspTime > scheduledTime)
{
StartCoroutine(NotRelyOnBeatSound());
playIndex++;
}
}
2022-03-07 09:16:31 +00:00
else if (!playInstant)
2022-01-20 01:48:52 +00:00
{
2022-03-07 09:16:31 +00:00
if (Conductor.instance.songPositionInBeats > beat)
{
audioSource.PlayScheduled(Time.time);
playIndex++;
}
}
}
if (loopIndex < 1)
{
2022-03-10 04:00:57 +00:00
if (looping && loopEndBeat != -1) // Looping sounds play forever unless params are set.
{
if (Conductor.instance.songPositionInBeats > loopEndBeat)
{
KillLoop(fadeTime);
loopIndex++;
2022-03-07 09:16:31 +00:00
}
2022-01-20 01:48:52 +00:00
}
2022-01-15 07:08:23 +00:00
}
}
2022-01-15 07:08:23 +00:00
IEnumerator NotRelyOnBeatSound()
{
2022-03-07 09:16:31 +00:00
if (!looping) // Looping sounds are destroyed manually.
{
yield return new WaitForSeconds(clip.length);
Delete();
2022-03-07 09:16:31 +00:00
}
}
2022-03-10 03:59:48 +00:00
public void SetLoopParams(float endBeat, float fadeTime)
{
loopEndBeat = endBeat;
this.fadeTime = fadeTime;
}
public void Stop()
{
if (audioSource != null)
audioSource.Stop();
2022-03-10 03:59:48 +00:00
}
public void Delete()
{
GameManager.instance.SoundObjects.Remove(gameObject);
Destroy(gameObject);
2021-12-21 01:10:49 +00:00
}
2022-03-07 09:16:31 +00:00
public void KillLoop(float fadeTime)
{
StartCoroutine(FadeLoop(fadeTime));
}
float loopFadeTimer = 0f;
IEnumerator FadeLoop(float fadeTime)
{
float startingVol = audioSource.volume;
while (loopFadeTimer < fadeTime)
{
loopFadeTimer += Time.deltaTime;
audioSource.volume = Mathf.Max((1f - (loopFadeTimer / fadeTime)) * startingVol, 0f);
yield return null;
}
Delete();
2021-12-21 01:10:49 +00:00
}
}
}