2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:43:35 +00:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <cstddef>
|
2015-08-08 17:59:33 +00:00
|
|
|
#include <functional>
|
2015-08-15 22:04:30 +00:00
|
|
|
#include <memory>
|
2014-02-20 03:11:52 +00:00
|
|
|
#include <set>
|
2014-02-17 10:18:15 +00:00
|
|
|
#include <string>
|
2015-08-15 22:04:30 +00:00
|
|
|
#include <utility>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <wx/dialog.h>
|
|
|
|
#include <wx/treebase.h>
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/IniFile.h"
|
2015-09-13 12:17:58 +00:00
|
|
|
#include "DolphinWX/ISOFile.h"
|
2015-02-24 23:32:17 +00:00
|
|
|
#include "DolphinWX/PatchAddEdit.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
|
2016-12-04 07:04:35 +00:00
|
|
|
class ActionReplayCodesPanel;
|
|
|
|
class CheatWarningMessage;
|
2016-08-03 11:14:52 +00:00
|
|
|
class DolphinSlider;
|
2014-02-22 22:36:30 +00:00
|
|
|
class wxButton;
|
|
|
|
class wxCheckBox;
|
|
|
|
class wxCheckListBox;
|
|
|
|
class wxChoice;
|
2015-01-02 17:49:10 +00:00
|
|
|
class wxSpinCtrl;
|
2014-02-22 22:36:30 +00:00
|
|
|
class wxStaticBitmap;
|
|
|
|
class wxTextCtrl;
|
2015-04-28 21:31:13 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
namespace DiscIO
|
|
|
|
{
|
2017-06-06 09:49:01 +00:00
|
|
|
class Volume;
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
2016-12-04 07:04:35 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
namespace Gecko
|
|
|
|
{
|
|
|
|
class CodeConfigPanel;
|
|
|
|
}
|
2015-02-24 23:32:17 +00:00
|
|
|
|
2011-02-03 17:51:12 +00:00
|
|
|
struct PHackData
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
bool PHackSZNear;
|
|
|
|
bool PHackSZFar;
|
|
|
|
std::string PHZNear;
|
|
|
|
std::string PHZFar;
|
2011-02-03 17:51:12 +00:00
|
|
|
};
|
|
|
|
|
2016-11-13 01:51:08 +00:00
|
|
|
wxDECLARE_EVENT(DOLPHIN_EVT_CHANGE_ISO_PROPERTIES_TITLE, wxCommandEvent);
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
class CISOProperties : public wxDialog
|
|
|
|
{
|
2011-03-16 22:22:21 +00:00
|
|
|
public:
|
2016-06-24 08:43:46 +00:00
|
|
|
CISOProperties(const GameListItem& game_list_item, wxWindow* parent, wxWindowID id = wxID_ANY,
|
|
|
|
const wxString& title = _("Properties"), const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER);
|
|
|
|
virtual ~CISOProperties();
|
2011-03-16 22:22:21 +00:00
|
|
|
|
|
|
|
private:
|
2017-07-30 19:56:12 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-06-06 09:49:01 +00:00
|
|
|
std::unique_ptr<DiscIO::Volume> m_open_iso;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-09-20 22:37:25 +00:00
|
|
|
std::vector<PatchEngine::Patch> m_on_frame;
|
|
|
|
PHackData m_phack_data;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
// Core
|
2017-09-20 22:37:25 +00:00
|
|
|
wxCheckBox *m_cpu_thread, *m_mmu, *m_dcbz_off, *m_fprf;
|
|
|
|
wxCheckBox *m_sync_gpu, *m_fast_disc_speed, *m_dps_hle;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-09-20 22:37:25 +00:00
|
|
|
wxArrayString m_gpu_determinism_string;
|
|
|
|
wxChoice* m_gpu_determinism;
|
2016-06-24 08:43:46 +00:00
|
|
|
// Wii
|
2017-09-20 22:37:25 +00:00
|
|
|
wxCheckBox* m_enable_widescreen;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
// Stereoscopy
|
2017-09-20 22:37:25 +00:00
|
|
|
DolphinSlider* m_depth_percentage;
|
|
|
|
wxSpinCtrl* m_convergence;
|
|
|
|
wxCheckBox* m_mono_depth;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-09-20 22:37:25 +00:00
|
|
|
wxArrayString m_emustate_string;
|
|
|
|
wxChoice* m_emustate_choice;
|
|
|
|
wxTextCtrl* m_emu_issues;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-09-20 22:37:25 +00:00
|
|
|
wxCheckListBox* m_patches;
|
|
|
|
wxButton* m_edit_patch;
|
|
|
|
wxButton* m_remove_patch;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-07-23 01:05:04 +00:00
|
|
|
ActionReplayCodesPanel* m_ar_code_panel;
|
2016-06-24 08:43:46 +00:00
|
|
|
Gecko::CodeConfigPanel* m_geckocode_panel;
|
|
|
|
|
2016-07-23 01:05:22 +00:00
|
|
|
CheatWarningMessage* m_cheats_disabled_ar;
|
|
|
|
CheatWarningMessage* m_cheats_disabled_gecko;
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
enum
|
|
|
|
{
|
2016-12-04 07:04:35 +00:00
|
|
|
ID_NOTEBOOK = 1000,
|
2016-06-24 08:43:46 +00:00
|
|
|
ID_GAMECONFIG,
|
|
|
|
ID_PATCH_PAGE,
|
|
|
|
ID_ARCODE_PAGE,
|
|
|
|
ID_SPEEDHACK_PAGE,
|
|
|
|
ID_INFORMATION,
|
|
|
|
ID_FILESYSTEM,
|
|
|
|
|
|
|
|
ID_USEDUALCORE,
|
|
|
|
ID_MMU,
|
|
|
|
ID_DCBZOFF,
|
|
|
|
ID_FPRF,
|
|
|
|
ID_SYNCGPU,
|
|
|
|
ID_DISCSPEED,
|
|
|
|
ID_AUDIO_DSP_HLE,
|
|
|
|
ID_USE_BBOX,
|
|
|
|
ID_ENABLEPROGRESSIVESCAN,
|
|
|
|
ID_ENABLEWIDESCREEN,
|
|
|
|
ID_EDITCONFIG,
|
|
|
|
ID_SHOWDEFAULTCONFIG,
|
|
|
|
ID_EMUSTATE,
|
|
|
|
ID_EMU_ISSUES,
|
|
|
|
ID_PATCHES_LIST,
|
|
|
|
ID_EDITPATCH,
|
|
|
|
ID_ADDPATCH,
|
|
|
|
ID_REMOVEPATCH,
|
|
|
|
ID_GPUDETERMINISM,
|
|
|
|
ID_DEPTHPERCENTAGE,
|
|
|
|
ID_CONVERGENCE,
|
|
|
|
ID_MONODEPTH,
|
|
|
|
};
|
|
|
|
|
|
|
|
void LaunchExternalEditor(const std::string& filename, bool wait_until_closed);
|
|
|
|
|
|
|
|
void CreateGUIControls();
|
|
|
|
void OnClose(wxCloseEvent& event);
|
|
|
|
void OnCloseClick(wxCommandEvent& event);
|
|
|
|
void OnEditConfig(wxCommandEvent& event);
|
|
|
|
void OnShowDefaultConfig(wxCommandEvent& event);
|
2016-07-23 01:05:04 +00:00
|
|
|
void PatchListSelectionChanged(wxCommandEvent& event);
|
2016-06-24 08:43:46 +00:00
|
|
|
void PatchButtonClicked(wxCommandEvent& event);
|
|
|
|
void OnEmustateChanged(wxCommandEvent& event);
|
2016-07-23 01:05:22 +00:00
|
|
|
void OnCheatCodeToggled(wxCommandEvent& event);
|
2016-11-13 01:51:08 +00:00
|
|
|
void OnChangeTitle(wxCommandEvent& event);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-09-20 22:37:25 +00:00
|
|
|
const GameListItem m_open_gamelist_item;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-09-20 22:37:25 +00:00
|
|
|
IniFile m_gameini_default;
|
|
|
|
IniFile m_gameini_local;
|
|
|
|
std::string m_gameini_file_local;
|
|
|
|
std::string m_game_id;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-09-20 22:37:25 +00:00
|
|
|
std::set<std::string> m_default_patches;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
void LoadGameConfig();
|
|
|
|
bool SaveGameConfig();
|
|
|
|
void OnLocalIniModified(wxCommandEvent& ev);
|
|
|
|
void GenerateLocalIniModified();
|
|
|
|
void PatchList_Load();
|
|
|
|
void PatchList_Save();
|
|
|
|
|
|
|
|
long GetElementStyle(const char* section, const char* key);
|
|
|
|
void SetCheckboxValueFromGameini(const char* section, const char* key, wxCheckBox* checkbox);
|
|
|
|
void SaveGameIniValueFrom3StateCheckbox(const char* section, const char* key,
|
|
|
|
wxCheckBox* checkbox);
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|