2019-10-27 21:09:18 +00:00
|
|
|
|
using System;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
using UnityEngine.Events;
|
|
|
|
|
|
|
|
|
|
namespace cylvester
|
|
|
|
|
{
|
|
|
|
|
[Serializable]
|
2019-10-29 13:32:55 +00:00
|
|
|
|
public class UnityStateEvent : UnityEvent<IStateManager>
|
2019-10-27 21:09:18 +00:00
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
public interface IStateManager
|
|
|
|
|
{
|
|
|
|
|
int State { set; }
|
|
|
|
|
string[] StateTitles { get; }
|
2019-10-29 13:32:55 +00:00
|
|
|
|
string CurrentState { get; }
|
|
|
|
|
string PreviousState { get; }
|
|
|
|
|
string NextState { get; }
|
|
|
|
|
|
2019-10-27 21:28:47 +00:00
|
|
|
|
void OnMidiReceived(MidiMessage message);
|
2019-10-27 21:09:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class StateManager : MonoBehaviour, IStateManager
|
|
|
|
|
{
|
2019-10-29 12:45:12 +00:00
|
|
|
|
private enum Operation
|
|
|
|
|
{
|
|
|
|
|
Rewind = 0,
|
|
|
|
|
Previous = 1,
|
|
|
|
|
Next = 2
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-27 21:09:18 +00:00
|
|
|
|
[SerializeField] private string csvFileName = "qlist";
|
|
|
|
|
[SerializeField] private UnityStateEvent onStateChanged;
|
|
|
|
|
[SerializeField] private int sceneSelection;
|
|
|
|
|
|
|
|
|
|
void Start()
|
|
|
|
|
{
|
|
|
|
|
var content = System.IO.File.ReadAllText(Application.streamingAssetsPath + "/" + csvFileName + ".csv");
|
|
|
|
|
var lines = content.Split("\n"[0]);
|
|
|
|
|
StateTitles = new string[lines.Length - 1];
|
|
|
|
|
for (var i = 1; i < lines.Length; ++i)
|
|
|
|
|
{
|
|
|
|
|
var columns = (lines[i].Trim()).Split(","[0]);
|
|
|
|
|
StateTitles[i-1] = columns[0];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public string[] StateTitles { get; private set; }
|
|
|
|
|
|
2019-10-29 13:32:55 +00:00
|
|
|
|
public string CurrentState => StateTitles[sceneSelection];
|
|
|
|
|
|
|
|
|
|
public string PreviousState => sceneSelection == 0 ? "---" : StateTitles[sceneSelection-1];
|
|
|
|
|
|
|
|
|
|
public string NextState => sceneSelection == StateTitles.Length - 1 ? "---" : StateTitles[sceneSelection + 1];
|
|
|
|
|
|
2019-10-27 21:09:18 +00:00
|
|
|
|
public int State
|
|
|
|
|
{
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
sceneSelection = value;
|
2019-10-29 13:32:55 +00:00
|
|
|
|
onStateChanged.Invoke(this);
|
2019-10-27 21:09:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-27 21:28:47 +00:00
|
|
|
|
|
|
|
|
|
public void OnMidiReceived(MidiMessage message)
|
|
|
|
|
{
|
2019-10-29 12:45:12 +00:00
|
|
|
|
if (message.Status != 176 || message.Data1 != 127) return;
|
|
|
|
|
|
|
|
|
|
switch ((Operation)message.Data2)
|
2019-10-27 21:28:47 +00:00
|
|
|
|
{
|
2019-10-29 12:45:12 +00:00
|
|
|
|
case Operation.Rewind:
|
|
|
|
|
if (sceneSelection == 0) return;
|
|
|
|
|
sceneSelection = 0;
|
|
|
|
|
break;
|
|
|
|
|
case Operation.Previous:
|
|
|
|
|
if (sceneSelection == 0) return;
|
|
|
|
|
sceneSelection--;
|
|
|
|
|
break;
|
|
|
|
|
case Operation.Next:
|
|
|
|
|
if (sceneSelection >= StateTitles.Length - 1) return;
|
|
|
|
|
sceneSelection++;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return;
|
2019-10-27 21:28:47 +00:00
|
|
|
|
}
|
2019-10-29 13:32:55 +00:00
|
|
|
|
onStateChanged.Invoke(this);
|
2019-10-27 21:09:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|