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 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>
|
|
|
|
#include <vector>
|
|
|
|
#include <wx/app.h>
|
|
|
|
#include <wx/bitmap.h>
|
|
|
|
#include <wx/buffer.h>
|
|
|
|
#include <wx/chartype.h>
|
|
|
|
#include <wx/colour.h>
|
|
|
|
#include <wx/defs.h>
|
|
|
|
#include <wx/dirdlg.h>
|
|
|
|
#include <wx/event.h>
|
|
|
|
#include <wx/filedlg.h>
|
|
|
|
#include <wx/filefn.h>
|
2014-02-19 01:56:29 +00:00
|
|
|
#include <wx/filename.h>
|
2014-02-22 22:36:30 +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/listbase.h>
|
|
|
|
#include <wx/listctrl.h>
|
|
|
|
#include <wx/menu.h>
|
|
|
|
#include <wx/menuitem.h>
|
|
|
|
#include <wx/msgdlg.h>
|
|
|
|
#include <wx/progdlg.h>
|
|
|
|
#include <wx/settings.h>
|
|
|
|
#include <wx/string.h>
|
|
|
|
#include <wx/tipwin.h>
|
|
|
|
#include <wx/translation.h>
|
|
|
|
#include <wx/unichar.h>
|
|
|
|
#include <wx/utils.h>
|
|
|
|
#include <wx/version.h>
|
|
|
|
#include <wx/window.h>
|
|
|
|
#include <wx/windowid.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"
|
2014-05-06 10:35:50 +00:00
|
|
|
#include "Common/StdMakeUnique.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#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/CoreParameter.h"
|
|
|
|
#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"
|
2014-10-26 21:47:07 +00:00
|
|
|
#include "DolphinWX/resources/Flag_Australia.xpm"
|
2014-02-18 11:09:38 +00:00
|
|
|
#include "DolphinWX/resources/Flag_Europe.xpm"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DolphinWX/resources/Flag_France.xpm"
|
2014-02-19 01:56:29 +00:00
|
|
|
#include "DolphinWX/resources/Flag_Germany.xpm"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DolphinWX/resources/Flag_Italy.xpm"
|
|
|
|
#include "DolphinWX/resources/Flag_Japan.xpm"
|
|
|
|
#include "DolphinWX/resources/Flag_Korea.xpm"
|
2014-10-26 21:47:07 +00:00
|
|
|
#include "DolphinWX/resources/Flag_Russia.xpm"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DolphinWX/resources/Flag_SDK.xpm"
|
2014-02-19 01:56:29 +00:00
|
|
|
#include "DolphinWX/resources/Flag_Taiwan.xpm"
|
|
|
|
#include "DolphinWX/resources/Flag_Unknown.xpm"
|
|
|
|
#include "DolphinWX/resources/Flag_USA.xpm"
|
|
|
|
#include "DolphinWX/resources/Platform_Gamecube.xpm"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DolphinWX/resources/Platform_Wad.xpm"
|
|
|
|
#include "DolphinWX/resources/Platform_Wii.xpm"
|
|
|
|
#include "DolphinWX/resources/rating_gamelist.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
size_t CGameListCtrl::m_currentItem = 0;
|
|
|
|
size_t CGameListCtrl::m_numberItem = 0;
|
|
|
|
std::string CGameListCtrl::m_currentFilename;
|
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;
|
|
|
|
}
|
|
|
|
|
2009-02-03 15:03:34 +00:00
|
|
|
int indexOne = 0;
|
|
|
|
int indexOther = 0;
|
|
|
|
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-09-14 22:07:53 +00:00
|
|
|
// index only matters for WADS and PAL GC games, but invalid indicies for the others
|
|
|
|
// will return the (only) language in the list
|
|
|
|
if (iso1->GetPlatform() == GameListItem::WII_WAD)
|
2009-02-03 15:03:34 +00:00
|
|
|
{
|
2013-09-14 22:07:53 +00:00
|
|
|
indexOne = SConfig::GetInstance().m_SYSCONF->GetData<u8>("IPL.LNG");
|
|
|
|
}
|
2014-02-17 04:51:41 +00:00
|
|
|
else // GC
|
|
|
|
{
|
2013-09-14 22:07:53 +00:00
|
|
|
indexOne = SConfig::GetInstance().m_LocalCoreStartupParameter.SelectedLanguage;
|
2009-02-03 15:03:34 +00:00
|
|
|
}
|
|
|
|
|
2013-09-14 22:07:53 +00:00
|
|
|
if (iso2->GetPlatform() == GameListItem::WII_WAD)
|
2009-02-03 15:03:34 +00:00
|
|
|
{
|
2013-09-14 22:07:53 +00:00
|
|
|
indexOther = SConfig::GetInstance().m_SYSCONF->GetData<u8>("IPL.LNG");
|
|
|
|
}
|
2014-02-17 04:51:41 +00:00
|
|
|
else // GC
|
|
|
|
{
|
2013-09-14 22:07:53 +00:00
|
|
|
indexOther = SConfig::GetInstance().m_LocalCoreStartupParameter.SelectedLanguage;
|
2009-02-03 15:03:34 +00:00
|
|
|
}
|
|
|
|
|
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:
|
2013-01-25 08:07:50 +00:00
|
|
|
if (!strcasecmp(iso1->GetName(indexOne).c_str(),iso2->GetName(indexOther).c_str()))
|
|
|
|
{
|
2013-01-26 02:28:04 +00:00
|
|
|
if (iso1->IsDiscTwo())
|
2013-01-25 08:07:50 +00:00
|
|
|
return 1 * t;
|
2013-01-26 02:28:04 +00:00
|
|
|
else if (iso2->IsDiscTwo())
|
2013-01-25 08:07:50 +00:00
|
|
|
return -1 * t;
|
|
|
|
}
|
2011-11-02 01:16:49 +00:00
|
|
|
return strcasecmp(iso1->GetName(indexOne).c_str(),
|
|
|
|
iso2->GetName(indexOther).c_str()) * t;
|
2011-12-18 12:58:44 +00:00
|
|
|
case CGameListCtrl::COLUMN_NOTES:
|
|
|
|
{
|
|
|
|
std::string cmp1 =
|
|
|
|
(iso1->GetPlatform() == GameListItem::GAMECUBE_DISC) ?
|
|
|
|
iso1->GetCompany() : iso1->GetDescription(indexOne);
|
|
|
|
std::string cmp2 =
|
|
|
|
(iso2->GetPlatform() == GameListItem::GAMECUBE_DISC) ?
|
|
|
|
iso2->GetCompany() : iso2->GetDescription(indexOther);
|
|
|
|
return strcasecmp(cmp1.c_str(), cmp2.c_str()) * t;
|
|
|
|
}
|
2014-06-04 13:54:48 +00:00
|
|
|
case CGameListCtrl::COLUMN_ID:
|
|
|
|
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);
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnWiki, this, IDM_GAMEWIKI);
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnOpenContainingFolder, this, IDM_OPENCONTAININGFOLDER);
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnOpenSaveFolder, this, IDM_OPENSAVEFOLDER);
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnExportSave, this, IDM_EXPORTSAVE);
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnSetDefaultISO, this, IDM_SETDEFAULTISO);
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnCompressISO, this, IDM_COMPRESSISO);
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnMultiCompressISO, this, IDM_MULTICOMPRESSISO);
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnMultiDecompressISO, this, IDM_MULTIDECOMPRESSISO);
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnDeleteISO, this, IDM_DELETEISO);
|
|
|
|
Bind(wxEVT_MENU, &CGameListCtrl::OnChangeDisc, this, IDM_LIST_CHANGEDISC);
|
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()
|
|
|
|
{
|
|
|
|
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);
|
2014-10-26 21:47:07 +00:00
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_EUROPE] = m_imageListSmall->Add(wxBitmap(Flag_Europe_xpm));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_GERMANY] = m_imageListSmall->Add(wxBitmap(Flag_Germany_xpm));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_FRANCE] = m_imageListSmall->Add(wxBitmap(Flag_France_xpm));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_USA] = m_imageListSmall->Add(wxBitmap(Flag_USA_xpm));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_JAPAN] = m_imageListSmall->Add(wxBitmap(Flag_Japan_xpm));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_KOREA] = m_imageListSmall->Add(wxBitmap(Flag_Korea_xpm));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_ITALY] = m_imageListSmall->Add(wxBitmap(Flag_Italy_xpm));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_TAIWAN] = m_imageListSmall->Add(wxBitmap(Flag_Taiwan_xpm));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_RUSSIA] = m_imageListSmall->Add(wxBitmap(Flag_Russia_xpm));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_AUSTRALIA] = m_imageListSmall->Add(wxBitmap(Flag_Australia_xpm));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_SDK] = m_imageListSmall->Add(wxBitmap(Flag_SDK_xpm));
|
|
|
|
m_FlagImageIndex[DiscIO::IVolume::COUNTRY_UNKNOWN] = m_imageListSmall->Add(wxBitmap(Flag_Unknown_xpm));
|
2009-05-27 06:41:01 +00:00
|
|
|
|
2009-06-07 02:27:36 +00:00
|
|
|
m_PlatformImageIndex.resize(3);
|
2014-03-06 04:02:34 +00:00
|
|
|
m_PlatformImageIndex[0] = m_imageListSmall->Add(wxBitmap(Platform_Gamecube_xpm));
|
|
|
|
m_PlatformImageIndex[1] = m_imageListSmall->Add(wxBitmap(Platform_Wii_xpm));
|
|
|
|
m_PlatformImageIndex[2] = m_imageListSmall->Add(wxBitmap(Platform_Wad_xpm));
|
2009-09-25 16:29:00 +00:00
|
|
|
|
|
|
|
m_EmuStateImageIndex.resize(6);
|
2014-03-06 04:02:34 +00:00
|
|
|
m_EmuStateImageIndex[0] = m_imageListSmall->Add(wxBitmap(rating_0));
|
|
|
|
m_EmuStateImageIndex[1] = m_imageListSmall->Add(wxBitmap(rating_1));
|
|
|
|
m_EmuStateImageIndex[2] = m_imageListSmall->Add(wxBitmap(rating_2));
|
|
|
|
m_EmuStateImageIndex[3] = m_imageListSmall->Add(wxBitmap(rating_3));
|
|
|
|
m_EmuStateImageIndex[4] = m_imageListSmall->Add(wxBitmap(rating_4));
|
|
|
|
m_EmuStateImageIndex[5] = m_imageListSmall->Add(wxBitmap(rating_5));
|
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
|
|
|
|
|
|
|
// Instead of showing the notes + the company, which is unknown with
|
2014-11-14 02:28:27 +00:00
|
|
|
// Wii titles We show in the same column : company for GC games and
|
|
|
|
// description for Wii/wad games
|
2011-12-18 12:58:44 +00:00
|
|
|
InsertColumn(COLUMN_NOTES, _("Notes"));
|
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
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
// set initial sizes for columns
|
2012-12-17 11:08:45 +00:00
|
|
|
SetColumnWidth(COLUMN_DUMMY,0);
|
2014-06-04 13:54:48 +00:00
|
|
|
SetColumnWidth(COLUMN_PLATFORM, SConfig::GetInstance().m_showSystemColumn ? 35 + platform_padding : 0);
|
|
|
|
SetColumnWidth(COLUMN_BANNER, SConfig::GetInstance().m_showBannerColumn ? 96 + platform_padding : 0);
|
|
|
|
SetColumnWidth(COLUMN_TITLE, 175 + platform_padding);
|
|
|
|
SetColumnWidth(COLUMN_NOTES, SConfig::GetInstance().m_showNotesColumn ? 150 + platform_padding : 0);
|
|
|
|
SetColumnWidth(COLUMN_ID, SConfig::GetInstance().m_showIDColumn ? 75 + platform_padding : 0);
|
|
|
|
SetColumnWidth(COLUMN_COUNTRY, SConfig::GetInstance().m_showRegionColumn ? 32 + platform_padding : 0);
|
|
|
|
SetColumnWidth(COLUMN_EMULATION_STATE, SConfig::GetInstance().m_showStateColumn ? 50 + 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
|
|
|
|
// second message instead
|
2009-09-25 16:29:00 +00:00
|
|
|
if ((SConfig::GetInstance().m_ListGC &&
|
|
|
|
SConfig::GetInstance().m_ListWii &&
|
2009-06-09 05:08:58 +00:00
|
|
|
SConfig::GetInstance().m_ListWad) &&
|
2009-09-25 16:29:00 +00:00
|
|
|
(SConfig::GetInstance().m_ListJap &&
|
|
|
|
SConfig::GetInstance().m_ListUsa &&
|
2009-06-09 05:08:58 +00:00
|
|
|
SConfig::GetInstance().m_ListPal))
|
|
|
|
{
|
2014-10-03 17:40:39 +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
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-10-03 17:40:39 +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
|
|
|
}
|
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;
|
2014-02-24 09:20:53 +00:00
|
|
|
const u64 unit_size = (1 << (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
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2009-12-28 19:34:19 +00:00
|
|
|
int ImageIndex = -1;
|
2011-01-27 23:59:12 +00:00
|
|
|
|
2011-03-22 07:27:23 +00:00
|
|
|
GameListItem& rISOFile = *m_ISOFiles[_Index];
|
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);
|
|
|
|
|
|
|
|
// Insert the platform's image in the first (visible) column
|
|
|
|
SetItemColumnImage(_Index, COLUMN_PLATFORM, m_PlatformImageIndex[rISOFile.GetPlatform()]);
|
2009-09-25 16:29:00 +00:00
|
|
|
|
2013-09-25 07:05:36 +00:00
|
|
|
if (rISOFile.GetBitmap().IsOk())
|
|
|
|
ImageIndex = m_imageListSmall->Add(rISOFile.GetBitmap());
|
2009-12-28 19:34:19 +00:00
|
|
|
|
2009-09-25 16:29:00 +00:00
|
|
|
// Set the game's banner in the second column
|
|
|
|
SetItemColumnImage(_Index, COLUMN_BANNER, ImageIndex);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2011-12-20 10:19:46 +00:00
|
|
|
int SelectedLanguage = SConfig::GetInstance().m_LocalCoreStartupParameter.SelectedLanguage;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2013-03-03 23:56:40 +00:00
|
|
|
// Is this sane?
|
2013-09-14 22:07:53 +00:00
|
|
|
if (rISOFile.GetPlatform() == GameListItem::WII_WAD)
|
2011-12-19 06:01:46 +00:00
|
|
|
{
|
2013-09-14 22:07:53 +00:00
|
|
|
SelectedLanguage = SConfig::GetInstance().m_SYSCONF->GetData<u8>("IPL.LNG");
|
2009-12-28 19:34:19 +00:00
|
|
|
}
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2014-10-22 21:25:00 +00:00
|
|
|
std::string name = rISOFile.GetName(SelectedLanguage);
|
|
|
|
|
|
|
|
std::ifstream titlestxt;
|
|
|
|
OpenFStream(titlestxt, File::GetUserPath(D_LOAD_IDX) + "titles.txt", std::ios::in);
|
|
|
|
|
|
|
|
if (titlestxt.is_open() && rISOFile.GetUniqueID().size() > 3)
|
|
|
|
{
|
|
|
|
while (!titlestxt.eof())
|
|
|
|
{
|
|
|
|
std::string line;
|
|
|
|
|
|
|
|
if (!std::getline(titlestxt, line) && titlestxt.eof())
|
2014-11-14 02:28:27 +00:00
|
|
|
break;
|
2014-10-22 21:25:00 +00:00
|
|
|
|
|
|
|
if (line.substr(0,rISOFile.GetUniqueID().size()) == rISOFile.GetUniqueID())
|
|
|
|
{
|
|
|
|
name = line.substr(rISOFile.GetUniqueID().size() + 3);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
titlestxt.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string GameIni[3];
|
|
|
|
GameIni[0] = File::GetUserPath(D_GAMESETTINGS_IDX) + rISOFile.GetUniqueID() + ".ini";
|
|
|
|
GameIni[1] = File::GetSysDirectory() + GAMESETTINGS_DIR DIR_SEP + rISOFile.GetUniqueID() + std::to_string(rISOFile.GetRevision()) + ".ini";
|
|
|
|
GameIni[2] = File::GetSysDirectory() + GAMESETTINGS_DIR DIR_SEP + rISOFile.GetUniqueID() + ".ini";
|
|
|
|
std::string title;
|
|
|
|
IniFile gameini;
|
|
|
|
for (int i = 0; i < 3; ++i)
|
|
|
|
{
|
|
|
|
if (File::Exists(GameIni[i]))
|
|
|
|
{
|
|
|
|
gameini.Load(GameIni[i]);
|
|
|
|
if (gameini.GetIfExists("EmuState", "Title", &title))
|
|
|
|
{
|
|
|
|
name = title;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-03 01:46:55 +00:00
|
|
|
SetItem(_Index, COLUMN_TITLE, StrToWxStr(name), -1);
|
2013-03-02 01:33:17 +00:00
|
|
|
|
2014-06-07 02:30:39 +00:00
|
|
|
// We show the company string on GameCube only
|
2013-03-02 01:33:17 +00:00
|
|
|
// On Wii we show the description instead as the company string is empty
|
|
|
|
std::string const notes = (rISOFile.GetPlatform() == GameListItem::GAMECUBE_DISC) ?
|
|
|
|
rISOFile.GetCompany() : rISOFile.GetDescription(SelectedLanguage);
|
|
|
|
SetItem(_Index, COLUMN_NOTES, StrToWxStr(notes), -1);
|
2011-12-19 06:01:46 +00:00
|
|
|
|
2010-02-21 19:19:16 +00:00
|
|
|
// Emulation state
|
2011-03-23 04:31:00 +00:00
|
|
|
SetItemColumnImage(_Index, COLUMN_EMULATION_STATE, m_EmuStateImageIndex[rISOFile.GetEmuState()]);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
// Country
|
2009-03-23 21:19:43 +00:00
|
|
|
SetItemColumnImage(_Index, COLUMN_COUNTRY, m_FlagImageIndex[rISOFile.GetCountry()]);
|
2010-02-21 19:19:16 +00:00
|
|
|
|
|
|
|
// File size
|
|
|
|
SetItem(_Index, COLUMN_SIZE, NiceSizeFormat(rISOFile.GetFileSize()), -1);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-06-04 13:54:48 +00:00
|
|
|
// Game ID
|
|
|
|
SetItem(_Index, COLUMN_ID, rISOFile.GetUniqueID(), -1);
|
|
|
|
|
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();
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
CFileSearch::XStringVector Directories(SConfig::GetInstance().m_ISOFolder);
|
|
|
|
|
2009-04-08 20:26:33 +00:00
|
|
|
if (SConfig::GetInstance().m_RecursiveISOFolder)
|
2009-04-05 06:46:18 +00:00
|
|
|
{
|
|
|
|
for (u32 i = 0; i < Directories.size(); i++)
|
|
|
|
{
|
|
|
|
File::FSTEntry FST_Temp;
|
2011-03-01 03:06:14 +00:00
|
|
|
File::ScanDirectoryTree(Directories[i], FST_Temp);
|
2013-10-29 05:09:01 +00:00
|
|
|
for (auto& Entry : FST_Temp.children)
|
2009-04-05 06:46:18 +00:00
|
|
|
{
|
2013-10-29 05:09:01 +00:00
|
|
|
if (Entry.isDirectory)
|
2009-04-06 06:58:00 +00:00
|
|
|
{
|
|
|
|
bool duplicate = false;
|
2013-10-29 05:09:01 +00:00
|
|
|
for (auto& Directory : Directories)
|
2009-04-06 06:58:00 +00:00
|
|
|
{
|
2014-03-12 19:33:41 +00:00
|
|
|
if (Directory == Entry.physicalName)
|
2009-04-06 06:58:00 +00:00
|
|
|
{
|
|
|
|
duplicate = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!duplicate)
|
2014-03-12 19:33:41 +00:00
|
|
|
Directories.push_back(Entry.physicalName);
|
2009-04-06 06:58:00 +00:00
|
|
|
}
|
2009-04-05 06:46:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
CFileSearch::XStringVector Extensions;
|
2009-06-07 17:22:29 +00:00
|
|
|
|
|
|
|
if (SConfig::GetInstance().m_ListGC)
|
|
|
|
Extensions.push_back("*.gcm");
|
|
|
|
if (SConfig::GetInstance().m_ListWii || SConfig::GetInstance().m_ListGC)
|
|
|
|
{
|
|
|
|
Extensions.push_back("*.iso");
|
2010-12-29 14:42:20 +00:00
|
|
|
Extensions.push_back("*.ciso");
|
2009-06-07 17:22:29 +00:00
|
|
|
Extensions.push_back("*.gcz");
|
2012-05-03 14:09:01 +00:00
|
|
|
Extensions.push_back("*.wbfs");
|
2009-06-07 17:22:29 +00:00
|
|
|
}
|
|
|
|
if (SConfig::GetInstance().m_ListWad)
|
|
|
|
Extensions.push_back("*.wad");
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
CFileSearch FileSearch(Extensions, Directories);
|
|
|
|
const CFileSearch::XStringVector& rFilenames = FileSearch.GetFileNames();
|
|
|
|
|
|
|
|
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
|
|
|
|
2014-05-06 10:35:50 +00:00
|
|
|
auto iso_file = std::make_unique<GameListItem>(rFilenames[i]);
|
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
|
|
|
{
|
2010-07-31 14:14:01 +00:00
|
|
|
case GameListItem::WII_DISC:
|
|
|
|
if (!SConfig::GetInstance().m_ListWii)
|
|
|
|
list = false;
|
|
|
|
break;
|
|
|
|
case GameListItem::WII_WAD:
|
|
|
|
if (!SConfig::GetInstance().m_ListWad)
|
|
|
|
list = false;
|
|
|
|
break;
|
|
|
|
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
|
|
|
{
|
2010-07-31 14:14:01 +00:00
|
|
|
case DiscIO::IVolume::COUNTRY_TAIWAN:
|
|
|
|
if (!SConfig::GetInstance().m_ListTaiwan)
|
|
|
|
list = false;
|
2014-09-12 15:52:36 +00:00
|
|
|
break;
|
2010-07-31 14:14:01 +00:00
|
|
|
case DiscIO::IVolume::COUNTRY_KOREA:
|
|
|
|
if (!SConfig::GetInstance().m_ListKorea)
|
|
|
|
list = false;
|
|
|
|
break;
|
|
|
|
case DiscIO::IVolume::COUNTRY_JAPAN:
|
|
|
|
if (!SConfig::GetInstance().m_ListJap)
|
|
|
|
list = false;
|
|
|
|
break;
|
|
|
|
case DiscIO::IVolume::COUNTRY_USA:
|
|
|
|
if (!SConfig::GetInstance().m_ListUsa)
|
|
|
|
list = false;
|
|
|
|
break;
|
|
|
|
case DiscIO::IVolume::COUNTRY_FRANCE:
|
|
|
|
if (!SConfig::GetInstance().m_ListFrance)
|
|
|
|
list = false;
|
|
|
|
break;
|
|
|
|
case DiscIO::IVolume::COUNTRY_ITALY:
|
|
|
|
if (!SConfig::GetInstance().m_ListItaly)
|
|
|
|
list = false;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (!SConfig::GetInstance().m_ListPal)
|
|
|
|
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
|
|
|
{
|
2014-05-06 10:35:50 +00:00
|
|
|
auto gli = std::make_unique<GameListItem>(drive);
|
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)
|
|
|
|
{
|
2011-12-18 12:58:44 +00:00
|
|
|
if (event.GetColumn() != COLUMN_TITLE && event.GetColumn() != COLUMN_NOTES)
|
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
|
|
|
#ifdef __WXGTK__
|
|
|
|
if (text.MakeLower()[0] == event.GetKeyCode())
|
|
|
|
#else
|
|
|
|
if (text.MakeUpper()[0] == event.GetKeyCode())
|
|
|
|
#endif
|
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;
|
|
|
|
popupMenu.Append(IDM_PROPERTIES, _("&Properties"));
|
|
|
|
popupMenu.Append(IDM_GAMEWIKI, _("&Wiki"));
|
|
|
|
popupMenu.AppendSeparator();
|
2009-06-07 02:27:36 +00:00
|
|
|
|
|
|
|
if (selected_iso->GetPlatform() != GameListItem::GAMECUBE_DISC)
|
2010-01-14 07:19:10 +00:00
|
|
|
{
|
2014-11-11 14:50:11 +00:00
|
|
|
popupMenu.Append(IDM_OPENSAVEFOLDER, _("Open Wii &save folder"));
|
|
|
|
popupMenu.Append(IDM_EXPORTSAVE, _("Export Wii save (Experimental)"));
|
2010-01-14 07:19:10 +00:00
|
|
|
}
|
2014-11-11 14:50:11 +00:00
|
|
|
popupMenu.Append(IDM_OPENCONTAININGFOLDER, _("Open &containing folder"));
|
|
|
|
popupMenu.AppendCheckItem(IDM_SETDEFAULTISO, _("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
|
2014-03-10 11:30:55 +00:00
|
|
|
if (selected_iso->GetFileName() == SConfig::GetInstance().
|
2014-10-20 21:49:33 +00:00
|
|
|
m_LocalCoreStartupParameter.m_strDefaultISO)
|
2014-11-11 14:50:11 +00:00
|
|
|
popupMenu.FindItem(IDM_SETDEFAULTISO)->Check();
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-11-11 14:50:11 +00:00
|
|
|
popupMenu.AppendSeparator();
|
|
|
|
popupMenu.Append(IDM_DELETEISO, _("&Delete ISO..."));
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-06-07 02:27:36 +00:00
|
|
|
if (selected_iso->GetPlatform() != GameListItem::WII_WAD)
|
|
|
|
{
|
|
|
|
if (selected_iso->IsCompressed())
|
2014-11-11 14:50:11 +00:00
|
|
|
popupMenu.Append(IDM_COMPRESSISO, _("Decompress ISO..."));
|
2014-03-10 11:30:55 +00:00
|
|
|
else if (selected_iso->GetFileName().substr(selected_iso->GetFileName().find_last_of(".")) != ".ciso" &&
|
|
|
|
selected_iso->GetFileName().substr(selected_iso->GetFileName().find_last_of(".")) != ".wbfs")
|
2014-11-11 14:50:11 +00:00
|
|
|
popupMenu.Append(IDM_COMPRESSISO, _("Compress ISO..."));
|
2013-04-08 05:16:50 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-11-11 14:50:11 +00:00
|
|
|
popupMenu.Append(IDM_LIST_INSTALLWAD, _("Install to Wii Menu"));
|
2013-04-08 05:16:50 +00:00
|
|
|
}
|
2014-06-24 04:07:46 +00:00
|
|
|
if (selected_iso->GetPlatform() == GameListItem::GAMECUBE_DISC ||
|
|
|
|
selected_iso->GetPlatform() == GameListItem::WII_DISC)
|
|
|
|
{
|
2014-11-11 14:50:11 +00:00
|
|
|
wxMenuItem* changeDiscItem = popupMenu.Append(IDM_LIST_CHANGEDISC, _("Change &Disc"));
|
2014-06-24 04:07:46 +00:00
|
|
|
changeDiscItem->Enable(Core::IsRunning());
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
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;
|
|
|
|
popupMenu.Append(IDM_DELETEISO, _("&Delete selected ISOs..."));
|
|
|
|
popupMenu.AppendSeparator();
|
|
|
|
popupMenu.Append(IDM_MULTICOMPRESSISO, _("Compress selected ISOs..."));
|
|
|
|
popupMenu.Append(IDM_MULTIDECOMPRESSISO, _("Decompress selected ISOs..."));
|
|
|
|
PopupMenu(&popupMenu);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const GameListItem * CGameListCtrl::GetSelectedISO()
|
|
|
|
{
|
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)
|
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
|
|
|
}
|
2009-01-19 01:30:54 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// Here is a little workaround for multiselections:
|
|
|
|
// when > 1 item is selected, return info on the first one
|
|
|
|
// and deselect it so the next time GetSelectedISO() is called,
|
|
|
|
// the next item's info is returned
|
|
|
|
if (GetSelectedItemCount() > 1)
|
|
|
|
SetItemState(item, 0, wxLIST_STATE_SELECTED);
|
|
|
|
|
2011-03-22 07:27:23 +00:00
|
|
|
return m_ISOFiles[GetItemData(item)];
|
2009-01-19 01:30:54 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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))
|
|
|
|
{
|
2014-11-14 02:28:27 +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
|
|
|
|
2010-01-14 07:19:10 +00:00
|
|
|
u64 title;
|
2014-09-20 16:57:53 +00:00
|
|
|
std::unique_ptr<DiscIO::IVolume> volume(DiscIO::CreateVolumeFromFilename(iso->GetFileName()));
|
|
|
|
if (volume && volume->GetTitleID((u8*)&title))
|
2010-01-14 07:19:10 +00:00
|
|
|
{
|
2014-09-20 16:57:53 +00:00
|
|
|
title = Common::swap64(title);
|
|
|
|
CWiiSaveCrypted::ExportWiiSave(title);
|
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
|
2014-10-20 21:49:33 +00:00
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.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
|
2014-10-20 21:49:33 +00:00
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.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
|
|
|
{
|
|
|
|
if (GetSelectedItemCount() == 1)
|
|
|
|
{
|
2014-11-14 02:28:27 +00:00
|
|
|
const GameListItem* iso = GetSelectedISO();
|
2008-12-08 05:30:24 +00:00
|
|
|
if (!iso)
|
|
|
|
return;
|
2011-01-05 17:56:08 +00:00
|
|
|
if (wxMessageBox(_("Are you sure you want to delete this file? It will be gone forever!"),
|
2010-07-31 14:14:01 +00:00
|
|
|
wxMessageBoxCaptionStr, wxYES_NO | wxICON_EXCLAMATION) == wxYES)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2011-03-01 03:06:14 +00:00
|
|
|
File::Delete(iso->GetFileName());
|
2008-12-08 05:30:24 +00:00
|
|
|
Update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-01-05 17:56:08 +00:00
|
|
|
if (wxMessageBox(_("Are you sure you want to delete these files?\nThey will be gone forever!"),
|
2010-07-31 14:14:01 +00:00
|
|
|
wxMessageBoxCaptionStr, wxYES_NO | wxICON_EXCLAMATION) == wxYES)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
|
|
|
int selected = GetSelectedItemCount();
|
|
|
|
|
|
|
|
for (int i = 0; i < selected; i++)
|
|
|
|
{
|
2014-11-14 02:28:27 +00:00
|
|
|
const GameListItem* iso = GetSelectedISO();
|
2011-03-01 03:06:14 +00:00
|
|
|
File::Delete(iso->GetFileName());
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
Update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
CISOProperties ISOProperties(iso->GetFileName(), this);
|
2014-03-10 11:30:55 +00:00
|
|
|
if (ISOProperties.ShowModal() == wxID_OK)
|
2008-12-08 05:30:24 +00:00
|
|
|
Update();
|
|
|
|
}
|
|
|
|
|
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-09-05 01:30:33 +00:00
|
|
|
std::string wikiUrl = "http://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-06-03 05:08:54 +00:00
|
|
|
void CGameListCtrl::MultiCompressCB(const std::string& text, float percent, void* arg)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-11-18 21:11:05 +00:00
|
|
|
percent = (((float)m_currentItem) + percent) / (float)m_numberItem;
|
2013-02-28 04:37:38 +00:00
|
|
|
wxString textString(StrToWxStr(StringFromFormat("%s (%i/%i) - %s",
|
2010-07-31 14:14:01 +00:00
|
|
|
m_currentFilename.c_str(), (int)m_currentItem+1,
|
2014-06-03 05:08:54 +00:00
|
|
|
(int)m_numberItem, text.c_str())));
|
2009-11-18 21:11:05 +00:00
|
|
|
|
2010-07-31 14:14:01 +00:00
|
|
|
((wxProgressDialog*)arg)->Update((int)(percent*1000), textString);
|
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)
|
|
|
|
{
|
|
|
|
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..."),
|
|
|
|
1000,
|
|
|
|
this,
|
|
|
|
wxPD_APP_MODAL |
|
|
|
|
wxPD_ELAPSED_TIME | wxPD_ESTIMATED_TIME | wxPD_REMAINING_TIME |
|
|
|
|
wxPD_SMOOTH
|
|
|
|
);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-11-14 02:28:27 +00:00
|
|
|
m_currentItem = 0;
|
|
|
|
m_numberItem = GetSelectedItemCount();
|
|
|
|
for (u32 i=0; i < m_numberItem; i++)
|
|
|
|
{
|
|
|
|
const GameListItem* iso = GetSelectedISO();
|
|
|
|
if (iso->GetPlatform() == GameListItem::WII_WAD || iso->GetFileName().rfind(".wbfs") != std::string::npos)
|
|
|
|
continue;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
if (!iso->IsCompressed() && _compress)
|
|
|
|
{
|
2010-08-01 04:09:59 +00:00
|
|
|
std::string FileName, FileExt;
|
2014-03-09 20:14:26 +00:00
|
|
|
SplitPath(iso->GetFileName(), nullptr, &FileName, &FileExt);
|
2008-12-08 05:30:24 +00:00
|
|
|
m_currentFilename = FileName;
|
|
|
|
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?"),
|
2013-10-29 05:23:17 +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,
|
2010-07-31 14:14:01 +00:00
|
|
|
(iso->GetPlatform() == GameListItem::WII_DISC) ? 1 : 0,
|
|
|
|
16384, &MultiCompressCB, &progressDialog);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
else if (iso->IsCompressed() && !_compress)
|
|
|
|
{
|
2010-08-01 04:09:59 +00:00
|
|
|
std::string FileName, FileExt;
|
2014-03-09 20:14:26 +00:00
|
|
|
SplitPath(iso->GetFileName(), nullptr, &FileName, &FileExt);
|
2008-12-08 05:30:24 +00:00
|
|
|
m_currentFilename = FileName;
|
2010-05-28 05:30:03 +00:00
|
|
|
if (iso->GetPlatform() == GameListItem::WII_DISC)
|
|
|
|
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?"),
|
2013-10-29 05:23:17 +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(),
|
2010-07-31 14:14:01 +00:00
|
|
|
OutputFileName.c_str(), &MultiCompressCB, &progressDialog);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
m_currentItem++;
|
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-06-03 05:08:54 +00:00
|
|
|
void CGameListCtrl::CompressCB(const std::string& text, float percent, void* arg)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2010-07-31 14:14:01 +00:00
|
|
|
((wxProgressDialog*)arg)->
|
2013-02-28 04:37:38 +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;
|
|
|
|
|
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
|
|
|
{
|
2010-08-01 04:09:59 +00:00
|
|
|
if (iso->IsCompressed())
|
|
|
|
{
|
2010-08-02 01:52:00 +00:00
|
|
|
wxString FileType;
|
2010-08-01 04:09:59 +00:00
|
|
|
if (iso->GetPlatform() == GameListItem::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
|
|
|
{
|
|
|
|
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(
|
|
|
|
iso->IsCompressed() ? _("Decompressing ISO") : _("Compressing ISO"),
|
|
|
|
_("Working..."),
|
|
|
|
1000,
|
|
|
|
this,
|
|
|
|
wxPD_APP_MODAL |
|
|
|
|
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
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
if (iso->IsCompressed())
|
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),
|
2010-07-31 14:14:01 +00:00
|
|
|
(iso->GetPlatform() == GameListItem::WII_DISC) ? 1 : 0,
|
|
|
|
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
|
|
|
|
2010-07-31 14:14:01 +00:00
|
|
|
// We hide the Notes column if the window is too small
|
|
|
|
if (resizable > 400)
|
2009-09-25 16:29:00 +00:00
|
|
|
{
|
2014-06-04 13:54:48 +00:00
|
|
|
if (SConfig::GetInstance().m_showNotesColumn)
|
|
|
|
{
|
|
|
|
SetColumnWidth(COLUMN_TITLE, resizable / 2);
|
|
|
|
SetColumnWidth(COLUMN_NOTES, resizable / 2);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SetColumnWidth(COLUMN_TITLE, resizable);
|
|
|
|
}
|
2009-09-25 16:29:00 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SetColumnWidth(COLUMN_TITLE, resizable);
|
2011-12-18 12:58:44 +00:00
|
|
|
SetColumnWidth(COLUMN_NOTES, 0);
|
2009-09-25 16:29:00 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGameListCtrl::UnselectAll()
|
|
|
|
{
|
|
|
|
for (int i=0; i<GetItemCount(); i++)
|
|
|
|
{
|
|
|
|
SetItemState(i, 0, wxLIST_STATE_SELECTED);
|
|
|
|
}
|
|
|
|
}
|