123 lines
3.6 KiB
C++
123 lines
3.6 KiB
C++
// Copyright 2018 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "DolphinQt/CheatsManager.h"
|
|
|
|
#include <functional>
|
|
|
|
#include <QDialogButtonBox>
|
|
#include <QVBoxLayout>
|
|
|
|
#include "Core/ActionReplay.h"
|
|
#include "Core/CheatSearch.h"
|
|
#include "Core/ConfigManager.h"
|
|
#include "Core/Core.h"
|
|
|
|
#include "UICommon/GameFile.h"
|
|
|
|
#include "DolphinQt/CheatSearchFactoryWidget.h"
|
|
#include "DolphinQt/CheatSearchWidget.h"
|
|
#include "DolphinQt/Config/ARCodeWidget.h"
|
|
#include "DolphinQt/Config/GeckoCodeWidget.h"
|
|
#include "DolphinQt/Settings.h"
|
|
#include "QtUtils/PartiallyClosableTabWidget.h"
|
|
|
|
CheatsManager::CheatsManager(QWidget* parent) : QDialog(parent)
|
|
{
|
|
setWindowTitle(tr("Cheats Manager"));
|
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
|
|
connect(&Settings::Instance(), &Settings::EmulationStateChanged, this,
|
|
&CheatsManager::OnStateChanged);
|
|
|
|
OnStateChanged(Core::GetState());
|
|
|
|
CreateWidgets();
|
|
ConnectWidgets();
|
|
}
|
|
|
|
CheatsManager::~CheatsManager() = default;
|
|
|
|
void CheatsManager::OnStateChanged(Core::State state)
|
|
{
|
|
if (state != Core::State::Running && state != Core::State::Paused)
|
|
return;
|
|
|
|
const auto& game_id = SConfig::GetInstance().GetGameID();
|
|
const auto& game_tdb_id = SConfig::GetInstance().GetGameTDBID();
|
|
const u16 revision = SConfig::GetInstance().GetRevision();
|
|
|
|
if (m_game_id == game_id && m_game_tdb_id == game_tdb_id && m_revision == revision)
|
|
return;
|
|
|
|
m_game_id = game_id;
|
|
m_game_tdb_id = game_tdb_id;
|
|
m_revision = revision;
|
|
|
|
if (m_ar_code)
|
|
{
|
|
const int tab_index = m_tab_widget->indexOf(m_ar_code);
|
|
if (tab_index != -1)
|
|
m_tab_widget->removeTab(tab_index);
|
|
m_ar_code->deleteLater();
|
|
m_ar_code = nullptr;
|
|
}
|
|
|
|
if (m_gecko_code)
|
|
{
|
|
const int tab_index = m_tab_widget->indexOf(m_gecko_code);
|
|
if (tab_index != -1)
|
|
m_tab_widget->removeTab(tab_index);
|
|
m_gecko_code->deleteLater();
|
|
m_gecko_code = nullptr;
|
|
}
|
|
|
|
m_ar_code = new ARCodeWidget(m_game_id, m_revision, false);
|
|
m_gecko_code = new GeckoCodeWidget(m_game_id, m_game_tdb_id, m_revision, false);
|
|
m_tab_widget->insertTab(0, m_ar_code, tr("AR Code"));
|
|
m_tab_widget->insertTab(1, m_gecko_code, tr("Gecko Codes"));
|
|
m_tab_widget->setTabUnclosable(0);
|
|
m_tab_widget->setTabUnclosable(1);
|
|
}
|
|
|
|
void CheatsManager::CreateWidgets()
|
|
{
|
|
m_tab_widget = new PartiallyClosableTabWidget;
|
|
m_button_box = new QDialogButtonBox(QDialogButtonBox::Close);
|
|
|
|
m_cheat_search_new = new CheatSearchFactoryWidget();
|
|
m_tab_widget->addTab(m_cheat_search_new, tr("Start New Cheat Search"));
|
|
m_tab_widget->setTabUnclosable(0);
|
|
|
|
auto* layout = new QVBoxLayout;
|
|
layout->addWidget(m_tab_widget);
|
|
layout->addWidget(m_button_box);
|
|
|
|
setLayout(layout);
|
|
}
|
|
|
|
void CheatsManager::OnNewSessionCreated(const Cheats::CheatSearchSessionBase& session)
|
|
{
|
|
auto* w = new CheatSearchWidget(session.Clone());
|
|
const int tab_index = m_tab_widget->addTab(w, tr("Cheat Search"));
|
|
w->connect(w, &CheatSearchWidget::ActionReplayCodeGenerated, this,
|
|
[this](const ActionReplay::ARCode& ar_code) {
|
|
if (m_ar_code)
|
|
m_ar_code->AddCode(ar_code);
|
|
});
|
|
m_tab_widget->setCurrentIndex(tab_index);
|
|
}
|
|
|
|
void CheatsManager::OnTabCloseRequested(int index)
|
|
{
|
|
m_tab_widget->removeTab(index);
|
|
}
|
|
|
|
void CheatsManager::ConnectWidgets()
|
|
{
|
|
connect(m_button_box, &QDialogButtonBox::rejected, this, &QDialog::reject);
|
|
connect(m_cheat_search_new, &CheatSearchFactoryWidget::NewSessionCreated, this,
|
|
&CheatsManager::OnNewSessionCreated);
|
|
connect(m_tab_widget, &QTabWidget::tabCloseRequested, this, &CheatsManager::OnTabCloseRequested);
|
|
}
|