Skip to content

Commit

Permalink
Merge pull request #7225 from spycrab/qt_gamelist
Browse files Browse the repository at this point in the history
Qt/GameList: Multiple improvements
  • Loading branch information
spycrab committed Jul 6, 2018
2 parents 28ca6fe + bb8b872 commit bfb7af4
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 46 deletions.
4 changes: 2 additions & 2 deletions Source/Core/DolphinQt2/GameList/GameListModel.cpp
Expand Up @@ -25,8 +25,8 @@ GameListModel::GameListModel(QObject* parent) : QAbstractTableModel(parent)
connect(&m_tracker, &GameTracker::GameRemoved, this, &GameListModel::RemoveGame);
connect(&Settings::Instance(), &Settings::PathAdded, &m_tracker, &GameTracker::AddDirectory);
connect(&Settings::Instance(), &Settings::PathRemoved, &m_tracker, &GameTracker::RemoveDirectory);
connect(&Settings::Instance(), &Settings::PathReloadRequested, &m_tracker,
&GameTracker::ReloadDirectory);
connect(&Settings::Instance(), &Settings::GameListRefreshRequested, &m_tracker,
&GameTracker::RefreshAll);
connect(&Settings::Instance(), &Settings::TitleDBReloadRequested, this,
[this] { m_title_database = Core::TitleDatabase(); });

Expand Down
51 changes: 17 additions & 34 deletions Source/Core/DolphinQt2/GameList/GameTracker.cpp
Expand Up @@ -13,6 +13,8 @@
#include "DiscIO/DirectoryBlob.h"

#include "DolphinQt2/QtUtils/QueueOnObject.h"
#include "DolphinQt2/QtUtils/RunOnObject.h"

#include "DolphinQt2/Settings.h"

// NOTE: Qt likes to be case-sensitive here even though it shouldn't be thus this ugly regex hack
Expand Down Expand Up @@ -119,37 +121,10 @@ void GameTracker::StartInternal()
m_cache.Save();
}

// Works around a bug in QtCore that will cause crashes when QFileSystemWatcher::addPath
// is called on a directory that is located on a removable device
static bool IsOnRemovableMedia(const QString& dir)
{
#ifdef _WIN32
const QString absolute_dir = QFileInfo(dir).absolutePath();
if (absolute_dir.startsWith(QStringLiteral("//")))
return true;
const QString root_dir = QDir::toNativeSeparators(absolute_dir.left(3));
auto type = GetDriveType(root_dir.toStdWString().c_str());

switch (type)
{
case DRIVE_REMOVABLE:
case DRIVE_REMOTE:
case DRIVE_CDROM:
case DRIVE_UNKNOWN:
case DRIVE_NO_ROOT_DIR:
return true;
default:
return false;
}
#else
return false;
#endif
}

bool GameTracker::AddPath(const QString& dir)
{
if (Settings::Instance().IsAutoRefreshEnabled() && !IsOnRemovableMedia(dir))
return addPath(dir);
if (Settings::Instance().IsAutoRefreshEnabled())
RunOnObject(this, [this, dir] { return addPath(dir); });

m_tracked_paths.push_back(dir);

Expand All @@ -158,8 +133,8 @@ bool GameTracker::AddPath(const QString& dir)

bool GameTracker::RemovePath(const QString& dir)
{
if (Settings::Instance().IsAutoRefreshEnabled() && !IsOnRemovableMedia(dir))
return removePath(dir);
if (Settings::Instance().IsAutoRefreshEnabled())
RunOnObject(this, [this, dir] { return removePath(dir); });

const auto index = m_tracked_paths.indexOf(dir);

Expand All @@ -181,10 +156,18 @@ void GameTracker::RemoveDirectory(const QString& dir)
m_load_thread.EmplaceItem(Command{CommandType::RemoveDirectory, dir});
}

void GameTracker::ReloadDirectory(const QString& dir)
void GameTracker::RefreshAll()
{
m_load_thread.EmplaceItem(Command{CommandType::RemoveDirectory, dir});
m_load_thread.EmplaceItem(Command{CommandType::AddDirectory, dir});
for (auto& file : m_tracked_files.keys())
emit GameRemoved(file.toStdString());

m_tracked_files.clear();

for (const QString& dir : Settings::Instance().GetPaths())
{
m_load_thread.EmplaceItem(Command{CommandType::RemoveDirectory, dir});
m_load_thread.EmplaceItem(Command{CommandType::AddDirectory, dir});
}
}

void GameTracker::UpdateDirectory(const QString& dir)
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/DolphinQt2/GameList/GameTracker.h
Expand Up @@ -36,7 +36,7 @@ class GameTracker final : public QFileSystemWatcher

void AddDirectory(const QString& dir);
void RemoveDirectory(const QString& dir);
void ReloadDirectory(const QString& dir);
void RefreshAll();

signals:
void GameLoaded(const std::shared_ptr<const UICommon::GameFile>& game);
Expand Down
4 changes: 1 addition & 3 deletions Source/Core/DolphinQt2/MainWindow.cpp
Expand Up @@ -533,9 +533,7 @@ void MainWindow::ConnectStack()
void MainWindow::RefreshGameList()
{
Settings::Instance().ReloadTitleDB();

for (const auto& path : Settings::Instance().GetPaths())
Settings::Instance().ReloadPath(path);
Settings::Instance().RefreshGameList();
}

QString MainWindow::PromptFileName()
Expand Down
4 changes: 2 additions & 2 deletions Source/Core/DolphinQt2/Settings.cpp
Expand Up @@ -123,9 +123,9 @@ void Settings::RemovePath(const QString& qpath)
emit PathRemoved(qpath);
}

void Settings::ReloadPath(const QString& qpath)
void Settings::RefreshGameList()
{
emit PathReloadRequested(qpath);
emit GameListRefreshRequested();
}

void Settings::ReloadTitleDB()
Expand Down
4 changes: 2 additions & 2 deletions Source/Core/DolphinQt2/Settings.h
Expand Up @@ -69,7 +69,7 @@ class Settings final : public QObject
void SetPreferredView(bool list);
QString GetDefaultGame() const;
void SetDefaultGame(QString path);
void ReloadPath(const QString& qpath);
void RefreshGameList();
void ReloadTitleDB();
bool IsAutoRefreshEnabled() const;
void SetAutoRefreshEnabled(bool enabled);
Expand Down Expand Up @@ -137,7 +137,7 @@ class Settings final : public QObject
void PathAdded(const QString&);
void PathRemoved(const QString&);
void DefaultGameChanged(const QString&);
void PathReloadRequested(const QString&);
void GameListRefreshRequested();
void TitleDBReloadRequested();
void AutoRefreshToggled(bool enabled);
void HideCursorChanged();
Expand Down
3 changes: 1 addition & 2 deletions Source/Core/DolphinQt2/Settings/PathPane.cpp
Expand Up @@ -137,8 +137,7 @@ QGroupBox* PathPane::MakeGameFolderBox()

connect(recursive_checkbox, &QCheckBox::toggled, this, [](bool checked) {
SConfig::GetInstance().m_RecursiveISOFolder = checked;
for (const auto& path : Settings::Instance().GetPaths())
Settings::Instance().ReloadPath(path);
Settings::Instance().RefreshGameList();
});

connect(auto_checkbox, &QCheckBox::toggled, &Settings::Instance(),
Expand Down

0 comments on commit bfb7af4

Please sign in to comment.