mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
[WIP] Libretro: Add audio support (#714)
* Libretro: Add audio support * Adding audio interface part 1 * Audio device pt 2 * More audio device * More audio device * Morea uudi odevice * More audio device * More audio device * More audio device --------- Co-authored-by: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com>
This commit is contained in:
parent
4cb66217c2
commit
042ab6de03
8 changed files with 125 additions and 23 deletions
|
@ -402,7 +402,8 @@ set(HEADER_FILES include/emulator.hpp include/helpers.hpp include/termcolor.hpp
|
||||||
include/align.hpp include/audio/aac_decoder.hpp include/PICA/pica_simd.hpp include/services/fonts.hpp
|
include/align.hpp include/audio/aac_decoder.hpp include/PICA/pica_simd.hpp include/services/fonts.hpp
|
||||||
include/audio/audio_interpolation.hpp include/audio/hle_mixer.hpp include/audio/dsp_simd.hpp
|
include/audio/audio_interpolation.hpp include/audio/hle_mixer.hpp include/audio/dsp_simd.hpp
|
||||||
include/services/dsp_firmware_db.hpp include/frontend_settings.hpp include/fs/archive_twl_photo.hpp
|
include/services/dsp_firmware_db.hpp include/frontend_settings.hpp include/fs/archive_twl_photo.hpp
|
||||||
include/fs/archive_twl_sound.hpp include/fs/archive_card_spi.hpp include/services/ns.hpp
|
include/fs/archive_twl_sound.hpp include/fs/archive_card_spi.hpp include/services/ns.hpp include/audio/audio_device.hpp
|
||||||
|
include/audio/audio_device_interface.hpp include/audio/libretro_audio_device.hpp
|
||||||
)
|
)
|
||||||
|
|
||||||
cmrc_add_resource_library(
|
cmrc_add_resource_library(
|
||||||
|
|
9
include/audio/audio_device.hpp
Normal file
9
include/audio/audio_device.hpp
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#ifdef __LIBRETRO__
|
||||||
|
#include "audio/libretro_audio_device.hpp"
|
||||||
|
using AudioDevice = LibretroAudioDevice;
|
||||||
|
#else
|
||||||
|
#include "audio/miniaudio_device.hpp"
|
||||||
|
using AudioDevice = MiniAudioDevice;
|
||||||
|
#endif
|
36
include/audio/audio_device_interface.hpp
Normal file
36
include/audio/audio_device_interface.hpp
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
#pragma once
|
||||||
|
#include <array>
|
||||||
|
|
||||||
|
#include "config.hpp"
|
||||||
|
#include "helpers.hpp"
|
||||||
|
#include "ring_buffer.hpp"
|
||||||
|
|
||||||
|
class AudioDeviceInterface {
|
||||||
|
protected:
|
||||||
|
static constexpr usize maxFrameCount = 0x2000;
|
||||||
|
|
||||||
|
using Samples = Common::RingBuffer<s16, maxFrameCount * 2>;
|
||||||
|
using RenderBatchCallback = usize (*)(const s16*, usize);
|
||||||
|
|
||||||
|
Samples* samples = nullptr;
|
||||||
|
|
||||||
|
const AudioDeviceConfig& audioSettings;
|
||||||
|
// Store the last stereo sample we output. We play this when underruning to avoid pops.
|
||||||
|
std::array<s16, 2> lastStereoSample{};
|
||||||
|
|
||||||
|
public:
|
||||||
|
AudioDeviceInterface(Samples* samples, const AudioDeviceConfig& audioSettings) : samples(samples), audioSettings(audioSettings) {}
|
||||||
|
|
||||||
|
bool running = false;
|
||||||
|
Samples* getSamples() { return samples; }
|
||||||
|
|
||||||
|
// If safe is on, we create a null audio device
|
||||||
|
virtual void init(Samples& samples, bool safe = false) = 0;
|
||||||
|
virtual void close() = 0;
|
||||||
|
|
||||||
|
virtual void start() = 0;
|
||||||
|
virtual void stop() = 0;
|
||||||
|
|
||||||
|
// Only used for audio devices that render multiple audio frames in one go, eg the libretro audio device.
|
||||||
|
virtual void renderBatch(RenderBatchCallback callback) {}
|
||||||
|
};
|
60
include/audio/libretro_audio_device.hpp
Normal file
60
include/audio/libretro_audio_device.hpp
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
#pragma once
|
||||||
|
#include <cstring>
|
||||||
|
|
||||||
|
#include "audio/audio_device_interface.hpp"
|
||||||
|
|
||||||
|
class LibretroAudioDevice : public AudioDeviceInterface {
|
||||||
|
bool initialized = false;
|
||||||
|
|
||||||
|
public:
|
||||||
|
LibretroAudioDevice(const AudioDeviceConfig& audioSettings) : AudioDeviceInterface(nullptr, audioSettings), initialized(false) {
|
||||||
|
running = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void init(Samples& samples, bool safe = false) override {
|
||||||
|
this->samples = &samples;
|
||||||
|
|
||||||
|
initialized = true;
|
||||||
|
running = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void close() override {
|
||||||
|
initialized = false;
|
||||||
|
running = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
void start() override { running = true; }
|
||||||
|
void stop() override { running = false; };
|
||||||
|
|
||||||
|
void renderBatch(RenderBatchCallback callback) override {
|
||||||
|
if (running) {
|
||||||
|
static constexpr usize frameCount = 774;
|
||||||
|
static constexpr usize channelCount = 2;
|
||||||
|
static s16 audioBuffer[frameCount * channelCount];
|
||||||
|
|
||||||
|
usize samplesWritten = 0;
|
||||||
|
samplesWritten += samples->pop(audioBuffer, frameCount * channelCount);
|
||||||
|
|
||||||
|
// Get the last sample for underrun handling
|
||||||
|
if (samplesWritten != 0) {
|
||||||
|
std::memcpy(&lastStereoSample[0], &audioBuffer[(samplesWritten - 1) * 2], sizeof(lastStereoSample));
|
||||||
|
}
|
||||||
|
|
||||||
|
// If underruning, copy the last output sample
|
||||||
|
{
|
||||||
|
s16* pointer = &audioBuffer[samplesWritten * 2];
|
||||||
|
s16 l = lastStereoSample[0];
|
||||||
|
s16 r = lastStereoSample[1];
|
||||||
|
|
||||||
|
for (usize i = samplesWritten; i < frameCount; i++) {
|
||||||
|
*pointer++ = l;
|
||||||
|
*pointer++ = r;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
callback(audioBuffer, sizeof(audioBuffer) / (channelCount * sizeof(s16)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool isInitialized() const { return initialized; }
|
||||||
|
};
|
|
@ -3,39 +3,31 @@
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "config.hpp"
|
#include "audio/audio_device_interface.hpp"
|
||||||
#include "helpers.hpp"
|
|
||||||
#include "miniaudio.h"
|
#include "miniaudio.h"
|
||||||
#include "ring_buffer.hpp"
|
|
||||||
|
|
||||||
class MiniAudioDevice {
|
class MiniAudioDevice : public AudioDeviceInterface {
|
||||||
using Samples = Common::RingBuffer<ma_int16, 0x2000 * 2>;
|
|
||||||
static constexpr ma_uint32 sampleRate = 32768; // 3DS sample rate
|
static constexpr ma_uint32 sampleRate = 32768; // 3DS sample rate
|
||||||
static constexpr ma_uint32 channelCount = 2; // Audio output is stereo
|
static constexpr ma_uint32 channelCount = 2; // Audio output is stereo
|
||||||
|
|
||||||
|
bool initialized = false;
|
||||||
|
|
||||||
ma_device device;
|
ma_device device;
|
||||||
ma_context context;
|
ma_context context;
|
||||||
ma_device_config deviceConfig;
|
ma_device_config deviceConfig;
|
||||||
Samples* samples = nullptr;
|
|
||||||
|
|
||||||
const AudioDeviceConfig& audioSettings;
|
|
||||||
|
|
||||||
bool initialized = false;
|
|
||||||
bool running = false;
|
|
||||||
|
|
||||||
// Store the last stereo sample we output. We play this when underruning to avoid pops.
|
// Store the last stereo sample we output. We play this when underruning to avoid pops.
|
||||||
std::array<s16, 2> lastStereoSample;
|
|
||||||
std::vector<std::string> audioDevices;
|
std::vector<std::string> audioDevices;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
MiniAudioDevice(const AudioDeviceConfig& audioSettings);
|
MiniAudioDevice(const AudioDeviceConfig& audioSettings);
|
||||||
|
|
||||||
// If safe is on, we create a null audio device
|
// If safe is on, we create a null audio device
|
||||||
void init(Samples& samples, bool safe = false);
|
void init(Samples& samples, bool safe = false) override;
|
||||||
void close();
|
void close() override;
|
||||||
|
|
||||||
void start();
|
void start() override;
|
||||||
void stop();
|
void stop() override;
|
||||||
|
|
||||||
bool isInitialized() const { return initialized; }
|
bool isInitialized() const { return initialized; }
|
||||||
};
|
};
|
|
@ -7,8 +7,8 @@
|
||||||
#include <span>
|
#include <span>
|
||||||
|
|
||||||
#include "PICA/gpu.hpp"
|
#include "PICA/gpu.hpp"
|
||||||
|
#include "audio/audio_device.hpp"
|
||||||
#include "audio/dsp_core.hpp"
|
#include "audio/dsp_core.hpp"
|
||||||
#include "audio/miniaudio_device.hpp"
|
|
||||||
#include "cheats.hpp"
|
#include "cheats.hpp"
|
||||||
#include "config.hpp"
|
#include "config.hpp"
|
||||||
#include "cpu.hpp"
|
#include "cpu.hpp"
|
||||||
|
@ -48,14 +48,14 @@ class Emulator {
|
||||||
Scheduler scheduler;
|
Scheduler scheduler;
|
||||||
|
|
||||||
Crypto::AESEngine aesEngine;
|
Crypto::AESEngine aesEngine;
|
||||||
MiniAudioDevice audioDevice;
|
AudioDevice audioDevice;
|
||||||
Cheats cheats;
|
Cheats cheats;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
static constexpr u32 width = 400;
|
static constexpr u32 width = 400;
|
||||||
static constexpr u32 height = 240 * 2; // * 2 because 2 screens
|
static constexpr u32 height = 240 * 2; // * 2 because 2 screens
|
||||||
ROMType romType = ROMType::None;
|
ROMType romType = ROMType::None;
|
||||||
bool running = false; // Is the emulator running a game?
|
bool running = false; // Is the emulator running a game?
|
||||||
|
|
||||||
private:
|
private:
|
||||||
#ifdef PANDA3DS_ENABLE_HTTP_SERVER
|
#ifdef PANDA3DS_ENABLE_HTTP_SERVER
|
||||||
|
@ -126,6 +126,7 @@ class Emulator {
|
||||||
LuaManager& getLua() { return lua; }
|
LuaManager& getLua() { return lua; }
|
||||||
Scheduler& getScheduler() { return scheduler; }
|
Scheduler& getScheduler() { return scheduler; }
|
||||||
Memory& getMemory() { return memory; }
|
Memory& getMemory() { return memory; }
|
||||||
|
AudioDeviceInterface& getAudioDevice() { return audioDevice; }
|
||||||
|
|
||||||
RendererType getRendererType() const { return config.rendererType; }
|
RendererType getRendererType() const { return config.rendererType; }
|
||||||
Renderer* getRenderer() { return gpu.getRenderer(); }
|
Renderer* getRenderer() { return gpu.getRenderer(); }
|
||||||
|
|
|
@ -7,8 +7,9 @@
|
||||||
|
|
||||||
#include "helpers.hpp"
|
#include "helpers.hpp"
|
||||||
|
|
||||||
MiniAudioDevice::MiniAudioDevice(const AudioDeviceConfig& audioSettings)
|
MiniAudioDevice::MiniAudioDevice(const AudioDeviceConfig& audioSettings) : AudioDeviceInterface(nullptr, audioSettings), initialized(false) {
|
||||||
: initialized(false), running(false), samples(nullptr), audioSettings(audioSettings) {}
|
running = false;
|
||||||
|
}
|
||||||
|
|
||||||
void MiniAudioDevice::init(Samples& samples, bool safe) {
|
void MiniAudioDevice::init(Samples& samples, bool safe) {
|
||||||
this->samples = &samples;
|
this->samples = &samples;
|
||||||
|
@ -212,4 +213,4 @@ void MiniAudioDevice::close() {
|
||||||
ma_device_uninit(&device);
|
ma_device_uninit(&device);
|
||||||
ma_context_uninit(&context);
|
ma_context_uninit(&context);
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -389,6 +389,8 @@ void retro_run() {
|
||||||
emulator->runFrame();
|
emulator->runFrame();
|
||||||
|
|
||||||
videoCallback(RETRO_HW_FRAME_BUFFER_VALID, emulator->width, emulator->height, 0);
|
videoCallback(RETRO_HW_FRAME_BUFFER_VALID, emulator->width, emulator->height, 0);
|
||||||
|
// Call audio batch callback
|
||||||
|
emulator->getAudioDevice().renderBatch(audioBatchCallback);
|
||||||
}
|
}
|
||||||
|
|
||||||
void retro_set_controller_port_device(uint port, uint device) {}
|
void retro_set_controller_port_device(uint port, uint device) {}
|
||||||
|
|
Loading…
Add table
Reference in a new issue