2024-03-08 05:55:15 +00:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
2016-05-18 22:01:03 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2017-01-26 03:33:26 +00:00
|
|
|
#include <memory>
|
2019-02-27 22:13:51 +00:00
|
|
|
#include <QtGlobal>
|
2023-05-01 19:17:45 +00:00
|
|
|
#include "audio_core/input_details.h"
|
2017-01-26 03:33:26 +00:00
|
|
|
#include "audio_core/sink.h"
|
2016-09-20 15:21:23 +00:00
|
|
|
#include "audio_core/sink_details.h"
|
2022-12-08 11:27:25 +00:00
|
|
|
#include "common/settings.h"
|
2024-03-31 15:50:40 +00:00
|
|
|
#include "lime_qt/configuration/configuration_shared.h"
|
|
|
|
#include "lime_qt/configuration/configure_audio.h"
|
2016-09-20 15:21:23 +00:00
|
|
|
#include "ui_configure_audio.h"
|
2016-05-18 22:01:03 +00:00
|
|
|
|
2022-01-10 13:38:49 +00:00
|
|
|
#if defined(__APPLE__)
|
2023-06-19 22:50:26 +00:00
|
|
|
#include "common/apple_authorization.h"
|
2022-01-10 13:38:49 +00:00
|
|
|
#endif
|
|
|
|
|
2023-08-01 22:40:39 +00:00
|
|
|
ConfigureAudio::ConfigureAudio(bool is_powered_on, QWidget* parent)
|
2016-09-18 00:38:01 +00:00
|
|
|
: QWidget(parent), ui(std::make_unique<Ui::ConfigureAudio>()) {
|
2016-05-18 22:01:03 +00:00
|
|
|
ui->setupUi(this);
|
|
|
|
|
2023-05-01 19:17:45 +00:00
|
|
|
ui->output_type_combo_box->clear();
|
2023-12-22 19:38:06 +00:00
|
|
|
ui->output_type_combo_box->addItem(tr("Auto"), QVariant::fromValue(AudioCore::SinkType::Auto));
|
|
|
|
for (const auto& sink : AudioCore::ListSinks()) {
|
|
|
|
ui->output_type_combo_box->addItem(QString::fromUtf8(sink.name),
|
|
|
|
QVariant::fromValue(sink.type));
|
2016-05-18 22:01:03 +00:00
|
|
|
}
|
|
|
|
|
2023-08-01 22:40:39 +00:00
|
|
|
ui->emulation_combo_box->setEnabled(!is_powered_on);
|
2018-12-06 16:13:13 +00:00
|
|
|
|
2018-10-02 23:45:09 +00:00
|
|
|
connect(ui->volume_slider, &QSlider::valueChanged, this,
|
2019-05-26 04:39:23 +00:00
|
|
|
&ConfigureAudio::SetVolumeIndicatorText);
|
2018-06-30 12:26:38 +00:00
|
|
|
|
2023-05-01 19:17:45 +00:00
|
|
|
ui->input_type_combo_box->clear();
|
2023-12-22 19:38:06 +00:00
|
|
|
ui->input_type_combo_box->addItem(tr("Auto"), QVariant::fromValue(AudioCore::InputType::Auto));
|
|
|
|
for (const auto& input : AudioCore::ListInputs()) {
|
|
|
|
ui->input_type_combo_box->addItem(QString::fromUtf8(input.name),
|
|
|
|
QVariant::fromValue(input.type));
|
2019-02-27 22:13:51 +00:00
|
|
|
}
|
|
|
|
|
2022-12-08 11:27:25 +00:00
|
|
|
ui->volume_label->setVisible(Settings::IsConfiguringGlobal());
|
|
|
|
ui->volume_combo_box->setVisible(!Settings::IsConfiguringGlobal());
|
|
|
|
|
|
|
|
SetupPerGameUI();
|
2019-05-26 04:39:23 +00:00
|
|
|
SetConfiguration();
|
2022-12-08 11:27:25 +00:00
|
|
|
|
2023-05-01 19:17:45 +00:00
|
|
|
connect(ui->output_type_combo_box, qOverload<int>(&QComboBox::currentIndexChanged), this,
|
2019-05-26 04:39:23 +00:00
|
|
|
&ConfigureAudio::UpdateAudioOutputDevices);
|
2023-05-01 19:17:45 +00:00
|
|
|
connect(ui->input_type_combo_box, qOverload<int>(&QComboBox::currentIndexChanged), this,
|
|
|
|
&ConfigureAudio::UpdateAudioInputDevices);
|
2016-05-18 22:01:03 +00:00
|
|
|
}
|
|
|
|
|
2016-09-19 01:01:46 +00:00
|
|
|
ConfigureAudio::~ConfigureAudio() {}
|
2016-05-18 22:01:03 +00:00
|
|
|
|
2019-05-26 04:39:23 +00:00
|
|
|
void ConfigureAudio::SetConfiguration() {
|
2023-05-01 19:17:45 +00:00
|
|
|
SetOutputTypeFromSinkType();
|
|
|
|
SetInputTypeFromInputType();
|
2018-10-03 00:17:14 +00:00
|
|
|
|
|
|
|
// The device list cannot be pre-populated (nor listed) until the output sink is known.
|
2023-05-01 19:17:45 +00:00
|
|
|
UpdateAudioOutputDevices(ui->output_type_combo_box->currentIndex());
|
|
|
|
UpdateAudioInputDevices(ui->input_type_combo_box->currentIndex());
|
|
|
|
SetOutputDeviceFromDeviceID();
|
|
|
|
SetInputDeviceFromDeviceID();
|
2018-10-03 00:17:14 +00:00
|
|
|
|
2022-12-08 11:27:25 +00:00
|
|
|
ui->toggle_audio_stretching->setChecked(Settings::values.enable_audio_stretching.GetValue());
|
|
|
|
|
|
|
|
const s32 volume =
|
|
|
|
static_cast<s32>(Settings::values.volume.GetValue() * ui->volume_slider->maximum());
|
|
|
|
ui->volume_slider->setValue(volume);
|
2019-05-26 04:39:23 +00:00
|
|
|
SetVolumeIndicatorText(ui->volume_slider->sliderPosition());
|
2018-12-06 16:13:13 +00:00
|
|
|
|
2022-12-08 11:27:25 +00:00
|
|
|
if (!Settings::IsConfiguringGlobal()) {
|
|
|
|
if (Settings::values.volume.UsingGlobal()) {
|
|
|
|
ui->volume_combo_box->setCurrentIndex(0);
|
|
|
|
ui->volume_slider->setEnabled(false);
|
2018-12-20 00:45:22 +00:00
|
|
|
} else {
|
2022-12-08 11:27:25 +00:00
|
|
|
ui->volume_combo_box->setCurrentIndex(1);
|
|
|
|
ui->volume_slider->setEnabled(true);
|
2018-12-20 00:45:22 +00:00
|
|
|
}
|
2022-12-08 11:27:25 +00:00
|
|
|
ConfigurationShared::SetHighlight(ui->volume_layout,
|
|
|
|
!Settings::values.volume.UsingGlobal());
|
|
|
|
ConfigurationShared::SetHighlight(ui->widget_emulation,
|
|
|
|
!Settings::values.audio_emulation.UsingGlobal());
|
|
|
|
ConfigurationShared::SetPerGameSetting(ui->emulation_combo_box,
|
|
|
|
&Settings::values.audio_emulation);
|
2018-12-20 00:45:22 +00:00
|
|
|
} else {
|
2022-12-08 11:27:25 +00:00
|
|
|
s32 selection = static_cast<s32>(Settings::values.audio_emulation.GetValue());
|
|
|
|
ui->emulation_combo_box->setCurrentIndex(selection);
|
2018-12-20 00:45:22 +00:00
|
|
|
}
|
2023-05-01 19:17:45 +00:00
|
|
|
}
|
2019-02-27 22:13:51 +00:00
|
|
|
|
2023-05-01 19:17:45 +00:00
|
|
|
void ConfigureAudio::SetOutputTypeFromSinkType() {
|
2023-12-22 19:38:06 +00:00
|
|
|
int new_index = -1;
|
|
|
|
|
|
|
|
for (int index = 0; index < ui->output_type_combo_box->count(); index++) {
|
|
|
|
const auto sink_type =
|
|
|
|
static_cast<AudioCore::SinkType>(ui->output_type_combo_box->itemData(index).toUInt());
|
|
|
|
if (Settings::values.output_type.GetValue() == sink_type) {
|
|
|
|
new_index = index;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->output_type_combo_box->setCurrentIndex(new_index);
|
2018-10-03 00:17:14 +00:00
|
|
|
}
|
|
|
|
|
2023-05-01 19:17:45 +00:00
|
|
|
void ConfigureAudio::SetOutputDeviceFromDeviceID() {
|
|
|
|
int new_device_index = -1;
|
2018-10-03 00:17:14 +00:00
|
|
|
|
2023-05-01 19:17:45 +00:00
|
|
|
const QString device_id = QString::fromStdString(Settings::values.output_device.GetValue());
|
|
|
|
for (int index = 0; index < ui->output_device_combo_box->count(); index++) {
|
|
|
|
if (ui->output_device_combo_box->itemText(index) == device_id) {
|
|
|
|
new_device_index = index;
|
2016-05-18 22:01:03 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-08-31 15:59:37 +00:00
|
|
|
|
2023-05-01 19:17:45 +00:00
|
|
|
ui->output_device_combo_box->setCurrentIndex(new_device_index);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureAudio::SetInputTypeFromInputType() {
|
2023-12-22 19:38:06 +00:00
|
|
|
int new_index = -1;
|
|
|
|
|
|
|
|
for (int index = 0; index < ui->input_type_combo_box->count(); index++) {
|
|
|
|
const auto input_type =
|
|
|
|
static_cast<AudioCore::InputType>(ui->input_type_combo_box->itemData(index).toUInt());
|
|
|
|
if (Settings::values.input_type.GetValue() == input_type) {
|
|
|
|
new_index = index;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->input_type_combo_box->setCurrentIndex(new_index);
|
2018-10-03 00:17:14 +00:00
|
|
|
}
|
2017-01-26 03:33:26 +00:00
|
|
|
|
2023-05-01 19:17:45 +00:00
|
|
|
void ConfigureAudio::SetInputDeviceFromDeviceID() {
|
2017-01-26 03:33:26 +00:00
|
|
|
int new_device_index = -1;
|
2018-10-03 00:17:14 +00:00
|
|
|
|
2023-05-01 19:17:45 +00:00
|
|
|
const QString device_id = QString::fromStdString(Settings::values.input_device.GetValue());
|
|
|
|
for (int index = 0; index < ui->input_device_combo_box->count(); index++) {
|
|
|
|
if (ui->input_device_combo_box->itemText(index) == device_id) {
|
2017-01-26 03:33:26 +00:00
|
|
|
new_device_index = index;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-06-30 12:26:38 +00:00
|
|
|
|
2023-05-01 19:17:45 +00:00
|
|
|
ui->input_device_combo_box->setCurrentIndex(new_device_index);
|
2018-10-02 23:45:09 +00:00
|
|
|
}
|
|
|
|
|
2019-05-26 04:39:23 +00:00
|
|
|
void ConfigureAudio::SetVolumeIndicatorText(int percentage) {
|
2018-10-02 23:45:09 +00:00
|
|
|
ui->volume_indicator->setText(tr("%1%", "Volume percentage (e.g. 50%)").arg(percentage));
|
2016-05-18 22:01:03 +00:00
|
|
|
}
|
|
|
|
|
2019-05-26 04:39:23 +00:00
|
|
|
void ConfigureAudio::ApplyConfiguration() {
|
2022-12-08 11:27:25 +00:00
|
|
|
ConfigurationShared::ApplyPerGameSetting(&Settings::values.enable_audio_stretching,
|
|
|
|
ui->toggle_audio_stretching, audio_stretching);
|
|
|
|
ConfigurationShared::ApplyPerGameSetting(&Settings::values.audio_emulation,
|
|
|
|
ui->emulation_combo_box);
|
|
|
|
ConfigurationShared::ApplyPerGameSetting(
|
|
|
|
&Settings::values.volume, ui->volume_combo_box, [this](s32) {
|
|
|
|
return static_cast<float>(ui->volume_slider->value()) / ui->volume_slider->maximum();
|
|
|
|
});
|
|
|
|
|
|
|
|
if (Settings::IsConfiguringGlobal()) {
|
2023-05-01 19:17:45 +00:00
|
|
|
Settings::values.output_type =
|
2023-12-22 19:38:06 +00:00
|
|
|
static_cast<AudioCore::SinkType>(ui->output_type_combo_box->currentData().toUInt());
|
2023-05-01 19:17:45 +00:00
|
|
|
Settings::values.output_device = ui->output_device_combo_box->currentText().toStdString();
|
|
|
|
Settings::values.input_type =
|
2023-12-22 19:38:06 +00:00
|
|
|
static_cast<AudioCore::InputType>(ui->input_type_combo_box->currentData().toUInt());
|
2023-05-01 19:17:45 +00:00
|
|
|
Settings::values.input_device = ui->input_device_combo_box->currentText().toStdString();
|
2019-11-01 18:33:06 +00:00
|
|
|
}
|
2016-05-18 22:01:03 +00:00
|
|
|
}
|
2017-01-26 03:33:26 +00:00
|
|
|
|
2019-05-26 04:39:23 +00:00
|
|
|
void ConfigureAudio::UpdateAudioOutputDevices(int sink_index) {
|
2023-12-22 19:38:06 +00:00
|
|
|
auto sink_type =
|
|
|
|
static_cast<AudioCore::SinkType>(ui->output_type_combo_box->itemData(sink_index).toUInt());
|
|
|
|
auto& sink_details = AudioCore::GetSinkDetails(sink_type);
|
2017-01-26 03:33:26 +00:00
|
|
|
|
2023-05-01 19:17:45 +00:00
|
|
|
ui->output_device_combo_box->clear();
|
|
|
|
ui->output_device_combo_box->addItem(QString::fromUtf8(AudioCore::auto_device_name));
|
|
|
|
|
2023-12-22 19:38:06 +00:00
|
|
|
for (const auto& device : sink_details.list_devices()) {
|
2023-05-01 19:17:45 +00:00
|
|
|
ui->output_device_combo_box->addItem(QString::fromStdString(device));
|
2017-01-26 03:33:26 +00:00
|
|
|
}
|
|
|
|
}
|
2017-09-23 13:13:59 +00:00
|
|
|
|
2023-05-01 19:17:45 +00:00
|
|
|
void ConfigureAudio::UpdateAudioInputDevices(int input_index) {
|
2023-12-22 19:38:06 +00:00
|
|
|
auto input_type =
|
|
|
|
static_cast<AudioCore::InputType>(ui->input_type_combo_box->itemData(input_index).toUInt());
|
|
|
|
auto& input_details = AudioCore::GetInputDetails(input_type);
|
2023-05-01 19:17:45 +00:00
|
|
|
|
2022-01-10 13:38:49 +00:00
|
|
|
#if defined(__APPLE__)
|
2023-12-22 19:38:06 +00:00
|
|
|
if (input_details.real) {
|
2022-01-10 13:38:49 +00:00
|
|
|
AppleAuthorization::CheckAuthorizationForMicrophone();
|
|
|
|
}
|
|
|
|
#endif
|
2023-05-01 19:17:45 +00:00
|
|
|
|
|
|
|
ui->input_device_combo_box->clear();
|
|
|
|
ui->input_device_combo_box->addItem(QString::fromUtf8(AudioCore::auto_device_name));
|
|
|
|
|
2023-12-22 19:38:06 +00:00
|
|
|
for (const auto& device : input_details.list_devices()) {
|
2023-05-01 19:17:45 +00:00
|
|
|
ui->input_device_combo_box->addItem(QString::fromStdString(device));
|
2019-11-01 18:33:06 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-27 22:13:51 +00:00
|
|
|
|
2019-05-26 04:39:23 +00:00
|
|
|
void ConfigureAudio::RetranslateUI() {
|
2017-09-23 13:13:59 +00:00
|
|
|
ui->retranslateUi(this);
|
|
|
|
}
|
2022-12-08 11:27:25 +00:00
|
|
|
|
|
|
|
void ConfigureAudio::SetupPerGameUI() {
|
|
|
|
if (Settings::IsConfiguringGlobal()) {
|
|
|
|
ui->volume_slider->setEnabled(Settings::values.volume.UsingGlobal());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-05-01 19:17:45 +00:00
|
|
|
ui->output_type_combo_box->setVisible(false);
|
|
|
|
ui->output_type_label->setVisible(false);
|
|
|
|
ui->output_device_combo_box->setVisible(false);
|
|
|
|
ui->output_device_label->setVisible(false);
|
2022-12-08 11:27:25 +00:00
|
|
|
ui->input_type_label->setVisible(false);
|
|
|
|
ui->input_type_combo_box->setVisible(false);
|
|
|
|
ui->input_device_label->setVisible(false);
|
|
|
|
ui->input_device_combo_box->setVisible(false);
|
2023-05-01 19:17:45 +00:00
|
|
|
ui->input_layout->setVisible(false);
|
2022-12-08 11:27:25 +00:00
|
|
|
|
|
|
|
connect(ui->volume_combo_box, qOverload<int>(&QComboBox::activated), this, [this](int index) {
|
|
|
|
ui->volume_slider->setEnabled(index == 1);
|
|
|
|
ConfigurationShared::SetHighlight(ui->volume_layout, index == 1);
|
|
|
|
});
|
|
|
|
|
|
|
|
ConfigurationShared::SetColoredComboBox(
|
|
|
|
ui->emulation_combo_box, ui->widget_emulation,
|
|
|
|
static_cast<u32>(Settings::values.audio_emulation.GetValue(true)));
|
|
|
|
|
|
|
|
ConfigurationShared::SetColoredTristate(
|
|
|
|
ui->toggle_audio_stretching, Settings::values.enable_audio_stretching, audio_stretching);
|
|
|
|
}
|