123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Xml.Linq;
- using UnityEngine;
- using wf;
- public class SoundMgr : MonoBehaviour
- {
- public AudioSourceMgr m_AudioDummyVoice { get; private set; }
- public AudioMixerMgr mix_mgr { get; private set; }
- public static float ConvertToAudioSourcePitch(int pitch)
- {
- return 1f + (0.3f * ((float)pitch * 0.01f) - 0.15f);
- }
- public int GetVolumeAll()
- {
- return this.m_nAllVol;
- }
- public void SetVolumeAll(int f_nVol)
- {
- this.m_nAllVol = System.Math.Min(System.Math.Max(0, f_nVol), 100);
- }
- public int GetVolume(AudioSourceMgr.Type f_eType)
- {
- return this.m_nVol[(int)f_eType];
- }
- public int GetVolumeDance()
- {
- return this.m_nDanceVol;
- }
- public void SetVolume(AudioSourceMgr.Type f_eType, int f_nVol)
- {
- this.m_nVol[(int)f_eType] = f_nVol;
- }
- public void SetVolumeDance(int f_nVol)
- {
- this.m_nDanceVol = f_nVol;
- }
- public bool GetThreeD(AudioSourceMgr.Type f_eType)
- {
- return this.m_bThreeD[(int)f_eType];
- }
- public void SetThreeD(AudioSourceMgr.Type f_eType, bool f_bEnable)
- {
- this.m_bThreeD[(int)f_eType] = f_bEnable;
- }
- public void Init(GameObject f_goParent)
- {
- this.m_goAudioMgr = UTY.GetChildObject(GameMain.Instance.MainCamera.gameObject, "AudioMgr", false);
- this.mix_mgr = Utility.CreatePrefab(this.m_goAudioMgr.gameObject, "System/AudioMixerMgr", true).GetComponent<AudioMixerMgr>();
- this.m_AudioFadeBufBgm = new SoundMgr.AudioFadeBuffer(AudioSourceMgr.Type.Bgm, "AudioBgm", 2, true, this, this.m_goAudioMgr);
- this.m_AudioFadeBufEnv = new SoundMgr.AudioFadeBuffer(AudioSourceMgr.Type.Env, "AudioEnv", 2, true, this, this.m_goAudioMgr);
- this.m_AudioSeBufSe = new SoundMgr.AudioMultiBuffer(AudioSourceMgr.Type.Se, "AudioSe", 12, true, this, this.m_goAudioMgr);
- this.m_trAudioSystem = new GameObject("AudioSet-System-AudioSystem").transform;
- this.m_trAudioSystem.SetParent(this.m_goAudioMgr.transform, false);
- this.m_AudioDummyVoice = this.AllocVoice(this.m_goAudioMgr.transform, true);
- this.SetVolumeAll(80);
- this.SetVolume(AudioSourceMgr.Type.Bgm, 35);
- this.SetVolume(AudioSourceMgr.Type.Se, 60);
- this.SetVolume(AudioSourceMgr.Type.System, 50);
- this.SetVolume(AudioSourceMgr.Type.Env, 50);
- this.SetVolume(AudioSourceMgr.Type.Voice, 80);
- this.SetVolume(AudioSourceMgr.Type.VoiceHeroine, 100);
- this.SetVolume(AudioSourceMgr.Type.VoiceSub, 100);
- this.SetVolume(AudioSourceMgr.Type.VoiceExtra, 100);
- this.SetVolume(AudioSourceMgr.Type.VoiceMob, 100);
- this.SetVolumeDance(70);
- this.SetThreeD(AudioSourceMgr.Type.Bgm, false);
- this.SetThreeD(AudioSourceMgr.Type.Se, true);
- this.SetThreeD(AudioSourceMgr.Type.Env, true);
- this.SetThreeD(AudioSourceMgr.Type.Voice, false);
- this.SetThreeD(AudioSourceMgr.Type.VoiceHeroine, true);
- this.SetThreeD(AudioSourceMgr.Type.VoiceSub, true);
- this.SetThreeD(AudioSourceMgr.Type.VoiceExtra, true);
- this.SetThreeD(AudioSourceMgr.Type.VoiceMob, true);
- }
- public void PlayBGM(string f_strFileName, float f_fTime, bool f_fLoop = true)
- {
- this.m_AudioFadeBufBgm.Play(f_strFileName, f_fTime, true, f_fLoop, null);
- }
- public void PlayBGMLegacy(string f_strFileName, float f_fTime, bool f_fLoop = true)
- {
- bool flag = this.compatibilityMode;
- this.compatibilityMode = true;
- this.m_AudioFadeBufBgm.Play(f_strFileName, f_fTime, true, f_fLoop, null);
- this.compatibilityMode = flag;
- }
- public void PlayDanceBGM(string f_strFileName, float f_fTime, bool f_fLoop = true)
- {
- this.m_AudioFadeBufBgm.PlayEx(f_strFileName, f_fTime, true, f_fLoop, null, true);
- }
- public AudioSource GetAudioSourceBgm()
- {
- return this.m_AudioFadeBufBgm.GetActiveAudioSource();
- }
- public void StopBGM(float f_fTime)
- {
- this.m_AudioFadeBufBgm.Stop(f_fTime);
- }
- public void PlayEnv(string f_strFileName, float f_fTime)
- {
- this.m_AudioFadeBufEnv.Play(f_strFileName, f_fTime, true, true, null);
- }
- public void StopEnv(float f_fTime)
- {
- this.m_AudioFadeBufEnv.Stop(f_fTime);
- }
- public void PlaySe(string f_strFileName, bool f_bLoop)
- {
- this.m_AudioSeBufSe.Play(f_strFileName, 0f, false, f_bLoop, null);
- }
- public void StopSe()
- {
- this.m_AudioSeBufSe.Stop(0f);
- }
- public void StopSe(string f_strFileName)
- {
- this.m_AudioSeBufSe.Stop(0f, f_strFileName);
- }
- public void PlaySystem(string f_strFileName)
- {
- string fileNameWithoutExtension = Path.GetFileNameWithoutExtension(f_strFileName.ToLower());
- AudioSourceMgr audioSourceMgr;
- if (!this.m_dicAudioSystem.TryGetValue(fileNameWithoutExtension, out audioSourceMgr))
- {
- GameObject original = Resources.Load("System/Prefab/AudioSystem") as GameObject;
- GameObject gameObject = UnityEngine.Object.Instantiate<GameObject>(original);
- audioSourceMgr = gameObject.GetComponentsInChildren<AudioSourceMgr>(true)[0];
- audioSourceMgr.Init(AudioSourceMgr.Type.System, false, this, this.m_trAudioSystem.transform);
- audioSourceMgr.LoadFromWf(GameUty.FileSystem, f_strFileName, false);
- this.m_dicAudioSystem.Add(fileNameWithoutExtension, audioSourceMgr);
- }
- audioSourceMgr.PlayOneShot();
- }
- public void PlayDummyVoice(string f_strFileName, float f_fFadeTime = 0f, bool f_bStreaming = false, bool f_bLoop = false, int voice_pitch = 50, AudioSourceMgr.Type soundType = AudioSourceMgr.Type.Voice)
- {
- this.m_AudioDummyVoice.Pitch = SoundMgr.ConvertToAudioSourcePitch(voice_pitch);
- this.m_AudioDummyVoice.audiosource.outputAudioMixerGroup = this.mix_mgr[soundType];
- this.m_AudioDummyVoice.LoadPlay(f_strFileName, f_fFadeTime, f_bStreaming, f_bLoop);
- }
- public void StopDummyVoide()
- {
- this.m_AudioDummyVoice.Stop();
- }
- public bool IsPlayDummyVoice()
- {
- return this.m_AudioDummyVoice.isPlay();
- }
- public void PlaySystem(SoundMgr.SeType f_eSe)
- {
- if (f_eSe != SoundMgr.SeType.Non && f_eSe != SoundMgr.SeType.Self)
- {
- this.PlaySystem(this.m_arySeFileName[(int)f_eSe]);
- }
- }
- public void StopSystem()
- {
- foreach (KeyValuePair<string, AudioSourceMgr> keyValuePair in this.m_dicAudioSystem)
- {
- keyValuePair.Value.Stop();
- }
- }
- public AudioSourceMgr AllocVoice(Transform f_trParent, bool f_bThreeD = true)
- {
- GameObject original = Resources.Load("System/Prefab/AudioVoice") as GameObject;
- GameObject gameObject = UnityEngine.Object.Instantiate<GameObject>(original);
- AudioSourceMgr audioSourceMgr = gameObject.GetComponentsInChildren<AudioSourceMgr>(true)[0];
- audioSourceMgr.Init(AudioSourceMgr.Type.Voice, f_bThreeD, this, f_trParent);
- this.m_listAudioManChara.Add(audioSourceMgr);
- return audioSourceMgr;
- }
- public void FreeVoice(AudioSourceMgr f_gcAudioMan, bool f_bDestoryMe)
- {
- this.m_listAudioManChara.Remove(f_gcAudioMan);
- f_gcAudioMan.Clear();
- if (f_bDestoryMe)
- {
- UnityEngine.Object.Destroy(f_gcAudioMan);
- }
- f_gcAudioMan = null;
- }
- public void StopAll()
- {
- this.VoiceStopAll();
- this.StopBGM(0f);
- this.StopEnv(0f);
- this.StopSe();
- this.StopSystem();
- }
- public void OnDestroy()
- {
- this.ClearAll();
- this.m_AudioFadeBufBgm = null;
- this.m_AudioFadeBufEnv = null;
- this.m_AudioSeBufSe = null;
- this.m_dicAudioSystem.Clear();
- this.m_listAudioManChara.Clear();
- this.m_AudioDummyVoice = null;
- }
- public void ClearAll()
- {
- if (this.m_AudioFadeBufBgm != null)
- {
- this.m_AudioFadeBufBgm.Clear();
- }
- if (this.m_AudioFadeBufEnv != null)
- {
- this.m_AudioFadeBufEnv.Clear();
- }
- if (this.m_AudioSeBufSe != null)
- {
- this.m_AudioSeBufSe.Clear();
- }
- foreach (KeyValuePair<string, AudioSourceMgr> keyValuePair in this.m_dicAudioSystem)
- {
- keyValuePair.Value.Clear();
- }
- for (int i = 0; i < this.m_listAudioManChara.Count; i++)
- {
- this.m_listAudioManChara[i].Clear();
- }
- if (this.m_AudioDummyVoice != null)
- {
- this.m_AudioDummyVoice.Clear();
- }
- }
- public bool isVoicePlaying()
- {
- bool flag = false;
- for (int i = 0; i < this.m_listAudioManChara.Count; i++)
- {
- flag |= this.m_listAudioManChara[i].isPlay();
- }
- return flag | this.m_AudioDummyVoice.isPlay();
- }
- public void VoiceStopAll()
- {
- for (int i = 0; i < this.m_listAudioManChara.Count; i++)
- {
- this.m_listAudioManChara[i].Stop();
- }
- this.m_AudioDummyVoice.Stop();
- }
- public void Apply()
- {
- this.mix_mgr.SetVolume(AudioMixerMgr.Group.Master, (float)this.m_nAllVol * 0.01f);
- this.mix_mgr.SetVolume(AudioMixerMgr.Group.BGM, (float)this.GetVolume(AudioSourceMgr.Type.Bgm) * 0.01f);
- this.mix_mgr.SetVolume(AudioMixerMgr.Group.Voice, (float)this.GetVolume(AudioSourceMgr.Type.Voice) * 0.01f);
- this.mix_mgr.SetVolume(AudioMixerMgr.Group.VoiceHeroine, (float)this.GetVolume(AudioSourceMgr.Type.VoiceHeroine) * 0.01f);
- this.mix_mgr.SetVolume(AudioMixerMgr.Group.VoiceSub, (float)this.GetVolume(AudioSourceMgr.Type.VoiceSub) * 0.01f);
- this.mix_mgr.SetVolume(AudioMixerMgr.Group.VoiceExtra, (float)this.GetVolume(AudioSourceMgr.Type.VoiceExtra) * 0.01f);
- this.mix_mgr.SetVolume(AudioMixerMgr.Group.VoiceMob, (float)this.GetVolume(AudioSourceMgr.Type.VoiceMob) * 0.01f);
- this.mix_mgr.SetVolume(AudioMixerMgr.Group.Dance, (float)this.GetVolumeDance() * 0.01f);
- this.mix_mgr.SetVolume(AudioMixerMgr.Group.System, (float)this.GetVolume(AudioSourceMgr.Type.System) * 0.01f);
- this.mix_mgr.SetVolume(AudioMixerMgr.Group.SE, (float)this.GetVolume(AudioSourceMgr.Type.Se) * 0.01f);
- for (int i = 0; i < this.m_listAudioManChara.Count; i++)
- {
- this.m_listAudioManChara[i].ApplyThreeD();
- }
- this.m_AudioDummyVoice.ApplyThreeD();
- this.m_AudioFadeBufBgm.Apply();
- this.m_AudioFadeBufEnv.Apply();
- this.m_AudioSeBufSe.Apply();
- foreach (KeyValuePair<string, AudioSourceMgr> keyValuePair in this.m_dicAudioSystem)
- {
- keyValuePair.Value.ApplyThreeD();
- }
- }
- public bool SaveIni(XElement f_xe)
- {
- XElement[] array = new XElement[9];
- XElement[] array2 = new XElement[9];
- for (int i = 0; i < 9; i++)
- {
- XElement[] array3 = array;
- int num = i;
- AudioSourceMgr.Type type = (AudioSourceMgr.Type)i;
- array3[num] = new XElement(type.ToString() + "Volume", this.GetVolume((AudioSourceMgr.Type)i));
- XElement[] array4 = array2;
- int num2 = i;
- AudioSourceMgr.Type type2 = (AudioSourceMgr.Type)i;
- array4[num2] = new XElement(type2.ToString() + "ThreeD", this.GetThreeD((AudioSourceMgr.Type)i));
- }
- XElement content = new XElement("Sound", new object[]
- {
- new XElement("VolumeAll", this.GetVolumeAll()),
- new XElement("VolumeDance", this.GetVolumeDance()),
- array,
- array2
- });
- f_xe.Add(content);
- return true;
- }
- public bool LoadIni(XElement f_xe, int version)
- {
- XElement xelement = f_xe.Element("Sound");
- this.SetVolumeAll(int.Parse(xelement.Element("VolumeAll").Value));
- XElement xelement2 = xelement.Element("VolumeDance");
- if (xelement2 != null)
- {
- this.SetVolumeDance(int.Parse(xelement2.Value));
- }
- for (int i = 0; i < 9; i++)
- {
- XContainer xcontainer = xelement;
- AudioSourceMgr.Type type = (AudioSourceMgr.Type)i;
- XElement xelement3 = xcontainer.Element(type.ToString() + "Volume");
- if (xelement3 != null)
- {
- this.SetVolume((AudioSourceMgr.Type)i, int.Parse(xelement3.Value));
- }
- else
- {
- this.SetVolume((AudioSourceMgr.Type)i, 100);
- }
- }
- for (int j = 0; j < 9; j++)
- {
- XContainer xcontainer2 = xelement;
- AudioSourceMgr.Type type2 = (AudioSourceMgr.Type)j;
- XElement xelement4 = xcontainer2.Element(type2.ToString() + "ThreeD");
- if (xelement4 != null)
- {
- this.SetThreeD((AudioSourceMgr.Type)j, bool.Parse(xelement4.Value));
- }
- else
- {
- this.SetThreeD((AudioSourceMgr.Type)j, true);
- }
- }
- if (version <= 1240 && this.GetThreeD(AudioSourceMgr.Type.Voice))
- {
- this.SetThreeD(AudioSourceMgr.Type.Voice, false);
- }
- return true;
- }
- public static Dictionary<string, AudioClip> dicAudioClip = new Dictionary<string, AudioClip>();
- private List<AudioSourceMgr> m_listAudioManChara = new List<AudioSourceMgr>();
- private SoundMgr.AudioFadeBuffer m_AudioFadeBufBgm;
- private SoundMgr.AudioFadeBuffer m_AudioFadeBufEnv;
- private SoundMgr.AudioMultiBuffer m_AudioSeBufSe;
- private Dictionary<string, AudioSourceMgr> m_dicAudioSystem = new Dictionary<string, AudioSourceMgr>();
- private Transform m_trAudioSystem;
- private GameObject m_goAudioMgr;
- private int m_nAllVol = 50;
- private int m_nDanceVol;
- private int[] m_nVol = new int[9];
- private bool[] m_bThreeD = new bool[9];
- public bool compatibilityMode;
- private string[] m_arySeFileName = new string[]
- {
- "SE001.ogg",
- "SE002.ogg",
- "SE003.ogg",
- "SE004.ogg",
- string.Empty,
- string.Empty
- };
- private abstract class AAudioMultiBuffer
- {
- public AAudioMultiBuffer(AudioSourceMgr.Type f_eType, string f_strPrefab, int f_nBufNum, bool f_bThreeD, SoundMgr f_gcSounMgr, GameObject f_goParent)
- {
- this.m_SoundMgr = f_gcSounMgr;
- this.m_aryAudioMan = new AudioSourceMgr[f_nBufNum];
- this.m_trParent = new GameObject("AudioSet-" + f_eType.ToString() + "-" + f_strPrefab).transform;
- this.m_trParent.SetParent(f_goParent.transform, false);
- for (int i = 0; i < f_nBufNum; i++)
- {
- GameObject original = Resources.Load("System/Prefab/" + f_strPrefab) as GameObject;
- GameObject gameObject = UnityEngine.Object.Instantiate<GameObject>(original);
- this.m_aryAudioMan[i] = gameObject.GetComponentsInChildren<AudioSourceMgr>(true)[0];
- this.m_aryAudioMan[i].Init(f_eType, f_bThreeD, f_gcSounMgr, this.m_trParent);
- }
- }
- public abstract void Play(string f_strFileName, float f_fTime, bool f_bLoop, bool f_bStreaming, Transform f_trAttachParent);
- public abstract void Stop(float f_fTime);
- public abstract void Apply();
- public virtual AudioSource GetActiveAudioSource()
- {
- return this.m_asActive;
- }
- public abstract string GetActivePlay();
- public virtual void Clear()
- {
- if (this.m_aryAudioMan != null)
- {
- foreach (AudioSourceMgr audioSourceMgr in this.m_aryAudioMan)
- {
- audioSourceMgr.Clear();
- }
- }
- }
- protected AudioSourceMgr[] m_aryAudioMan;
- protected SoundMgr m_SoundMgr;
- protected Transform m_trParent;
- protected AudioSource m_asActive;
- }
- private class AudioFadeBuffer : SoundMgr.AAudioMultiBuffer
- {
- public AudioFadeBuffer(AudioSourceMgr.Type f_eType, string f_strPrefab, int f_nBufNum, bool f_bThreeD, SoundMgr f_gcSounMgr, GameObject f_goParent) : base(f_eType, f_strPrefab, f_nBufNum, f_bThreeD, f_gcSounMgr, f_goParent)
- {
- }
- public override void Play(string f_strFileName, float f_fTime, bool f_bStreaming, bool f_bLoop, Transform f_trAttachParent)
- {
- this.PlayEx(f_strFileName, f_fTime, f_bStreaming, f_bLoop, f_trAttachParent, false);
- }
- public void PlayEx(string f_strFileName, float f_fTime, bool f_bStreaming, bool f_bLoop, Transform f_trAttachParent, bool f_bDance)
- {
- if (this.m_aryAudioMan[this.m_nBgmActiveNo].isPlay() && this.m_aryAudioMan[this.m_nBgmActiveNo].FileName == f_strFileName && this.m_aryAudioMan[this.m_nBgmActiveNo].isLastPlayCompatibilityMode == this.m_SoundMgr.compatibilityMode)
- {
- Debug.Log("同じファイル名が再生中なので再生を拒否:" + f_strFileName);
- return;
- }
- this.m_aryAudioMan[this.m_nBgmActiveNo].Stop(f_fTime);
- int num = -1;
- int num2 = -1;
- float num3 = 1f;
- for (int i = 0; i < this.m_aryAudioMan.Length; i++)
- {
- if (this.m_nBgmActiveNo != i)
- {
- AudioSourceMgr audioSourceMgr = this.m_aryAudioMan[i];
- if (!audioSourceMgr.isPlay())
- {
- num = i;
- }
- if (audioSourceMgr.FadeVolume <= num3)
- {
- num3 = audioSourceMgr.FadeVolume;
- num2 = i;
- }
- }
- }
- if (num == -1)
- {
- if (num2 == -1)
- {
- for (int j = 0; j < this.m_aryAudioMan.Length; j++)
- {
- if (this.m_nBgmActiveNo != j)
- {
- this.m_nBgmActiveNo = j;
- break;
- }
- }
- }
- else
- {
- this.m_nBgmActiveNo = num2;
- }
- }
- else
- {
- this.m_nBgmActiveNo = num;
- }
- AudioSourceMgr audioSourceMgr2 = this.m_aryAudioMan[this.m_nBgmActiveNo];
- audioSourceMgr2.Stop();
- if (f_bDance)
- {
- audioSourceMgr2.LoadPlayDanceBGM(f_strFileName, f_fTime, f_bStreaming, f_bLoop);
- }
- else
- {
- audioSourceMgr2.LoadPlay(f_strFileName, f_fTime, f_bStreaming, f_bLoop);
- }
- audioSourceMgr2.SetParent(f_trAttachParent);
- this.m_asActive = audioSourceMgr2.GetComponent<AudioSource>();
- }
- public override void Stop(float f_fTime)
- {
- for (int i = 0; i < this.m_aryAudioMan.Length; i++)
- {
- this.m_aryAudioMan[i].Stop(f_fTime);
- }
- }
- public override void Apply()
- {
- for (int i = 0; i < this.m_aryAudioMan.Length; i++)
- {
- this.m_aryAudioMan[i].ApplyThreeD();
- }
- }
- public override string GetActivePlay()
- {
- return this.m_aryAudioMan[this.m_nBgmActiveNo].FileName;
- }
- private int m_nBgmActiveNo;
- }
- private class AudioMultiBuffer : SoundMgr.AAudioMultiBuffer
- {
- public AudioMultiBuffer(AudioSourceMgr.Type f_eType, string f_strPrefab, int f_nBufNum, bool f_bThreeD, SoundMgr f_gcSounMgr, GameObject f_goParent) : base(f_eType, f_strPrefab, f_nBufNum, f_bThreeD, f_gcSounMgr, f_goParent)
- {
- this.m_aryTime = new float[f_nBufNum];
- }
- public override void Play(string f_strFileName, float f_fTime, bool f_bStreaming, bool f_bLoop, Transform f_trAttachParent)
- {
- int num = -1;
- int num2 = -1;
- float num3 = Time.time;
- for (int i = 0; i < this.m_aryAudioMan.Length; i++)
- {
- AudioSourceMgr audioSourceMgr = this.m_aryAudioMan[i];
- if (audioSourceMgr.isPlay() && audioSourceMgr.isLoop())
- {
- if (audioSourceMgr.FileName == f_strFileName)
- {
- return;
- }
- }
- else
- {
- if (!audioSourceMgr.isPlay())
- {
- num = i;
- }
- if (this.m_aryTime[i] < num3)
- {
- num3 = this.m_aryTime[i];
- num2 = i;
- }
- }
- }
- int num4;
- if (num == -1)
- {
- if (num2 == -1)
- {
- num4 = UnityEngine.Random.Range(0, this.m_aryAudioMan.Length);
- }
- else
- {
- num4 = num2;
- }
- }
- else
- {
- num4 = num;
- }
- this.m_aryAudioMan[num4].LoadPlay(f_strFileName, f_fTime, f_bStreaming, f_bLoop);
- this.m_aryAudioMan[num4].SetParent(f_trAttachParent);
- this.m_aryTime[num4] = Time.time;
- this.m_asActive = this.m_aryAudioMan[num4].GetComponent<AudioSource>();
- }
- public override void Stop(float f_fTime)
- {
- for (int i = 0; i < this.m_aryAudioMan.Length; i++)
- {
- this.m_aryAudioMan[i].Stop(f_fTime);
- }
- }
- public void Stop(float f_fTime, string f_strFileName)
- {
- for (int i = 0; i < this.m_aryAudioMan.Length; i++)
- {
- AudioSourceMgr audioSourceMgr = this.m_aryAudioMan[i];
- if (audioSourceMgr.isPlay() && audioSourceMgr.FileName == f_strFileName)
- {
- audioSourceMgr.Stop(f_fTime);
- }
- }
- }
- public override void Apply()
- {
- for (int i = 0; i < this.m_aryAudioMan.Length; i++)
- {
- this.m_aryAudioMan[i].ApplyThreeD();
- }
- }
- public override string GetActivePlay()
- {
- return string.Empty;
- }
- private float[] m_aryTime;
- }
- public enum SeType
- {
- Click,
- IClick,
- Cancel,
- Hover,
- Self,
- Non
- }
- }
|