58 lines
1.7 KiB
C#
58 lines
1.7 KiB
C#
using UnityEngine;
|
||
using VirtualNes.Core;
|
||
|
||
namespace AxibugEmuOnline.Client
|
||
{
|
||
public class AudioProvider : MonoBehaviour
|
||
{
|
||
public NesEmulator NesEmu { get; set; }
|
||
|
||
[SerializeField]
|
||
private AudioSource m_as;
|
||
|
||
private SoundBuffer _buffer = new SoundBuffer(4096);
|
||
public void Start()
|
||
{
|
||
//TODO 采样率需要更准确,而且和clip并没有关系
|
||
var dummy = AudioClip.Create("dummy", 1, 1, AudioSettings.outputSampleRate, false);
|
||
dummy.SetData(new float[] { 1 }, 0);
|
||
m_as.clip = dummy; //just to let unity play the audiosource
|
||
m_as.loop = true;
|
||
m_as.spatialBlend = 1;
|
||
m_as.Play();
|
||
}
|
||
public void GetAudioParams(out int frequency, out int channels)
|
||
{
|
||
frequency = m_as.clip.samples;
|
||
channels = m_as.clip.channels;
|
||
}
|
||
|
||
void OnAudioFilterRead(float[] data, int channels)
|
||
{
|
||
int step = channels;
|
||
|
||
if (NesEmu == null || NesEmu.NesCore == null) return;
|
||
if (NesEmu.IsPause) return;
|
||
|
||
ProcessSound(NesEmu.NesCore, (uint)(data.Length / channels));
|
||
|
||
for (int i = 0; i < data.Length; i += step)
|
||
{
|
||
float rawFloat = 0;
|
||
byte rawData;
|
||
if (_buffer.TryRead(out rawData))
|
||
rawFloat = rawData / 255f;
|
||
|
||
data[i] = rawFloat;
|
||
for (int fill = 1; fill < step; fill++)
|
||
data[i + fill] = rawFloat;
|
||
}
|
||
}
|
||
|
||
void ProcessSound(NES nes, uint feedCount)
|
||
{
|
||
nes.apu.Process(_buffer, feedCount);
|
||
}
|
||
}
|
||
|
||
} |