2014-10-18 21:32:50 +00:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2014-10-18 21:32:50 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2017-04-07 00:23:27 +00:00
|
|
|
#include "DolphinWX/Cheats/CheatsWindow.h"
|
|
|
|
|
2014-10-18 21:32:50 +00:00
|
|
|
#include <climits>
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
|
|
|
#include <string>
|
2016-04-22 10:42:16 +00:00
|
|
|
#include <utility>
|
2014-10-18 21:32:50 +00:00
|
|
|
#include <vector>
|
2017-04-07 00:23:27 +00:00
|
|
|
|
2016-04-22 10:42:16 +00:00
|
|
|
#include <wx/app.h>
|
2014-10-18 21:32:50 +00:00
|
|
|
#include <wx/button.h>
|
|
|
|
#include <wx/checkbox.h>
|
|
|
|
#include <wx/dialog.h>
|
|
|
|
#include <wx/notebook.h>
|
|
|
|
#include <wx/panel.h>
|
|
|
|
#include <wx/sizer.h>
|
|
|
|
#include <wx/textctrl.h>
|
2017-04-07 00:23:27 +00:00
|
|
|
#include <wx/utils.h>
|
2014-10-18 21:32:50 +00:00
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
2015-05-08 21:28:03 +00:00
|
|
|
#include "Common/FileUtil.h"
|
2014-10-18 21:32:50 +00:00
|
|
|
#include "Common/IniFile.h"
|
|
|
|
#include "Common/StringUtil.h"
|
|
|
|
#include "Core/ActionReplay.h"
|
|
|
|
#include "Core/ConfigManager.h"
|
|
|
|
#include "Core/Core.h"
|
|
|
|
#include "Core/GeckoCode.h"
|
|
|
|
#include "Core/GeckoCodeConfig.h"
|
2016-07-23 01:05:04 +00:00
|
|
|
#include "DolphinWX/Cheats/ActionReplayCodesPanel.h"
|
2014-10-18 21:32:50 +00:00
|
|
|
#include "DolphinWX/Cheats/CheatSearchTab.h"
|
|
|
|
#include "DolphinWX/Cheats/GeckoCodeDiag.h"
|
2016-06-24 08:43:46 +00:00
|
|
|
#include "DolphinWX/Frame.h"
|
|
|
|
#include "DolphinWX/Globals.h"
|
|
|
|
#include "DolphinWX/WxUtils.h"
|
2014-10-18 21:32:50 +00:00
|
|
|
|
2016-04-22 10:42:16 +00:00
|
|
|
wxDEFINE_EVENT(DOLPHIN_EVT_ADD_NEW_ACTION_REPLAY_CODE, wxCommandEvent);
|
|
|
|
|
|
|
|
struct wxCheatsWindow::CodeData : public wxClientData
|
2016-04-19 21:19:31 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
ActionReplay::ARCode code;
|
2016-04-22 10:42:16 +00:00
|
|
|
};
|
2016-04-19 21:19:31 +00:00
|
|
|
|
2014-10-18 21:32:50 +00:00
|
|
|
wxCheatsWindow::wxCheatsWindow(wxWindow* const parent)
|
2016-06-24 08:43:46 +00:00
|
|
|
: wxDialog(parent, wxID_ANY, "", wxDefaultPosition, wxDefaultSize,
|
|
|
|
wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxMAXIMIZE_BOX | wxMINIMIZE_BOX |
|
|
|
|
wxDIALOG_NO_PARENT)
|
2014-10-18 21:32:50 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
// Create the GUI controls
|
2016-10-03 06:56:45 +00:00
|
|
|
CreateGUI();
|
2014-10-18 21:32:50 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// load codes
|
|
|
|
UpdateGUI();
|
2016-07-23 01:05:04 +00:00
|
|
|
wxTheApp->Bind(DOLPHIN_EVT_LOCAL_INI_CHANGED, &wxCheatsWindow::OnLocalGameIniModified, this);
|
2014-10-18 21:32:50 +00:00
|
|
|
|
2016-10-03 07:19:56 +00:00
|
|
|
SetIcons(WxUtils::GetDolphinIconBundle());
|
2016-10-03 06:56:45 +00:00
|
|
|
SetLayoutAdaptationMode(wxDIALOG_ADAPTATION_MODE_ENABLED);
|
|
|
|
SetLayoutAdaptationLevel(wxDIALOG_ADAPTATION_STANDARD_SIZER);
|
2016-06-24 08:43:46 +00:00
|
|
|
Center();
|
2014-10-18 21:32:50 +00:00
|
|
|
}
|
|
|
|
|
2017-04-07 00:23:27 +00:00
|
|
|
wxCheatsWindow::~wxCheatsWindow() = default;
|
2014-10-18 21:32:50 +00:00
|
|
|
|
2016-10-03 06:56:45 +00:00
|
|
|
void wxCheatsWindow::CreateGUI()
|
2014-10-18 21:32:50 +00:00
|
|
|
{
|
2016-10-03 06:56:45 +00:00
|
|
|
const int space5 = FromDIP(5);
|
|
|
|
const int space10 = FromDIP(10);
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Main Notebook
|
|
|
|
m_notebook_main = new wxNotebook(this, wxID_ANY);
|
|
|
|
|
|
|
|
// --- Tabs ---
|
|
|
|
// Cheats List Tab
|
2016-07-23 01:05:04 +00:00
|
|
|
wxPanel* tab_cheats = new wxPanel(m_notebook_main, wxID_ANY);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-07-23 01:05:04 +00:00
|
|
|
m_ar_codes_panel =
|
|
|
|
new ActionReplayCodesPanel(tab_cheats, ActionReplayCodesPanel::STYLE_SIDE_PANEL |
|
|
|
|
ActionReplayCodesPanel::STYLE_MODIFY_BUTTONS);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-10-03 06:56:45 +00:00
|
|
|
wxBoxSizer* sizer_tab_cheats = new wxBoxSizer(wxVERTICAL);
|
|
|
|
sizer_tab_cheats->AddSpacer(space5);
|
|
|
|
sizer_tab_cheats->Add(m_ar_codes_panel, 1, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
|
|
|
sizer_tab_cheats->AddSpacer(space5);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-07-23 01:05:04 +00:00
|
|
|
tab_cheats->SetSizerAndFit(sizer_tab_cheats);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
// Cheat Search Tab
|
2016-10-03 06:56:45 +00:00
|
|
|
m_tab_cheat_search = new CheatSearchTab(m_notebook_main);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
// Log Tab
|
|
|
|
m_tab_log = new wxPanel(m_notebook_main, wxID_ANY);
|
|
|
|
|
|
|
|
wxButton* const button_updatelog = new wxButton(m_tab_log, wxID_ANY, _("Update"));
|
|
|
|
button_updatelog->Bind(wxEVT_BUTTON, &wxCheatsWindow::OnEvent_ButtonUpdateLog_Press, this);
|
|
|
|
wxButton* const button_clearlog = new wxButton(m_tab_log, wxID_ANY, _("Clear"));
|
|
|
|
button_clearlog->Bind(wxEVT_BUTTON, &wxCheatsWindow::OnClearActionReplayLog, this);
|
|
|
|
|
|
|
|
m_checkbox_log_ar = new wxCheckBox(m_tab_log, wxID_ANY, _("Enable AR Logging"));
|
|
|
|
m_checkbox_log_ar->Bind(wxEVT_CHECKBOX,
|
|
|
|
&wxCheatsWindow::OnEvent_CheckBoxEnableLogging_StateChange, this);
|
|
|
|
|
|
|
|
m_checkbox_log_ar->SetValue(ActionReplay::IsSelfLogging());
|
2016-10-03 06:56:45 +00:00
|
|
|
m_textctrl_log = new wxTextCtrl(m_tab_log, wxID_ANY, wxEmptyString, wxDefaultPosition,
|
|
|
|
wxDefaultSize, wxTE_MULTILINE | wxTE_READONLY | wxTE_DONTWRAP);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-10-03 06:56:45 +00:00
|
|
|
wxBoxSizer* log_control_sizer = new wxBoxSizer(wxHORIZONTAL);
|
|
|
|
log_control_sizer->Add(m_checkbox_log_ar, 0, wxALIGN_CENTER_VERTICAL);
|
|
|
|
log_control_sizer->Add(button_updatelog, 0, wxALIGN_CENTER_VERTICAL | wxLEFT, space10);
|
|
|
|
log_control_sizer->Add(button_clearlog, 0, wxALIGN_CENTER_VERTICAL | wxLEFT, space10);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
wxBoxSizer* sTabLog = new wxBoxSizer(wxVERTICAL);
|
2016-10-03 06:56:45 +00:00
|
|
|
sTabLog->AddSpacer(space5);
|
|
|
|
sTabLog->Add(log_control_sizer, 0, wxEXPAND | wxLEFT | wxRIGHT, space10);
|
|
|
|
sTabLog->AddSpacer(space5);
|
|
|
|
sTabLog->Add(m_textctrl_log, 1, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
|
|
|
sTabLog->AddSpacer(space5);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
m_tab_log->SetSizerAndFit(sTabLog);
|
|
|
|
|
2016-10-03 06:56:45 +00:00
|
|
|
// Gecko tab
|
|
|
|
m_geckocode_panel = new Gecko::CodeConfigPanel(m_notebook_main);
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Add Tabs to Notebook
|
2016-07-23 01:05:04 +00:00
|
|
|
m_notebook_main->AddPage(tab_cheats, _("AR Codes"));
|
2016-06-24 08:43:46 +00:00
|
|
|
m_notebook_main->AddPage(m_geckocode_panel, _("Gecko Codes"));
|
2016-10-03 06:56:45 +00:00
|
|
|
m_notebook_main->AddPage(m_tab_cheat_search, _("Cheat Search"));
|
2016-06-24 08:43:46 +00:00
|
|
|
m_notebook_main->AddPage(m_tab_log, _("Logging"));
|
|
|
|
|
|
|
|
Bind(wxEVT_BUTTON, &wxCheatsWindow::OnEvent_ApplyChanges_Press, this, wxID_APPLY);
|
2017-04-07 00:23:27 +00:00
|
|
|
Bind(wxEVT_CLOSE_WINDOW, &wxCheatsWindow::OnClose, this);
|
2016-06-24 08:43:46 +00:00
|
|
|
Bind(DOLPHIN_EVT_ADD_NEW_ACTION_REPLAY_CODE, &wxCheatsWindow::OnNewARCodeCreated, this);
|
|
|
|
|
|
|
|
wxStdDialogButtonSizer* const sButtons = CreateStdDialogButtonSizer(wxAPPLY | wxCANCEL);
|
|
|
|
m_button_apply = sButtons->GetApplyButton();
|
|
|
|
SetEscapeId(wxID_CANCEL);
|
|
|
|
SetAffirmativeId(wxID_CANCEL);
|
|
|
|
|
|
|
|
wxBoxSizer* const sMain = new wxBoxSizer(wxVERTICAL);
|
2016-10-03 06:56:45 +00:00
|
|
|
sMain->AddSpacer(space5);
|
|
|
|
sMain->Add(m_notebook_main, 1, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
|
|
|
sMain->AddSpacer(space5);
|
|
|
|
sMain->Add(sButtons, 0, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
|
|
|
sMain->AddSpacer(space5);
|
|
|
|
sMain->SetMinSize(FromDIP(wxSize(-1, 600)));
|
2016-06-24 08:43:46 +00:00
|
|
|
SetSizerAndFit(sMain);
|
2014-10-18 21:32:50 +00:00
|
|
|
}
|
|
|
|
|
2017-04-07 00:23:27 +00:00
|
|
|
void wxCheatsWindow::OnClose(wxCloseEvent&)
|
2014-10-18 21:32:50 +00:00
|
|
|
{
|
2017-04-07 00:23:27 +00:00
|
|
|
Hide();
|
2014-10-18 21:32:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// load codes for a new ISO ID
|
|
|
|
void wxCheatsWindow::UpdateGUI()
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
// load code
|
|
|
|
const SConfig& parameters = SConfig::GetInstance();
|
|
|
|
m_gameini_default = parameters.LoadDefaultGameIni();
|
|
|
|
m_gameini_local = parameters.LoadLocalGameIni();
|
2016-10-29 12:42:43 +00:00
|
|
|
m_game_id = parameters.GetGameID();
|
2017-03-09 08:47:43 +00:00
|
|
|
m_game_revision = parameters.GetRevision();
|
2016-06-24 08:43:46 +00:00
|
|
|
m_gameini_local_path = File::GetUserPath(D_GAMESETTINGS_IDX) + m_game_id + ".ini";
|
|
|
|
Load_ARCodes();
|
|
|
|
Load_GeckoCodes();
|
2016-10-03 06:56:45 +00:00
|
|
|
m_tab_cheat_search->UpdateGUI();
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
// enable controls
|
|
|
|
m_button_apply->Enable(Core::IsRunning());
|
|
|
|
|
|
|
|
wxString title = _("Cheat Manager");
|
|
|
|
|
|
|
|
// write the ISO name in the title
|
|
|
|
if (Core::IsRunning())
|
2017-03-08 20:01:57 +00:00
|
|
|
SetTitle(title + StrToWxStr(": " + m_game_id));
|
2016-06-24 08:43:46 +00:00
|
|
|
else
|
|
|
|
SetTitle(title);
|
2014-10-18 21:32:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void wxCheatsWindow::Load_ARCodes()
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
if (!Core::IsRunning())
|
2016-07-23 01:05:04 +00:00
|
|
|
{
|
|
|
|
m_ar_codes_panel->Clear();
|
|
|
|
m_ar_codes_panel->Disable();
|
2016-06-24 08:43:46 +00:00
|
|
|
return;
|
2016-07-23 01:05:04 +00:00
|
|
|
}
|
|
|
|
else if (!m_ar_codes_panel->IsEnabled())
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2016-07-23 01:05:04 +00:00
|
|
|
m_ar_codes_panel->Enable();
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
2016-07-23 01:05:04 +00:00
|
|
|
m_ar_codes_panel->LoadCodes(m_gameini_default, m_gameini_local);
|
2014-10-18 21:32:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void wxCheatsWindow::Load_GeckoCodes()
|
|
|
|
{
|
2016-10-03 06:56:45 +00:00
|
|
|
m_geckocode_panel->LoadCodes(m_gameini_default, m_gameini_local, m_game_id, true);
|
2014-10-18 21:32:50 +00:00
|
|
|
}
|
|
|
|
|
2016-04-22 10:42:16 +00:00
|
|
|
void wxCheatsWindow::OnNewARCodeCreated(wxCommandEvent& ev)
|
2014-10-18 21:32:50 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
auto code = static_cast<ActionReplay::ARCode*>(ev.GetClientData());
|
|
|
|
ActionReplay::AddCode(*code);
|
2016-07-23 01:05:04 +00:00
|
|
|
m_ar_codes_panel->AppendNewCode(*code);
|
2014-10-18 21:32:50 +00:00
|
|
|
}
|
|
|
|
|
2016-07-23 01:05:04 +00:00
|
|
|
void wxCheatsWindow::OnLocalGameIniModified(wxCommandEvent& ev)
|
2014-10-19 01:28:36 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
ev.Skip();
|
|
|
|
if (WxStrToStr(ev.GetString()) != m_game_id)
|
|
|
|
return;
|
|
|
|
if (m_ignore_ini_callback)
|
|
|
|
{
|
|
|
|
m_ignore_ini_callback = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
UpdateGUI();
|
2016-04-19 21:19:31 +00:00
|
|
|
}
|
2014-10-18 21:32:50 +00:00
|
|
|
|
2016-04-19 21:19:31 +00:00
|
|
|
void wxCheatsWindow::OnEvent_ApplyChanges_Press(wxCommandEvent& ev)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
// Apply Action Replay code changes
|
2016-07-23 01:05:04 +00:00
|
|
|
ActionReplay::ApplyCodes(m_ar_codes_panel->GetCodes());
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
// Apply Gecko Code changes
|
|
|
|
Gecko::SetActiveCodes(m_geckocode_panel->GetCodes());
|
|
|
|
|
|
|
|
// Save gameini, with changed codes
|
|
|
|
if (m_gameini_local_path.size())
|
|
|
|
{
|
2016-07-23 01:05:04 +00:00
|
|
|
m_ar_codes_panel->SaveCodes(&m_gameini_local);
|
2016-06-24 08:43:46 +00:00
|
|
|
Gecko::SaveCodes(m_gameini_local, m_geckocode_panel->GetCodes());
|
|
|
|
m_gameini_local.Save(m_gameini_local_path);
|
|
|
|
|
|
|
|
wxCommandEvent ini_changed(DOLPHIN_EVT_LOCAL_INI_CHANGED);
|
|
|
|
ini_changed.SetString(StrToWxStr(m_game_id));
|
|
|
|
ini_changed.SetInt(m_game_revision);
|
|
|
|
m_ignore_ini_callback = true;
|
|
|
|
wxTheApp->ProcessEvent(ini_changed);
|
|
|
|
}
|
|
|
|
|
|
|
|
ev.Skip();
|
2014-10-18 21:32:50 +00:00
|
|
|
}
|
|
|
|
|
2016-10-03 06:56:45 +00:00
|
|
|
void wxCheatsWindow::OnEvent_ButtonUpdateLog_Press(wxCommandEvent&)
|
2014-10-18 21:32:50 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
wxBeginBusyCursor();
|
|
|
|
m_textctrl_log->Freeze();
|
|
|
|
m_textctrl_log->Clear();
|
2016-07-23 01:05:04 +00:00
|
|
|
// This horrible mess is because the Windows Textbox Widget suffers from
|
|
|
|
// a Shlemiel The Painter problem where it keeps allocating new memory each
|
|
|
|
// time some text is appended then memcpys to the new buffer. This happens
|
|
|
|
// for every single line resulting in the operation taking minutes instead of
|
|
|
|
// seconds.
|
|
|
|
// Why not just append all of the text all at once? Microsoft decided that it
|
|
|
|
// would be clever to accept as much text as will fit in the internal buffer
|
|
|
|
// then silently discard the rest. We have to iteratively append the text over
|
|
|
|
// and over until the internal buffer becomes big enough to hold all of it.
|
|
|
|
// (wxWidgets should have hidden this platform detail but it sucks)
|
|
|
|
wxString super_string;
|
|
|
|
super_string.reserve(1024 * 1024);
|
2016-06-24 08:43:46 +00:00
|
|
|
for (const std::string& text : ActionReplay::GetSelfLog())
|
|
|
|
{
|
2016-07-23 01:05:04 +00:00
|
|
|
super_string.append(StrToWxStr(text));
|
|
|
|
}
|
|
|
|
while (!super_string.empty())
|
|
|
|
{
|
|
|
|
// Read "GetLastPosition" as "Size", there's no size function.
|
|
|
|
wxTextPos start = m_textctrl_log->GetLastPosition();
|
|
|
|
m_textctrl_log->AppendText(super_string);
|
|
|
|
wxTextPos end = m_textctrl_log->GetLastPosition();
|
|
|
|
if (start == end)
|
|
|
|
break;
|
|
|
|
super_string.erase(0, end - start);
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
m_textctrl_log->Thaw();
|
|
|
|
wxEndBusyCursor();
|
2014-10-18 21:32:50 +00:00
|
|
|
}
|
|
|
|
|
2016-04-22 10:42:16 +00:00
|
|
|
void wxCheatsWindow::OnClearActionReplayLog(wxCommandEvent& event)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
ActionReplay::ClearSelfLog();
|
|
|
|
OnEvent_ButtonUpdateLog_Press(event);
|
2016-04-22 10:42:16 +00:00
|
|
|
}
|
|
|
|
|
2016-10-03 06:56:45 +00:00
|
|
|
void wxCheatsWindow::OnEvent_CheckBoxEnableLogging_StateChange(wxCommandEvent&)
|
2014-10-18 21:32:50 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
ActionReplay::EnableSelfLogging(m_checkbox_log_ar->IsChecked());
|
2014-10-18 21:32:50 +00:00
|
|
|
}
|