HeavenStudioPlus/Assets/Scripts/Util/Jukebox.cs

68 lines
1.8 KiB
C#
Raw Normal View History

2021-12-21 01:10:49 +00:00
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RhythmHeavenMania.Util
{
public class Jukebox
{
public enum AudioType
{
OGG,
WAV
}
/// <summary>
/// This is me just idiot-proofing.
/// </summary>
public static void BasicCheck()
{
if (FindJukebox() == null)
{
GameObject Jukebox = new GameObject("Jukebox");
Jukebox.AddComponent<AudioSource>();
Jukebox.tag = "Jukebox";
}
}
public static GameObject FindJukebox()
{
if (GameObject.FindGameObjectWithTag("Jukebox") != null)
return GameObject.FindGameObjectWithTag("Jukebox");
else
return null;
}
public static void SetVolume(float volume)
{
BasicCheck();
FindJukebox().GetComponent<AudioSource>().volume = volume;
}
2022-01-21 01:24:30 +00:00
public static void PlayOneShot(string name, float beat = -1)
2021-12-21 01:10:49 +00:00
{
GameObject oneShot = new GameObject("oneShot");
2022-01-21 01:24:30 +00:00
AudioSource audioSource = oneShot.AddComponent<AudioSource>();
audioSource.playOnAwake = false;
2021-12-21 01:10:49 +00:00
Sound snd = oneShot.AddComponent<Sound>();
2022-01-15 07:08:23 +00:00
AudioClip clip = Resources.Load<AudioClip>($"Sfx/{name}");
snd.clip = clip;
2022-01-21 01:24:30 +00:00
snd.beat = beat;
2022-01-15 07:08:23 +00:00
// snd.pitch = (clip.length / Conductor.instance.secPerBeat);
2022-01-21 01:24:30 +00:00
GameManager.instance.SoundObjects.Add(oneShot);
2021-12-21 01:10:49 +00:00
}
2021-12-23 22:39:03 +00:00
2022-01-21 01:24:30 +00:00
public static void PlayOneShotGame(string name, float beat = -1)
2021-12-23 22:39:03 +00:00
{
if (GameManager.instance.currentGame == name.Split('/')[0])
2022-01-21 01:24:30 +00:00
{
PlayOneShot($"games/{name}", beat);
}
2021-12-23 22:39:03 +00:00
}
2021-12-21 01:10:49 +00:00
}
}