MelonDS: ISoundProvider
This commit is contained in:
parent
fa703d2e59
commit
6cdade1534
|
@ -988,6 +988,7 @@
|
|||
<Compile Include="Consoles\Nintendo\N64\NativeApi\mupen64plusVideoApi.cs" />
|
||||
<Compile Include="Consoles\Nintendo\NDS\MelonDS.cs" />
|
||||
<Compile Include="Consoles\Nintendo\NDS\MelonDS_InputPollable.cs" />
|
||||
<Compile Include="Consoles\Nintendo\NDS\MelonDS_SoundProvider.cs" />
|
||||
<Compile Include="Consoles\Nintendo\NDS\MelonDS_Statable.cs" />
|
||||
<Compile Include="Consoles\Nintendo\NDS\MelonDS_VideoProvider.cs" />
|
||||
<Compile Include="Consoles\Nintendo\NES\APU.cs" />
|
||||
|
|
|
@ -0,0 +1,51 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
using BizHawk.Emulation.Common;
|
||||
|
||||
namespace BizHawk.Emulation.Cores.Consoles.Nintendo.NDS
|
||||
{
|
||||
unsafe partial class MelonDS : ISoundProvider
|
||||
{
|
||||
public bool CanProvideAsync => false;
|
||||
|
||||
public SyncSoundMode SyncMode => SyncSoundMode.Sync;
|
||||
|
||||
public void DiscardSamples()
|
||||
{
|
||||
_DiscardSamples();
|
||||
}
|
||||
|
||||
public void GetSamplesAsync(short[] samples)
|
||||
{
|
||||
throw new InvalidOperationException();
|
||||
}
|
||||
|
||||
public void GetSamplesSync(out short[] samples, out int nsamp)
|
||||
{
|
||||
nsamp = GetSampleCount();
|
||||
samples = new short[nsamp * 2]; //*2 for stereo sound
|
||||
fixed (short* data = samples)
|
||||
{
|
||||
GetSamples(data, nsamp);
|
||||
}
|
||||
}
|
||||
|
||||
public void SetSyncMode(SyncSoundMode mode)
|
||||
{
|
||||
if (mode == SyncSoundMode.Async)
|
||||
throw new InvalidOperationException();
|
||||
}
|
||||
|
||||
[DllImport(dllPath)]
|
||||
private static extern int GetSampleCount();
|
||||
[DllImport(dllPath)]
|
||||
private static extern void GetSamples(short* data, int count);
|
||||
[DllImport(dllPath, EntryPoint = "DiscardSamples")]
|
||||
private static extern void _DiscardSamples();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue