mirror of https://github.com/PCSX2/pcsx2.git
188 lines
5.4 KiB
C++
188 lines
5.4 KiB
C++
/* PCSX2 - PS2 Emulator for PCs
|
|
* Copyright (C) 2002-2022 PCSX2 Dev Team
|
|
*
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "PrecompiledHeader.h"
|
|
|
|
#include <QtGui/QIcon>
|
|
#include <QtWidgets/QFileDialog>
|
|
#include <algorithm>
|
|
|
|
#include "pcsx2/ps2/BiosTools.h"
|
|
|
|
#include "BIOSSettingsWidget.h"
|
|
#include "QtUtils.h"
|
|
#include "SettingWidgetBinder.h"
|
|
#include "SettingsDialog.h"
|
|
|
|
BIOSSettingsWidget::BIOSSettingsWidget(SettingsDialog* dialog, QWidget* parent)
|
|
: QWidget(parent)
|
|
{
|
|
SettingsInterface* sif = dialog->getSettingsInterface();
|
|
|
|
m_ui.setupUi(this);
|
|
|
|
SettingWidgetBinder::BindWidgetToBoolSetting(sif, m_ui.fastBoot, "EmuCore", "EnableFastBoot", true);
|
|
|
|
dialog->registerWidgetHelp(m_ui.fastBoot, tr("Fast Boot"), tr("Unchecked"),
|
|
tr("Patches the BIOS to skip the console's boot animation."));
|
|
|
|
updateSearchDirectory();
|
|
refreshList();
|
|
|
|
connect(m_ui.searchDirectory, &QLineEdit::textChanged, [this](const QString& text) {
|
|
QtHost::SetBaseStringSettingValue("Folders", "Bios", text.toUtf8().constData());
|
|
QtHost::UpdateFolders();
|
|
refreshList();
|
|
});
|
|
connect(m_ui.resetSearchDirectory, &QPushButton::clicked, [this]() {
|
|
QtHost::RemoveBaseSettingValue("Folders", "Bios");
|
|
QtHost::UpdateFolders();
|
|
updateSearchDirectory();
|
|
refreshList();
|
|
});
|
|
connect(m_ui.browseSearchDirectory, &QPushButton::clicked, this, &BIOSSettingsWidget::browseSearchDirectory);
|
|
connect(m_ui.openSearchDirectory, &QPushButton::clicked, this, &BIOSSettingsWidget::openSearchDirectory);
|
|
connect(m_ui.refresh, &QPushButton::clicked, this, &BIOSSettingsWidget::refreshList);
|
|
connect(m_ui.fileList, &QTreeWidget::currentItemChanged, this, &BIOSSettingsWidget::listItemChanged);
|
|
}
|
|
|
|
BIOSSettingsWidget::~BIOSSettingsWidget()
|
|
{
|
|
if (m_refresh_thread)
|
|
m_refresh_thread->wait();
|
|
}
|
|
|
|
void BIOSSettingsWidget::refreshList()
|
|
{
|
|
if (m_refresh_thread)
|
|
{
|
|
m_refresh_thread->wait();
|
|
delete m_refresh_thread;
|
|
}
|
|
|
|
QSignalBlocker blocker(m_ui.fileList);
|
|
m_ui.fileList->clear();
|
|
m_ui.fileList->setEnabled(false);
|
|
|
|
m_refresh_thread = new RefreshThread(this, m_ui.searchDirectory->text());
|
|
m_refresh_thread->start();
|
|
}
|
|
|
|
void BIOSSettingsWidget::browseSearchDirectory()
|
|
{
|
|
QString directory = QDir::toNativeSeparators(QFileDialog::getExistingDirectory(
|
|
QtUtils::GetRootWidget(this), tr("Select Directory"), m_ui.searchDirectory->text()));
|
|
if (directory.isEmpty())
|
|
return;
|
|
|
|
m_ui.searchDirectory->setText(directory);
|
|
}
|
|
|
|
void BIOSSettingsWidget::openSearchDirectory()
|
|
{
|
|
QtUtils::OpenURL(this, QUrl::fromLocalFile(m_ui.searchDirectory->text()));
|
|
}
|
|
|
|
void BIOSSettingsWidget::updateSearchDirectory()
|
|
{
|
|
// this will generate a full path
|
|
m_ui.searchDirectory->setText(QtUtils::WxStringToQString(EmuFolders::Bios.ToString()));
|
|
}
|
|
|
|
void BIOSSettingsWidget::listRefreshed(const QVector<BIOSInfo>& items)
|
|
{
|
|
const std::string selected_bios(QtHost::GetBaseStringSettingValue("Filenames", "BIOS"));
|
|
|
|
QSignalBlocker sb(m_ui.fileList);
|
|
for (const BIOSInfo& bi : items)
|
|
{
|
|
QTreeWidgetItem* item = new QTreeWidgetItem();
|
|
item->setText(0, QString::fromStdString(bi.filename));
|
|
item->setText(1, QString::fromStdString(bi.description));
|
|
|
|
switch (bi.region)
|
|
{
|
|
case 2: // Japan
|
|
item->setIcon(0, QIcon(QStringLiteral(":/icons/flag-jp.png")));
|
|
break;
|
|
|
|
case 3: // USA
|
|
item->setIcon(0, QIcon(QStringLiteral(":/icons/flag-us.png")));
|
|
break;
|
|
|
|
case 4: // Europe
|
|
item->setIcon(0, QIcon(QStringLiteral(":/icons/flag-eu.png")));
|
|
break;
|
|
|
|
case 7: // China
|
|
item->setIcon(0, QIcon(QStringLiteral(":/icons/flag-cn.png")));
|
|
break;
|
|
|
|
case 5: // HK
|
|
item->setIcon(0, QIcon(QStringLiteral(":/icons/flag-hk.png")));
|
|
break;
|
|
|
|
case 6: // Free
|
|
case 0: // T10K
|
|
case 1: // Test
|
|
default:
|
|
item->setIcon(0, QIcon(QStringLiteral(":/icons/flag-jp.png")));
|
|
break;
|
|
}
|
|
|
|
m_ui.fileList->addTopLevelItem(item);
|
|
|
|
if (bi.filename == selected_bios)
|
|
item->setSelected(true);
|
|
}
|
|
m_ui.fileList->setEnabled(true);
|
|
}
|
|
|
|
void BIOSSettingsWidget::listItemChanged(const QTreeWidgetItem* current, const QTreeWidgetItem* previous)
|
|
{
|
|
QtHost::SetBaseStringSettingValue("Filenames", "BIOS", current->text(0).toUtf8().constData());
|
|
}
|
|
|
|
BIOSSettingsWidget::RefreshThread::RefreshThread(BIOSSettingsWidget* parent, const QString& directory)
|
|
: QThread(parent)
|
|
, m_parent(parent)
|
|
, m_directory(directory)
|
|
{
|
|
}
|
|
|
|
BIOSSettingsWidget::RefreshThread::~RefreshThread() = default;
|
|
|
|
void BIOSSettingsWidget::RefreshThread::run()
|
|
{
|
|
QVector<BIOSInfo> items;
|
|
|
|
QDir dir(m_directory);
|
|
if (dir.exists())
|
|
{
|
|
for (const QFileInfo& info : dir.entryInfoList(QDir::Files))
|
|
{
|
|
BIOSInfo bi;
|
|
QString full_path(info.absoluteFilePath());
|
|
if (!IsBIOS(full_path.toUtf8().constData(), bi.version, bi.description, bi.region, bi.zone))
|
|
continue;
|
|
|
|
bi.filename = info.fileName().toStdString();
|
|
items.push_back(std::move(bi));
|
|
}
|
|
}
|
|
|
|
QMetaObject::invokeMethod(m_parent, "listRefreshed", Qt::QueuedConnection, Q_ARG(const QVector<BIOSInfo>&, items));
|
|
}
|