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 05:30:24 +00:00
|
|
|
|
|
|
|
#include <algorithm>
|
2013-10-26 09:55:41 +00:00
|
|
|
#include <cinttypes>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
2011-03-22 09:40:47 +00:00
|
|
|
#include <memory>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <string>
|
2015-09-13 12:17:58 +00:00
|
|
|
#include <unordered_map>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <wx/bitmap.h>
|
|
|
|
#include <wx/buffer.h>
|
|
|
|
#include <wx/colour.h>
|
|
|
|
#include <wx/dirdlg.h>
|
|
|
|
#include <wx/filedlg.h>
|
|
|
|
#include <wx/filefn.h>
|
2014-02-19 01:56:29 +00:00
|
|
|
#include <wx/filename.h>
|
2015-12-19 10:34:01 +00:00
|
|
|
#include <wx/gdicmn.h>
|
2014-02-19 01:56:29 +00:00
|
|
|
#include <wx/imaglist.h>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <wx/listctrl.h>
|
|
|
|
#include <wx/menu.h>
|
|
|
|
#include <wx/msgdlg.h>
|
|
|
|
#include <wx/progdlg.h>
|
|
|
|
#include <wx/settings.h>
|
|
|
|
#include <wx/tipwin.h>
|
2015-10-11 02:44:53 +00:00
|
|
|
#include <wx/wxcrt.h>
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/CDUtils.h"
|
2014-10-22 21:25:00 +00:00
|
|
|
#include "Common/CommonPaths.h"
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/FileSearch.h"
|
|
|
|
#include "Common/FileUtil.h"
|
|
|
|
#include "Common/MathUtil.h"
|
|
|
|
#include "Common/StringUtil.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "Common/SysConf.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/ConfigManager.h"
|
|
|
|
#include "Core/Core.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "Core/Movie.h"
|
|
|
|
#include "Core/Boot/Boot.h"
|
2014-06-24 04:07:46 +00:00
|
|
|
#include "Core/HW/DVDInterface.h"
|
2014-09-07 13:57:49 +00:00
|
|
|
#include "Core/HW/WiiSaveCrypted.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DiscIO/Blob.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "DiscIO/Volume.h"
|
|
|
|
#include "DiscIO/VolumeCreator.h"
|
|
|
|
#include "DolphinWX/Frame.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DolphinWX/GameListCtrl.h"
|
|
|
|
#include "DolphinWX/Globals.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "DolphinWX/ISOFile.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DolphinWX/ISOProperties.h"
|
|
|
|
#include "DolphinWX/Main.h"
|
|
|
|
#include "DolphinWX/WxUtils.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2015-12-17 17:50:09 +00:00
|
|
|
struct CompressionProgress final
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CompressionProgress(int items_done_, int items_total_, const std::string& current_filename_, wxProgressDialog* dialog_)
|
|
|
|
: items_done(items_done_), items_total(items_total_), current_filename(current_filename_), dialog(dialog_)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
int items_done;
|
|
|
|
int items_total;
|
|
|
|
std::string current_filename;
|
|
|
|
wxProgressDialog* dialog;
|
|
|
|
};
|
|
|
|
|
2014-07-08 13:58:25 +00:00
|
|
|
static bool sorted = false;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2011-11-02 01:16:49 +00:00
|
|
|
static int CompareGameListItems(const GameListItem* iso1, const GameListItem* iso2,
|
2014-02-17 04:51:41 +00:00
|
|
|
long sortData = CGameListCtrl::COLUMN_TITLE)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2011-11-02 01:16:49 +00:00
|
|
|
int t = 1;
|
|
|
|
|
|
|
|
if (sortData < 0)
|
|
|
|
{
|
|
|
|
t = -1;
|
|
|
|
sortData = -sortData;
|
|
|
|
}
|
|
|
|
|
2014-03-10 11:30:55 +00:00
|
|
|
switch (sortData)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2010-07-31 14:14:01 +00:00
|
|
|
case CGameListCtrl::COLUMN_TITLE:
|
2015-09-13 10:45:06 +00:00
|
|
|
if (!strcasecmp(iso1->GetName().c_str(), iso2->GetName().c_str()))
|
2013-01-25 08:07:50 +00:00
|
|
|
{
|
2015-03-07 09:26:04 +00:00
|
|
|
if (iso1->GetUniqueID() != iso2->GetUniqueID())
|
|
|
|
return t * (iso1->GetUniqueID() > iso2->GetUniqueID() ? 1 : -1);
|
|
|
|
if (iso1->GetRevision() != iso2->GetRevision())
|
2015-04-20 11:00:15 +00:00
|
|
|
return t * (iso1->GetRevision() > iso2->GetRevision() ? 1 : -1);
|
2015-05-29 19:14:02 +00:00
|
|
|
if (iso1->GetDiscNumber() != iso2->GetDiscNumber())
|
|
|
|
return t * (iso1->GetDiscNumber() > iso2->GetDiscNumber() ? 1 : -1);
|
2015-10-11 02:44:53 +00:00
|
|
|
|
|
|
|
wxString iso1_filename = wxFileNameFromPath(iso1->GetFileName());
|
|
|
|
wxString iso2_filename = wxFileNameFromPath(iso2->GetFileName());
|
|
|
|
|
|
|
|
if (iso1_filename != iso2_filename)
|
|
|
|
return t * wxStricmp(iso1_filename, iso2_filename);
|
2013-01-25 08:07:50 +00:00
|
|
|
}
|
2015-09-13 10:45:06 +00:00
|
|
|
return strcasecmp(iso1->GetName().c_str(), iso2->GetName().c_str()) * t;
|
2015-04-20 11:00:15 +00:00
|
|
|
case CGameListCtrl::COLUMN_MAKER:
|
|
|
|
return strcasecmp(iso1->GetCompany().c_str(), iso2->GetCompany().c_str()) * t;
|
2015-10-11 02:44:53 +00:00
|
|
|
case CGameListCtrl::COLUMN_FILENAME:
|
|
|
|
return wxStricmp(wxFileNameFromPath(iso1->GetFileName()),
|
|
|
|
wxFileNameFromPath(iso2->GetFileName())) * t;
|
2014-06-04 13:54:48 +00:00
|
|
|
case CGameListCtrl::COLUMN_ID:
|
2015-04-20 11:00:15 +00:00
|
|
|
return strcasecmp(iso1->GetUniqueID().c_str(), iso2->GetUniqueID().c_str()) * t;
|
2010-07-31 14:14:01 +00:00
|
|
|
case CGameListCtrl::COLUMN_COUNTRY:
|
2014-03-10 11:30:55 +00:00
|
|
|
if (iso1->GetCountry() > iso2->GetCountry())
|
2011-11-02 01:16:49 +00:00
|
|
|
return 1 * t;
|
2014-03-10 11:30:55 +00:00
|
|
|
if (iso1->GetCountry() < iso2->GetCountry())
|
2011-11-02 01:16:49 +00:00
|
|
|
return -1 * t;
|
|
|
|
return 0;
|
2010-07-31 14:14:01 +00:00
|
|
|
case CGameListCtrl::COLUMN_SIZE:
|
2011-11-02 01:16:49 +00:00
|
|
|
if (iso1->GetFileSize() > iso2->GetFileSize())
|
|
|
|
return 1 * t;
|
|
|
|
if (iso1->GetFileSize() < iso2->GetFileSize())
|
|
|
|
return -1 * t;
|
|
|
|
return 0;
|
2010-07-31 14:14:01 +00:00
|
|
|
case CGameListCtrl::COLUMN_PLATFORM:
|
2014-03-10 11:30:55 +00:00
|
|
|
if (iso1->GetPlatform() > iso2->GetPlatform())
|
2011-11-02 01:16:49 +00:00
|
|
|
return 1 * t;
|
2014-03-10 11:30:55 +00:00
|
|
|
if (iso1->GetPlatform() < iso2->GetPlatform())
|
2011-11-02 01:16:49 +00:00
|
|
|
return -1 * t;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case CGameListCtrl::COLUMN_EMULATION_STATE:
|
|
|
|
{
|
|
|
|
const int
|
|
|
|
nState1 = iso1->GetEmuState(),
|
|
|
|
nState2 = iso2->GetEmuState();
|
|
|
|
|
|
|
|
if (nState1 > nState2)
|
|
|
|
return 1 * t;
|
|
|
|
if (nState1 < nState2)
|
|
|
|
return -1 * t;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
2011-12-18 12:58:44 +00:00
|
|
|
break;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2011-11-02 01:16:49 +00:00
|
|
|
|
|
|
|
return 0;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2010-07-31 14:14:01 +00:00
|
|
|
CGameListCtrl::CGameListCtrl(wxWindow* parent, const wxWindowID id, const
|
|
|
|
wxPoint& pos, const wxSize& size, long style)
|
2014-03-09 20:14:26 +00:00
|
|
|
: wxListCtrl(parent, id, pos, size, style), toolTip(nullptr)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2014-11-09 00:26:20 +00:00
|
|
|
Bind(wxEVT_SIZE, &CGameListCtrl::OnSize, this);
|
|
|
|
Bind(wxEVT_RIGHT_DOWN, &CGameListCtrl::OnRightClick, this);
|
|
|
|
Bind(wxEVT_LEFT_DOWN, &CGameListCtrl::OnLeftClick, this);
|
|
|
|
Bind(wxEVT_MOTION, &CGameListCtrl::OnMouseMotion, this);
|
|
|
|
Bind(wxEVT_LIST_KEY_DOWN, &CGameListCtrl::OnKeyPress, this);
|
|
|
|
Bind(wxEVT_LIST_COL_BEGIN_DRAG, &CGameListCtrl::OnColBeginDrag, this);
|
|
|
|
Bind(wxEVT_LIST_COL_CLICK, &CGameListCtrl::OnColumnClick, this);
|
|
|
|
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnProperties, this, IDM_PROPERTIES);
|
2014-12-21 01:36:26 +00:00
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnWiki, this, IDM_GAME_WIKI);
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnOpenContainingFolder, this, IDM_OPEN_CONTAINING_FOLDER);
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnOpenSaveFolder, this, IDM_OPEN_SAVE_FOLDER);
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnExportSave, this, IDM_EXPORT_SAVE);
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnSetDefaultISO, this, IDM_SET_DEFAULT_ISO);
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnCompressISO, this, IDM_COMPRESS_ISO);
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnMultiCompressISO, this, IDM_MULTI_COMPRESS_ISO);
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnMultiDecompressISO, this, IDM_MULTI_DECOMPRESS_ISO);
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnDeleteISO, this, IDM_DELETE_ISO);
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnChangeDisc, this, IDM_LIST_CHANGE_DISC);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CGameListCtrl::~CGameListCtrl()
|
|
|
|
{
|
2009-03-23 21:19:43 +00:00
|
|
|
if (m_imageListSmall)
|
|
|
|
delete m_imageListSmall;
|
2011-03-22 07:27:23 +00:00
|
|
|
|
2011-03-23 04:31:00 +00:00
|
|
|
ClearIsoFiles();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGameListCtrl::InitBitmaps()
|
|
|
|
{
|
2015-12-19 10:34:01 +00:00
|
|
|
wxSize size(96, 32);
|
2008-12-08 05:30:24 +00:00
|
|
|
m_imageListSmall = new wxImageList(96, 32);
|
|
|
|
SetImageList(m_imageListSmall, wxIMAGE_LIST_SMALL);
|
2009-07-03 22:34:51 +00:00
|
|
|
|
2010-02-21 19:19:16 +00:00
|
|
|
m_FlagImageIndex.resize(DiscIO::IVolume::NUMBER_OF_COUNTRIES);
|
2016-01-19 23:46:10 +00:00
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_JAPAN] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("Flag_Japan", size));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_EUROPE] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("Flag_Europe", size));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_USA] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("Flag_USA", size));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_AUSTRALIA] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("Flag_Australia", size));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_FRANCE] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("Flag_France", size));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_GERMANY] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("Flag_Germany", size));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_ITALY] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("Flag_Italy", size));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_KOREA] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("Flag_Korea", size));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_NETHERLANDS] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("Flag_Netherlands", size));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_RUSSIA] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("Flag_Russia", size));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_SPAIN] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("Flag_Spain", size));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_TAIWAN] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("Flag_Taiwan", size));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_WORLD] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("Flag_International", size));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_UNKNOWN] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("Flag_Unknown", size));
|
2009-05-27 06:41:01 +00:00
|
|
|
|
2015-08-26 05:13:55 +00:00
|
|
|
m_PlatformImageIndex.resize(4);
|
2016-01-19 23:46:10 +00:00
|
|
|
m_PlatformImageIndex[DiscIO::IVolume::GAMECUBE_DISC] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("Platform_Gamecube", size));
|
|
|
|
m_PlatformImageIndex[DiscIO::IVolume::WII_DISC] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("Platform_Wii", size));
|
|
|
|
m_PlatformImageIndex[DiscIO::IVolume::WII_WAD] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("Platform_Wad", size));
|
|
|
|
m_PlatformImageIndex[DiscIO::IVolume::ELF_DOL] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("Platform_File", size));
|
2009-09-25 16:29:00 +00:00
|
|
|
|
|
|
|
m_EmuStateImageIndex.resize(6);
|
2016-01-19 23:46:10 +00:00
|
|
|
m_EmuStateImageIndex[0] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("rating0", size));
|
|
|
|
m_EmuStateImageIndex[1] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("rating1", size));
|
|
|
|
m_EmuStateImageIndex[2] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("rating2", size));
|
|
|
|
m_EmuStateImageIndex[3] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("rating3", size));
|
|
|
|
m_EmuStateImageIndex[4] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("rating4", size));
|
|
|
|
m_EmuStateImageIndex[5] = m_imageListSmall->Add(WxUtils::LoadResourceBitmap("rating5", size));
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGameListCtrl::BrowseForDirectory()
|
|
|
|
{
|
|
|
|
wxString dirHome;
|
|
|
|
wxGetHomeDir(&dirHome);
|
|
|
|
|
|
|
|
// browse
|
2010-07-31 14:14:01 +00:00
|
|
|
wxDirDialog dialog(this, _("Browse for a directory to add"), dirHome,
|
|
|
|
wxDD_DEFAULT_STYLE | wxDD_DIR_MUST_EXIST);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
if (dialog.ShowModal() == wxID_OK)
|
|
|
|
{
|
2013-02-28 04:37:38 +00:00
|
|
|
std::string sPath(WxStrToStr(dialog.GetPath()));
|
2009-01-05 05:09:23 +00:00
|
|
|
std::vector<std::string>::iterator itResult = std::find(
|
2010-07-31 14:14:01 +00:00
|
|
|
SConfig::GetInstance().m_ISOFolder.begin(),
|
|
|
|
SConfig::GetInstance().m_ISOFolder.end(), sPath);
|
2009-01-05 05:09:23 +00:00
|
|
|
|
|
|
|
if (itResult == SConfig::GetInstance().m_ISOFolder.end())
|
|
|
|
{
|
|
|
|
SConfig::GetInstance().m_ISOFolder.push_back(sPath);
|
|
|
|
SConfig::GetInstance().SaveSettings();
|
|
|
|
}
|
2010-07-31 14:14:01 +00:00
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
Update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-03 15:03:34 +00:00
|
|
|
void CGameListCtrl::Update()
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2013-01-10 18:35:32 +00:00
|
|
|
int scrollPos = wxWindow::GetScrollPos(wxVERTICAL);
|
2009-06-07 02:27:36 +00:00
|
|
|
// Don't let the user refresh it while a game is running
|
2009-04-15 20:19:25 +00:00
|
|
|
if (Core::GetState() != Core::CORE_UNINITIALIZED)
|
|
|
|
return;
|
2009-06-07 02:27:36 +00:00
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
if (m_imageListSmall)
|
|
|
|
{
|
|
|
|
delete m_imageListSmall;
|
2014-03-09 20:14:26 +00:00
|
|
|
m_imageListSmall = nullptr;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Hide();
|
|
|
|
|
2009-02-03 15:03:34 +00:00
|
|
|
ScanForISOs();
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
ClearAll();
|
|
|
|
|
|
|
|
if (m_ISOFiles.size() != 0)
|
|
|
|
{
|
|
|
|
// Don't load bitmaps unless there are games to list
|
|
|
|
InitBitmaps();
|
|
|
|
|
|
|
|
// add columns
|
2014-05-17 17:17:28 +00:00
|
|
|
InsertColumn(COLUMN_DUMMY, "");
|
|
|
|
InsertColumn(COLUMN_PLATFORM, "");
|
2008-12-08 05:30:24 +00:00
|
|
|
InsertColumn(COLUMN_BANNER, _("Banner"));
|
|
|
|
InsertColumn(COLUMN_TITLE, _("Title"));
|
2010-07-31 14:14:01 +00:00
|
|
|
|
2015-04-20 11:00:15 +00:00
|
|
|
InsertColumn(COLUMN_MAKER, _("Maker"));
|
2015-10-11 02:44:53 +00:00
|
|
|
InsertColumn(COLUMN_FILENAME, _("File"));
|
2014-06-04 13:54:48 +00:00
|
|
|
InsertColumn(COLUMN_ID, _("ID"));
|
2014-05-17 17:17:28 +00:00
|
|
|
InsertColumn(COLUMN_COUNTRY, "");
|
2008-12-08 05:30:24 +00:00
|
|
|
InsertColumn(COLUMN_SIZE, _("Size"));
|
2009-09-27 21:28:09 +00:00
|
|
|
InsertColumn(COLUMN_EMULATION_STATE, _("State"));
|
2011-12-18 12:58:44 +00:00
|
|
|
|
2012-03-23 01:45:11 +00:00
|
|
|
#ifdef __WXMSW__
|
|
|
|
const int platform_padding = 0;
|
|
|
|
#else
|
|
|
|
const int platform_padding = 8;
|
|
|
|
#endif
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2016-01-06 20:06:36 +00:00
|
|
|
const int platform_icon_padding = 1;
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
// set initial sizes for columns
|
2015-12-19 10:55:23 +00:00
|
|
|
SetColumnWidth(COLUMN_DUMMY, 0);
|
2016-01-06 20:06:36 +00:00
|
|
|
SetColumnWidth(COLUMN_PLATFORM, SConfig::GetInstance().m_showSystemColumn ? 32 + platform_icon_padding + platform_padding : 0);
|
2014-06-04 13:54:48 +00:00
|
|
|
SetColumnWidth(COLUMN_BANNER, SConfig::GetInstance().m_showBannerColumn ? 96 + platform_padding : 0);
|
|
|
|
SetColumnWidth(COLUMN_TITLE, 175 + platform_padding);
|
2015-04-20 11:00:15 +00:00
|
|
|
SetColumnWidth(COLUMN_MAKER, SConfig::GetInstance().m_showMakerColumn ? 150 + platform_padding : 0);
|
2015-10-11 02:44:53 +00:00
|
|
|
SetColumnWidth(COLUMN_FILENAME, SConfig::GetInstance().m_showFileNameColumn ? 100 + platform_padding : 0);
|
2014-06-04 13:54:48 +00:00
|
|
|
SetColumnWidth(COLUMN_ID, SConfig::GetInstance().m_showIDColumn ? 75 + platform_padding : 0);
|
|
|
|
SetColumnWidth(COLUMN_COUNTRY, SConfig::GetInstance().m_showRegionColumn ? 32 + platform_padding : 0);
|
2015-12-19 10:55:23 +00:00
|
|
|
SetColumnWidth(COLUMN_EMULATION_STATE, SConfig::GetInstance().m_showStateColumn ? 48 + platform_padding : 0);
|
2009-06-07 02:27:36 +00:00
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
// add all items
|
|
|
|
for (int i = 0; i < (int)m_ISOFiles.size(); i++)
|
|
|
|
{
|
|
|
|
InsertItemInReportView(i);
|
2014-06-04 13:54:48 +00:00
|
|
|
if (SConfig::GetInstance().m_ColorCompressed && m_ISOFiles[i]->IsCompressed())
|
2008-12-08 05:30:24 +00:00
|
|
|
SetItemTextColour(i, wxColour(0xFF0000));
|
|
|
|
}
|
|
|
|
|
2009-09-25 16:29:00 +00:00
|
|
|
// Sort items by Title
|
2012-12-24 18:04:57 +00:00
|
|
|
if (!sorted)
|
|
|
|
last_column = 0;
|
2012-12-24 17:48:14 +00:00
|
|
|
sorted = false;
|
2009-09-25 16:29:00 +00:00
|
|
|
wxListEvent event;
|
2012-12-17 11:08:45 +00:00
|
|
|
event.m_col = SConfig::GetInstance().m_ListSort2;
|
2009-09-25 16:29:00 +00:00
|
|
|
OnColumnClick(event);
|
|
|
|
|
2012-12-17 11:08:45 +00:00
|
|
|
event.m_col = SConfig::GetInstance().m_ListSort;
|
|
|
|
OnColumnClick(event);
|
|
|
|
sorted = true;
|
|
|
|
|
2014-07-06 05:59:38 +00:00
|
|
|
SetColumnWidth(COLUMN_SIZE, SConfig::GetInstance().m_showSizeColumn ? wxLIST_AUTOSIZE : 0);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-08-02 05:59:55 +00:00
|
|
|
wxString errorString;
|
2010-07-31 14:14:01 +00:00
|
|
|
// We just check for one hide setting to be enabled, as we may only
|
|
|
|
// have GC games for example, and hide them, so we should show the
|
2016-01-06 21:25:30 +00:00
|
|
|
// first message instead
|
|
|
|
if (IsHidingItems())
|
2009-06-09 05:08:58 +00:00
|
|
|
{
|
2016-01-06 21:25:30 +00:00
|
|
|
errorString = _("Dolphin is currently set to hide all games. Double-click here to show all games...");
|
2009-06-09 05:08:58 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-01-06 21:25:30 +00:00
|
|
|
errorString = _("Dolphin could not find any GameCube/Wii ISOs or WADs. Double-click here to browse for files...");
|
2009-06-09 05:08:58 +00:00
|
|
|
}
|
2014-08-24 20:00:37 +00:00
|
|
|
InsertColumn(0, "");
|
2009-09-25 16:29:00 +00:00
|
|
|
long index = InsertItem(0, errorString);
|
2008-12-08 05:30:24 +00:00
|
|
|
SetItemFont(index, *wxITALIC_FONT);
|
2009-09-25 16:29:00 +00:00
|
|
|
SetColumnWidth(0, wxLIST_AUTOSIZE);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2014-03-09 20:14:26 +00:00
|
|
|
if (GetSelectedISO() == nullptr)
|
2013-02-07 05:31:57 +00:00
|
|
|
main_frame->UpdateGUI();
|
2008-12-08 05:30:24 +00:00
|
|
|
Show();
|
2009-06-07 21:10:02 +00:00
|
|
|
|
|
|
|
AutomaticColumnWidth();
|
2013-01-10 18:35:32 +00:00
|
|
|
ScrollLines(scrollPos);
|
2013-01-10 19:29:48 +00:00
|
|
|
SetFocus();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2014-07-08 12:29:26 +00:00
|
|
|
static wxString NiceSizeFormat(u64 _size)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2014-05-18 03:00:34 +00:00
|
|
|
// Return a pretty filesize string from byte count.
|
|
|
|
// e.g. 1134278 -> "1.08 MiB"
|
|
|
|
|
2013-03-05 09:12:17 +00:00
|
|
|
const char* const unit_symbols[] = {"B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB", "ZiB", "YiB"};
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2014-05-18 03:00:34 +00:00
|
|
|
// Find largest power of 2 less than _size.
|
|
|
|
// div 10 to get largest named unit less than _size
|
|
|
|
// 10 == log2(1024) (number of B in a KiB, KiB in a MiB, etc)
|
2014-08-24 18:03:07 +00:00
|
|
|
const u64 unit = IntLog2(std::max<u64>(_size, 1)) / 10;
|
2015-03-16 02:28:47 +00:00
|
|
|
const u64 unit_size = (1ull << (unit * 10));
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2014-05-18 03:00:34 +00:00
|
|
|
// mul 1000 for 3 decimal places, add 5 to round up, div 10 for 2 decimal places
|
|
|
|
std::string value = std::to_string((_size * 1000 / unit_size + 5) / 10);
|
|
|
|
// Insert decimal point.
|
|
|
|
value.insert(value.size() - 2, ".");
|
|
|
|
return StrToWxStr(StringFromFormat("%s %s", value.c_str(), unit_symbols[unit]));
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2015-10-08 13:27:28 +00:00
|
|
|
// Update the column content of the item at _Index
|
|
|
|
void CGameListCtrl::UpdateItemAtColumn(long _Index, int column)
|
|
|
|
{
|
|
|
|
GameListItem& rISOFile = *m_ISOFiles[_Index];
|
|
|
|
|
|
|
|
switch(column)
|
|
|
|
{
|
|
|
|
case COLUMN_PLATFORM:
|
|
|
|
{
|
|
|
|
SetItemColumnImage(_Index, COLUMN_PLATFORM,
|
|
|
|
m_PlatformImageIndex[rISOFile.GetPlatform()]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case COLUMN_BANNER:
|
|
|
|
{
|
|
|
|
int ImageIndex = -1;
|
|
|
|
|
|
|
|
if (rISOFile.GetBitmap().IsOk())
|
|
|
|
ImageIndex = m_imageListSmall->Add(rISOFile.GetBitmap());
|
|
|
|
|
|
|
|
SetItemColumnImage(_Index, COLUMN_BANNER, ImageIndex);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case COLUMN_TITLE:
|
|
|
|
{
|
|
|
|
wxString name = StrToWxStr(rISOFile.GetName());
|
|
|
|
int disc_number = rISOFile.GetDiscNumber() + 1;
|
|
|
|
|
|
|
|
if (disc_number > 1 &&
|
|
|
|
name.Lower().find(wxString::Format("disc %i", disc_number)) == std::string::npos &&
|
|
|
|
name.Lower().find(wxString::Format("disc%i", disc_number)) == std::string::npos)
|
|
|
|
{
|
|
|
|
name = wxString::Format(_("%s (Disc %i)"), name.c_str(), disc_number);
|
|
|
|
}
|
|
|
|
|
|
|
|
SetItem(_Index, COLUMN_TITLE, name, -1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case COLUMN_MAKER:
|
|
|
|
SetItem(_Index, COLUMN_MAKER, StrToWxStr(rISOFile.GetCompany()), -1);
|
|
|
|
break;
|
2015-10-11 02:44:53 +00:00
|
|
|
case COLUMN_FILENAME:
|
|
|
|
SetItem(_Index, COLUMN_FILENAME,
|
|
|
|
wxFileNameFromPath(rISOFile.GetFileName()), -1);
|
|
|
|
break;
|
2015-10-08 13:27:28 +00:00
|
|
|
case COLUMN_EMULATION_STATE:
|
|
|
|
SetItemColumnImage(_Index, COLUMN_EMULATION_STATE,
|
|
|
|
m_EmuStateImageIndex[rISOFile.GetEmuState()]);
|
|
|
|
break;
|
|
|
|
case COLUMN_COUNTRY:
|
|
|
|
SetItemColumnImage(_Index, COLUMN_COUNTRY,
|
|
|
|
m_FlagImageIndex[rISOFile.GetCountry()]);
|
|
|
|
break;
|
|
|
|
case COLUMN_SIZE:
|
|
|
|
SetItem(_Index, COLUMN_SIZE, NiceSizeFormat(rISOFile.GetFileSize()), -1);
|
|
|
|
break;
|
|
|
|
case COLUMN_ID:
|
|
|
|
SetItem(_Index, COLUMN_ID, rISOFile.GetUniqueID(), -1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
void CGameListCtrl::InsertItemInReportView(long _Index)
|
|
|
|
{
|
2009-03-23 21:19:43 +00:00
|
|
|
// When using wxListCtrl, there is no hope of per-column text colors.
|
|
|
|
// But for reference, here are the old colors that were used: (BGR)
|
|
|
|
// title: 0xFF0000
|
|
|
|
// company: 0x007030
|
2010-02-21 19:19:16 +00:00
|
|
|
|
2012-12-17 11:08:45 +00:00
|
|
|
// Insert a first row with nothing in it, that will be used as the Index
|
|
|
|
long ItemIndex = InsertItem(_Index, wxEmptyString);
|
|
|
|
|
2015-10-08 13:27:28 +00:00
|
|
|
// Iterate over all columns and fill them with content if they are visible
|
|
|
|
for (int i = 1; i < NUMBER_OF_COLUMN; i++)
|
2015-05-29 19:14:02 +00:00
|
|
|
{
|
2015-10-08 13:27:28 +00:00
|
|
|
if (GetColumnWidth(i) != 0)
|
|
|
|
UpdateItemAtColumn(_Index, i);
|
2015-05-29 19:14:02 +00:00
|
|
|
}
|
2015-02-02 18:35:46 +00:00
|
|
|
|
2009-03-23 21:19:43 +00:00
|
|
|
// Background color
|
|
|
|
SetBackgroundColor();
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
// Item data
|
|
|
|
SetItemData(_Index, ItemIndex);
|
|
|
|
}
|
|
|
|
|
2014-07-08 12:29:26 +00:00
|
|
|
static wxColour blend50(const wxColour& c1, const wxColour& c2)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
unsigned char r,g,b,a;
|
|
|
|
r = c1.Red()/2 + c2.Red()/2;
|
|
|
|
g = c1.Green()/2 + c2.Green()/2;
|
|
|
|
b = c1.Blue()/2 + c2.Blue()/2;
|
|
|
|
a = c1.Alpha()/2 + c2.Alpha()/2;
|
|
|
|
return a << 24 | b << 16 | g << 8 | r;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGameListCtrl::SetBackgroundColor()
|
|
|
|
{
|
2014-03-10 11:30:55 +00:00
|
|
|
for (long i = 0; i < GetItemCount(); i++)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2010-07-31 14:14:01 +00:00
|
|
|
wxColour color = (i & 1) ?
|
|
|
|
blend50(wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT),
|
|
|
|
wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW)) :
|
|
|
|
wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW);
|
2008-12-08 05:30:24 +00:00
|
|
|
CGameListCtrl::SetItemBackgroundColour(i, color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-03 15:03:34 +00:00
|
|
|
void CGameListCtrl::ScanForISOs()
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2011-03-23 04:31:00 +00:00
|
|
|
ClearIsoFiles();
|
|
|
|
|
2015-09-13 12:17:58 +00:00
|
|
|
// Load custom game titles from titles.txt
|
|
|
|
// http://www.gametdb.com/Wii/Downloads
|
|
|
|
std::unordered_map<std::string, std::string> custom_title_map;
|
|
|
|
std::ifstream titlestxt;
|
|
|
|
OpenFStream(titlestxt, File::GetUserPath(D_LOAD_IDX) + "titles.txt", std::ios::in);
|
|
|
|
|
|
|
|
if (!titlestxt.is_open())
|
|
|
|
OpenFStream(titlestxt, File::GetUserPath(D_LOAD_IDX) + "wiitdb.txt", std::ios::in);
|
|
|
|
|
|
|
|
if (titlestxt.is_open())
|
|
|
|
{
|
|
|
|
std::string line;
|
|
|
|
while (!titlestxt.eof() && std::getline(titlestxt, line))
|
|
|
|
{
|
|
|
|
const size_t equals_index = line.find('=');
|
|
|
|
if (equals_index != std::string::npos)
|
|
|
|
custom_title_map.emplace(StripSpaces(line.substr(0, equals_index)),
|
|
|
|
StripSpaces(line.substr(equals_index + 1)));
|
|
|
|
}
|
|
|
|
titlestxt.close();
|
|
|
|
}
|
|
|
|
|
2014-11-15 20:46:40 +00:00
|
|
|
std::vector<std::string> Extensions;
|
2009-06-07 17:22:29 +00:00
|
|
|
|
|
|
|
if (SConfig::GetInstance().m_ListGC)
|
2015-09-22 00:01:08 +00:00
|
|
|
Extensions.push_back(".gcm");
|
2009-06-07 17:22:29 +00:00
|
|
|
if (SConfig::GetInstance().m_ListWii || SConfig::GetInstance().m_ListGC)
|
|
|
|
{
|
2015-09-22 00:01:08 +00:00
|
|
|
Extensions.push_back(".iso");
|
|
|
|
Extensions.push_back(".ciso");
|
|
|
|
Extensions.push_back(".gcz");
|
|
|
|
Extensions.push_back(".wbfs");
|
2009-06-07 17:22:29 +00:00
|
|
|
}
|
|
|
|
if (SConfig::GetInstance().m_ListWad)
|
2015-09-22 00:01:08 +00:00
|
|
|
Extensions.push_back(".wad");
|
2015-08-26 05:13:55 +00:00
|
|
|
if (SConfig::GetInstance().m_ListElfDol)
|
|
|
|
{
|
2015-09-22 00:01:08 +00:00
|
|
|
Extensions.push_back(".dol");
|
|
|
|
Extensions.push_back(".elf");
|
2015-08-26 05:13:55 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-11-15 20:46:40 +00:00
|
|
|
auto rFilenames = DoFileSearch(Extensions, SConfig::GetInstance().m_ISOFolder, SConfig::GetInstance().m_RecursiveISOFolder);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
if (rFilenames.size() > 0)
|
|
|
|
{
|
2012-03-25 03:59:20 +00:00
|
|
|
wxProgressDialog dialog(
|
|
|
|
_("Scanning for ISOs"),
|
|
|
|
_("Scanning..."),
|
|
|
|
(int)rFilenames.size() - 1,
|
|
|
|
this,
|
|
|
|
wxPD_APP_MODAL |
|
|
|
|
wxPD_AUTO_HIDE |
|
|
|
|
wxPD_CAN_ABORT |
|
|
|
|
wxPD_ELAPSED_TIME | wxPD_ESTIMATED_TIME | wxPD_REMAINING_TIME |
|
|
|
|
wxPD_SMOOTH // - makes updates as small as possible (down to 1px)
|
|
|
|
);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
for (u32 i = 0; i < rFilenames.size(); i++)
|
|
|
|
{
|
|
|
|
std::string FileName;
|
2014-03-09 20:14:26 +00:00
|
|
|
SplitPath(rFilenames[i], nullptr, &FileName, nullptr);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2011-06-04 04:34:44 +00:00
|
|
|
// Update with the progress (i) and the message
|
2012-03-25 03:59:20 +00:00
|
|
|
dialog.Update(i, wxString::Format(_("Scanning %s"),
|
2013-02-28 08:39:06 +00:00
|
|
|
StrToWxStr(FileName)));
|
2012-03-25 03:59:20 +00:00
|
|
|
if (dialog.WasCancelled())
|
2008-12-08 05:30:24 +00:00
|
|
|
break;
|
2011-01-09 14:11:46 +00:00
|
|
|
|
2015-09-13 12:17:58 +00:00
|
|
|
auto iso_file = std::make_unique<GameListItem>(rFilenames[i], custom_title_map);
|
2011-03-22 07:27:23 +00:00
|
|
|
|
2014-05-06 10:35:50 +00:00
|
|
|
if (iso_file->IsValid())
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-04-28 02:30:50 +00:00
|
|
|
bool list = true;
|
|
|
|
|
2014-05-06 10:35:50 +00:00
|
|
|
switch(iso_file->GetPlatform())
|
2009-06-06 07:36:22 +00:00
|
|
|
{
|
2015-06-04 14:26:36 +00:00
|
|
|
case DiscIO::IVolume::WII_DISC:
|
2010-07-31 14:14:01 +00:00
|
|
|
if (!SConfig::GetInstance().m_ListWii)
|
|
|
|
list = false;
|
|
|
|
break;
|
2015-06-04 14:26:36 +00:00
|
|
|
case DiscIO::IVolume::WII_WAD:
|
2010-07-31 14:14:01 +00:00
|
|
|
if (!SConfig::GetInstance().m_ListWad)
|
|
|
|
list = false;
|
|
|
|
break;
|
2015-12-22 15:26:31 +00:00
|
|
|
case DiscIO::IVolume::ELF_DOL:
|
|
|
|
if (!SConfig::GetInstance().m_ListElfDol)
|
|
|
|
list = false;
|
|
|
|
break;
|
2010-07-31 14:14:01 +00:00
|
|
|
default:
|
|
|
|
if (!SConfig::GetInstance().m_ListGC)
|
|
|
|
list = false;
|
|
|
|
break;
|
2009-06-06 07:36:22 +00:00
|
|
|
}
|
2009-04-28 02:30:50 +00:00
|
|
|
|
2014-05-06 10:35:50 +00:00
|
|
|
switch(iso_file->GetCountry())
|
2009-04-28 02:30:50 +00:00
|
|
|
{
|
2014-10-30 14:35:46 +00:00
|
|
|
case DiscIO::IVolume::COUNTRY_AUSTRALIA:
|
|
|
|
if (!SConfig::GetInstance().m_ListAustralia)
|
|
|
|
list = false;
|
|
|
|
break;
|
2015-01-06 05:30:48 +00:00
|
|
|
case DiscIO::IVolume::COUNTRY_EUROPE:
|
|
|
|
if (!SConfig::GetInstance().m_ListPal)
|
2014-10-30 14:35:46 +00:00
|
|
|
list = false;
|
|
|
|
break;
|
2015-01-06 05:30:48 +00:00
|
|
|
case DiscIO::IVolume::COUNTRY_FRANCE:
|
|
|
|
if (!SConfig::GetInstance().m_ListFrance)
|
2014-10-30 14:35:46 +00:00
|
|
|
list = false;
|
|
|
|
break;
|
2015-01-06 05:30:48 +00:00
|
|
|
case DiscIO::IVolume::COUNTRY_GERMANY:
|
|
|
|
if (!SConfig::GetInstance().m_ListGermany)
|
2014-10-30 14:35:46 +00:00
|
|
|
list = false;
|
|
|
|
break;
|
2015-01-06 05:30:48 +00:00
|
|
|
case DiscIO::IVolume::COUNTRY_ITALY:
|
|
|
|
if (!SConfig::GetInstance().m_ListItaly)
|
2010-07-31 14:14:01 +00:00
|
|
|
list = false;
|
|
|
|
break;
|
|
|
|
case DiscIO::IVolume::COUNTRY_JAPAN:
|
|
|
|
if (!SConfig::GetInstance().m_ListJap)
|
|
|
|
list = false;
|
|
|
|
break;
|
2015-01-06 05:30:48 +00:00
|
|
|
case DiscIO::IVolume::COUNTRY_KOREA:
|
|
|
|
if (!SConfig::GetInstance().m_ListKorea)
|
2010-07-31 14:14:01 +00:00
|
|
|
list = false;
|
|
|
|
break;
|
2015-01-06 05:30:48 +00:00
|
|
|
case DiscIO::IVolume::COUNTRY_NETHERLANDS:
|
|
|
|
if (!SConfig::GetInstance().m_ListNetherlands)
|
2010-07-31 14:14:01 +00:00
|
|
|
list = false;
|
|
|
|
break;
|
2015-01-06 05:30:48 +00:00
|
|
|
case DiscIO::IVolume::COUNTRY_RUSSIA:
|
|
|
|
if (!SConfig::GetInstance().m_ListRussia)
|
2010-07-31 14:14:01 +00:00
|
|
|
list = false;
|
|
|
|
break;
|
2014-10-30 14:35:46 +00:00
|
|
|
case DiscIO::IVolume::COUNTRY_SPAIN:
|
|
|
|
if (!SConfig::GetInstance().m_ListSpain)
|
|
|
|
list = false;
|
|
|
|
break;
|
2015-01-06 05:30:48 +00:00
|
|
|
case DiscIO::IVolume::COUNTRY_TAIWAN:
|
|
|
|
if (!SConfig::GetInstance().m_ListTaiwan)
|
|
|
|
list = false;
|
|
|
|
break;
|
|
|
|
case DiscIO::IVolume::COUNTRY_USA:
|
|
|
|
if (!SConfig::GetInstance().m_ListUsa)
|
2014-10-30 14:35:46 +00:00
|
|
|
list = false;
|
|
|
|
break;
|
2015-04-08 22:55:16 +00:00
|
|
|
case DiscIO::IVolume::COUNTRY_WORLD:
|
|
|
|
if (!SConfig::GetInstance().m_ListWorld)
|
|
|
|
list = false;
|
|
|
|
break;
|
2015-01-06 05:30:48 +00:00
|
|
|
case DiscIO::IVolume::COUNTRY_UNKNOWN:
|
2010-07-31 14:14:01 +00:00
|
|
|
default:
|
2015-01-06 05:30:48 +00:00
|
|
|
if (!SConfig::GetInstance().m_ListUnknown)
|
2010-07-31 14:14:01 +00:00
|
|
|
list = false;
|
|
|
|
break;
|
2009-04-28 02:30:50 +00:00
|
|
|
}
|
|
|
|
|
2010-07-31 14:14:01 +00:00
|
|
|
if (list)
|
2011-03-23 04:31:00 +00:00
|
|
|
m_ISOFiles.push_back(iso_file.release());
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-04-28 02:30:50 +00:00
|
|
|
|
|
|
|
if (SConfig::GetInstance().m_ListDrives)
|
|
|
|
{
|
2011-03-22 07:27:23 +00:00
|
|
|
const std::vector<std::string> drives = cdio_get_devices();
|
|
|
|
|
2013-10-29 05:09:01 +00:00
|
|
|
for (const auto& drive : drives)
|
2009-04-28 02:30:50 +00:00
|
|
|
{
|
2015-09-13 12:17:58 +00:00
|
|
|
auto gli = std::make_unique<GameListItem>(drive, custom_title_map);
|
2011-03-22 07:27:23 +00:00
|
|
|
|
|
|
|
if (gli->IsValid())
|
|
|
|
m_ISOFiles.push_back(gli.release());
|
2009-04-28 02:30:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
std::sort(m_ISOFiles.begin(), m_ISOFiles.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGameListCtrl::OnColBeginDrag(wxListEvent& event)
|
|
|
|
{
|
2015-10-11 02:44:53 +00:00
|
|
|
const int column_id = event.GetColumn();
|
|
|
|
|
|
|
|
if (column_id != COLUMN_TITLE && column_id != COLUMN_MAKER && column_id != COLUMN_FILENAME)
|
2008-12-08 05:30:24 +00:00
|
|
|
event.Veto();
|
|
|
|
}
|
|
|
|
|
2014-11-14 02:28:27 +00:00
|
|
|
const GameListItem* CGameListCtrl::GetISO(size_t index) const
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2011-03-22 07:27:23 +00:00
|
|
|
if (index < m_ISOFiles.size())
|
|
|
|
return m_ISOFiles[index];
|
|
|
|
else
|
2014-03-09 20:14:26 +00:00
|
|
|
return nullptr;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2014-11-14 02:28:27 +00:00
|
|
|
static CGameListCtrl* caller;
|
2014-07-08 12:29:26 +00:00
|
|
|
static int wxCALLBACK wxListCompare(wxIntPtr item1, wxIntPtr item2, wxIntPtr sortData)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2010-07-31 14:14:01 +00:00
|
|
|
// return 1 if item1 > item2
|
|
|
|
// return -1 if item1 < item2
|
|
|
|
// return 0 for identity
|
2014-11-14 02:28:27 +00:00
|
|
|
const GameListItem* iso1 = caller->GetISO(item1);
|
|
|
|
const GameListItem* iso2 = caller->GetISO(item2);
|
2010-07-31 14:14:01 +00:00
|
|
|
|
2011-11-02 01:16:49 +00:00
|
|
|
return CompareGameListItems(iso1, iso2, sortData);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGameListCtrl::OnColumnClick(wxListEvent& event)
|
|
|
|
{
|
2014-03-10 11:30:55 +00:00
|
|
|
if (event.GetColumn() != COLUMN_BANNER)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
int current_column = event.GetColumn();
|
2012-12-24 18:29:19 +00:00
|
|
|
if (sorted)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2012-12-24 18:29:19 +00:00
|
|
|
if (last_column == current_column)
|
|
|
|
{
|
|
|
|
last_sort = -last_sort;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SConfig::GetInstance().m_ListSort2 = last_sort;
|
|
|
|
last_column = current_column;
|
|
|
|
last_sort = current_column;
|
|
|
|
}
|
|
|
|
SConfig::GetInstance().m_ListSort = last_sort;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
last_sort = current_column;
|
2012-12-24 18:29:19 +00:00
|
|
|
last_column = current_column;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
caller = this;
|
|
|
|
SortItems(wxListCompare, last_sort);
|
|
|
|
}
|
|
|
|
|
|
|
|
SetBackgroundColor();
|
|
|
|
|
|
|
|
event.Skip();
|
|
|
|
}
|
|
|
|
|
2009-09-25 16:29:00 +00:00
|
|
|
// This is used by keyboard gamelist search
|
|
|
|
void CGameListCtrl::OnKeyPress(wxListEvent& event)
|
|
|
|
{
|
|
|
|
static int lastKey = 0, sLoop = 0;
|
|
|
|
int Loop = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < (int)m_ISOFiles.size(); i++)
|
|
|
|
{
|
|
|
|
// Easy way to get game string
|
|
|
|
wxListItem bleh;
|
|
|
|
bleh.SetId(i);
|
|
|
|
bleh.SetColumn(COLUMN_TITLE);
|
|
|
|
bleh.SetMask(wxLIST_MASK_TEXT);
|
|
|
|
GetItem(bleh);
|
|
|
|
|
|
|
|
wxString text = bleh.GetText();
|
|
|
|
|
2011-02-21 15:01:00 +00:00
|
|
|
if (text.MakeUpper()[0] == event.GetKeyCode())
|
2009-09-25 16:29:00 +00:00
|
|
|
{
|
|
|
|
if (lastKey == event.GetKeyCode() && Loop < sLoop)
|
|
|
|
{
|
|
|
|
Loop++;
|
|
|
|
if (i+1 == (int)m_ISOFiles.size())
|
|
|
|
i = -1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if (lastKey != event.GetKeyCode())
|
2013-04-08 05:16:50 +00:00
|
|
|
{
|
2009-09-25 16:29:00 +00:00
|
|
|
sLoop = 0;
|
2013-04-08 05:16:50 +00:00
|
|
|
}
|
2009-09-25 16:29:00 +00:00
|
|
|
|
|
|
|
lastKey = event.GetKeyCode();
|
|
|
|
sLoop++;
|
|
|
|
|
|
|
|
UnselectAll();
|
2010-07-31 14:14:01 +00:00
|
|
|
SetItemState(i, wxLIST_STATE_SELECTED|wxLIST_STATE_FOCUSED,
|
|
|
|
wxLIST_STATE_SELECTED|wxLIST_STATE_FOCUSED);
|
2009-09-25 16:29:00 +00:00
|
|
|
EnsureVisible(i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-07-31 14:14:01 +00:00
|
|
|
// If we get past the last game in the list,
|
|
|
|
// we'll have to go back to the first one.
|
2009-09-25 16:29:00 +00:00
|
|
|
if (i+1 == (int)m_ISOFiles.size() && sLoop > 0 && Loop > 0)
|
|
|
|
i = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
event.Skip();
|
|
|
|
}
|
|
|
|
|
|
|
|
// This shows a little tooltip with the current Game's emulation state
|
|
|
|
void CGameListCtrl::OnMouseMotion(wxMouseEvent& event)
|
|
|
|
{
|
2010-07-31 14:14:01 +00:00
|
|
|
int flags;
|
|
|
|
long subitem = 0;
|
2011-03-23 04:31:00 +00:00
|
|
|
const long item = HitTest(event.GetPosition(), flags, &subitem);
|
2009-09-25 16:29:00 +00:00
|
|
|
static int lastItem = -1;
|
|
|
|
|
2011-03-07 20:19:20 +00:00
|
|
|
if (GetColumnCount() <= 1)
|
|
|
|
return;
|
|
|
|
|
2010-07-31 14:14:01 +00:00
|
|
|
if (item != wxNOT_FOUND)
|
2009-09-25 16:29:00 +00:00
|
|
|
{
|
2011-02-20 22:56:03 +00:00
|
|
|
wxRect Rect;
|
|
|
|
#ifdef __WXMSW__
|
2009-09-25 16:29:00 +00:00
|
|
|
if (subitem == COLUMN_EMULATION_STATE)
|
2011-02-20 22:56:03 +00:00
|
|
|
#else
|
|
|
|
// The subitem parameter of HitTest is only implemented for wxMSW. On
|
|
|
|
// all other platforms it will always be -1. Check the x position
|
|
|
|
// instead.
|
2011-02-21 15:01:00 +00:00
|
|
|
GetItemRect(item, Rect);
|
2011-02-20 22:56:03 +00:00
|
|
|
if (Rect.GetX() + Rect.GetWidth() - GetColumnWidth(COLUMN_EMULATION_STATE) < event.GetX())
|
2011-02-20 18:03:14 +00:00
|
|
|
#endif
|
2009-09-25 16:29:00 +00:00
|
|
|
{
|
2010-07-31 14:14:01 +00:00
|
|
|
if (toolTip || lastItem == item || this != FindFocus())
|
|
|
|
{
|
2011-02-20 22:56:03 +00:00
|
|
|
if (lastItem != item) lastItem = -1;
|
2009-09-25 16:29:00 +00:00
|
|
|
event.Skip();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-23 04:31:00 +00:00
|
|
|
// Emulation status
|
|
|
|
static const char* const emuState[] = { "Broken", "Intro", "In-Game", "Playable", "Perfect" };
|
2009-09-25 16:29:00 +00:00
|
|
|
|
2011-03-23 04:31:00 +00:00
|
|
|
const GameListItem& rISO = *m_ISOFiles[GetItemData(item)];
|
2009-09-25 16:29:00 +00:00
|
|
|
|
2011-03-23 04:31:00 +00:00
|
|
|
const int emu_state = rISO.GetEmuState();
|
2011-12-18 12:58:44 +00:00
|
|
|
const std::string& issues = rISO.GetIssues();
|
|
|
|
|
2009-09-25 16:29:00 +00:00
|
|
|
// Show a tooltip containing the EmuState and the state description
|
2011-03-23 04:31:00 +00:00
|
|
|
if (emu_state > 0 && emu_state < 6)
|
2009-11-11 11:07:04 +00:00
|
|
|
{
|
|
|
|
char temp[2048];
|
2011-12-18 12:58:44 +00:00
|
|
|
sprintf(temp, "^ %s%s%s", emuState[emu_state - 1],
|
|
|
|
issues.size() > 0 ? " :\n" : "", issues.c_str());
|
2013-02-28 04:37:38 +00:00
|
|
|
toolTip = new wxEmuStateTip(this, StrToWxStr(temp), &toolTip);
|
2009-11-11 11:07:04 +00:00
|
|
|
}
|
2009-09-25 16:29:00 +00:00
|
|
|
else
|
2013-04-08 05:16:50 +00:00
|
|
|
{
|
2011-01-05 04:35:46 +00:00
|
|
|
toolTip = new wxEmuStateTip(this, _("Not Set"), &toolTip);
|
2013-04-08 05:16:50 +00:00
|
|
|
}
|
2009-09-25 16:29:00 +00:00
|
|
|
|
2011-02-20 18:03:14 +00:00
|
|
|
// Get item Coords
|
|
|
|
GetItemRect(item, Rect);
|
|
|
|
int mx = Rect.GetWidth();
|
|
|
|
int my = Rect.GetY();
|
2011-02-20 22:56:03 +00:00
|
|
|
#ifndef __WXMSW__
|
2011-02-20 18:03:14 +00:00
|
|
|
// For some reason the y position does not account for the header
|
|
|
|
// row, so subtract the y position of the first visible item.
|
|
|
|
GetItemRect(GetTopItem(), Rect);
|
2011-02-20 22:56:03 +00:00
|
|
|
my -= Rect.GetY();
|
2011-02-20 18:03:14 +00:00
|
|
|
#endif
|
2011-02-20 22:56:03 +00:00
|
|
|
// Convert to screen coordinates
|
|
|
|
ClientToScreen(&mx, &my);
|
|
|
|
toolTip->SetBoundingRect(wxRect(mx - GetColumnWidth(COLUMN_EMULATION_STATE),
|
|
|
|
my, GetColumnWidth(COLUMN_EMULATION_STATE), Rect.GetHeight()));
|
|
|
|
toolTip->SetPosition(wxPoint(mx - GetColumnWidth(COLUMN_EMULATION_STATE),
|
|
|
|
my - 5 + Rect.GetHeight()));
|
2009-09-25 16:29:00 +00:00
|
|
|
lastItem = item;
|
|
|
|
}
|
|
|
|
}
|
2011-02-20 22:56:03 +00:00
|
|
|
if (!toolTip)
|
2011-02-20 18:03:14 +00:00
|
|
|
lastItem = -1;
|
2009-09-25 16:29:00 +00:00
|
|
|
|
|
|
|
event.Skip();
|
|
|
|
}
|
|
|
|
|
2010-01-19 13:43:51 +00:00
|
|
|
void CGameListCtrl::OnLeftClick(wxMouseEvent& event)
|
|
|
|
{
|
|
|
|
// Focus the clicked item.
|
|
|
|
int flags;
|
2010-07-31 14:14:01 +00:00
|
|
|
long item = HitTest(event.GetPosition(), flags);
|
|
|
|
if ((item != wxNOT_FOUND) && (GetSelectedItemCount() == 0) &&
|
|
|
|
(!event.ControlDown()) && (!event.ShiftDown()))
|
2010-01-19 13:43:51 +00:00
|
|
|
{
|
2010-01-22 21:41:25 +00:00
|
|
|
SetItemState(item, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED );
|
2010-01-19 13:43:51 +00:00
|
|
|
SetItemState(item, wxLIST_STATE_FOCUSED, wxLIST_STATE_FOCUSED);
|
2010-01-22 21:41:25 +00:00
|
|
|
wxGetApp().GetCFrame()->UpdateGUI();
|
2010-01-19 13:43:51 +00:00
|
|
|
}
|
2010-07-31 14:14:01 +00:00
|
|
|
|
2010-01-22 21:41:25 +00:00
|
|
|
event.Skip();
|
2010-01-19 13:43:51 +00:00
|
|
|
}
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
void CGameListCtrl::OnRightClick(wxMouseEvent& event)
|
2013-10-29 05:23:17 +00:00
|
|
|
{
|
2008-12-08 05:30:24 +00:00
|
|
|
// Focus the clicked item.
|
|
|
|
int flags;
|
2010-07-31 14:14:01 +00:00
|
|
|
long item = HitTest(event.GetPosition(), flags);
|
|
|
|
if (item != wxNOT_FOUND)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
if (GetItemState(item, wxLIST_STATE_SELECTED) != wxLIST_STATE_SELECTED)
|
|
|
|
{
|
|
|
|
UnselectAll();
|
|
|
|
SetItemState(item, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED );
|
|
|
|
}
|
|
|
|
SetItemState(item, wxLIST_STATE_FOCUSED, wxLIST_STATE_FOCUSED);
|
|
|
|
}
|
|
|
|
if (GetSelectedItemCount() == 1)
|
|
|
|
{
|
2014-11-14 02:28:27 +00:00
|
|
|
const GameListItem* selected_iso = GetSelectedISO();
|
2008-12-08 05:30:24 +00:00
|
|
|
if (selected_iso)
|
|
|
|
{
|
2014-11-11 14:50:11 +00:00
|
|
|
wxMenu popupMenu;
|
2015-09-06 10:34:48 +00:00
|
|
|
DiscIO::IVolume::EPlatform platform = selected_iso->GetPlatform();
|
2009-06-07 02:27:36 +00:00
|
|
|
|
2015-09-06 10:34:48 +00:00
|
|
|
if (platform != DiscIO::IVolume::ELF_DOL)
|
2015-08-26 05:13:55 +00:00
|
|
|
{
|
|
|
|
popupMenu.Append(IDM_PROPERTIES, _("&Properties"));
|
|
|
|
popupMenu.Append(IDM_GAME_WIKI, _("&Wiki"));
|
|
|
|
popupMenu.AppendSeparator();
|
|
|
|
}
|
2015-09-06 10:34:48 +00:00
|
|
|
if (platform == DiscIO::IVolume::WII_DISC || platform == DiscIO::IVolume::WII_WAD)
|
2010-01-14 07:19:10 +00:00
|
|
|
{
|
2014-12-21 01:36:26 +00:00
|
|
|
popupMenu.Append(IDM_OPEN_SAVE_FOLDER, _("Open Wii &save folder"));
|
|
|
|
popupMenu.Append(IDM_EXPORT_SAVE, _("Export Wii save (Experimental)"));
|
2010-01-14 07:19:10 +00:00
|
|
|
}
|
2014-12-21 01:36:26 +00:00
|
|
|
popupMenu.Append(IDM_OPEN_CONTAINING_FOLDER, _("Open &containing folder"));
|
2015-08-26 05:13:55 +00:00
|
|
|
|
2015-09-06 10:34:48 +00:00
|
|
|
if (platform != DiscIO::IVolume::ELF_DOL)
|
2015-08-26 05:13:55 +00:00
|
|
|
popupMenu.AppendCheckItem(IDM_SET_DEFAULT_ISO, _("Set as &default ISO"));
|
2010-07-31 14:14:01 +00:00
|
|
|
|
2008-12-09 05:37:15 +00:00
|
|
|
// First we have to decide a starting value when we append it
|
2015-09-06 10:34:48 +00:00
|
|
|
if (platform == SConfig::GetInstance().m_strDefaultISO)
|
2014-12-21 01:36:26 +00:00
|
|
|
popupMenu.FindItem(IDM_SET_DEFAULT_ISO)->Check();
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-11-11 14:50:11 +00:00
|
|
|
popupMenu.AppendSeparator();
|
2015-08-26 05:13:55 +00:00
|
|
|
popupMenu.Append(IDM_DELETE_ISO, _("&Delete File..."));
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2015-09-06 10:34:48 +00:00
|
|
|
if (platform == DiscIO::IVolume::GAMECUBE_DISC || platform == DiscIO::IVolume::WII_DISC)
|
2009-06-07 02:27:36 +00:00
|
|
|
{
|
2015-09-27 19:06:19 +00:00
|
|
|
if (selected_iso->GetBlobType() == DiscIO::BlobType::GCZ)
|
2014-12-21 01:36:26 +00:00
|
|
|
popupMenu.Append(IDM_COMPRESS_ISO, _("Decompress ISO..."));
|
2015-09-27 19:06:19 +00:00
|
|
|
else if (selected_iso->GetBlobType() == DiscIO::BlobType::PLAIN)
|
2014-12-21 01:36:26 +00:00
|
|
|
popupMenu.Append(IDM_COMPRESS_ISO, _("Compress ISO..."));
|
2015-09-06 10:38:07 +00:00
|
|
|
|
2014-12-21 01:36:26 +00:00
|
|
|
wxMenuItem* changeDiscItem = popupMenu.Append(IDM_LIST_CHANGE_DISC, _("Change &Disc"));
|
2014-06-24 04:07:46 +00:00
|
|
|
changeDiscItem->Enable(Core::IsRunning());
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2015-09-06 10:38:07 +00:00
|
|
|
if (platform == DiscIO::IVolume::WII_WAD)
|
|
|
|
popupMenu.Append(IDM_LIST_INSTALL_WAD, _("Install to Wii Menu"));
|
|
|
|
|
2014-11-11 14:50:11 +00:00
|
|
|
PopupMenu(&popupMenu);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (GetSelectedItemCount() > 1)
|
|
|
|
{
|
2014-11-11 14:50:11 +00:00
|
|
|
wxMenu popupMenu;
|
2014-12-21 01:36:26 +00:00
|
|
|
popupMenu.Append(IDM_DELETE_ISO, _("&Delete selected ISOs..."));
|
2014-11-11 14:50:11 +00:00
|
|
|
popupMenu.AppendSeparator();
|
2014-12-21 01:36:26 +00:00
|
|
|
popupMenu.Append(IDM_MULTI_COMPRESS_ISO, _("Compress selected ISOs..."));
|
|
|
|
popupMenu.Append(IDM_MULTI_DECOMPRESS_ISO, _("Decompress selected ISOs..."));
|
2014-11-11 14:50:11 +00:00
|
|
|
PopupMenu(&popupMenu);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-17 11:39:32 +00:00
|
|
|
const GameListItem* CGameListCtrl::GetSelectedISO() const
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-01-19 01:30:54 +00:00
|
|
|
if (m_ISOFiles.size() == 0)
|
2013-04-08 05:16:50 +00:00
|
|
|
{
|
2014-03-09 20:14:26 +00:00
|
|
|
return nullptr;
|
2013-04-08 05:16:50 +00:00
|
|
|
}
|
2010-01-18 12:10:51 +00:00
|
|
|
else if (GetSelectedItemCount() == 0)
|
2013-04-08 05:16:50 +00:00
|
|
|
{
|
2014-03-09 20:14:26 +00:00
|
|
|
return nullptr;
|
2013-04-08 05:16:50 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
else
|
|
|
|
{
|
2010-07-31 14:14:01 +00:00
|
|
|
long item = GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
|
2009-07-01 04:55:53 +00:00
|
|
|
if (item == wxNOT_FOUND)
|
2014-03-09 20:14:26 +00:00
|
|
|
return nullptr;
|
2015-12-17 11:39:32 +00:00
|
|
|
return m_ISOFiles[GetItemData(item)];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<const GameListItem*> CGameListCtrl::GetAllSelectedISOs() const
|
|
|
|
{
|
|
|
|
std::vector<const GameListItem*> result;
|
|
|
|
long item = -1;
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
item = GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
|
|
|
|
if (item == wxNOT_FOUND)
|
|
|
|
return result;
|
|
|
|
result.push_back(m_ISOFiles[GetItemData(item)]);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-06 21:25:30 +00:00
|
|
|
bool CGameListCtrl::IsHidingItems()
|
|
|
|
{
|
|
|
|
return !(SConfig::GetInstance().m_ListGC &&
|
|
|
|
SConfig::GetInstance().m_ListWii &&
|
|
|
|
SConfig::GetInstance().m_ListWad &&
|
|
|
|
SConfig::GetInstance().m_ListElfDol &&
|
|
|
|
SConfig::GetInstance().m_ListJap &&
|
|
|
|
SConfig::GetInstance().m_ListUsa &&
|
|
|
|
SConfig::GetInstance().m_ListPal &&
|
|
|
|
SConfig::GetInstance().m_ListAustralia &&
|
|
|
|
SConfig::GetInstance().m_ListFrance &&
|
|
|
|
SConfig::GetInstance().m_ListGermany &&
|
|
|
|
SConfig::GetInstance().m_ListItaly &&
|
|
|
|
SConfig::GetInstance().m_ListKorea &&
|
|
|
|
SConfig::GetInstance().m_ListNetherlands &&
|
|
|
|
SConfig::GetInstance().m_ListRussia &&
|
|
|
|
SConfig::GetInstance().m_ListSpain &&
|
|
|
|
SConfig::GetInstance().m_ListTaiwan &&
|
|
|
|
SConfig::GetInstance().m_ListWorld &&
|
|
|
|
SConfig::GetInstance().m_ListUnknown);
|
|
|
|
}
|
|
|
|
|
2010-07-31 14:14:01 +00:00
|
|
|
void CGameListCtrl::OnOpenContainingFolder(wxCommandEvent& WXUNUSED (event))
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2014-11-14 02:28:27 +00:00
|
|
|
const GameListItem* iso = GetSelectedISO();
|
2008-12-08 05:30:24 +00:00
|
|
|
if (!iso)
|
|
|
|
return;
|
2013-01-11 16:24:52 +00:00
|
|
|
|
2013-03-03 08:30:45 +00:00
|
|
|
wxFileName path = wxFileName::FileName(StrToWxStr(iso->GetFileName()));
|
2013-01-11 16:24:52 +00:00
|
|
|
path.MakeAbsolute();
|
2014-03-12 19:33:41 +00:00
|
|
|
WxUtils::Explore(WxStrToStr(path.GetPath()));
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2010-07-31 14:14:01 +00:00
|
|
|
void CGameListCtrl::OnOpenSaveFolder(wxCommandEvent& WXUNUSED (event))
|
2009-05-02 18:06:42 +00:00
|
|
|
{
|
2014-11-14 02:28:27 +00:00
|
|
|
const GameListItem* iso = GetSelectedISO();
|
2009-05-02 18:06:42 +00:00
|
|
|
if (!iso)
|
|
|
|
return;
|
2011-01-06 13:57:46 +00:00
|
|
|
std::string path = iso->GetWiiFSPath();
|
|
|
|
if (!path.empty())
|
2014-03-12 19:33:41 +00:00
|
|
|
WxUtils::Explore(path);
|
2009-05-02 18:06:42 +00:00
|
|
|
}
|
|
|
|
|
2010-01-14 07:19:10 +00:00
|
|
|
void CGameListCtrl::OnExportSave(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
2015-02-15 19:43:31 +00:00
|
|
|
const GameListItem* iso = GetSelectedISO();
|
2010-01-14 07:19:10 +00:00
|
|
|
if (!iso)
|
|
|
|
return;
|
2014-09-20 16:57:53 +00:00
|
|
|
|
2015-09-22 17:25:54 +00:00
|
|
|
u64 title_id;
|
2014-09-20 16:57:53 +00:00
|
|
|
std::unique_ptr<DiscIO::IVolume> volume(DiscIO::CreateVolumeFromFilename(iso->GetFileName()));
|
2015-09-22 17:25:54 +00:00
|
|
|
if (volume && volume->GetTitleID(&title_id))
|
2010-01-14 07:19:10 +00:00
|
|
|
{
|
2015-09-22 17:25:54 +00:00
|
|
|
CWiiSaveCrypted::ExportWiiSave(title_id);
|
2010-01-14 07:19:10 +00:00
|
|
|
}
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
// Save this file as the default file
|
2014-09-28 23:05:27 +00:00
|
|
|
void CGameListCtrl::OnSetDefaultISO(wxCommandEvent& event)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2014-11-14 02:28:27 +00:00
|
|
|
const GameListItem* iso = GetSelectedISO();
|
2008-12-08 05:30:24 +00:00
|
|
|
if (!iso) return;
|
2010-07-31 14:14:01 +00:00
|
|
|
|
|
|
|
if (event.IsChecked())
|
2008-12-09 05:37:15 +00:00
|
|
|
{
|
2010-07-31 14:14:01 +00:00
|
|
|
// Write the new default value and save it the ini file
|
2015-06-12 11:56:53 +00:00
|
|
|
SConfig::GetInstance().m_strDefaultISO =
|
2010-07-31 14:14:01 +00:00
|
|
|
iso->GetFileName();
|
2008-12-09 05:37:15 +00:00
|
|
|
SConfig::GetInstance().SaveSettings();
|
|
|
|
}
|
2010-07-31 14:14:01 +00:00
|
|
|
else
|
2008-12-09 05:37:15 +00:00
|
|
|
{
|
2013-04-19 13:21:45 +00:00
|
|
|
// Otherwise blank the value and save it
|
2015-06-12 11:56:53 +00:00
|
|
|
SConfig::GetInstance().m_strDefaultISO = "";
|
2008-12-09 05:37:15 +00:00
|
|
|
SConfig::GetInstance().SaveSettings();
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2014-09-28 23:05:27 +00:00
|
|
|
void CGameListCtrl::OnDeleteISO(wxCommandEvent& WXUNUSED (event))
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2015-12-17 11:39:32 +00:00
|
|
|
const wxString message = GetSelectedItemCount() == 1 ?
|
|
|
|
_("Are you sure you want to delete this file? It will be gone forever!") :
|
|
|
|
_("Are you sure you want to delete these files? They will be gone forever!");
|
|
|
|
|
|
|
|
if (wxMessageBox(message, _("Warning"), wxYES_NO | wxICON_EXCLAMATION) == wxYES)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2015-12-17 11:39:32 +00:00
|
|
|
for (const GameListItem* iso : GetAllSelectedISOs())
|
2011-03-01 03:06:14 +00:00
|
|
|
File::Delete(iso->GetFileName());
|
2015-12-17 11:39:32 +00:00
|
|
|
Update();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-31 14:14:01 +00:00
|
|
|
void CGameListCtrl::OnProperties(wxCommandEvent& WXUNUSED (event))
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2014-11-14 02:28:27 +00:00
|
|
|
const GameListItem* iso = GetSelectedISO();
|
2008-12-08 05:30:24 +00:00
|
|
|
if (!iso)
|
|
|
|
return;
|
2013-04-08 05:16:50 +00:00
|
|
|
|
2015-09-13 12:17:58 +00:00
|
|
|
CISOProperties* ISOProperties = new CISOProperties(*iso, this);
|
2015-02-24 23:32:17 +00:00
|
|
|
ISOProperties->Show();
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2011-02-25 23:33:11 +00:00
|
|
|
void CGameListCtrl::OnWiki(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
2014-11-14 02:28:27 +00:00
|
|
|
const GameListItem* iso = GetSelectedISO();
|
2011-02-25 23:33:11 +00:00
|
|
|
if (!iso)
|
|
|
|
return;
|
|
|
|
|
2014-11-25 06:06:41 +00:00
|
|
|
std::string wikiUrl = "https://wiki.dolphin-emu.org/dolphin-redirect.php?gameid=" + iso->GetUniqueID();
|
2014-03-12 19:33:41 +00:00
|
|
|
WxUtils::Launch(wikiUrl);
|
2011-02-25 23:33:11 +00:00
|
|
|
}
|
|
|
|
|
2014-11-27 15:53:28 +00:00
|
|
|
bool CGameListCtrl::MultiCompressCB(const std::string& text, float percent, void* arg)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2015-12-17 17:50:09 +00:00
|
|
|
CompressionProgress* progress = static_cast<CompressionProgress*>(arg);
|
|
|
|
|
|
|
|
float total_percent = ((float)progress->items_done + percent) / (float)progress->items_total;
|
|
|
|
wxString text_string(StrToWxStr(StringFromFormat("%s (%i/%i) - %s",
|
|
|
|
progress->current_filename.c_str(), progress->items_done + 1,
|
|
|
|
progress->items_total, text.c_str())));
|
2009-11-18 21:11:05 +00:00
|
|
|
|
2015-12-17 17:50:09 +00:00
|
|
|
return progress->dialog->Update(total_percent * progress->dialog->GetRange(), text_string);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2014-09-28 23:05:27 +00:00
|
|
|
void CGameListCtrl::OnMultiCompressISO(wxCommandEvent& /*event*/)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
CompressSelection(true);
|
|
|
|
}
|
|
|
|
|
2014-09-28 23:05:27 +00:00
|
|
|
void CGameListCtrl::OnMultiDecompressISO(wxCommandEvent& /*event*/)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
CompressSelection(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGameListCtrl::CompressSelection(bool _compress)
|
|
|
|
{
|
2015-12-17 18:00:41 +00:00
|
|
|
std::vector<const GameListItem*> items_to_compress;
|
|
|
|
bool wii_compression_warning_accepted = false;
|
|
|
|
for (const GameListItem* iso : GetAllSelectedISOs())
|
2015-12-17 11:49:23 +00:00
|
|
|
{
|
2015-12-17 18:00:41 +00:00
|
|
|
// Don't include items that we can't do anything with
|
|
|
|
if (iso->GetPlatform() != DiscIO::IVolume::GAMECUBE_DISC && iso->GetPlatform() != DiscIO::IVolume::WII_DISC)
|
|
|
|
continue;
|
|
|
|
if (iso->GetBlobType() != DiscIO::BlobType::PLAIN && iso->GetBlobType() != DiscIO::BlobType::GCZ)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
items_to_compress.push_back(iso);
|
|
|
|
|
|
|
|
// Show the Wii compression warning if it's relevant and it hasn't been shown already
|
|
|
|
if (!wii_compression_warning_accepted && _compress &&
|
|
|
|
!iso->IsCompressed() && iso->GetPlatform() == DiscIO::IVolume::WII_DISC)
|
2015-12-17 11:49:23 +00:00
|
|
|
{
|
2015-12-17 18:00:41 +00:00
|
|
|
if (WiiCompressWarning())
|
|
|
|
wii_compression_warning_accepted = true;
|
|
|
|
else
|
|
|
|
return;
|
2015-12-17 11:49:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
wxString dirHome;
|
|
|
|
wxGetHomeDir(&dirHome);
|
|
|
|
|
2010-07-31 14:14:01 +00:00
|
|
|
wxDirDialog browseDialog(this, _("Browse for output directory"), dirHome,
|
|
|
|
wxDD_DEFAULT_STYLE | wxDD_DIR_MUST_EXIST);
|
2008-12-08 05:30:24 +00:00
|
|
|
if (browseDialog.ShowModal() != wxID_OK)
|
|
|
|
return;
|
|
|
|
|
2013-01-10 01:59:31 +00:00
|
|
|
bool all_good = true;
|
|
|
|
|
|
|
|
{
|
2014-11-14 02:28:27 +00:00
|
|
|
wxProgressDialog progressDialog(
|
|
|
|
_compress ? _("Compressing ISO") : _("Decompressing ISO"),
|
|
|
|
_("Working..."),
|
2015-12-17 17:50:09 +00:00
|
|
|
1000, // Arbitrary number that's larger than the dialog's width in pixels
|
2014-11-14 02:28:27 +00:00
|
|
|
this,
|
|
|
|
wxPD_APP_MODAL |
|
2014-11-27 15:53:28 +00:00
|
|
|
wxPD_CAN_ABORT |
|
2014-11-14 02:28:27 +00:00
|
|
|
wxPD_ELAPSED_TIME | wxPD_ESTIMATED_TIME | wxPD_REMAINING_TIME |
|
|
|
|
wxPD_SMOOTH
|
|
|
|
);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2015-12-17 18:00:41 +00:00
|
|
|
CompressionProgress progress(0, items_to_compress.size(), "", &progressDialog);
|
2015-12-17 11:39:32 +00:00
|
|
|
|
2015-12-17 18:00:41 +00:00
|
|
|
for (const GameListItem* iso : items_to_compress)
|
2014-11-14 02:28:27 +00:00
|
|
|
{
|
2008-12-08 05:30:24 +00:00
|
|
|
if (!iso->IsCompressed() && _compress)
|
|
|
|
{
|
2015-12-17 17:50:09 +00:00
|
|
|
std::string FileName;
|
|
|
|
SplitPath(iso->GetFileName(), nullptr, &FileName, nullptr);
|
|
|
|
progress.current_filename = FileName;
|
2008-12-08 05:30:24 +00:00
|
|
|
FileName.append(".gcz");
|
|
|
|
|
|
|
|
std::string OutputFileName;
|
2010-07-31 14:14:01 +00:00
|
|
|
BuildCompleteFilename(OutputFileName,
|
2013-02-28 04:37:38 +00:00
|
|
|
WxStrToStr(browseDialog.GetPath()),
|
2010-07-31 14:14:01 +00:00
|
|
|
FileName);
|
|
|
|
|
2014-10-10 15:20:10 +00:00
|
|
|
if (File::Exists(OutputFileName) &&
|
2010-08-01 04:09:59 +00:00
|
|
|
wxMessageBox(
|
2011-01-26 04:11:20 +00:00
|
|
|
wxString::Format(_("The file %s already exists.\nDo you wish to replace it?"),
|
2015-10-31 17:44:45 +00:00
|
|
|
StrToWxStr(OutputFileName)),
|
2010-08-01 04:09:59 +00:00
|
|
|
_("Confirm File Overwrite"),
|
|
|
|
wxYES_NO) == wxNO)
|
|
|
|
continue;
|
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
all_good &= DiscIO::CompressFileToBlob(iso->GetFileName(),
|
|
|
|
OutputFileName,
|
2015-06-04 14:26:36 +00:00
|
|
|
(iso->GetPlatform() == DiscIO::IVolume::WII_DISC) ? 1 : 0,
|
2015-12-17 17:50:09 +00:00
|
|
|
16384, &MultiCompressCB, &progress);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
else if (iso->IsCompressed() && !_compress)
|
|
|
|
{
|
2015-12-17 17:50:09 +00:00
|
|
|
std::string FileName;
|
|
|
|
SplitPath(iso->GetFileName(), nullptr, &FileName, nullptr);
|
|
|
|
progress.current_filename = FileName;
|
2015-06-04 14:26:36 +00:00
|
|
|
if (iso->GetPlatform() == DiscIO::IVolume::WII_DISC)
|
2010-05-28 05:30:03 +00:00
|
|
|
FileName.append(".iso");
|
|
|
|
else
|
|
|
|
FileName.append(".gcm");
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
std::string OutputFileName;
|
2010-07-31 14:14:01 +00:00
|
|
|
BuildCompleteFilename(OutputFileName,
|
2013-02-28 04:37:38 +00:00
|
|
|
WxStrToStr(browseDialog.GetPath()),
|
2010-07-31 14:14:01 +00:00
|
|
|
FileName);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-10-10 15:20:10 +00:00
|
|
|
if (File::Exists(OutputFileName) &&
|
2010-08-01 04:09:59 +00:00
|
|
|
wxMessageBox(
|
2011-01-26 04:11:20 +00:00
|
|
|
wxString::Format(_("The file %s already exists.\nDo you wish to replace it?"),
|
2015-10-31 17:44:45 +00:00
|
|
|
StrToWxStr(OutputFileName)),
|
2010-08-01 04:09:59 +00:00
|
|
|
_("Confirm File Overwrite"),
|
|
|
|
wxYES_NO) == wxNO)
|
|
|
|
continue;
|
|
|
|
|
2013-01-10 01:59:31 +00:00
|
|
|
all_good &= DiscIO::DecompressBlobToFile(iso->GetFileName().c_str(),
|
2015-12-17 17:50:09 +00:00
|
|
|
OutputFileName.c_str(), &MultiCompressCB, &progress);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2015-12-17 11:39:32 +00:00
|
|
|
|
2015-12-17 17:50:09 +00:00
|
|
|
progress.items_done++;
|
2014-11-14 02:28:27 +00:00
|
|
|
}
|
2013-01-10 01:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!all_good)
|
2014-07-25 01:46:46 +00:00
|
|
|
WxUtils::ShowErrorDialog(_("Dolphin was unable to complete the requested action."));
|
2013-01-10 01:59:31 +00:00
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
Update();
|
|
|
|
}
|
|
|
|
|
2014-11-27 15:53:28 +00:00
|
|
|
bool CGameListCtrl::CompressCB(const std::string& text, float percent, void* arg)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2014-11-27 15:53:28 +00:00
|
|
|
return ((wxProgressDialog*)arg)->
|
2015-02-15 19:43:31 +00:00
|
|
|
Update((int)(percent * 1000), StrToWxStr(text));
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2014-09-28 23:05:27 +00:00
|
|
|
void CGameListCtrl::OnCompressISO(wxCommandEvent& WXUNUSED (event))
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2014-11-14 02:28:27 +00:00
|
|
|
const GameListItem* iso = GetSelectedISO();
|
2008-12-08 05:30:24 +00:00
|
|
|
if (!iso)
|
|
|
|
return;
|
|
|
|
|
2015-09-27 19:06:19 +00:00
|
|
|
bool is_compressed = iso->GetBlobType() == DiscIO::BlobType::GCZ;
|
2010-08-01 04:09:59 +00:00
|
|
|
wxString path;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2010-08-01 04:09:59 +00:00
|
|
|
std::string FileName, FilePath, FileExtension;
|
|
|
|
SplitPath(iso->GetFileName(), &FilePath, &FileName, &FileExtension);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2010-08-01 04:09:59 +00:00
|
|
|
do
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2015-09-27 19:06:19 +00:00
|
|
|
if (is_compressed)
|
2010-08-01 04:09:59 +00:00
|
|
|
{
|
2010-08-02 01:52:00 +00:00
|
|
|
wxString FileType;
|
2015-06-04 14:26:36 +00:00
|
|
|
if (iso->GetPlatform() == DiscIO::IVolume::WII_DISC)
|
2014-05-17 17:17:28 +00:00
|
|
|
FileType = _("All Wii ISO files (iso)") + "|*.iso";
|
2010-08-01 04:09:59 +00:00
|
|
|
else
|
2014-06-07 02:30:39 +00:00
|
|
|
FileType = _("All GameCube GCM files (gcm)") + "|*.gcm";
|
2010-08-01 04:09:59 +00:00
|
|
|
|
|
|
|
path = wxFileSelector(
|
2011-01-05 04:35:46 +00:00
|
|
|
_("Save decompressed GCM/ISO"),
|
2013-02-28 04:37:38 +00:00
|
|
|
StrToWxStr(FilePath),
|
|
|
|
StrToWxStr(FileName) + FileType.After('*'),
|
2010-08-01 04:09:59 +00:00
|
|
|
wxEmptyString,
|
2014-05-17 17:17:28 +00:00
|
|
|
FileType + "|" + wxGetTranslation(wxALL_FILES),
|
2010-08-01 04:09:59 +00:00
|
|
|
wxFD_SAVE,
|
|
|
|
this);
|
|
|
|
}
|
2010-05-28 05:30:03 +00:00
|
|
|
else
|
2010-08-01 04:09:59 +00:00
|
|
|
{
|
2015-10-31 17:44:45 +00:00
|
|
|
if (iso->GetPlatform() == DiscIO::IVolume::WII_DISC && !WiiCompressWarning())
|
|
|
|
return;
|
|
|
|
|
2010-08-01 04:09:59 +00:00
|
|
|
path = wxFileSelector(
|
2011-01-05 04:35:46 +00:00
|
|
|
_("Save compressed GCM/ISO"),
|
2013-02-28 04:37:38 +00:00
|
|
|
StrToWxStr(FilePath),
|
2014-05-17 17:17:28 +00:00
|
|
|
StrToWxStr(FileName) + ".gcz",
|
2010-08-01 04:09:59 +00:00
|
|
|
wxEmptyString,
|
2013-10-29 05:23:17 +00:00
|
|
|
_("All compressed GC/Wii ISO files (gcz)") +
|
2014-05-17 17:17:28 +00:00
|
|
|
wxString::Format("|*.gcz|%s", wxGetTranslation(wxALL_FILES)),
|
2010-08-01 04:09:59 +00:00
|
|
|
wxFD_SAVE,
|
|
|
|
this);
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
if (!path)
|
|
|
|
return;
|
2010-08-01 04:09:59 +00:00
|
|
|
} while (wxFileExists(path) &&
|
|
|
|
wxMessageBox(
|
2013-10-29 05:23:17 +00:00
|
|
|
wxString::Format(_("The file %s already exists.\nDo you wish to replace it?"), path.c_str()),
|
2010-08-01 04:09:59 +00:00
|
|
|
_("Confirm File Overwrite"),
|
|
|
|
wxYES_NO) == wxNO);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2013-01-10 01:59:31 +00:00
|
|
|
bool all_good = false;
|
|
|
|
|
|
|
|
{
|
2012-03-25 03:59:20 +00:00
|
|
|
wxProgressDialog dialog(
|
2015-09-27 19:06:19 +00:00
|
|
|
is_compressed ? _("Decompressing ISO") : _("Compressing ISO"),
|
2012-03-25 03:59:20 +00:00
|
|
|
_("Working..."),
|
|
|
|
1000,
|
|
|
|
this,
|
|
|
|
wxPD_APP_MODAL |
|
2014-11-27 15:53:28 +00:00
|
|
|
wxPD_CAN_ABORT |
|
2012-03-25 03:59:20 +00:00
|
|
|
wxPD_ELAPSED_TIME | wxPD_ESTIMATED_TIME | wxPD_REMAINING_TIME |
|
|
|
|
wxPD_SMOOTH
|
|
|
|
);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2013-01-10 01:59:31 +00:00
|
|
|
|
2015-09-27 19:06:19 +00:00
|
|
|
if (is_compressed)
|
2014-03-12 19:33:41 +00:00
|
|
|
all_good = DiscIO::DecompressBlobToFile(iso->GetFileName(),
|
|
|
|
WxStrToStr(path), &CompressCB, &dialog);
|
2008-12-08 05:30:24 +00:00
|
|
|
else
|
2014-03-12 19:33:41 +00:00
|
|
|
all_good = DiscIO::CompressFileToBlob(iso->GetFileName(),
|
|
|
|
WxStrToStr(path),
|
2015-06-04 14:26:36 +00:00
|
|
|
(iso->GetPlatform() == DiscIO::IVolume::WII_DISC) ? 1 : 0,
|
2010-07-31 14:14:01 +00:00
|
|
|
16384, &CompressCB, &dialog);
|
2013-01-10 01:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!all_good)
|
2014-07-25 01:46:46 +00:00
|
|
|
WxUtils::ShowErrorDialog(_("Dolphin was unable to complete the requested action."));
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
Update();
|
|
|
|
}
|
|
|
|
|
2014-06-24 04:07:46 +00:00
|
|
|
void CGameListCtrl::OnChangeDisc(wxCommandEvent& WXUNUSED(event))
|
|
|
|
{
|
2014-11-14 02:28:27 +00:00
|
|
|
const GameListItem* iso = GetSelectedISO();
|
2014-06-24 04:07:46 +00:00
|
|
|
if (!iso || !Core::IsRunning())
|
|
|
|
return;
|
|
|
|
DVDInterface::ChangeDisc(WxStrToStr(iso->GetFileName()));
|
|
|
|
}
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
void CGameListCtrl::OnSize(wxSizeEvent& event)
|
|
|
|
{
|
2013-04-08 05:16:50 +00:00
|
|
|
if (lastpos == event.GetSize())
|
|
|
|
return;
|
|
|
|
|
2009-07-27 04:26:56 +00:00
|
|
|
lastpos = event.GetSize();
|
2008-12-08 05:30:24 +00:00
|
|
|
AutomaticColumnWidth();
|
|
|
|
|
|
|
|
event.Skip();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGameListCtrl::AutomaticColumnWidth()
|
|
|
|
{
|
2010-07-31 14:14:01 +00:00
|
|
|
wxRect rc(GetClientRect());
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
if (GetColumnCount() == 1)
|
2013-04-08 05:16:50 +00:00
|
|
|
{
|
2008-12-08 05:30:24 +00:00
|
|
|
SetColumnWidth(0, rc.GetWidth());
|
2013-04-08 05:16:50 +00:00
|
|
|
}
|
2014-06-20 11:40:04 +00:00
|
|
|
else if (GetColumnCount() > 0)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-03-18 17:17:58 +00:00
|
|
|
int resizable = rc.GetWidth() - (
|
2014-06-04 13:54:48 +00:00
|
|
|
GetColumnWidth(COLUMN_PLATFORM)
|
|
|
|
+ GetColumnWidth(COLUMN_BANNER)
|
|
|
|
+ GetColumnWidth(COLUMN_ID)
|
2009-03-18 17:17:58 +00:00
|
|
|
+ GetColumnWidth(COLUMN_COUNTRY)
|
|
|
|
+ GetColumnWidth(COLUMN_SIZE)
|
2014-06-04 13:54:48 +00:00
|
|
|
+ GetColumnWidth(COLUMN_EMULATION_STATE));
|
2009-09-25 16:29:00 +00:00
|
|
|
|
2016-02-27 13:39:55 +00:00
|
|
|
if (SConfig::GetInstance().m_showMakerColumn &&
|
|
|
|
SConfig::GetInstance().m_showFileNameColumn)
|
2009-09-25 16:29:00 +00:00
|
|
|
{
|
2016-02-27 13:39:55 +00:00
|
|
|
SetColumnWidth(COLUMN_TITLE, resizable / 3);
|
|
|
|
SetColumnWidth(COLUMN_MAKER, resizable / 3);
|
|
|
|
SetColumnWidth(COLUMN_FILENAME, resizable / 3);
|
2009-09-25 16:29:00 +00:00
|
|
|
}
|
2016-02-27 13:39:55 +00:00
|
|
|
else if (SConfig::GetInstance().m_showMakerColumn)
|
2009-09-25 16:29:00 +00:00
|
|
|
{
|
2016-02-27 13:39:55 +00:00
|
|
|
SetColumnWidth(COLUMN_TITLE, resizable / 2);
|
|
|
|
SetColumnWidth(COLUMN_MAKER, resizable / 2);
|
2009-09-25 16:29:00 +00:00
|
|
|
}
|
2016-02-27 13:39:55 +00:00
|
|
|
else if (SConfig::GetInstance().m_showFileNameColumn)
|
2015-10-08 13:27:28 +00:00
|
|
|
{
|
2016-02-27 13:39:55 +00:00
|
|
|
SetColumnWidth(COLUMN_TITLE, resizable / 2);
|
|
|
|
SetColumnWidth(COLUMN_FILENAME, resizable / 2);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SetColumnWidth(COLUMN_TITLE, resizable);
|
2009-09-25 16:29:00 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGameListCtrl::UnselectAll()
|
|
|
|
{
|
2015-02-15 19:43:31 +00:00
|
|
|
for (int i = 0; i < GetItemCount(); i++)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
SetItemState(i, 0, wxLIST_STATE_SELECTED);
|
|
|
|
}
|
|
|
|
}
|
2015-10-31 17:44:45 +00:00
|
|
|
bool CGameListCtrl::WiiCompressWarning()
|
|
|
|
{
|
|
|
|
return wxMessageBox(
|
|
|
|
_("Compressing a Wii disc image will irreversibly change the compressed copy by removing padding data. Your disc image will still work. Continue?"),
|
|
|
|
_("Warning"),
|
|
|
|
wxYES_NO) == wxYES;
|
|
|
|
}
|