2021-12-19 04:10:43 +00:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
2021-12-31 06:56:51 +00:00
|
|
|
using UnityEngine.Audio;
|
2021-12-19 04:10:43 +00:00
|
|
|
|
|
|
|
using Starpelly;
|
|
|
|
|
2022-03-14 14:21:05 +00:00
|
|
|
namespace HeavenStudio
|
2021-12-19 04:10:43 +00:00
|
|
|
{
|
2022-01-03 22:42:43 +00:00
|
|
|
// [RequireComponent(typeof(AudioSource))]
|
2021-12-21 01:10:49 +00:00
|
|
|
public class Conductor : MonoBehaviour
|
|
|
|
{
|
2022-01-07 11:36:23 +00:00
|
|
|
// Song beats per minute
|
|
|
|
// This is determined by the song you're trying to sync up to
|
2021-12-21 01:10:49 +00:00
|
|
|
public float songBpm;
|
2021-12-19 04:10:43 +00:00
|
|
|
|
2022-01-07 11:36:23 +00:00
|
|
|
// The number of seconds for each song beat
|
2021-12-21 01:10:49 +00:00
|
|
|
public float secPerBeat;
|
2021-12-19 04:10:43 +00:00
|
|
|
|
2022-03-22 18:29:15 +00:00
|
|
|
// The number of seconds for each song beat, inversely scaled to song pitch (higer pitch = shorter time)
|
|
|
|
public float pitchedSecPerBeat => (secPerBeat / musicSource.pitch);
|
|
|
|
|
2022-01-07 11:36:23 +00:00
|
|
|
// Current song position, in seconds
|
2022-02-02 01:11:42 +00:00
|
|
|
private float songPos; // for Conductor use only
|
2021-12-21 01:10:49 +00:00
|
|
|
public float songPosition;
|
2021-12-19 04:10:43 +00:00
|
|
|
|
2022-01-07 11:36:23 +00:00
|
|
|
// Current song position, in beats
|
2022-02-02 01:11:42 +00:00
|
|
|
private float songPosBeat; // for Conductor use only
|
2021-12-21 01:10:49 +00:00
|
|
|
public float songPositionInBeats;
|
2021-12-19 04:10:43 +00:00
|
|
|
|
2022-01-07 11:36:23 +00:00
|
|
|
// Current time of the song
|
|
|
|
private float time;
|
2021-12-19 04:10:43 +00:00
|
|
|
|
2022-01-07 11:36:23 +00:00
|
|
|
// an AudioSource attached to this GameObject that will play the music.
|
|
|
|
public AudioSource musicSource;
|
2021-12-19 04:10:43 +00:00
|
|
|
|
2022-01-07 11:36:23 +00:00
|
|
|
// The offset to the first beat of the song in seconds
|
|
|
|
public float firstBeatOffset;
|
2021-12-19 04:10:43 +00:00
|
|
|
|
2022-01-07 11:36:23 +00:00
|
|
|
// Conductor instance
|
2021-12-21 01:10:49 +00:00
|
|
|
public static Conductor instance;
|
2021-12-19 04:10:43 +00:00
|
|
|
|
2022-01-15 17:45:08 +00:00
|
|
|
// Conductor is currently playing song
|
2022-01-07 11:36:23 +00:00
|
|
|
public bool isPlaying;
|
2022-01-15 17:45:08 +00:00
|
|
|
|
|
|
|
// Conductor is currently paused, but not fully stopped
|
2022-01-07 11:36:23 +00:00
|
|
|
public bool isPaused;
|
|
|
|
|
2022-01-15 17:45:08 +00:00
|
|
|
// Last reported beat based on song position
|
|
|
|
private float lastReportedBeat = 0f;
|
|
|
|
|
|
|
|
// Metronome tick sound enabled
|
|
|
|
public bool metronome = false;
|
|
|
|
|
2022-01-28 02:50:57 +00:00
|
|
|
public float timeSinceLastTempoChange = 0;
|
|
|
|
|
2022-01-19 05:40:49 +00:00
|
|
|
private bool beat;
|
|
|
|
|
2022-01-07 11:36:23 +00:00
|
|
|
// private AudioDspTimeKeeper timeKeeper;
|
2021-12-28 02:36:27 +00:00
|
|
|
|
2021-12-21 01:10:49 +00:00
|
|
|
void Awake()
|
|
|
|
{
|
|
|
|
instance = this;
|
|
|
|
}
|
2021-12-19 04:10:43 +00:00
|
|
|
|
2022-01-08 16:42:48 +00:00
|
|
|
public void SetBeat(float beat)
|
2022-01-07 11:36:23 +00:00
|
|
|
{
|
2022-01-08 16:42:48 +00:00
|
|
|
float secFromBeat = GetSongPosFromBeat(beat);
|
2021-12-19 04:10:43 +00:00
|
|
|
|
2022-01-09 23:35:55 +00:00
|
|
|
if (musicSource.clip != null)
|
|
|
|
{
|
|
|
|
if (secFromBeat < musicSource.clip.length)
|
|
|
|
musicSource.time = secFromBeat;
|
|
|
|
else
|
|
|
|
musicSource.time = 0;
|
|
|
|
}
|
2022-01-07 23:51:08 +00:00
|
|
|
|
2022-01-08 16:42:48 +00:00
|
|
|
GameManager.instance.SetCurrentEventToClosest(beat);
|
2022-02-08 01:07:03 +00:00
|
|
|
songPosBeat = beat;
|
|
|
|
songPositionInBeats = songPosBeat;
|
2022-01-07 23:51:08 +00:00
|
|
|
}
|
|
|
|
|
2022-01-08 16:42:48 +00:00
|
|
|
public void Play(float beat)
|
2022-01-07 23:51:08 +00:00
|
|
|
{
|
2022-02-25 00:09:14 +00:00
|
|
|
bool negativeOffset = firstBeatOffset < 0f;
|
|
|
|
bool negativeStartTime = false;
|
|
|
|
|
2022-06-06 16:54:57 +00:00
|
|
|
// Debug.Log("starting playback @ beat " + beat + ", offset is " + firstBeatOffset);
|
|
|
|
|
2022-02-24 14:02:21 +00:00
|
|
|
var startPos = GetSongPosFromBeat(beat);
|
2022-02-25 00:09:14 +00:00
|
|
|
if (negativeOffset)
|
|
|
|
{
|
|
|
|
time = startPos;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
negativeStartTime = startPos - firstBeatOffset < 0f;
|
|
|
|
|
|
|
|
if (negativeStartTime)
|
|
|
|
time = startPos - firstBeatOffset;
|
|
|
|
else
|
|
|
|
time = startPos;
|
|
|
|
}
|
2022-06-06 16:54:57 +00:00
|
|
|
|
|
|
|
//TODO: make this take into account past tempo changes
|
|
|
|
songPosBeat = GetBeatFromSongPos(time - firstBeatOffset);
|
|
|
|
// Debug.Log("corrected starting playback @ beat " + songPosBeat);
|
2022-01-07 11:36:23 +00:00
|
|
|
|
|
|
|
isPlaying = true;
|
|
|
|
isPaused = false;
|
|
|
|
|
2022-02-24 14:02:21 +00:00
|
|
|
if (SongPosLessThanClipLength(startPos))
|
2022-01-08 16:42:48 +00:00
|
|
|
{
|
2022-02-25 00:09:14 +00:00
|
|
|
if (negativeOffset)
|
|
|
|
{
|
|
|
|
var musicStartTime = startPos + firstBeatOffset;
|
|
|
|
|
|
|
|
if (musicStartTime < 0f)
|
|
|
|
{
|
|
|
|
musicSource.time = startPos;
|
2022-02-25 04:37:04 +00:00
|
|
|
musicSource.PlayScheduled(AudioSettings.dspTime - firstBeatOffset / musicSource.pitch);
|
2022-02-25 00:09:14 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
musicSource.time = musicStartTime;
|
|
|
|
musicSource.PlayScheduled(AudioSettings.dspTime);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (negativeStartTime)
|
|
|
|
{
|
|
|
|
musicSource.time = startPos;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
musicSource.time = startPos + firstBeatOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
musicSource.PlayScheduled(AudioSettings.dspTime);
|
|
|
|
}
|
2022-01-08 16:42:48 +00:00
|
|
|
}
|
|
|
|
|
2022-01-14 02:33:51 +00:00
|
|
|
// GameManager.instance.SetCurrentEventToClosest(songPositionInBeats);
|
2021-12-21 01:10:49 +00:00
|
|
|
}
|
2021-12-19 04:10:43 +00:00
|
|
|
|
2022-01-07 11:36:23 +00:00
|
|
|
public void Pause()
|
2021-12-28 02:36:27 +00:00
|
|
|
{
|
2022-01-07 11:36:23 +00:00
|
|
|
isPlaying = false;
|
|
|
|
isPaused = true;
|
|
|
|
|
|
|
|
musicSource.Pause();
|
|
|
|
}
|
|
|
|
|
2022-01-08 16:42:48 +00:00
|
|
|
public void Stop(float time)
|
2022-01-07 11:36:23 +00:00
|
|
|
{
|
2022-01-08 16:42:48 +00:00
|
|
|
this.time = time;
|
2022-02-02 01:11:42 +00:00
|
|
|
|
|
|
|
songPosBeat = 0;
|
|
|
|
songPositionInBeats = 0;
|
|
|
|
|
2022-01-07 11:36:23 +00:00
|
|
|
isPlaying = false;
|
|
|
|
isPaused = false;
|
|
|
|
|
|
|
|
musicSource.Stop();
|
2021-12-31 14:46:11 +00:00
|
|
|
}
|
2022-01-28 02:50:57 +00:00
|
|
|
float test;
|
2021-12-31 14:46:11 +00:00
|
|
|
|
2021-12-27 04:48:39 +00:00
|
|
|
public void Update()
|
2021-12-19 04:10:43 +00:00
|
|
|
{
|
2022-01-28 02:50:57 +00:00
|
|
|
secPerBeat = 60f / songBpm;
|
|
|
|
|
2022-01-07 11:36:23 +00:00
|
|
|
if (isPlaying)
|
|
|
|
{
|
2022-02-24 14:02:21 +00:00
|
|
|
var dt = Time.unscaledDeltaTime * musicSource.pitch;
|
|
|
|
|
|
|
|
time += dt;
|
2021-12-19 04:10:43 +00:00
|
|
|
|
2022-02-02 01:11:42 +00:00
|
|
|
songPos = time;
|
|
|
|
songPosition = songPos;
|
2021-12-19 04:10:43 +00:00
|
|
|
|
2022-02-24 14:02:21 +00:00
|
|
|
songPosBeat += (dt / secPerBeat);
|
2022-02-02 01:11:42 +00:00
|
|
|
songPositionInBeats = songPosBeat;
|
2022-01-28 02:50:57 +00:00
|
|
|
// songPositionInBeats = Time.deltaTime / secPerBeat;
|
2022-01-15 17:45:08 +00:00
|
|
|
|
|
|
|
if (metronome)
|
|
|
|
{
|
2022-01-19 05:40:49 +00:00
|
|
|
if (ReportBeat(ref lastReportedBeat))
|
2022-01-15 17:45:08 +00:00
|
|
|
{
|
2022-01-19 05:40:49 +00:00
|
|
|
Util.Jukebox.PlayOneShot("metronome");
|
2022-01-15 17:45:08 +00:00
|
|
|
}
|
|
|
|
else if (songPosition <= lastReportedBeat)
|
|
|
|
{
|
|
|
|
lastReportedBeat = (songPosition - (songPosition % secPerBeat));
|
|
|
|
}
|
|
|
|
}
|
2022-01-07 11:36:23 +00:00
|
|
|
}
|
2021-12-21 01:10:49 +00:00
|
|
|
}
|
2021-12-19 04:10:43 +00:00
|
|
|
|
2022-02-28 05:11:18 +00:00
|
|
|
public bool ReportBeat(ref float lastReportedBeat, float offset = 0, bool shiftBeatToOffset = false)
|
2022-01-19 05:40:49 +00:00
|
|
|
{
|
|
|
|
bool result = songPosition > (lastReportedBeat + offset) + secPerBeat;
|
|
|
|
if (result == true)
|
|
|
|
{
|
2022-02-28 05:11:18 +00:00
|
|
|
lastReportedBeat = (songPosition - (songPosition % secPerBeat));
|
|
|
|
|
|
|
|
if (!shiftBeatToOffset)
|
|
|
|
lastReportedBeat += offset;
|
2022-01-19 05:40:49 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2022-02-03 22:20:26 +00:00
|
|
|
public float GetLoopPositionFromBeat(float beatOffset, float length)
|
|
|
|
{
|
2022-02-09 03:58:25 +00:00
|
|
|
return Mathf.Repeat((songPositionInBeats / length) + beatOffset, 1);
|
2022-02-03 22:20:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public float GetPositionFromBeat(float startBeat, float length)
|
2021-12-21 01:10:49 +00:00
|
|
|
{
|
2021-12-27 04:48:39 +00:00
|
|
|
float a = Mathp.Normalize(songPositionInBeats, startBeat, startBeat + length);
|
|
|
|
return a;
|
2021-12-21 01:10:49 +00:00
|
|
|
}
|
|
|
|
|
2022-03-01 06:38:38 +00:00
|
|
|
public float GetBeatFromPosition(float position, float startBeat, float length)
|
|
|
|
{
|
|
|
|
return Mathp.DeNormalize(position, startBeat, startBeat + length);
|
|
|
|
}
|
|
|
|
|
2022-02-10 11:59:20 +00:00
|
|
|
public float GetPositionFromMargin(float targetBeat, float margin)
|
|
|
|
{
|
|
|
|
return GetPositionFromBeat(targetBeat - margin, margin);
|
|
|
|
}
|
|
|
|
|
2022-03-01 06:38:38 +00:00
|
|
|
public float GetBeatFromPositionAndMargin(float position, float targetBeat, float margin)
|
|
|
|
{
|
|
|
|
return GetBeatFromPosition(position, targetBeat - margin, margin);
|
|
|
|
}
|
|
|
|
|
2022-06-06 16:54:57 +00:00
|
|
|
private List<Beatmap.TempoChange> GetSortedTempoChanges(Beatmap chart)
|
|
|
|
{
|
|
|
|
//iterate over all tempo changes, adding to counter
|
|
|
|
List<Beatmap.TempoChange> tempoChanges = chart.tempoChanges;
|
|
|
|
tempoChanges.Sort((x, y) => x.beat.CompareTo(y.beat)); //sorts all tempo changes by ascending time (GameManager already does this but juste en cas...)
|
|
|
|
return tempoChanges;
|
|
|
|
}
|
|
|
|
|
2022-01-07 23:51:08 +00:00
|
|
|
public float GetSongPosFromBeat(float beat)
|
2021-12-31 14:46:11 +00:00
|
|
|
{
|
2022-06-06 16:54:57 +00:00
|
|
|
Beatmap chart = GameManager.instance.Beatmap;
|
|
|
|
SetBpm(chart.bpm);
|
|
|
|
|
|
|
|
//initial counter
|
|
|
|
float counter = 0f;
|
|
|
|
|
|
|
|
//time of last tempo change, to know how much to add to counter
|
|
|
|
float lastTempoChangeBeat = 0f;
|
|
|
|
|
|
|
|
//iterate over all tempo changes, adding to counter
|
|
|
|
List<Beatmap.TempoChange> tempoChanges = GetSortedTempoChanges(chart);
|
|
|
|
foreach (var t in tempoChanges)
|
|
|
|
{
|
|
|
|
if (t.beat > beat)
|
|
|
|
{
|
|
|
|
// this tempo change is past our requested time, abort
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Debug.Log("tempo change at " + t.beat);
|
|
|
|
|
|
|
|
counter += (t.beat - lastTempoChangeBeat) * secPerBeat;
|
|
|
|
// Debug.Log("counter is now " + counter);
|
|
|
|
|
|
|
|
// now update to new bpm
|
|
|
|
SetBpm(t.tempo);
|
|
|
|
lastTempoChangeBeat = t.beat;
|
|
|
|
}
|
|
|
|
|
|
|
|
//passed all past tempo changes, now extrapolate from last tempo change until requested position
|
|
|
|
counter += (beat - lastTempoChangeBeat) * secPerBeat;
|
|
|
|
|
|
|
|
// Debug.Log("GetSongPosFromBeat returning " + counter);
|
|
|
|
return counter;
|
2021-12-31 14:46:11 +00:00
|
|
|
}
|
|
|
|
|
2022-06-06 16:54:57 +00:00
|
|
|
//thank you @wooningcharithri#7419 for the psuedo-code
|
|
|
|
private float BeatsToSecs(float beats, float bpm)
|
|
|
|
{
|
|
|
|
// Debug.Log("BeatsToSecs returning " + beats / bpm * 60);
|
|
|
|
return beats / bpm * 60f;
|
|
|
|
}
|
|
|
|
private float SecsToBeats(float s, float bpm)
|
|
|
|
{
|
|
|
|
// Debug.Log("SecsToBeats returning " + s / 60f / bpm);
|
|
|
|
return s / 60f * bpm;
|
|
|
|
}
|
|
|
|
|
|
|
|
public float GetBeatFromSongPos(float seconds)
|
|
|
|
{
|
|
|
|
// Debug.Log("Getting beat of seconds " + seconds);
|
|
|
|
Beatmap chart = GameManager.instance.Beatmap;
|
|
|
|
float lastTempoChangeBeat = 0f;
|
|
|
|
float lastBpm = chart.bpm;
|
|
|
|
float counterSeconds = -firstBeatOffset;
|
|
|
|
|
|
|
|
List<Beatmap.TempoChange> tempoChanges = GetSortedTempoChanges(chart);
|
|
|
|
foreach (var t in tempoChanges)
|
|
|
|
{
|
|
|
|
float beatToNext = t.beat - lastTempoChangeBeat;
|
|
|
|
float secToNext = BeatsToSecs(beatToNext, lastBpm);
|
|
|
|
float nextSecs = counterSeconds + secToNext;
|
|
|
|
|
|
|
|
// Debug.Log("nextSecs is " + nextSecs + ", seconds " + seconds);
|
|
|
|
if (nextSecs >= seconds)
|
|
|
|
break;
|
|
|
|
|
|
|
|
lastTempoChangeBeat = t.beat;
|
|
|
|
lastBpm = t.tempo;
|
|
|
|
counterSeconds = nextSecs;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Debug.Log("lastTempoChangeBeat is " + lastTempoChangeBeat + ", counterSeconds is " + counterSeconds);
|
|
|
|
|
|
|
|
return lastTempoChangeBeat + SecsToBeats(seconds - counterSeconds, lastBpm);
|
|
|
|
}
|
|
|
|
//
|
|
|
|
|
2022-03-20 23:46:12 +00:00
|
|
|
// convert real seconds to beats
|
|
|
|
public float GetRestFromRealTime(float seconds)
|
|
|
|
{
|
2022-03-22 18:29:15 +00:00
|
|
|
return seconds/pitchedSecPerBeat;
|
2022-03-20 23:46:12 +00:00
|
|
|
}
|
|
|
|
|
2021-12-23 02:28:05 +00:00
|
|
|
public void SetBpm(float bpm)
|
|
|
|
{
|
|
|
|
this.songBpm = bpm;
|
|
|
|
secPerBeat = 60f / songBpm;
|
|
|
|
}
|
2022-01-06 00:11:33 +00:00
|
|
|
|
2022-03-19 12:46:38 +00:00
|
|
|
public void SetVolume(int percent)
|
|
|
|
{
|
|
|
|
musicSource.volume = percent / 100f;
|
|
|
|
}
|
|
|
|
|
2022-01-06 00:11:33 +00:00
|
|
|
public float SongLengthInBeats()
|
|
|
|
{
|
2022-01-07 11:36:23 +00:00
|
|
|
if (!musicSource.clip) return 0;
|
2022-06-06 16:54:57 +00:00
|
|
|
return GetBeatFromSongPos(musicSource.clip.length);
|
2022-01-06 00:11:33 +00:00
|
|
|
}
|
2022-01-08 16:42:48 +00:00
|
|
|
|
|
|
|
public bool SongPosLessThanClipLength(float t)
|
|
|
|
{
|
2022-01-09 23:35:55 +00:00
|
|
|
if (musicSource.clip != null)
|
|
|
|
return t < musicSource.clip.length;
|
|
|
|
else
|
|
|
|
return false;
|
2022-01-08 16:42:48 +00:00
|
|
|
}
|
2022-01-11 00:17:29 +00:00
|
|
|
|
|
|
|
public bool NotStopped()
|
|
|
|
{
|
2022-01-17 02:31:49 +00:00
|
|
|
return Conductor.instance.isPlaying == true || Conductor.instance.isPaused == true;
|
2022-01-11 00:17:29 +00:00
|
|
|
}
|
2021-12-19 04:10:43 +00:00
|
|
|
}
|
|
|
|
}
|