2022-09-18 20:48:14 +00:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
using TMPro;
|
|
|
|
|
|
|
|
using DG.Tweening;
|
2023-06-10 19:13:29 +00:00
|
|
|
using Jukebox;
|
|
|
|
using Jukebox.Legacy;
|
2022-09-18 20:48:14 +00:00
|
|
|
|
|
|
|
namespace HeavenStudio.Editor.Track
|
|
|
|
{
|
|
|
|
public class TempoTimelineObj : SpecialTimelineObj
|
|
|
|
{
|
|
|
|
[Header("Components")]
|
|
|
|
[SerializeField] private TMP_Text tempoTXT;
|
|
|
|
[SerializeField] private GameObject tempoLine;
|
|
|
|
|
2023-06-10 19:13:29 +00:00
|
|
|
public RiqEntity tempoChange;
|
2022-09-18 20:48:14 +00:00
|
|
|
|
|
|
|
new private void Update()
|
|
|
|
{
|
|
|
|
base.Update();
|
|
|
|
if (hovering)
|
|
|
|
{
|
|
|
|
SpecialTimeline.hoveringTypes |= SpecialTimeline.HoveringTypes.TempoChange;
|
|
|
|
if (Timeline.instance.timelineState.currentState == Timeline.CurrentTimelineState.State.TempoChange)
|
|
|
|
{
|
|
|
|
float newTempo = Input.mouseScrollDelta.y;
|
|
|
|
|
|
|
|
if (Input.GetKey(KeyCode.LeftShift))
|
|
|
|
newTempo *= 5f;
|
|
|
|
if (Input.GetKey(KeyCode.LeftControl))
|
|
|
|
newTempo /= 100f;
|
|
|
|
|
2023-06-10 19:13:29 +00:00
|
|
|
tempoChange["tempo"] += newTempo;
|
2022-09-18 20:48:14 +00:00
|
|
|
|
|
|
|
//make sure tempo is positive
|
2023-06-10 19:13:29 +00:00
|
|
|
if (tempoChange["tempo"] < 1)
|
|
|
|
tempoChange["tempo"] = 1;
|
|
|
|
|
|
|
|
if (first && newTempo != 0)
|
|
|
|
Timeline.instance.UpdateStartingBPMText();
|
2022-09-18 20:48:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
UpdateTempo();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void UpdateTempo()
|
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
tempoTXT.text = $"{tempoChange["tempo"]} BPM";
|
2022-09-18 20:48:14 +00:00
|
|
|
Timeline.instance.FitToSong();
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void Init()
|
|
|
|
{
|
|
|
|
UpdateTempo();
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void OnLeftClick()
|
|
|
|
{
|
|
|
|
if (Timeline.instance.timelineState.currentState == Timeline.CurrentTimelineState.State.TempoChange)
|
|
|
|
StartMove();
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void OnRightClick()
|
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
if (first) return;
|
2022-09-18 20:48:14 +00:00
|
|
|
if (Timeline.instance.timelineState.currentState == Timeline.CurrentTimelineState.State.TempoChange)
|
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
GameManager.instance.Beatmap.TempoChanges.Remove(tempoChange);
|
2022-09-18 20:48:14 +00:00
|
|
|
DeleteObj();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public override bool OnMove(float beat)
|
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
foreach (var tempoChange in GameManager.instance.Beatmap.TempoChanges)
|
2022-09-18 20:48:14 +00:00
|
|
|
{
|
|
|
|
if (this.tempoChange == tempoChange)
|
|
|
|
continue;
|
|
|
|
if (beat > tempoChange.beat - Timeline.instance.snapInterval && beat < tempoChange.beat + Timeline.instance.snapInterval)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
this.tempoChange.beat = beat;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void SetVisibility(Timeline.CurrentTimelineState.State state)
|
|
|
|
{
|
|
|
|
if (state == Timeline.CurrentTimelineState.State.TempoChange || state == Timeline.CurrentTimelineState.State.Selection)
|
|
|
|
{
|
|
|
|
gameObject.SetActive(true);
|
|
|
|
if (state == Timeline.CurrentTimelineState.State.TempoChange)
|
|
|
|
tempoLine.SetActive(true);
|
|
|
|
else
|
|
|
|
tempoLine.SetActive(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
gameObject.SetActive(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|