2022-01-21 01:24:30 +00:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using UnityEngine;
|
2024-01-13 18:31:05 +00:00
|
|
|
using Cysharp.Threading.Tasks;
|
2022-01-21 01:24:30 +00:00
|
|
|
|
2022-03-14 14:21:05 +00:00
|
|
|
namespace HeavenStudio.Util
|
2022-01-21 01:24:30 +00:00
|
|
|
{
|
|
|
|
public class MultiSound : MonoBehaviour
|
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
private double startBeat;
|
2022-02-03 03:58:08 +00:00
|
|
|
private bool game;
|
2022-03-08 04:46:49 +00:00
|
|
|
private bool forcePlay;
|
2024-01-13 18:31:05 +00:00
|
|
|
private bool commited;
|
2022-01-21 01:24:30 +00:00
|
|
|
public List<Sound> sounds = new List<Sound>();
|
2023-01-05 04:04:31 +00:00
|
|
|
public List<Util.Sound> playingSounds = new List<Util.Sound>();
|
2022-01-21 01:24:30 +00:00
|
|
|
|
|
|
|
public class Sound
|
|
|
|
{
|
|
|
|
public string name { get; set; }
|
2023-06-10 19:13:29 +00:00
|
|
|
public double beat { get; set; }
|
2022-03-20 23:46:12 +00:00
|
|
|
public float pitch { get; set; }
|
|
|
|
public float volume { get; set; }
|
|
|
|
public bool looping { get; set; }
|
2023-06-10 19:13:29 +00:00
|
|
|
public double offset { get; set; }
|
2022-01-21 01:24:30 +00:00
|
|
|
|
2023-06-10 19:13:29 +00:00
|
|
|
public Sound(string name, double beat, float pitch = 1f, float volume = 1f, bool looping = false, double offset = 0f)
|
2022-01-21 01:24:30 +00:00
|
|
|
{
|
|
|
|
this.name = name;
|
|
|
|
this.beat = beat;
|
2022-03-20 23:46:12 +00:00
|
|
|
this.pitch = pitch;
|
|
|
|
this.volume = volume;
|
|
|
|
this.looping = looping;
|
|
|
|
this.offset = offset;
|
2022-01-21 01:24:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-04 03:50:46 +00:00
|
|
|
public static MultiSound Play(Sound[] sounds, bool game = true, bool forcePlay = false)
|
2022-01-21 01:24:30 +00:00
|
|
|
{
|
2024-03-04 03:50:46 +00:00
|
|
|
return Play(sounds.ToList(), game, forcePlay);
|
Advanced Blocks (#720)
* play sfx and play animation blocks
i also changed prescheduleFunction to preFunction, and removed the unused preFunction argument in GameAction
i can revert this if need be but it just seemed vestigial
* count in rework + preloading, multisound addition
multisound was using an array that was converted to a list..?
very silly when you consider it's a list first so sometimes it's list -> array -> list lol
new Count-In and Play SFX block preloads sfx now!! epic.
* prefab-ify event properties, Button EntityType
* things are very nearly working!
however i just hit an insane hurdle. how do i modify a dropdown while still being able to access the index/int value of that param directly. UGHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH
* okay it's WORKING now
i just need to do some better dropdown stuff
* ITS WORKING ITS WORKING ITS WORKING
arbitrary animations, now accessible to those without prefab knowledge! and it's piss easy to use!!
* about to make a struct + class, tooltip improvements
gonna make the struct define it, then the class will actually be the dropdown
this is gonna make things so so so so much easier to comprehend
* finishing up, probably one more commit after this
* split up Dropdown into Dropdown and DropdownObj, which basically fixed all of my problems lol
* fixed a count bug
* added param tooltip toggle
* grah it's ALMOST DONE
* it's 99.9% finished.
just some touch ups, i don't think i even know of any bugs
* alright, looks like that's all the bugs gone
* EVERYTHING IS FINISHED!!
2024-02-26 01:46:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static MultiSound Play(List<Sound> sounds, bool game = true, bool forcePlay = false)
|
|
|
|
{
|
2024-03-04 03:50:46 +00:00
|
|
|
if (Conductor.instance == null || sounds.Count < 1) return null;
|
2024-01-13 18:31:05 +00:00
|
|
|
|
2023-01-05 04:04:31 +00:00
|
|
|
GameObject go = new GameObject("MultiSound");
|
|
|
|
MultiSound ms = go.AddComponent<MultiSound>();
|
2024-01-13 18:31:05 +00:00
|
|
|
|
2022-01-21 01:24:30 +00:00
|
|
|
ms.sounds = sounds;
|
|
|
|
ms.startBeat = sounds[0].beat;
|
2022-02-03 03:58:08 +00:00
|
|
|
ms.game = game;
|
2022-03-08 04:46:49 +00:00
|
|
|
ms.forcePlay = forcePlay;
|
2024-01-13 18:31:05 +00:00
|
|
|
ms.commited = false;
|
|
|
|
|
|
|
|
if (Conductor.instance.WaitingForDsp)
|
|
|
|
{
|
|
|
|
Debug.Log("Multisound waiting for DSP, deferring play");
|
|
|
|
ms.PlayDeferred().Forget();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ms.CommitPlay();
|
|
|
|
}
|
2022-01-21 01:24:30 +00:00
|
|
|
|
2024-01-13 18:31:05 +00:00
|
|
|
return ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CommitPlay()
|
|
|
|
{
|
2023-01-05 04:04:31 +00:00
|
|
|
for (int i = 0; i < sounds.Count; i++)
|
|
|
|
{
|
|
|
|
Util.Sound s;
|
|
|
|
if (game)
|
2023-06-10 19:13:29 +00:00
|
|
|
s = SoundByte.PlayOneShotGame(sounds[i].name, sounds[i].beat, sounds[i].pitch, sounds[i].volume, sounds[i].looping, forcePlay, sounds[i].offset);
|
2023-01-05 04:04:31 +00:00
|
|
|
else
|
2023-06-10 19:13:29 +00:00
|
|
|
s = SoundByte.PlayOneShot(sounds[i].name, sounds[i].beat, sounds[i].pitch, sounds[i].volume, sounds[i].looping, null, sounds[i].offset);
|
2024-01-13 18:31:05 +00:00
|
|
|
playingSounds.Add(s);
|
2023-01-05 04:04:31 +00:00
|
|
|
}
|
2024-01-13 18:31:05 +00:00
|
|
|
commited = true;
|
|
|
|
}
|
2023-01-05 04:04:31 +00:00
|
|
|
|
2024-01-13 18:31:05 +00:00
|
|
|
async UniTaskVoid PlayDeferred()
|
|
|
|
{
|
|
|
|
await UniTask.WaitUntil(() => !Conductor.instance.WaitingForDsp, PlayerLoopTiming.LastUpdate);
|
|
|
|
Debug.Log("Multisound DSP ready, playing");
|
|
|
|
CommitPlay();
|
2022-01-21 01:24:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void Update()
|
|
|
|
{
|
2024-01-13 18:31:05 +00:00
|
|
|
if (!commited) return;
|
2023-01-05 04:04:31 +00:00
|
|
|
foreach (Util.Sound sound in playingSounds)
|
2022-01-21 01:24:30 +00:00
|
|
|
{
|
2023-12-26 05:22:51 +00:00
|
|
|
if (sound == null) continue;
|
|
|
|
if (!sound.available) return;
|
2022-01-21 01:24:30 +00:00
|
|
|
}
|
2023-09-11 22:28:04 +00:00
|
|
|
Destroy(gameObject);
|
2022-01-21 01:24:30 +00:00
|
|
|
}
|
2022-03-07 03:56:45 +00:00
|
|
|
|
|
|
|
public void Delete()
|
|
|
|
{
|
2023-09-11 22:28:04 +00:00
|
|
|
foreach (Util.Sound sound in playingSounds)
|
|
|
|
{
|
|
|
|
GameManager.instance.SoundObjects.Release(sound);
|
|
|
|
}
|
2022-03-07 03:56:45 +00:00
|
|
|
Destroy(gameObject);
|
|
|
|
}
|
2024-03-29 02:35:11 +00:00
|
|
|
|
|
|
|
public void StopAll()
|
|
|
|
{
|
|
|
|
foreach (Util.Sound sound in playingSounds)
|
|
|
|
{
|
|
|
|
sound.Stop();
|
|
|
|
}
|
|
|
|
}
|
2022-01-21 01:24:30 +00:00
|
|
|
}
|
|
|
|
}
|