SanAndreasUnity/Assets/Scripts/Behaviours/Audio/AudioManager.cs

195 lines
4.9 KiB
C#
Raw Normal View History

2020-05-31 17:07:22 +00:00
using System.Collections.Generic;
using UnityEngine;
using GTAAudioSharp;
using System.IO;
using SanAndreasUnity.Audio;
namespace SanAndreasUnity.Behaviours.Audio
{
public class AudioManager : MonoBehaviour
{
public static AudioManager Instance { get; private set; }
private static GTAAudioFiles s_gtaAudioFiles;
public static GTAAudioFiles AudioFiles { get { return s_gtaAudioFiles; } }
// private Dictionary<string, AudioClip> sfxAudioClips = new Dictionary<string, AudioClip>();
// private Dictionary<string, AudioClip> streamsAudioClips = new Dictionary<string, AudioClip>();
// private Dictionary<string, AudioStream> streamsAudioStreams = new Dictionary<string, AudioStream>();
public bool playStartupSound = true;
public float startupSoundTimeOffset = 0f;
static AudioSource s_startupAudioSource;
public const int kSfxSampleSize = 2;
void Awake ()
{
Instance = this;
}
void OnDisable ()
{
if (s_gtaAudioFiles != null)
{
s_gtaAudioFiles.Dispose ();
s_gtaAudioFiles = null;
}
}
void Start () {
}
void OnLoaderFinished ()
{
if (s_startupAudioSource != null)
{
Destroy (s_startupAudioSource.gameObject);
}
}
public static void InitFromLoader ()
{
s_gtaAudioFiles = GTAAudio.OpenRead (Path.Combine (Utilities.Config.GamePath, "audio"));
if (Instance.playStartupSound)
{
s_startupAudioSource = PlayStream ("Beats", 1);
if (s_startupAudioSource != null)
s_startupAudioSource.time = Instance.startupSoundTimeOffset;
}
}
public static AudioClip CreateAudioClipFromStream (string streamFileName, int bankIndex)
{
AudioStream audio_stream = null;
System.DateTime startTime = System.DateTime.Now;
int streams_bank_index = bankIndex;
string streams_file_name = streamFileName;
string key = streams_file_name + "." + streams_bank_index;
if ((s_gtaAudioFiles != null) && (streams_bank_index >= 0))
{
try
{
Stream stream = s_gtaAudioFiles.OpenStreamsAudioStreamByName(streams_file_name, (uint)streams_bank_index);
if (stream != null)
{
audio_stream = new AudioStream(stream, key, true);
}
}
catch (System.Exception e)
{
Debug.LogError(e);
}
}
if (audio_stream != null)
{
System.TimeSpan time_span = System.DateTime.Now - startTime;
Debug.Log("\"" + key + "\" took " + time_span.TotalSeconds + " seconds.");
return audio_stream.AudioClip;
}
return null;
}
public static AudioSource PlayStream (string streamFileName, int bankIndex)
{
var clip = CreateAudioClipFromStream (streamFileName, bankIndex);
if (clip != null)
{
AudioSource audioSource = new GameObject (streamFileName + "." + bankIndex).AddComponent<AudioSource> ();
audioSource.time = 0.0f;
audioSource.clip = clip;
audioSource.Play();
// destroy game object when sound is finished playing
Destroy( audioSource.gameObject, clip.length );
return audioSource;
}
return null;
}
2019-08-28 17:12:34 +00:00
public static AudioClip CreateAudioClipFromSfx (string sfxFileName, int bankIndex, int audioIndex)
2020-05-31 17:07:22 +00:00
{
if (null == s_gtaAudioFiles || bankIndex < 0 || audioIndex < 0)
return null;
AudioClip ret = null;
string clipName = sfxFileName + "." + bankIndex + "." + audioIndex;
try
{
using (GTAAudioStream audio_stream = s_gtaAudioFiles.OpenSFXAudioStreamByName(sfxFileName, (uint)bankIndex, (uint)audioIndex))
{
if (audio_stream != null)
{
2019-08-28 17:12:34 +00:00
ret = CreateAudioClipFromSfx (clipName, audio_stream);
2020-05-31 17:07:22 +00:00
}
}
}
catch (System.Exception e)
{
Debug.LogError(e);
}
return ret;
}
2019-08-28 17:12:34 +00:00
static AudioClip CreateAudioClipFromSfx (string clipName, GTAAudioStream audio_stream)
2020-05-31 17:07:22 +00:00
{
AudioClip ret = null;
2019-08-28 17:12:34 +00:00
byte[] int_pcm = new byte[audio_stream.Length];
2020-05-31 17:07:22 +00:00
if (audio_stream.Read(int_pcm, 0, int_pcm.Length) == int_pcm.Length)
{
float[] float_pcm = new float[int_pcm.Length / sizeof(short)];
for (int i = 0; i < float_pcm.Length; i++)
{
float_pcm[i] = Mathf.Clamp(((short)(int_pcm[i * sizeof(short)] | (int_pcm[(i * sizeof(short)) + 1] << 8)) / 32767.5f), -1.0f, 1.0f);
}
2019-08-28 17:12:34 +00:00
ret = AudioClip.Create(clipName, float_pcm.Length, 1, audio_stream.SampleRate, false);
2020-05-31 17:07:22 +00:00
ret.SetData(float_pcm, 0);
// Debug.LogFormat("loaded sfx: name {0}, offset {1}, size {2}, length {3}, bitrate Kb/s {4}, stream size {5}, freq {6}",
// clipName, 0, 0, ret.length,
// FreqToKbs (audio_stream.SampleRate), audio_stream.Length, audio_stream.SampleRate);
2020-05-31 17:07:22 +00:00
}
return ret;
}
static float FreqToKbs(int freq)
{
return freq * kSfxSampleSize * 8f / 1000f;
}
static float KbsToFreq(float kbs)
{
return kbs / 8f * 1000f / kSfxSampleSize;
}
}
}