-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAudioManager.cs
151 lines (125 loc) · 2.78 KB
/
AudioManager.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
using System;
using UnityEngine;
using Random = UnityEngine.Random;
public class AudioManager : MonoBehaviour
{
private static AudioManager ins;
public static AudioManager Instance => ins;
public AudioSource AudioMusic;
public AudioSource AudioSFX;
public Sound[] Sounds;
private bool m_activeSfx;
private bool m_activeMusic;
private void Awake()
{
if (!ins)
{
ins = this;
}
if (AudioMusic != null)
{
if (AudioMusic.enabled)
{
m_activeMusic = true;
}
}
if (AudioSFX != null)
{
if (AudioSFX.enabled)
{
m_activeSfx = true;
}
}
}
public void PlaySfx(KeySound key)
{
if (!m_activeSfx)
{
return;
}
if (AudioSFX == null || Sounds.Length == 0)
{
return;
}
Sound sound = Array.Find(Sounds, s => s.Key == key);
if (sound == null || sound.SoundClip.Length == 0)
{
return;
}
int index = Random.Range(0, sound.SoundClip.Length);
AudioSFX.PlayOneShot(sound.SoundClip[index], sound.Volume);
Debug.Log("Play Sfx");
}
public void PlayMusic(KeySound key)
{
if (!m_activeMusic)
{
return;
}
if (AudioMusic == null || Sounds.Length == 0)
{
return;
}
Sound sound = Array.Find(Sounds, s => s.Key == key);
if (sound == null || sound.SoundClip.Length == 0)
{
return;
}
int index = Random.Range(0, sound.SoundClip.Length);
AudioMusic.clip = sound.SoundClip[index];
AudioMusic.volume = sound.Volume;
AudioMusic.Play();
Debug.Log("Play Music");
}
public void ActiveSfx()
{
if (AudioSFX == null)
{
return;
}
AudioSFX.enabled = true;
m_activeSfx = true;
}
public void DisableSfx()
{
if (AudioSFX == null)
{
return;
}
AudioSFX.enabled = false;
m_activeSfx = false;
}
public void ActiveMusic()
{
if (AudioMusic == null)
{
return;
}
AudioMusic.enabled = true;
m_activeMusic = true;
}
public void DisableMusic()
{
if (AudioMusic == null)
{
return;
}
AudioMusic.enabled = false;
m_activeMusic = false;
}
}
[Serializable]
public class Sound
{
public KeySound Key;
[Range(0.0f, 1.0f)]
public float Volume;
public AudioClip[] SoundClip;
}
[Serializable]
public enum KeySound
{
WalkFootStepStone,
RunFootStepStone,
Landing
}