Liberi
An exergame built for kids with CP!
SoundPool.cs
1 using UnityEngine;
2 using System;
3 using System.Collections;
4 using System.Collections.Generic;
5 using System.Linq;
6 using LiberiNet;
7 
11 public class SoundPool : MonoBehaviour
12 {
13  static SoundPool _instance;
14 
15  public GameObject SourcePrefab;
16 
17  List<PooledAudioSource> _freeSources;
18 
19  public static AudioSource Play (string clipId, float volume = 1f, float pitch = 1f)
20  {
21  return Play(clipId, Vector3.zero, volume, pitch);
22  }
23 
24  public static AudioSource Play (AudioClip clip, float volume = 1f, float pitch = 1f)
25  {
26  return Play(clip, Vector3.zero, volume, pitch);
27  }
28 
29  public static AudioSource Play (string clipId, Vector3 position, float volume = 1f, float pitch = 1f)
30  {
31  var clip = Resources.Load<AudioClip>(clipId);
32 
33  if (clip != null)
34  return Play(clip, position, volume, pitch);
35 
36  return null;
37  }
38 
39  public static AudioSource Play (AudioClip clip, Vector3 position, float volume = 1f, float pitch = 1f)
40  {
41  var source = _instance.GetFreeSource();
42 
43  if (source != null)
44  {
45  _instance._freeSources.Remove(source);
46 
47  source.transform.position = position;
48  source.Target = null;
49  source.Play(clip, volume, pitch);
50 
51  return source.audio;
52  }
53 
54  return null;
55  }
56 
57  public static AudioSource Play (string clipId, Component target, float volume = 1f, float pitch = 1f)
58  {
59  return Play(clipId, target.gameObject, volume, pitch);
60  }
61 
62  public static AudioSource Play (AudioClip clip, Component target, float volume = 1f, float pitch = 1f)
63  {
64  return Play(clip, target.gameObject, volume, pitch);
65  }
66 
67  public static AudioSource Play (string clipId, GameObject target, float volume = 1f, float pitch = 1f)
68  {
69  var clip = Resources.Load<AudioClip>(clipId);
70 
71  if (clip != null)
72  return Play(clip, target, volume, pitch);
73 
74  return null;
75  }
76 
77  public static AudioSource Play (AudioClip clip, GameObject target, float volume = 1f, float pitch = 1f)
78  {
79  if (target == null)
80  return null;
81 
82  var source = _instance.GetFreeSource();
83 
84  if (source != null)
85  {
86  _instance._freeSources.Remove(source);
87 
88  source.Target = target.transform;
89  source.Play(clip, volume, pitch);
90 
91  return source.audio;
92  }
93 
94  return null;
95  }
96 
97  private PooledAudioSource GetFreeSource ()
98  {
99  if (_freeSources.Count != 0)
100  return _freeSources[0];
101 
102  var sourceGo = Instantiate(SourcePrefab) as GameObject;
103 
104  if (sourceGo != null)
105  {
106  sourceGo.name = SourcePrefab.name;
107  sourceGo.transform.parent = transform;
108 
109  var source = sourceGo.GetComponent<PooledAudioSource>();
110  source.SoundFinished += OnSoundFinished;
111 
112  _freeSources.Add(source);
113 
114  return source;
115  }
116 
117  return null;
118  }
119 
120  void OnSoundFinished (PooledAudioSource source)
121  {
122  if (!_freeSources.Contains(source))
123  _freeSources.Add(source);
124  }
125 
126  void Awake ()
127  {
128  if (_instance == null)
129  _instance = this;
130 
131  _freeSources = new List<PooledAudioSource>();
132  }
133 
134  void OnDestroy ()
135  {
136  if (_instance == this)
137  _instance = null;
138  }
139 }
Pooled sound source. Handles following a target, and notifying when complete.
Sound pool. Allows on-demand playing of 3D sounds, with sound properties based on prefab...
Definition: SoundPool.cs:11