mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
* Implement audio output * Semi-proper audio output * Add audio enable and vsync settings * Add audio enable and vsync settings * Optimize audio output a bit * Make max ring buffer timeout smaller * Make max ring buffer timeout smaller * Revert to spinlocking for audio sync * Sleep emulator thread if too many samples queued * Fix Teakra submodule breaking * Don't start audio device too soon * Fix IWYU errors * Fix compilation errors on GCC/Clang * Ignore std::hardware_destructive_interference_size on Android NDK * Fix more IWYU errors
37 lines
No EOL
994 B
C++
37 lines
No EOL
994 B
C++
#pragma once
|
|
#include <filesystem>
|
|
|
|
#include "audio/dsp_core.hpp"
|
|
#include "renderer.hpp"
|
|
|
|
// Remember to initialize every field here to its default value otherwise bad things will happen
|
|
struct EmulatorConfig {
|
|
// Only enable the shader JIT by default on platforms where it's completely tested
|
|
#ifdef PANDA3DS_X64_HOST
|
|
static constexpr bool shaderJitDefault = true;
|
|
#else
|
|
static constexpr bool shaderJitDefault = false;
|
|
#endif
|
|
|
|
bool shaderJitEnabled = shaderJitDefault;
|
|
bool discordRpcEnabled = false;
|
|
RendererType rendererType = RendererType::OpenGL;
|
|
Audio::DSPCore::Type dspType = Audio::DSPCore::Type::Null;
|
|
|
|
bool sdCardInserted = true;
|
|
bool sdWriteProtected = false;
|
|
bool usePortableBuild = false;
|
|
|
|
bool audioEnabled = false;
|
|
bool vsyncEnabled = true;
|
|
|
|
bool chargerPlugged = true;
|
|
// Default to 3% battery to make users suffer
|
|
int batteryPercentage = 3;
|
|
|
|
std::filesystem::path filePath;
|
|
|
|
EmulatorConfig(const std::filesystem::path& path);
|
|
void load();
|
|
void save();
|
|
}; |