2024-03-09 18:48:17 +00:00
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
2024-03-10 02:19:17 +00:00
|
|
|
|
using System.Linq;
|
2024-03-09 18:48:17 +00:00
|
|
|
|
using BepInEx;
|
|
|
|
|
using HarmonyLib;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
using UnityEngine.Networking;
|
|
|
|
|
|
|
|
|
|
namespace MuzikaGromche
|
|
|
|
|
{
|
|
|
|
|
[BepInPlugin(PluginInfo.PLUGIN_GUID, PluginInfo.PLUGIN_NAME, PluginInfo.PLUGIN_VERSION)]
|
|
|
|
|
public class Plugin : BaseUnityPlugin
|
|
|
|
|
{
|
2024-03-10 02:19:17 +00:00
|
|
|
|
public static Track[] Tracks = [
|
|
|
|
|
new Track
|
|
|
|
|
{
|
|
|
|
|
Name = "MuzikaGromche",
|
|
|
|
|
WindUpTimer = 46.3f,
|
2024-04-26 21:40:35 +00:00
|
|
|
|
Bpm = 130f,
|
2024-03-10 02:19:17 +00:00
|
|
|
|
},
|
|
|
|
|
new Track
|
|
|
|
|
{
|
|
|
|
|
Name = "VseVZale",
|
|
|
|
|
WindUpTimer = 39f,
|
|
|
|
|
Bpm = 138f,
|
|
|
|
|
}
|
|
|
|
|
];
|
2024-03-09 18:48:17 +00:00
|
|
|
|
|
|
|
|
|
public static Coroutine JesterLightSwitching;
|
2024-03-10 02:19:17 +00:00
|
|
|
|
public static Track CurrentTrack;
|
2024-03-09 18:48:17 +00:00
|
|
|
|
|
|
|
|
|
private void Awake()
|
|
|
|
|
{
|
|
|
|
|
string text = Info.Location.TrimEnd((PluginInfo.PLUGIN_NAME + ".dll").ToCharArray());
|
2024-03-10 02:19:17 +00:00
|
|
|
|
UnityWebRequest[] requests = new UnityWebRequest[Tracks.Length * 2];
|
|
|
|
|
for (int i = 0; i < Tracks.Length; i++) {
|
|
|
|
|
Track track = Tracks[i];
|
|
|
|
|
requests[i * 2] = UnityWebRequestMultimedia.GetAudioClip($"File://{text}{track.Name}Start.mp3", AudioType.MPEG);
|
|
|
|
|
requests[i * 2 + 1] = UnityWebRequestMultimedia.GetAudioClip($"File://{text}{track.Name}Loop.mp3", AudioType.MPEG);
|
|
|
|
|
requests[i * 2].SendWebRequest();
|
|
|
|
|
requests[i * 2 + 1].SendWebRequest();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (!requests.All(request => request.isDone)) { }
|
|
|
|
|
|
|
|
|
|
if (requests.All(request => request.result == UnityWebRequest.Result.Success)) {
|
|
|
|
|
for (int i = 0; i < Tracks.Length; i++) {
|
|
|
|
|
Tracks[i].LoadedStart = DownloadHandlerAudioClip.GetContent(requests[i * 2]);
|
|
|
|
|
Tracks[i].LoadedLoop = DownloadHandlerAudioClip.GetContent(requests[i * 2 + 1]);
|
|
|
|
|
}
|
2024-03-09 18:48:17 +00:00
|
|
|
|
new Harmony(PluginInfo.PLUGIN_NAME).PatchAll(typeof(JesterPatch));
|
|
|
|
|
} else {
|
|
|
|
|
Logger.LogError("Could not load audio file");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-10 02:19:17 +00:00
|
|
|
|
public class Track
|
|
|
|
|
{
|
|
|
|
|
public string Name;
|
|
|
|
|
public float WindUpTimer;
|
|
|
|
|
public float Bpm;
|
|
|
|
|
public AudioClip LoadedStart;
|
|
|
|
|
public AudioClip LoadedLoop;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-09 18:48:17 +00:00
|
|
|
|
[HarmonyPatch(typeof(JesterAI))]
|
|
|
|
|
internal class JesterPatch
|
|
|
|
|
{
|
|
|
|
|
[HarmonyPatch("Update")]
|
|
|
|
|
[HarmonyPrefix]
|
|
|
|
|
public static void DoNotStopTheMusicPrefix(JesterAI __instance, out State __state)
|
|
|
|
|
{
|
|
|
|
|
__state = new State();
|
|
|
|
|
__state.prevStateindex = __instance.previousState;
|
2024-04-26 21:40:35 +00:00
|
|
|
|
if (__instance.currentBehaviourStateIndex == 2 && __instance.previousBehaviourStateIndex != 2) {
|
|
|
|
|
// if just popped out
|
|
|
|
|
// then override farAudio so that vanilla logic does not stop the music
|
|
|
|
|
__state.farAudio = __instance.farAudio;
|
|
|
|
|
__instance.farAudio = __instance.creatureVoice;
|
|
|
|
|
}
|
2024-03-09 18:48:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static List<Color> colors = [Color.magenta, Color.cyan, Color.green, Color.yellow];
|
|
|
|
|
|
|
|
|
|
public static IEnumerator rotateColors()
|
|
|
|
|
{
|
|
|
|
|
Debug.Log("Starting color rotation");
|
|
|
|
|
var i = 0;
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
var color = colors[i];
|
|
|
|
|
Debug.Log("Chose color " + color);
|
|
|
|
|
foreach (var light in RoundManager.Instance.allPoweredLights)
|
|
|
|
|
{
|
|
|
|
|
light.color = color;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
i += 1;
|
|
|
|
|
if (i >= colors.Count) i = 0;
|
2024-03-10 02:19:17 +00:00
|
|
|
|
yield return new WaitForSeconds(60f / Plugin.CurrentTrack.Bpm);
|
2024-03-09 18:48:17 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[HarmonyPatch("Update")]
|
|
|
|
|
[HarmonyPostfix]
|
|
|
|
|
public static void DoNotStopTheMusic(JesterAI __instance, State __state)
|
|
|
|
|
{
|
2024-04-26 21:40:35 +00:00
|
|
|
|
if (__state.farAudio != null)
|
|
|
|
|
{
|
|
|
|
|
__instance.farAudio = __state.farAudio;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-10 02:19:17 +00:00
|
|
|
|
if (__instance.currentBehaviourStateIndex is 1 && __state.prevStateindex != 1)
|
2024-03-09 18:48:17 +00:00
|
|
|
|
{
|
2024-04-26 21:40:35 +00:00
|
|
|
|
// if just started winding up
|
|
|
|
|
// then stop the default music...
|
2024-03-10 02:19:17 +00:00
|
|
|
|
__instance.farAudio.Stop();
|
|
|
|
|
__instance.farAudio.Pause();
|
2024-03-09 18:48:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (__instance.currentBehaviourStateIndex is 1 && !__instance.farAudio.isPlaying)
|
|
|
|
|
{
|
2024-04-26 21:40:35 +00:00
|
|
|
|
// ...and start modded music
|
2024-03-10 02:19:17 +00:00
|
|
|
|
var seed = RoundManager.Instance.dungeonGenerator.Generator.ChosenSeed;
|
|
|
|
|
var trackId = seed % Plugin.Tracks.Length;
|
|
|
|
|
Debug.Log($"Seed is {seed}, chosen track is {trackId} out of {Plugin.Tracks.Length} tracks");
|
|
|
|
|
Plugin.CurrentTrack = Plugin.Tracks[trackId];
|
|
|
|
|
__instance.popUpTimer = Plugin.CurrentTrack.WindUpTimer;
|
2024-03-10 00:47:21 +00:00
|
|
|
|
Debug.Log($"Playing start music: maxDistance: {__instance.farAudio.maxDistance}, minDistance: {__instance.farAudio.minDistance}, volume: {__instance.farAudio.volume}, spread: {__instance.farAudio.spread}");
|
|
|
|
|
__instance.farAudio.maxDistance = 150;
|
2024-03-10 02:19:17 +00:00
|
|
|
|
__instance.farAudio.PlayOneShot(Plugin.CurrentTrack.LoadedStart);
|
2024-03-09 18:48:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (__instance.currentBehaviourStateIndex is 2 && __state.prevStateindex != 2)
|
|
|
|
|
{
|
|
|
|
|
__instance.creatureVoice.Stop();
|
|
|
|
|
|
|
|
|
|
if (Plugin.JesterLightSwitching != null) {
|
|
|
|
|
__instance.StopCoroutine(Plugin.JesterLightSwitching);
|
|
|
|
|
Plugin.JesterLightSwitching = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Plugin.JesterLightSwitching = __instance.StartCoroutine(rotateColors());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (__instance.currentBehaviourStateIndex != 2 && __state.prevStateindex == 2)
|
|
|
|
|
{
|
|
|
|
|
if (Plugin.JesterLightSwitching != null) {
|
|
|
|
|
__instance.StopCoroutine(Plugin.JesterLightSwitching);
|
|
|
|
|
Plugin.JesterLightSwitching = null;
|
|
|
|
|
}
|
|
|
|
|
foreach (var light in RoundManager.Instance.allPoweredLights)
|
|
|
|
|
{
|
|
|
|
|
light.color = Color.white;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (__instance.currentBehaviourStateIndex is 2 && !__instance.creatureVoice.isPlaying && !__instance.farAudio.isPlaying)
|
|
|
|
|
{
|
2024-03-10 00:47:21 +00:00
|
|
|
|
Debug.Log($"Playing loop music: maxDistance: {__instance.creatureVoice.maxDistance}, minDistance: {__instance.creatureVoice.minDistance}, volume: {__instance.creatureVoice.volume}, spread: {__instance.creatureVoice.spread}");
|
|
|
|
|
__instance.creatureVoice.maxDistance = 150;
|
2024-03-10 02:19:17 +00:00
|
|
|
|
__instance.creatureVoice.clip = Plugin.CurrentTrack.LoadedLoop;
|
2024-03-09 18:48:17 +00:00
|
|
|
|
__instance.creatureVoice.Play();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal class State
|
|
|
|
|
{
|
2024-04-26 21:40:35 +00:00
|
|
|
|
public AudioSource farAudio;
|
2024-03-09 18:48:17 +00:00
|
|
|
|
public int prevStateindex;
|
|
|
|
|
}
|
|
|
|
|
}
|