2013-04-18 03:43:35 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// 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>
|
2014-02-20 03:11:52 +00:00
|
|
|
#include <set>
|
2014-02-17 10:18:15 +00:00
|
|
|
#include <string>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <wx/arrstr.h>
|
|
|
|
#include <wx/dialog.h>
|
|
|
|
#include <wx/event.h>
|
|
|
|
#include <wx/gdicmn.h>
|
|
|
|
#include <wx/string.h>
|
|
|
|
#include <wx/toplevel.h>
|
|
|
|
#include <wx/translation.h>
|
|
|
|
#include <wx/treebase.h>
|
|
|
|
#include <wx/windowid.h>
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/IniFile.h"
|
2014-07-08 13:58:25 +00:00
|
|
|
#include "Core/ActionReplay.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
|
|
|
|
class GameListItem;
|
|
|
|
class wxButton;
|
|
|
|
class wxCheckBox;
|
|
|
|
class wxCheckListBox;
|
|
|
|
class wxChoice;
|
|
|
|
class wxStaticBitmap;
|
|
|
|
class wxTextCtrl;
|
|
|
|
class wxTreeCtrl;
|
|
|
|
class wxWindow;
|
|
|
|
namespace DiscIO { struct SFileInfo; }
|
|
|
|
namespace Gecko { class CodeConfigPanel; }
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-07-08 13:58:25 +00:00
|
|
|
extern std::vector<ActionReplay::ARCode> arCodes;
|
|
|
|
|
2011-02-03 17:51:12 +00:00
|
|
|
struct PHackData
|
|
|
|
{
|
|
|
|
bool PHackSZNear;
|
|
|
|
bool PHackSZFar;
|
|
|
|
std::string PHZNear;
|
|
|
|
std::string PHZFar;
|
|
|
|
};
|
2014-07-08 13:58:25 +00:00
|
|
|
extern PHackData PHack_Data;
|
2011-02-03 17:51:12 +00:00
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
class CISOProperties : public wxDialog
|
|
|
|
{
|
2011-03-16 22:22:21 +00:00
|
|
|
public:
|
|
|
|
CISOProperties(const std::string fileName,
|
2008-12-17 04:14:24 +00:00
|
|
|
wxWindow* parent,
|
|
|
|
wxWindowID id = 1,
|
2011-01-05 04:35:46 +00:00
|
|
|
const wxString& title = _("Properties"),
|
2008-12-17 04:14:24 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
2009-02-14 17:32:03 +00:00
|
|
|
long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER);
|
2011-03-16 22:22:21 +00:00
|
|
|
virtual ~CISOProperties();
|
|
|
|
|
|
|
|
bool bRefreshList;
|
|
|
|
|
|
|
|
void ActionReplayList_Load();
|
|
|
|
bool SaveGameConfig();
|
|
|
|
|
|
|
|
PHackData PHack_Data;
|
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_EVENT_TABLE();
|
|
|
|
|
|
|
|
// Core
|
2013-01-20 02:09:38 +00:00
|
|
|
wxCheckBox *CPUThread, *SkipIdle, *MMU, *DCBZOFF, *TLBHack;
|
2013-02-16 01:51:09 +00:00
|
|
|
wxCheckBox *VBeam, *SyncGPU, *FastDiscSpeed, *BlockMerging, *DSPHLE;
|
2011-03-16 22:22:21 +00:00
|
|
|
// Wii
|
2013-02-02 03:36:16 +00:00
|
|
|
wxCheckBox *EnableWideScreen;
|
2011-03-16 22:22:21 +00:00
|
|
|
// Video
|
2014-07-30 23:31:29 +00:00
|
|
|
wxCheckBox *UseBBox;
|
2011-03-16 22:22:21 +00:00
|
|
|
|
|
|
|
wxArrayString arrayStringFor_EmuState;
|
|
|
|
wxChoice *EmuState;
|
|
|
|
wxTextCtrl *EmuIssues;
|
|
|
|
wxArrayString arrayStringFor_Patches;
|
|
|
|
wxCheckListBox *Patches;
|
|
|
|
wxButton *EditPatch;
|
|
|
|
wxButton *RemovePatch;
|
|
|
|
wxArrayString arrayStringFor_Cheats;
|
|
|
|
wxCheckListBox *Cheats;
|
|
|
|
wxButton *EditCheat;
|
|
|
|
wxButton *RemoveCheat;
|
|
|
|
wxArrayString arrayStringFor_Speedhacks;
|
|
|
|
wxCheckListBox *Speedhacks;
|
|
|
|
wxButton *EditSpeedhack;
|
|
|
|
wxButton *AddSpeedhack;
|
|
|
|
wxButton *RemoveSpeedhack;
|
|
|
|
|
|
|
|
wxTextCtrl *m_Name;
|
|
|
|
wxTextCtrl *m_GameID;
|
|
|
|
wxTextCtrl *m_Country;
|
|
|
|
wxTextCtrl *m_MakerID;
|
2013-04-17 03:29:01 +00:00
|
|
|
wxTextCtrl *m_Revision;
|
2011-03-16 22:22:21 +00:00
|
|
|
wxTextCtrl *m_Date;
|
|
|
|
wxTextCtrl *m_FST;
|
2014-04-12 10:50:12 +00:00
|
|
|
wxTextCtrl *m_MD5Sum;
|
|
|
|
wxButton *m_MD5SumCompute;
|
2011-03-16 22:22:21 +00:00
|
|
|
wxArrayString arrayStringFor_Lang;
|
|
|
|
wxChoice *m_Lang;
|
|
|
|
wxTextCtrl *m_ShortName;
|
|
|
|
wxTextCtrl *m_Maker;
|
|
|
|
wxTextCtrl *m_Comment;
|
|
|
|
wxStaticBitmap *m_Banner;
|
|
|
|
|
|
|
|
wxTreeCtrl *m_Treectrl;
|
|
|
|
wxTreeItemId RootId;
|
|
|
|
|
|
|
|
Gecko::CodeConfigPanel *m_geckocode_panel;
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
ID_TREECTRL = 1000,
|
|
|
|
|
|
|
|
ID_NOTEBOOK,
|
|
|
|
ID_GAMECONFIG,
|
|
|
|
ID_PATCH_PAGE,
|
|
|
|
ID_ARCODE_PAGE,
|
|
|
|
ID_SPEEDHACK_PAGE,
|
|
|
|
ID_INFORMATION,
|
|
|
|
ID_FILESYSTEM,
|
|
|
|
|
|
|
|
ID_USEDUALCORE,
|
|
|
|
ID_IDLESKIP,
|
|
|
|
ID_MMU,
|
2013-01-20 02:09:38 +00:00
|
|
|
ID_DCBZOFF,
|
2011-03-16 22:22:21 +00:00
|
|
|
ID_TLBHACK,
|
|
|
|
ID_VBEAM,
|
2013-02-16 01:51:09 +00:00
|
|
|
ID_SYNCGPU,
|
2011-03-16 22:22:21 +00:00
|
|
|
ID_DISCSPEED,
|
|
|
|
ID_MERGEBLOCKS,
|
|
|
|
ID_AUDIO_DSP_HLE,
|
2011-10-28 20:12:12 +00:00
|
|
|
ID_USE_BBOX,
|
2011-03-16 22:22:21 +00:00
|
|
|
ID_ENABLEPROGRESSIVESCAN,
|
|
|
|
ID_ENABLEWIDESCREEN,
|
|
|
|
ID_EDITCONFIG,
|
2013-09-07 21:02:49 +00:00
|
|
|
ID_SHOWDEFAULTCONFIG,
|
2011-03-16 22:22:21 +00:00
|
|
|
ID_EMUSTATE,
|
|
|
|
ID_EMU_ISSUES,
|
|
|
|
ID_PATCHES_LIST,
|
|
|
|
ID_EDITPATCH,
|
|
|
|
ID_ADDPATCH,
|
|
|
|
ID_REMOVEPATCH,
|
|
|
|
ID_CHEATS_LIST,
|
|
|
|
ID_EDITCHEAT,
|
|
|
|
ID_ADDCHEAT,
|
|
|
|
ID_REMOVECHEAT,
|
|
|
|
|
|
|
|
ID_NAME,
|
|
|
|
ID_GAMEID,
|
|
|
|
ID_COUNTRY,
|
|
|
|
ID_MAKERID,
|
2013-04-17 03:29:01 +00:00
|
|
|
ID_REVISION,
|
2011-03-16 22:22:21 +00:00
|
|
|
ID_DATE,
|
|
|
|
ID_FST,
|
2014-04-12 10:50:12 +00:00
|
|
|
ID_MD5SUM,
|
|
|
|
ID_MD5SUMCOMPUTE,
|
2011-03-16 22:22:21 +00:00
|
|
|
ID_VERSION,
|
|
|
|
ID_LANG,
|
|
|
|
ID_SHORTNAME,
|
|
|
|
ID_LONGNAME,
|
|
|
|
ID_MAKER,
|
|
|
|
ID_COMMENT,
|
|
|
|
ID_BANNER,
|
|
|
|
IDM_EXTRACTDIR,
|
|
|
|
IDM_EXTRACTALL,
|
|
|
|
IDM_EXTRACTFILE,
|
|
|
|
IDM_EXTRACTAPPLOADER,
|
|
|
|
IDM_EXTRACTDOL,
|
2012-05-04 10:49:10 +00:00
|
|
|
IDM_CHECKINTEGRITY,
|
2011-03-16 22:22:21 +00:00
|
|
|
IDM_BNRSAVEAS
|
|
|
|
};
|
|
|
|
|
2013-09-07 21:02:49 +00:00
|
|
|
void LaunchExternalEditor(const std::string& filename);
|
|
|
|
|
2011-03-16 22:22:21 +00:00
|
|
|
void CreateGUIControls(bool);
|
|
|
|
void OnClose(wxCloseEvent& event);
|
|
|
|
void OnCloseClick(wxCommandEvent& event);
|
|
|
|
void OnEditConfig(wxCommandEvent& event);
|
2014-04-12 10:50:12 +00:00
|
|
|
void OnComputeMD5Sum(wxCommandEvent& event);
|
2013-09-07 21:02:49 +00:00
|
|
|
void OnShowDefaultConfig(wxCommandEvent& event);
|
2011-03-16 22:22:21 +00:00
|
|
|
void ListSelectionChanged(wxCommandEvent& event);
|
|
|
|
void PatchButtonClicked(wxCommandEvent& event);
|
|
|
|
void ActionReplayButtonClicked(wxCommandEvent& event);
|
|
|
|
void RightClickOnBanner(wxMouseEvent& event);
|
|
|
|
void OnBannerImageSave(wxCommandEvent& event);
|
|
|
|
void OnRightClickOnTree(wxTreeEvent& event);
|
|
|
|
void OnExtractFile(wxCommandEvent& event);
|
|
|
|
void OnExtractDir(wxCommandEvent& event);
|
|
|
|
void OnExtractDataFromHeader(wxCommandEvent& event);
|
2012-05-04 10:49:10 +00:00
|
|
|
void CheckPartitionIntegrity(wxCommandEvent& event);
|
2011-03-16 22:22:21 +00:00
|
|
|
void SetRefresh(wxCommandEvent& event);
|
|
|
|
void OnChangeBannerLang(wxCommandEvent& event);
|
|
|
|
|
|
|
|
GameListItem *OpenGameListItem;
|
|
|
|
|
|
|
|
std::vector<const DiscIO::SFileInfo *> GCFiles;
|
|
|
|
typedef std::vector<const DiscIO::SFileInfo *>::iterator fileIter;
|
|
|
|
|
|
|
|
size_t CreateDirectoryTree(wxTreeItemId& parent,
|
|
|
|
std::vector<const DiscIO::SFileInfo*> fileInfos,
|
2013-10-29 05:23:17 +00:00
|
|
|
const size_t _FirstIndex,
|
2011-03-16 22:22:21 +00:00
|
|
|
const size_t _LastIndex);
|
2014-06-29 19:22:06 +00:00
|
|
|
void ExportDir(const std::string& _rFullPath, const std::string& _rExportFilename,
|
2011-03-16 22:22:21 +00:00
|
|
|
const int partitionNum = 0);
|
|
|
|
|
2013-09-07 21:02:49 +00:00
|
|
|
IniFile GameIniDefault;
|
|
|
|
IniFile GameIniLocal;
|
|
|
|
std::string GameIniFileDefault;
|
|
|
|
std::string GameIniFileLocal;
|
|
|
|
|
|
|
|
std::set<std::string> DefaultPatches;
|
|
|
|
std::set<std::string> DefaultCheats;
|
2011-03-16 22:22:21 +00:00
|
|
|
|
|
|
|
void LoadGameConfig();
|
|
|
|
void PatchList_Load();
|
|
|
|
void PatchList_Save();
|
|
|
|
void ActionReplayList_Save();
|
|
|
|
void ChangeBannerDetails(int lang);
|
2013-09-07 21:02:49 +00:00
|
|
|
|
|
|
|
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
|
|
|
};
|