1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423 |
- #include "config.h"
- #include "mainwindow.h"
- #include <iostream>
- #include <cmath>
- #include <QFileDialog>
- #include <QMessageBox>
- #include <QCloseEvent>
- #include <QSettings>
- #include <QtGlobal>
- #include "ui_mainwindow.h"
- #include "verstr.h"
- #ifdef _WIN32
- #include <windows.h>
- #include <shlobj.h>
- #endif
- namespace {
- static const struct {
- char backend_name[16];
- char full_string[32];
- } backendList[] = {
- #ifdef HAVE_JACK
- { "jack", "JACK" },
- #endif
- #ifdef HAVE_PULSEAUDIO
- { "pulse", "PulseAudio" },
- #endif
- #ifdef HAVE_ALSA
- { "alsa", "ALSA" },
- #endif
- #ifdef HAVE_COREAUDIO
- { "core", "CoreAudio" },
- #endif
- #ifdef HAVE_OSS
- { "oss", "OSS" },
- #endif
- #ifdef HAVE_SOLARIS
- { "solaris", "Solaris" },
- #endif
- #ifdef HAVE_SNDIO
- { "sndio", "SoundIO" },
- #endif
- #ifdef HAVE_QSA
- { "qsa", "QSA" },
- #endif
- #ifdef HAVE_WASAPI
- { "wasapi", "WASAPI" },
- #endif
- #ifdef HAVE_DSOUND
- { "dsound", "DirectSound" },
- #endif
- #ifdef HAVE_WINMM
- { "winmm", "Windows Multimedia" },
- #endif
- #ifdef HAVE_PORTAUDIO
- { "port", "PortAudio" },
- #endif
- #ifdef HAVE_OPENSL
- { "opensl", "OpenSL" },
- #endif
- { "null", "Null Output" },
- #ifdef HAVE_WAVE
- { "wave", "Wave Writer" },
- #endif
- { "", "" }
- };
- static const struct NameValuePair {
- const char name[64];
- const char value[16];
- } speakerModeList[] = {
- { "Autodetect", "" },
- { "Mono", "mono" },
- { "Stereo", "stereo" },
- { "Quadraphonic", "quad" },
- { "5.1 Surround (Side)", "surround51" },
- { "5.1 Surround (Rear)", "surround51rear" },
- { "6.1 Surround", "surround61" },
- { "7.1 Surround", "surround71" },
- { "Ambisonic, 1st Order", "ambi1" },
- { "Ambisonic, 2nd Order", "ambi2" },
- { "Ambisonic, 3rd Order", "ambi3" },
- { "", "" }
- }, sampleTypeList[] = {
- { "Autodetect", "" },
- { "8-bit int", "int8" },
- { "8-bit uint", "uint8" },
- { "16-bit int", "int16" },
- { "16-bit uint", "uint16" },
- { "32-bit int", "int32" },
- { "32-bit uint", "uint32" },
- { "32-bit float", "float32" },
- { "", "" }
- }, resamplerList[] = {
- { "Point", "point" },
- { "Linear", "linear" },
- { "Default (Linear)", "" },
- { "Cubic Spline", "cubic" },
- { "11th order Sinc (fast)", "fast_bsinc12" },
- { "11th order Sinc", "bsinc12" },
- { "23rd order Sinc (fast)", "fast_bsinc24" },
- { "23rd order Sinc", "bsinc24" },
- { "", "" }
- }, stereoModeList[] = {
- { "Autodetect", "" },
- { "Speakers", "speakers" },
- { "Headphones", "headphones" },
- { "", "" }
- }, stereoEncList[] = {
- { "Default", "" },
- { "Pan Pot", "panpot" },
- { "UHJ", "uhj" },
- { "", "" }
- }, ambiFormatList[] = {
- { "Default", "" },
- { "AmbiX (ACN, SN3D)", "ambix" },
- { "ACN, N3D", "acn+n3d" },
- { "Furse-Malham", "fuma" },
- { "", "" }
- }, hrtfModeList[] = {
- { "1st Order Ambisonic", "ambi1" },
- { "2nd Order Ambisonic", "ambi2" },
- { "Default (Full)", "" },
- { "Full", "full" },
- { "", "" }
- };
- static QString getDefaultConfigName()
- {
- #ifdef Q_OS_WIN32
- static const char fname[] = "alsoft.ini";
- auto get_appdata_path = []() noexcept -> QString
- {
- WCHAR buffer[MAX_PATH];
- if(SHGetSpecialFolderPathW(nullptr, buffer, CSIDL_APPDATA, FALSE) != FALSE)
- return QString::fromWCharArray(buffer);
- return QString();
- };
- QString base = get_appdata_path();
- #else
- static const char fname[] = "alsoft.conf";
- QByteArray base = qgetenv("XDG_CONFIG_HOME");
- if(base.isEmpty())
- {
- base = qgetenv("HOME");
- if(base.isEmpty() == false)
- base += "/.config";
- }
- #endif
- if(base.isEmpty() == false)
- return base +'/'+ fname;
- return fname;
- }
- static QString getBaseDataPath()
- {
- #ifdef Q_OS_WIN32
- auto get_appdata_path = []() noexcept -> QString
- {
- WCHAR buffer[MAX_PATH];
- if(SHGetSpecialFolderPathW(nullptr, buffer, CSIDL_APPDATA, FALSE) != FALSE)
- return QString::fromWCharArray(buffer);
- return QString();
- };
- QString base = get_appdata_path();
- #else
- QByteArray base = qgetenv("XDG_DATA_HOME");
- if(base.isEmpty())
- {
- base = qgetenv("HOME");
- if(!base.isEmpty())
- base += "/.local/share";
- }
- #endif
- return base;
- }
- static QStringList getAllDataPaths(const QString &append)
- {
- QStringList list;
- list.append(getBaseDataPath());
- #ifdef Q_OS_WIN32
- // TODO: Common AppData path
- #else
- QString paths = qgetenv("XDG_DATA_DIRS");
- if(paths.isEmpty())
- paths = "/usr/local/share/:/usr/share/";
- list += paths.split(QChar(':'), QString::SkipEmptyParts);
- #endif
- QStringList::iterator iter = list.begin();
- while(iter != list.end())
- {
- if(iter->isEmpty())
- iter = list.erase(iter);
- else
- {
- iter->append(append);
- iter++;
- }
- }
- return list;
- }
- template<size_t N>
- static QString getValueFromName(const NameValuePair (&list)[N], const QString &str)
- {
- for(size_t i = 0;i < N-1;i++)
- {
- if(str == list[i].name)
- return list[i].value;
- }
- return QString{};
- }
- template<size_t N>
- static QString getNameFromValue(const NameValuePair (&list)[N], const QString &str)
- {
- for(size_t i = 0;i < N-1;i++)
- {
- if(str == list[i].value)
- return list[i].name;
- }
- return QString{};
- }
- Qt::CheckState getCheckState(const QVariant &var)
- {
- if(var.isNull())
- return Qt::PartiallyChecked;
- if(var.toBool())
- return Qt::Checked;
- return Qt::Unchecked;
- }
- QString getCheckValue(const QCheckBox *checkbox)
- {
- const Qt::CheckState state{checkbox->checkState()};
- if(state == Qt::Checked)
- return QString{"true"};
- if(state == Qt::Unchecked)
- return QString{"false"};
- return QString{};
- }
- }
- MainWindow::MainWindow(QWidget *parent) :
- QMainWindow(parent),
- ui(new Ui::MainWindow),
- mPeriodSizeValidator(nullptr),
- mPeriodCountValidator(nullptr),
- mSourceCountValidator(nullptr),
- mEffectSlotValidator(nullptr),
- mSourceSendValidator(nullptr),
- mSampleRateValidator(nullptr),
- mJackBufferValidator(nullptr),
- mNeedsSave(false)
- {
- ui->setupUi(this);
- for(int i = 0;speakerModeList[i].name[0];i++)
- ui->channelConfigCombo->addItem(speakerModeList[i].name);
- ui->channelConfigCombo->adjustSize();
- for(int i = 0;sampleTypeList[i].name[0];i++)
- ui->sampleFormatCombo->addItem(sampleTypeList[i].name);
- ui->sampleFormatCombo->adjustSize();
- for(int i = 0;stereoModeList[i].name[0];i++)
- ui->stereoModeCombo->addItem(stereoModeList[i].name);
- ui->stereoModeCombo->adjustSize();
- for(int i = 0;stereoEncList[i].name[0];i++)
- ui->stereoEncodingComboBox->addItem(stereoEncList[i].name);
- ui->stereoEncodingComboBox->adjustSize();
- for(int i = 0;ambiFormatList[i].name[0];i++)
- ui->ambiFormatComboBox->addItem(ambiFormatList[i].name);
- ui->ambiFormatComboBox->adjustSize();
- int count;
- for(count = 0;resamplerList[count].name[0];count++) {
- }
- ui->resamplerSlider->setRange(0, count-1);
- for(count = 0;hrtfModeList[count].name[0];count++) {
- }
- ui->hrtfmodeSlider->setRange(0, count-1);
- ui->hrtfStateComboBox->adjustSize();
- #if !defined(HAVE_NEON) && !defined(HAVE_SSE)
- ui->cpuExtDisabledLabel->move(ui->cpuExtDisabledLabel->x(), ui->cpuExtDisabledLabel->y() - 60);
- #else
- ui->cpuExtDisabledLabel->setVisible(false);
- #endif
- #ifndef HAVE_NEON
- #ifndef HAVE_SSE4_1
- #ifndef HAVE_SSE3
- #ifndef HAVE_SSE2
- #ifndef HAVE_SSE
- ui->enableSSECheckBox->setVisible(false);
- #endif /* !SSE */
- ui->enableSSE2CheckBox->setVisible(false);
- #endif /* !SSE2 */
- ui->enableSSE3CheckBox->setVisible(false);
- #endif /* !SSE3 */
- ui->enableSSE41CheckBox->setVisible(false);
- #endif /* !SSE4.1 */
- ui->enableNeonCheckBox->setVisible(false);
- #else /* !Neon */
- #ifndef HAVE_SSE4_1
- #ifndef HAVE_SSE3
- #ifndef HAVE_SSE2
- #ifndef HAVE_SSE
- ui->enableNeonCheckBox->move(ui->enableNeonCheckBox->x(), ui->enableNeonCheckBox->y() - 30);
- ui->enableSSECheckBox->setVisible(false);
- #endif /* !SSE */
- ui->enableSSE2CheckBox->setVisible(false);
- #endif /* !SSE2 */
- ui->enableSSE3CheckBox->setVisible(false);
- #endif /* !SSE3 */
- ui->enableSSE41CheckBox->setVisible(false);
- #endif /* !SSE4.1 */
- #endif
- mPeriodSizeValidator = new QIntValidator{64, 8192, this};
- ui->periodSizeEdit->setValidator(mPeriodSizeValidator);
- mPeriodCountValidator = new QIntValidator{2, 16, this};
- ui->periodCountEdit->setValidator(mPeriodCountValidator);
- mSourceCountValidator = new QIntValidator{0, 4096, this};
- ui->srcCountLineEdit->setValidator(mSourceCountValidator);
- mEffectSlotValidator = new QIntValidator{0, 64, this};
- ui->effectSlotLineEdit->setValidator(mEffectSlotValidator);
- mSourceSendValidator = new QIntValidator{0, 16, this};
- ui->srcSendLineEdit->setValidator(mSourceSendValidator);
- mSampleRateValidator = new QIntValidator{8000, 192000, this};
- ui->sampleRateCombo->lineEdit()->setValidator(mSampleRateValidator);
- mJackBufferValidator = new QIntValidator{0, 8192, this};
- ui->jackBufferSizeLine->setValidator(mJackBufferValidator);
- connect(ui->actionLoad, &QAction::triggered, this, &MainWindow::loadConfigFromFile);
- connect(ui->actionSave_As, &QAction::triggered, this, &MainWindow::saveConfigAsFile);
- connect(ui->actionAbout, &QAction::triggered, this, &MainWindow::showAboutPage);
- connect(ui->closeCancelButton, &QPushButton::clicked, this, &MainWindow::cancelCloseAction);
- connect(ui->applyButton, &QPushButton::clicked, this, &MainWindow::saveCurrentConfig);
- auto qcb_cicint = static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged);
- connect(ui->channelConfigCombo, qcb_cicint, this, &MainWindow::enableApplyButton);
- connect(ui->sampleFormatCombo, qcb_cicint, this, &MainWindow::enableApplyButton);
- connect(ui->stereoModeCombo, qcb_cicint, this, &MainWindow::enableApplyButton);
- connect(ui->sampleRateCombo, qcb_cicint, this, &MainWindow::enableApplyButton);
- connect(ui->sampleRateCombo, &QComboBox::editTextChanged, this, &MainWindow::enableApplyButton);
- connect(ui->resamplerSlider, &QSlider::valueChanged, this, &MainWindow::updateResamplerLabel);
- connect(ui->periodSizeSlider, &QSlider::valueChanged, this, &MainWindow::updatePeriodSizeEdit);
- connect(ui->periodSizeEdit, &QLineEdit::editingFinished, this, &MainWindow::updatePeriodSizeSlider);
- connect(ui->periodCountSlider, &QSlider::valueChanged, this, &MainWindow::updatePeriodCountEdit);
- connect(ui->periodCountEdit, &QLineEdit::editingFinished, this, &MainWindow::updatePeriodCountSlider);
- connect(ui->stereoEncodingComboBox, qcb_cicint, this, &MainWindow::enableApplyButton);
- connect(ui->ambiFormatComboBox, qcb_cicint, this, &MainWindow::enableApplyButton);
- connect(ui->outputLimiterCheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->outputDitherCheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->decoderHQModeCheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->decoderDistCompCheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->decoderNFEffectsCheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- auto qdsb_vcd = static_cast<void(QDoubleSpinBox::*)(double)>(&QDoubleSpinBox::valueChanged);
- connect(ui->decoderNFRefDelaySpinBox, qdsb_vcd, this, &MainWindow::enableApplyButton);
- connect(ui->decoderQuadLineEdit, &QLineEdit::textChanged, this, &MainWindow::enableApplyButton);
- connect(ui->decoderQuadButton, &QPushButton::clicked, this, &MainWindow::selectQuadDecoderFile);
- connect(ui->decoder51LineEdit, &QLineEdit::textChanged, this, &MainWindow::enableApplyButton);
- connect(ui->decoder51Button, &QPushButton::clicked, this, &MainWindow::select51DecoderFile);
- connect(ui->decoder61LineEdit, &QLineEdit::textChanged, this, &MainWindow::enableApplyButton);
- connect(ui->decoder61Button, &QPushButton::clicked, this, &MainWindow::select61DecoderFile);
- connect(ui->decoder71LineEdit, &QLineEdit::textChanged, this, &MainWindow::enableApplyButton);
- connect(ui->decoder71Button, &QPushButton::clicked, this, &MainWindow::select71DecoderFile);
- connect(ui->preferredHrtfComboBox, qcb_cicint, this, &MainWindow::enableApplyButton);
- connect(ui->hrtfStateComboBox, qcb_cicint, this, &MainWindow::enableApplyButton);
- connect(ui->hrtfmodeSlider, &QSlider::valueChanged, this, &MainWindow::updateHrtfModeLabel);
- connect(ui->hrtfAddButton, &QPushButton::clicked, this, &MainWindow::addHrtfFile);
- connect(ui->hrtfRemoveButton, &QPushButton::clicked, this, &MainWindow::removeHrtfFile);
- connect(ui->hrtfFileList, &QListWidget::itemSelectionChanged, this, &MainWindow::updateHrtfRemoveButton);
- connect(ui->defaultHrtfPathsCheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->srcCountLineEdit, &QLineEdit::editingFinished, this, &MainWindow::enableApplyButton);
- connect(ui->srcSendLineEdit, &QLineEdit::editingFinished, this, &MainWindow::enableApplyButton);
- connect(ui->effectSlotLineEdit, &QLineEdit::editingFinished, this, &MainWindow::enableApplyButton);
- connect(ui->enableSSECheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->enableSSE2CheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->enableSSE3CheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->enableSSE41CheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->enableNeonCheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- ui->enabledBackendList->setContextMenuPolicy(Qt::CustomContextMenu);
- connect(ui->enabledBackendList, &QListWidget::customContextMenuRequested, this, &MainWindow::showEnabledBackendMenu);
- ui->disabledBackendList->setContextMenuPolicy(Qt::CustomContextMenu);
- connect(ui->disabledBackendList, &QListWidget::customContextMenuRequested, this, &MainWindow::showDisabledBackendMenu);
- connect(ui->backendCheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->defaultReverbComboBox, qcb_cicint, this, &MainWindow::enableApplyButton);
- connect(ui->enableEaxReverbCheck, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->enableStdReverbCheck, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->enableAutowahCheck, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->enableChorusCheck, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->enableCompressorCheck, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->enableDistortionCheck, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->enableEchoCheck, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->enableEqualizerCheck, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->enableFlangerCheck, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->enableFrequencyShifterCheck, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->enableModulatorCheck, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->enableDedicatedCheck, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->enablePitchShifterCheck, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->enableVocalMorpherCheck, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->pulseAutospawnCheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->pulseAllowMovesCheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->pulseFixRateCheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->pulseAdjLatencyCheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->jackAutospawnCheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->jackConnectPortsCheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->jackBufferSizeSlider, &QSlider::valueChanged, this, &MainWindow::updateJackBufferSizeEdit);
- connect(ui->jackBufferSizeLine, &QLineEdit::editingFinished, this, &MainWindow::updateJackBufferSizeSlider);
- connect(ui->alsaDefaultDeviceLine, &QLineEdit::textChanged, this, &MainWindow::enableApplyButton);
- connect(ui->alsaDefaultCaptureLine, &QLineEdit::textChanged, this, &MainWindow::enableApplyButton);
- connect(ui->alsaResamplerCheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->alsaMmapCheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- connect(ui->ossDefaultDeviceLine, &QLineEdit::textChanged, this, &MainWindow::enableApplyButton);
- connect(ui->ossPlaybackPushButton, &QPushButton::clicked, this, &MainWindow::selectOSSPlayback);
- connect(ui->ossDefaultCaptureLine, &QLineEdit::textChanged, this, &MainWindow::enableApplyButton);
- connect(ui->ossCapturePushButton, &QPushButton::clicked, this, &MainWindow::selectOSSCapture);
- connect(ui->solarisDefaultDeviceLine, &QLineEdit::textChanged, this, &MainWindow::enableApplyButton);
- connect(ui->solarisPlaybackPushButton, &QPushButton::clicked, this, &MainWindow::selectSolarisPlayback);
- connect(ui->waveOutputLine, &QLineEdit::textChanged, this, &MainWindow::enableApplyButton);
- connect(ui->waveOutputButton, &QPushButton::clicked, this, &MainWindow::selectWaveOutput);
- connect(ui->waveBFormatCheckBox, &QCheckBox::stateChanged, this, &MainWindow::enableApplyButton);
- ui->backendListWidget->setCurrentRow(0);
- ui->tabWidget->setCurrentIndex(0);
- for(int i = 1;i < ui->backendListWidget->count();i++)
- ui->backendListWidget->setRowHidden(i, true);
- for(int i = 0;backendList[i].backend_name[0];i++)
- {
- QList<QListWidgetItem*> items = ui->backendListWidget->findItems(
- backendList[i].full_string, Qt::MatchFixedString);
- foreach(QListWidgetItem *item, items)
- item->setHidden(false);
- }
- loadConfig(getDefaultConfigName());
- }
- MainWindow::~MainWindow()
- {
- delete ui;
- delete mPeriodSizeValidator;
- delete mPeriodCountValidator;
- delete mSourceCountValidator;
- delete mEffectSlotValidator;
- delete mSourceSendValidator;
- delete mSampleRateValidator;
- delete mJackBufferValidator;
- }
- void MainWindow::closeEvent(QCloseEvent *event)
- {
- if(!mNeedsSave)
- event->accept();
- else
- {
- QMessageBox::StandardButton btn = QMessageBox::warning(this,
- tr("Apply changes?"), tr("Save changes before quitting?"),
- QMessageBox::Save | QMessageBox::No | QMessageBox::Cancel);
- if(btn == QMessageBox::Save)
- saveCurrentConfig();
- if(btn == QMessageBox::Cancel)
- event->ignore();
- else
- event->accept();
- }
- }
- void MainWindow::cancelCloseAction()
- {
- mNeedsSave = false;
- close();
- }
- void MainWindow::showAboutPage()
- {
- QMessageBox::information(this, tr("About"),
- tr("OpenAL Soft Configuration Utility.\nBuilt for OpenAL Soft library version ") +
- GetVersionString());
- }
- QStringList MainWindow::collectHrtfs()
- {
- QStringList ret;
- QStringList processed;
- for(int i = 0;i < ui->hrtfFileList->count();i++)
- {
- QDir dir(ui->hrtfFileList->item(i)->text());
- QStringList fnames = dir.entryList(QDir::Files | QDir::Readable, QDir::Name);
- foreach(const QString &fname, fnames)
- {
- if(!fname.endsWith(".mhr", Qt::CaseInsensitive))
- continue;
- QString fullname{dir.absoluteFilePath(fname)};
- if(processed.contains(fullname))
- continue;
- processed.push_back(fullname);
- QString name{fname.left(fname.length()-4)};
- if(!ret.contains(name))
- ret.push_back(name);
- else
- {
- size_t i{2};
- do {
- QString s = name+" #"+QString::number(i);
- if(!ret.contains(s))
- {
- ret.push_back(s);
- break;
- }
- ++i;
- } while(1);
- }
- }
- }
- if(ui->defaultHrtfPathsCheckBox->isChecked())
- {
- QStringList paths = getAllDataPaths("/openal/hrtf");
- foreach(const QString &name, paths)
- {
- QDir dir{name};
- QStringList fnames{dir.entryList(QDir::Files | QDir::Readable, QDir::Name)};
- foreach(const QString &fname, fnames)
- {
- if(!fname.endsWith(".mhr", Qt::CaseInsensitive))
- continue;
- QString fullname{dir.absoluteFilePath(fname)};
- if(processed.contains(fullname))
- continue;
- processed.push_back(fullname);
- QString name{fname.left(fname.length()-4)};
- if(!ret.contains(name))
- ret.push_back(name);
- else
- {
- size_t i{2};
- do {
- QString s{name+" #"+QString::number(i)};
- if(!ret.contains(s))
- {
- ret.push_back(s);
- break;
- }
- ++i;
- } while(1);
- }
- }
- }
- #ifdef ALSOFT_EMBED_HRTF_DATA
- ret.push_back("Built-In HRTF");
- #endif
- }
- return ret;
- }
- void MainWindow::loadConfigFromFile()
- {
- QString fname = QFileDialog::getOpenFileName(this, tr("Select Files"));
- if(fname.isEmpty() == false)
- loadConfig(fname);
- }
- void MainWindow::loadConfig(const QString &fname)
- {
- QSettings settings{fname, QSettings::IniFormat};
- QString sampletype = settings.value("sample-type").toString();
- ui->sampleFormatCombo->setCurrentIndex(0);
- if(sampletype.isEmpty() == false)
- {
- QString str{getNameFromValue(sampleTypeList, sampletype)};
- if(!str.isEmpty())
- {
- const int j{ui->sampleFormatCombo->findText(str)};
- if(j > 0) ui->sampleFormatCombo->setCurrentIndex(j);
- }
- }
- QString channelconfig{settings.value("channels").toString()};
- ui->channelConfigCombo->setCurrentIndex(0);
- if(channelconfig.isEmpty() == false)
- {
- QString str{getNameFromValue(speakerModeList, channelconfig)};
- if(!str.isEmpty())
- {
- const int j{ui->channelConfigCombo->findText(str)};
- if(j > 0) ui->channelConfigCombo->setCurrentIndex(j);
- }
- }
- QString srate{settings.value("frequency").toString()};
- if(srate.isEmpty())
- ui->sampleRateCombo->setCurrentIndex(0);
- else
- {
- ui->sampleRateCombo->lineEdit()->clear();
- ui->sampleRateCombo->lineEdit()->insert(srate);
- }
- ui->srcCountLineEdit->clear();
- ui->srcCountLineEdit->insert(settings.value("sources").toString());
- ui->effectSlotLineEdit->clear();
- ui->effectSlotLineEdit->insert(settings.value("slots").toString());
- ui->srcSendLineEdit->clear();
- ui->srcSendLineEdit->insert(settings.value("sends").toString());
- QString resampler = settings.value("resampler").toString().trimmed();
- ui->resamplerSlider->setValue(2);
- ui->resamplerLabel->setText(resamplerList[2].name);
- /* The "sinc4" and "sinc8" resamplers are no longer supported. Use "cubic"
- * as a fallback.
- */
- if(resampler == "sinc4" || resampler == "sinc8")
- resampler = "cubic";
- /* The "bsinc" resampler name is an alias for "bsinc12". */
- else if(resampler == "bsinc")
- resampler = "bsinc12";
- for(int i = 0;resamplerList[i].name[0];i++)
- {
- if(resampler == resamplerList[i].value)
- {
- ui->resamplerSlider->setValue(i);
- ui->resamplerLabel->setText(resamplerList[i].name);
- break;
- }
- }
- QString stereomode = settings.value("stereo-mode").toString().trimmed();
- ui->stereoModeCombo->setCurrentIndex(0);
- if(stereomode.isEmpty() == false)
- {
- QString str{getNameFromValue(stereoModeList, stereomode)};
- if(!str.isEmpty())
- {
- const int j{ui->stereoModeCombo->findText(str)};
- if(j > 0) ui->stereoModeCombo->setCurrentIndex(j);
- }
- }
- int periodsize{settings.value("period_size").toInt()};
- ui->periodSizeEdit->clear();
- if(periodsize >= 64)
- {
- ui->periodSizeEdit->insert(QString::number(periodsize));
- updatePeriodSizeSlider();
- }
- int periodcount{settings.value("periods").toInt()};
- ui->periodCountEdit->clear();
- if(periodcount >= 2)
- {
- ui->periodCountEdit->insert(QString::number(periodcount));
- updatePeriodCountSlider();
- }
- ui->outputLimiterCheckBox->setCheckState(getCheckState(settings.value("output-limiter")));
- ui->outputDitherCheckBox->setCheckState(getCheckState(settings.value("dither")));
- QString stereopan{settings.value("stereo-encoding").toString()};
- ui->stereoEncodingComboBox->setCurrentIndex(0);
- if(stereopan.isEmpty() == false)
- {
- QString str{getNameFromValue(stereoEncList, stereopan)};
- if(!str.isEmpty())
- {
- const int j{ui->stereoEncodingComboBox->findText(str)};
- if(j > 0) ui->stereoEncodingComboBox->setCurrentIndex(j);
- }
- }
- QString ambiformat{settings.value("ambi-format").toString()};
- ui->ambiFormatComboBox->setCurrentIndex(0);
- if(ambiformat.isEmpty() == false)
- {
- QString str{getNameFromValue(ambiFormatList, ambiformat)};
- if(!str.isEmpty())
- {
- const int j{ui->ambiFormatComboBox->findText(str)};
- if(j > 0) ui->ambiFormatComboBox->setCurrentIndex(j);
- }
- }
- bool hqmode{settings.value("decoder/hq-mode", true).toBool()};
- ui->decoderHQModeCheckBox->setChecked(hqmode);
- ui->decoderDistCompCheckBox->setCheckState(getCheckState(settings.value("decoder/distance-comp")));
- ui->decoderNFEffectsCheckBox->setCheckState(getCheckState(settings.value("decoder/nfc")));
- double refdelay{settings.value("decoder/nfc-ref-delay", 0.0).toDouble()};
- ui->decoderNFRefDelaySpinBox->setValue(refdelay);
- ui->decoderQuadLineEdit->setText(settings.value("decoder/quad").toString());
- ui->decoder51LineEdit->setText(settings.value("decoder/surround51").toString());
- ui->decoder61LineEdit->setText(settings.value("decoder/surround61").toString());
- ui->decoder71LineEdit->setText(settings.value("decoder/surround71").toString());
- QStringList disabledCpuExts{settings.value("disable-cpu-exts").toStringList()};
- if(disabledCpuExts.size() == 1)
- disabledCpuExts = disabledCpuExts[0].split(QChar(','));
- for(QString &name : disabledCpuExts)
- name = name.trimmed();
- ui->enableSSECheckBox->setChecked(!disabledCpuExts.contains("sse", Qt::CaseInsensitive));
- ui->enableSSE2CheckBox->setChecked(!disabledCpuExts.contains("sse2", Qt::CaseInsensitive));
- ui->enableSSE3CheckBox->setChecked(!disabledCpuExts.contains("sse3", Qt::CaseInsensitive));
- ui->enableSSE41CheckBox->setChecked(!disabledCpuExts.contains("sse4.1", Qt::CaseInsensitive));
- ui->enableNeonCheckBox->setChecked(!disabledCpuExts.contains("neon", Qt::CaseInsensitive));
- QString hrtfmode{settings.value("hrtf-mode").toString().trimmed()};
- ui->hrtfmodeSlider->setValue(2);
- ui->hrtfmodeLabel->setText(hrtfModeList[2].name);
- /* The "basic" mode name is no longer supported, and "ambi3" is temporarily
- * disabled. Use "ambi2" instead.
- */
- if(hrtfmode == "basic" || hrtfmode == "ambi3")
- hrtfmode = "ambi2";
- for(int i = 0;hrtfModeList[i].name[0];i++)
- {
- if(hrtfmode == hrtfModeList[i].value)
- {
- ui->hrtfmodeSlider->setValue(i);
- ui->hrtfmodeLabel->setText(hrtfModeList[i].name);
- break;
- }
- }
- QStringList hrtf_paths{settings.value("hrtf-paths").toStringList()};
- if(hrtf_paths.size() == 1)
- hrtf_paths = hrtf_paths[0].split(QChar(','));
- for(QString &name : hrtf_paths)
- name = name.trimmed();
- if(!hrtf_paths.empty() && !hrtf_paths.back().isEmpty())
- ui->defaultHrtfPathsCheckBox->setCheckState(Qt::Unchecked);
- else
- {
- hrtf_paths.removeAll(QString());
- ui->defaultHrtfPathsCheckBox->setCheckState(Qt::Checked);
- }
- hrtf_paths.removeDuplicates();
- ui->hrtfFileList->clear();
- ui->hrtfFileList->addItems(hrtf_paths);
- updateHrtfRemoveButton();
- QString hrtfstate{settings.value("hrtf").toString().toLower()};
- if(hrtfstate == "true")
- ui->hrtfStateComboBox->setCurrentIndex(1);
- else if(hrtfstate == "false")
- ui->hrtfStateComboBox->setCurrentIndex(2);
- else
- ui->hrtfStateComboBox->setCurrentIndex(0);
- ui->preferredHrtfComboBox->clear();
- ui->preferredHrtfComboBox->addItem("- Any -");
- if(ui->defaultHrtfPathsCheckBox->isChecked())
- {
- QStringList hrtfs{collectHrtfs()};
- foreach(const QString &name, hrtfs)
- ui->preferredHrtfComboBox->addItem(name);
- }
- QString defaulthrtf{settings.value("default-hrtf").toString()};
- ui->preferredHrtfComboBox->setCurrentIndex(0);
- if(defaulthrtf.isEmpty() == false)
- {
- int i{ui->preferredHrtfComboBox->findText(defaulthrtf)};
- if(i > 0)
- ui->preferredHrtfComboBox->setCurrentIndex(i);
- else
- {
- i = ui->preferredHrtfComboBox->count();
- ui->preferredHrtfComboBox->addItem(defaulthrtf);
- ui->preferredHrtfComboBox->setCurrentIndex(i);
- }
- }
- ui->preferredHrtfComboBox->adjustSize();
- ui->enabledBackendList->clear();
- ui->disabledBackendList->clear();
- QStringList drivers{settings.value("drivers").toStringList()};
- if(drivers.size() == 0)
- ui->backendCheckBox->setChecked(true);
- else
- {
- if(drivers.size() == 1)
- drivers = drivers[0].split(QChar(','));
- for(QString &name : drivers)
- {
- name = name.trimmed();
- /* Convert "mmdevapi" references to "wasapi" for backwards
- * compatibility.
- */
- if(name == "-mmdevapi")
- name = "-wasapi";
- else if(name == "mmdevapi")
- name = "wasapi";
- }
- bool lastWasEmpty = false;
- foreach(const QString &backend, drivers)
- {
- lastWasEmpty = backend.isEmpty();
- if(lastWasEmpty) continue;
- if(!backend.startsWith(QChar('-')))
- for(int j = 0;backendList[j].backend_name[0];j++)
- {
- if(backend == backendList[j].backend_name)
- {
- ui->enabledBackendList->addItem(backendList[j].full_string);
- break;
- }
- }
- else if(backend.size() > 1)
- {
- QStringRef backendref{backend.rightRef(backend.size()-1)};
- for(int j = 0;backendList[j].backend_name[0];j++)
- {
- if(backendref == backendList[j].backend_name)
- {
- ui->disabledBackendList->addItem(backendList[j].full_string);
- break;
- }
- }
- }
- }
- ui->backendCheckBox->setChecked(lastWasEmpty);
- }
- QString defaultreverb{settings.value("default-reverb").toString().toLower()};
- ui->defaultReverbComboBox->setCurrentIndex(0);
- if(defaultreverb.isEmpty() == false)
- {
- for(int i = 0;i < ui->defaultReverbComboBox->count();i++)
- {
- if(defaultreverb.compare(ui->defaultReverbComboBox->itemText(i).toLower()) == 0)
- {
- ui->defaultReverbComboBox->setCurrentIndex(i);
- break;
- }
- }
- }
- QStringList excludefx{settings.value("excludefx").toStringList()};
- if(excludefx.size() == 1)
- excludefx = excludefx[0].split(QChar(','));
- for(QString &name : excludefx)
- name = name.trimmed();
- ui->enableEaxReverbCheck->setChecked(!excludefx.contains("eaxreverb", Qt::CaseInsensitive));
- ui->enableStdReverbCheck->setChecked(!excludefx.contains("reverb", Qt::CaseInsensitive));
- ui->enableAutowahCheck->setChecked(!excludefx.contains("autowah", Qt::CaseInsensitive));
- ui->enableChorusCheck->setChecked(!excludefx.contains("chorus", Qt::CaseInsensitive));
- ui->enableCompressorCheck->setChecked(!excludefx.contains("compressor", Qt::CaseInsensitive));
- ui->enableDistortionCheck->setChecked(!excludefx.contains("distortion", Qt::CaseInsensitive));
- ui->enableEchoCheck->setChecked(!excludefx.contains("echo", Qt::CaseInsensitive));
- ui->enableEqualizerCheck->setChecked(!excludefx.contains("equalizer", Qt::CaseInsensitive));
- ui->enableFlangerCheck->setChecked(!excludefx.contains("flanger", Qt::CaseInsensitive));
- ui->enableFrequencyShifterCheck->setChecked(!excludefx.contains("fshifter", Qt::CaseInsensitive));
- ui->enableModulatorCheck->setChecked(!excludefx.contains("modulator", Qt::CaseInsensitive));
- ui->enableDedicatedCheck->setChecked(!excludefx.contains("dedicated", Qt::CaseInsensitive));
- ui->enablePitchShifterCheck->setChecked(!excludefx.contains("pshifter", Qt::CaseInsensitive));
- ui->enableVocalMorpherCheck->setChecked(!excludefx.contains("vmorpher", Qt::CaseInsensitive));
- ui->pulseAutospawnCheckBox->setCheckState(getCheckState(settings.value("pulse/spawn-server")));
- ui->pulseAllowMovesCheckBox->setCheckState(getCheckState(settings.value("pulse/allow-moves")));
- ui->pulseFixRateCheckBox->setCheckState(getCheckState(settings.value("pulse/fix-rate")));
- ui->pulseAdjLatencyCheckBox->setCheckState(getCheckState(settings.value("pulse/adjust-latency")));
- ui->jackAutospawnCheckBox->setCheckState(getCheckState(settings.value("jack/spawn-server")));
- ui->jackConnectPortsCheckBox->setCheckState(getCheckState(settings.value("jack/connect-ports")));
- ui->jackBufferSizeLine->setText(settings.value("jack/buffer-size", QString()).toString());
- updateJackBufferSizeSlider();
- ui->alsaDefaultDeviceLine->setText(settings.value("alsa/device", QString()).toString());
- ui->alsaDefaultCaptureLine->setText(settings.value("alsa/capture", QString()).toString());
- ui->alsaResamplerCheckBox->setCheckState(getCheckState(settings.value("alsa/allow-resampler")));
- ui->alsaMmapCheckBox->setCheckState(getCheckState(settings.value("alsa/mmap")));
- ui->ossDefaultDeviceLine->setText(settings.value("oss/device", QString()).toString());
- ui->ossDefaultCaptureLine->setText(settings.value("oss/capture", QString()).toString());
- ui->solarisDefaultDeviceLine->setText(settings.value("solaris/device", QString()).toString());
- ui->waveOutputLine->setText(settings.value("wave/file", QString()).toString());
- ui->waveBFormatCheckBox->setChecked(settings.value("wave/bformat", false).toBool());
- ui->applyButton->setEnabled(false);
- ui->closeCancelButton->setText(tr("Close"));
- mNeedsSave = false;
- }
- void MainWindow::saveCurrentConfig()
- {
- saveConfig(getDefaultConfigName());
- ui->applyButton->setEnabled(false);
- ui->closeCancelButton->setText(tr("Close"));
- mNeedsSave = false;
- QMessageBox::information(this, tr("Information"),
- tr("Applications using OpenAL need to be restarted for changes to take effect."));
- }
- void MainWindow::saveConfigAsFile()
- {
- QString fname{QFileDialog::getOpenFileName(this, tr("Select Files"))};
- if(fname.isEmpty() == false)
- {
- saveConfig(fname);
- ui->applyButton->setEnabled(false);
- mNeedsSave = false;
- }
- }
- void MainWindow::saveConfig(const QString &fname) const
- {
- QSettings settings{fname, QSettings::IniFormat};
- /* HACK: Compound any stringlist values into a comma-separated string. */
- QStringList allkeys{settings.allKeys()};
- foreach(const QString &key, allkeys)
- {
- QStringList vals{settings.value(key).toStringList()};
- if(vals.size() > 1)
- settings.setValue(key, vals.join(QChar(',')));
- }
- settings.setValue("sample-type", getValueFromName(sampleTypeList, ui->sampleFormatCombo->currentText()));
- settings.setValue("channels", getValueFromName(speakerModeList, ui->channelConfigCombo->currentText()));
- uint rate{ui->sampleRateCombo->currentText().toUInt()};
- if(rate <= 0)
- settings.setValue("frequency", QString{});
- else
- settings.setValue("frequency", rate);
- settings.setValue("period_size", ui->periodSizeEdit->text());
- settings.setValue("periods", ui->periodCountEdit->text());
- settings.setValue("sources", ui->srcCountLineEdit->text());
- settings.setValue("slots", ui->effectSlotLineEdit->text());
- settings.setValue("resampler", resamplerList[ui->resamplerSlider->value()].value);
- settings.setValue("stereo-mode", getValueFromName(stereoModeList, ui->stereoModeCombo->currentText()));
- settings.setValue("stereo-encoding", getValueFromName(stereoEncList, ui->stereoEncodingComboBox->currentText()));
- settings.setValue("ambi-format", getValueFromName(ambiFormatList, ui->ambiFormatComboBox->currentText()));
- settings.setValue("output-limiter", getCheckValue(ui->outputLimiterCheckBox));
- settings.setValue("dither", getCheckValue(ui->outputDitherCheckBox));
- settings.setValue("decoder/hq-mode",
- ui->decoderHQModeCheckBox->isChecked() ? QString{/*"true"*/} : QString{"false"}
- );
- settings.setValue("decoder/distance-comp", getCheckValue(ui->decoderDistCompCheckBox));
- settings.setValue("decoder/nfc", getCheckValue(ui->decoderNFEffectsCheckBox));
- double refdelay = ui->decoderNFRefDelaySpinBox->value();
- settings.setValue("decoder/nfc-ref-delay",
- (refdelay > 0.0) ? QString::number(refdelay) : QString{}
- );
- settings.setValue("decoder/quad", ui->decoderQuadLineEdit->text());
- settings.setValue("decoder/surround51", ui->decoder51LineEdit->text());
- settings.setValue("decoder/surround61", ui->decoder61LineEdit->text());
- settings.setValue("decoder/surround71", ui->decoder71LineEdit->text());
- QStringList strlist;
- if(!ui->enableSSECheckBox->isChecked())
- strlist.append("sse");
- if(!ui->enableSSE2CheckBox->isChecked())
- strlist.append("sse2");
- if(!ui->enableSSE3CheckBox->isChecked())
- strlist.append("sse3");
- if(!ui->enableSSE41CheckBox->isChecked())
- strlist.append("sse4.1");
- if(!ui->enableNeonCheckBox->isChecked())
- strlist.append("neon");
- settings.setValue("disable-cpu-exts", strlist.join(QChar(',')));
- settings.setValue("hrtf-mode", hrtfModeList[ui->hrtfmodeSlider->value()].value);
- if(ui->hrtfStateComboBox->currentIndex() == 1)
- settings.setValue("hrtf", "true");
- else if(ui->hrtfStateComboBox->currentIndex() == 2)
- settings.setValue("hrtf", "false");
- else
- settings.setValue("hrtf", QString{});
- if(ui->preferredHrtfComboBox->currentIndex() == 0)
- settings.setValue("default-hrtf", QString{});
- else
- {
- QString str{ui->preferredHrtfComboBox->currentText()};
- settings.setValue("default-hrtf", str);
- }
- strlist.clear();
- strlist.reserve(ui->hrtfFileList->count());
- for(int i = 0;i < ui->hrtfFileList->count();i++)
- strlist.append(ui->hrtfFileList->item(i)->text());
- if(!strlist.empty() && ui->defaultHrtfPathsCheckBox->isChecked())
- strlist.append(QString{});
- settings.setValue("hrtf-paths", strlist.join(QChar{','}));
- strlist.clear();
- for(int i = 0;i < ui->enabledBackendList->count();i++)
- {
- QString label{ui->enabledBackendList->item(i)->text()};
- for(int j = 0;backendList[j].backend_name[0];j++)
- {
- if(label == backendList[j].full_string)
- {
- strlist.append(backendList[j].backend_name);
- break;
- }
- }
- }
- for(int i = 0;i < ui->disabledBackendList->count();i++)
- {
- QString label{ui->disabledBackendList->item(i)->text()};
- for(int j = 0;backendList[j].backend_name[0];j++)
- {
- if(label == backendList[j].full_string)
- {
- strlist.append(QChar{'-'}+QString{backendList[j].backend_name});
- break;
- }
- }
- }
- if(strlist.size() == 0 && !ui->backendCheckBox->isChecked())
- strlist.append("-all");
- else if(ui->backendCheckBox->isChecked())
- strlist.append(QString{});
- settings.setValue("drivers", strlist.join(QChar(',')));
- // TODO: Remove check when we can properly match global values.
- if(ui->defaultReverbComboBox->currentIndex() == 0)
- settings.setValue("default-reverb", QString{});
- else
- {
- QString str{ui->defaultReverbComboBox->currentText().toLower()};
- settings.setValue("default-reverb", str);
- }
- strlist.clear();
- if(!ui->enableEaxReverbCheck->isChecked())
- strlist.append("eaxreverb");
- if(!ui->enableStdReverbCheck->isChecked())
- strlist.append("reverb");
- if(!ui->enableAutowahCheck->isChecked())
- strlist.append("autowah");
- if(!ui->enableChorusCheck->isChecked())
- strlist.append("chorus");
- if(!ui->enableDistortionCheck->isChecked())
- strlist.append("distortion");
- if(!ui->enableCompressorCheck->isChecked())
- strlist.append("compressor");
- if(!ui->enableEchoCheck->isChecked())
- strlist.append("echo");
- if(!ui->enableEqualizerCheck->isChecked())
- strlist.append("equalizer");
- if(!ui->enableFlangerCheck->isChecked())
- strlist.append("flanger");
- if(!ui->enableFrequencyShifterCheck->isChecked())
- strlist.append("fshifter");
- if(!ui->enableModulatorCheck->isChecked())
- strlist.append("modulator");
- if(!ui->enableDedicatedCheck->isChecked())
- strlist.append("dedicated");
- if(!ui->enablePitchShifterCheck->isChecked())
- strlist.append("pshifter");
- if(!ui->enableVocalMorpherCheck->isChecked())
- strlist.append("vmorpher");
- settings.setValue("excludefx", strlist.join(QChar{','}));
- settings.setValue("pulse/spawn-server", getCheckValue(ui->pulseAutospawnCheckBox));
- settings.setValue("pulse/allow-moves", getCheckValue(ui->pulseAllowMovesCheckBox));
- settings.setValue("pulse/fix-rate", getCheckValue(ui->pulseFixRateCheckBox));
- settings.setValue("pulse/adjust-latency", getCheckValue(ui->pulseAdjLatencyCheckBox));
- settings.setValue("jack/spawn-server", getCheckValue(ui->jackAutospawnCheckBox));
- settings.setValue("jack/connect-ports", getCheckValue(ui->jackConnectPortsCheckBox));
- settings.setValue("jack/buffer-size", ui->jackBufferSizeLine->text());
- settings.setValue("alsa/device", ui->alsaDefaultDeviceLine->text());
- settings.setValue("alsa/capture", ui->alsaDefaultCaptureLine->text());
- settings.setValue("alsa/allow-resampler", getCheckValue(ui->alsaResamplerCheckBox));
- settings.setValue("alsa/mmap", getCheckValue(ui->alsaMmapCheckBox));
- settings.setValue("oss/device", ui->ossDefaultDeviceLine->text());
- settings.setValue("oss/capture", ui->ossDefaultCaptureLine->text());
- settings.setValue("solaris/device", ui->solarisDefaultDeviceLine->text());
- settings.setValue("wave/file", ui->waveOutputLine->text());
- settings.setValue("wave/bformat",
- ui->waveBFormatCheckBox->isChecked() ? QString{"true"} : QString{/*"false"*/}
- );
- /* Remove empty keys
- * FIXME: Should only remove keys whose value matches the globally-specified value.
- */
- allkeys = settings.allKeys();
- foreach(const QString &key, allkeys)
- {
- QString str{settings.value(key).toString()};
- if(str == QString{})
- settings.remove(key);
- }
- }
- void MainWindow::enableApplyButton()
- {
- if(!mNeedsSave)
- ui->applyButton->setEnabled(true);
- mNeedsSave = true;
- ui->closeCancelButton->setText(tr("Cancel"));
- }
- void MainWindow::updateResamplerLabel(int num)
- {
- ui->resamplerLabel->setText(resamplerList[num].name);
- enableApplyButton();
- }
- void MainWindow::updatePeriodSizeEdit(int size)
- {
- ui->periodSizeEdit->clear();
- if(size >= 64)
- ui->periodSizeEdit->insert(QString::number(size));
- enableApplyButton();
- }
- void MainWindow::updatePeriodSizeSlider()
- {
- int pos = ui->periodSizeEdit->text().toInt();
- if(pos >= 64)
- {
- if(pos > 8192)
- pos = 8192;
- ui->periodSizeSlider->setSliderPosition(pos);
- }
- enableApplyButton();
- }
- void MainWindow::updatePeriodCountEdit(int count)
- {
- ui->periodCountEdit->clear();
- if(count >= 2)
- ui->periodCountEdit->insert(QString::number(count));
- enableApplyButton();
- }
- void MainWindow::updatePeriodCountSlider()
- {
- int pos = ui->periodCountEdit->text().toInt();
- if(pos < 2)
- pos = 0;
- else if(pos > 16)
- pos = 16;
- ui->periodCountSlider->setSliderPosition(pos);
- enableApplyButton();
- }
- void MainWindow::selectQuadDecoderFile()
- { selectDecoderFile(ui->decoderQuadLineEdit, "Select Quadraphonic Decoder");}
- void MainWindow::select51DecoderFile()
- { selectDecoderFile(ui->decoder51LineEdit, "Select 5.1 Surround Decoder");}
- void MainWindow::select61DecoderFile()
- { selectDecoderFile(ui->decoder61LineEdit, "Select 6.1 Surround Decoder");}
- void MainWindow::select71DecoderFile()
- { selectDecoderFile(ui->decoder71LineEdit, "Select 7.1 Surround Decoder");}
- void MainWindow::selectDecoderFile(QLineEdit *line, const char *caption)
- {
- QString dir{line->text()};
- if(dir.isEmpty() || QDir::isRelativePath(dir))
- {
- QStringList paths{getAllDataPaths("/openal/presets")};
- while(!paths.isEmpty())
- {
- if(QDir{paths.last()}.exists())
- {
- dir = paths.last();
- break;
- }
- paths.removeLast();
- }
- }
- QString fname{QFileDialog::getOpenFileName(this, tr(caption),
- dir, tr("AmbDec Files (*.ambdec);;All Files (*.*)"))};
- if(!fname.isEmpty())
- {
- line->setText(fname);
- enableApplyButton();
- }
- }
- void MainWindow::updateJackBufferSizeEdit(int size)
- {
- ui->jackBufferSizeLine->clear();
- if(size > 0)
- ui->jackBufferSizeLine->insert(QString::number(1<<size));
- enableApplyButton();
- }
- void MainWindow::updateJackBufferSizeSlider()
- {
- int value{ui->jackBufferSizeLine->text().toInt()};
- auto pos = static_cast<int>(floor(log2(value) + 0.5));
- ui->jackBufferSizeSlider->setSliderPosition(pos);
- enableApplyButton();
- }
- void MainWindow::updateHrtfModeLabel(int num)
- {
- ui->hrtfmodeLabel->setText(hrtfModeList[num].name);
- enableApplyButton();
- }
- void MainWindow::addHrtfFile()
- {
- QString path{QFileDialog::getExistingDirectory(this, tr("Select HRTF Path"))};
- if(path.isEmpty() == false && !getAllDataPaths("/openal/hrtf").contains(path))
- {
- ui->hrtfFileList->addItem(path);
- enableApplyButton();
- }
- }
- void MainWindow::removeHrtfFile()
- {
- QList<QListWidgetItem*> selected{ui->hrtfFileList->selectedItems()};
- if(!selected.isEmpty())
- {
- foreach(QListWidgetItem *item, selected)
- delete item;
- enableApplyButton();
- }
- }
- void MainWindow::updateHrtfRemoveButton()
- {
- ui->hrtfRemoveButton->setEnabled(ui->hrtfFileList->selectedItems().size() != 0);
- }
- void MainWindow::showEnabledBackendMenu(QPoint pt)
- {
- QHash<QAction*,QString> actionMap;
- pt = ui->enabledBackendList->mapToGlobal(pt);
- QMenu ctxmenu;
- QAction *removeAction{ctxmenu.addAction(QIcon::fromTheme("list-remove"), "Remove")};
- if(ui->enabledBackendList->selectedItems().size() == 0)
- removeAction->setEnabled(false);
- ctxmenu.addSeparator();
- for(size_t i = 0;backendList[i].backend_name[0];i++)
- {
- QString backend{backendList[i].full_string};
- QAction *action{ctxmenu.addAction(QString("Add ")+backend)};
- actionMap[action] = backend;
- if(ui->enabledBackendList->findItems(backend, Qt::MatchFixedString).size() != 0 ||
- ui->disabledBackendList->findItems(backend, Qt::MatchFixedString).size() != 0)
- action->setEnabled(false);
- }
- QAction *gotAction{ctxmenu.exec(pt)};
- if(gotAction == removeAction)
- {
- QList<QListWidgetItem*> selected{ui->enabledBackendList->selectedItems()};
- foreach(QListWidgetItem *item, selected)
- delete item;
- enableApplyButton();
- }
- else if(gotAction != nullptr)
- {
- auto iter = actionMap.constFind(gotAction);
- if(iter != actionMap.cend())
- ui->enabledBackendList->addItem(iter.value());
- enableApplyButton();
- }
- }
- void MainWindow::showDisabledBackendMenu(QPoint pt)
- {
- QHash<QAction*,QString> actionMap;
- pt = ui->disabledBackendList->mapToGlobal(pt);
- QMenu ctxmenu;
- QAction *removeAction{ctxmenu.addAction(QIcon::fromTheme("list-remove"), "Remove")};
- if(ui->disabledBackendList->selectedItems().size() == 0)
- removeAction->setEnabled(false);
- ctxmenu.addSeparator();
- for(size_t i = 0;backendList[i].backend_name[0];i++)
- {
- QString backend{backendList[i].full_string};
- QAction *action{ctxmenu.addAction(QString("Add ")+backend)};
- actionMap[action] = backend;
- if(ui->disabledBackendList->findItems(backend, Qt::MatchFixedString).size() != 0 ||
- ui->enabledBackendList->findItems(backend, Qt::MatchFixedString).size() != 0)
- action->setEnabled(false);
- }
- QAction *gotAction{ctxmenu.exec(pt)};
- if(gotAction == removeAction)
- {
- QList<QListWidgetItem*> selected{ui->disabledBackendList->selectedItems()};
- foreach(QListWidgetItem *item, selected)
- delete item;
- enableApplyButton();
- }
- else if(gotAction != nullptr)
- {
- auto iter = actionMap.constFind(gotAction);
- if(iter != actionMap.cend())
- ui->disabledBackendList->addItem(iter.value());
- enableApplyButton();
- }
- }
- void MainWindow::selectOSSPlayback()
- {
- QString current{ui->ossDefaultDeviceLine->text()};
- if(current.isEmpty()) current = ui->ossDefaultDeviceLine->placeholderText();
- QString fname{QFileDialog::getOpenFileName(this, tr("Select Playback Device"), current)};
- if(!fname.isEmpty())
- {
- ui->ossDefaultDeviceLine->setText(fname);
- enableApplyButton();
- }
- }
- void MainWindow::selectOSSCapture()
- {
- QString current{ui->ossDefaultCaptureLine->text()};
- if(current.isEmpty()) current = ui->ossDefaultCaptureLine->placeholderText();
- QString fname{QFileDialog::getOpenFileName(this, tr("Select Capture Device"), current)};
- if(!fname.isEmpty())
- {
- ui->ossDefaultCaptureLine->setText(fname);
- enableApplyButton();
- }
- }
- void MainWindow::selectSolarisPlayback()
- {
- QString current{ui->solarisDefaultDeviceLine->text()};
- if(current.isEmpty()) current = ui->solarisDefaultDeviceLine->placeholderText();
- QString fname{QFileDialog::getOpenFileName(this, tr("Select Playback Device"), current)};
- if(!fname.isEmpty())
- {
- ui->solarisDefaultDeviceLine->setText(fname);
- enableApplyButton();
- }
- }
- void MainWindow::selectWaveOutput()
- {
- QString fname{QFileDialog::getSaveFileName(this, tr("Select Wave File Output"),
- ui->waveOutputLine->text(), tr("Wave Files (*.wav *.amb);;All Files (*.*)"))};
- if(!fname.isEmpty())
- {
- ui->waveOutputLine->setText(fname);
- enableApplyButton();
- }
- }
|