2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2009-02-23 06:15:48 +00:00
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
|
|
|
|
2009-06-28 12:50:51 +00:00
|
|
|
/*
|
2009-06-20 11:05:52 +00:00
|
|
|
1.1 Windows
|
|
|
|
|
2009-05-13 22:23:54 +00:00
|
|
|
CFrame is the main parent window. Inside CFrame there is m_Panel which is the
|
|
|
|
parent for the rendering window (when we render to the main window). In Windows
|
|
|
|
the rendering window is created by giving CreateWindow() m_Panel->GetHandle()
|
|
|
|
as parent window and creating a new child window to m_Panel. The new child
|
|
|
|
window handle that is returned by CreateWindow() can be accessed from
|
|
|
|
Core::GetWindowHandle().
|
2009-06-28 12:50:51 +00:00
|
|
|
*/
|
2009-06-20 11:05:52 +00:00
|
|
|
|
2010-06-03 18:05:08 +00:00
|
|
|
|
|
|
|
#include "Setup.h" // Common
|
2009-06-20 11:05:52 +00:00
|
|
|
|
2009-05-13 21:50:24 +00:00
|
|
|
#include "NetWindow.h"
|
2010-06-03 18:05:08 +00:00
|
|
|
#include "Common.h" // Common
|
|
|
|
#include "FileUtil.h"
|
|
|
|
#include "FileSearch.h"
|
|
|
|
#include "Timer.h"
|
|
|
|
|
|
|
|
#include "Globals.h" // Local
|
2009-02-23 06:15:48 +00:00
|
|
|
#include "Frame.h"
|
|
|
|
#include "ConfigMain.h"
|
2010-06-03 18:05:08 +00:00
|
|
|
#include "PluginManager.h"
|
2009-02-23 06:15:48 +00:00
|
|
|
#include "MemcardManager.h"
|
|
|
|
#include "CheatsWindow.h"
|
2009-11-07 23:54:10 +00:00
|
|
|
#include "LuaWindow.h"
|
2009-02-23 06:15:48 +00:00
|
|
|
#include "AboutDolphin.h"
|
|
|
|
#include "GameListCtrl.h"
|
2010-06-03 18:05:08 +00:00
|
|
|
#include "BootManager.h"
|
2009-08-31 23:09:50 +00:00
|
|
|
#include "LogWindow.h"
|
2009-06-16 19:10:37 +00:00
|
|
|
#include "WxUtils.h"
|
2010-06-03 18:05:08 +00:00
|
|
|
|
|
|
|
#include "ConfigManager.h" // Core
|
|
|
|
#include "Core.h"
|
|
|
|
#include "OnFrame.h"
|
|
|
|
#include "HW/CPU.h"
|
|
|
|
#include "PowerPC/PowerPC.h"
|
|
|
|
#include "HW/DVDInterface.h"
|
|
|
|
#include "HW/ProcessorInterface.h"
|
2010-06-13 09:14:40 +00:00
|
|
|
#include "HW/GCPad.h"
|
2010-06-03 18:05:08 +00:00
|
|
|
#include "IPC_HLE/WII_IPC_HLE_Device_usb.h"
|
|
|
|
#include "State.h"
|
|
|
|
#include "VolumeHandler.h"
|
|
|
|
#include "NANDContentLoader.h"
|
|
|
|
#include "WXInputBase.h"
|
2010-06-13 09:14:40 +00:00
|
|
|
#include "../../InputUICommon/Src/ConfigDiag.h"
|
2010-06-03 18:05:08 +00:00
|
|
|
|
|
|
|
#include <wx/datetime.h> // wxWidgets
|
2009-02-23 06:15:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Resources
|
|
|
|
extern "C" {
|
|
|
|
#include "../resources/Dolphin.c" // Dolphin icon
|
|
|
|
#include "../resources/toolbar_browse.c"
|
|
|
|
#include "../resources/toolbar_file_open.c"
|
|
|
|
#include "../resources/toolbar_fullscreen.c"
|
|
|
|
#include "../resources/toolbar_help.c"
|
|
|
|
#include "../resources/toolbar_pause.c"
|
|
|
|
#include "../resources/toolbar_play.c"
|
|
|
|
#include "../resources/toolbar_plugin_dsp.c"
|
|
|
|
#include "../resources/toolbar_plugin_gfx.c"
|
|
|
|
#include "../resources/toolbar_plugin_options.c"
|
|
|
|
#include "../resources/toolbar_plugin_pad.c"
|
2010-01-20 10:11:53 +00:00
|
|
|
#include "../resources/toolbar_plugin_wiimote.c"
|
2009-02-23 06:15:48 +00:00
|
|
|
#include "../resources/toolbar_refresh.c"
|
|
|
|
#include "../resources/toolbar_stop.c"
|
|
|
|
#include "../resources/Boomy.h" // Theme packages
|
|
|
|
#include "../resources/Vista.h"
|
|
|
|
#include "../resources/X-Plastik.h"
|
|
|
|
#include "../resources/KDE.h"
|
|
|
|
};
|
|
|
|
|
2009-12-27 19:31:02 +00:00
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
// Other Windows
|
|
|
|
wxCheatsWindow* CheatsWindow;
|
|
|
|
|
2009-09-02 21:00:45 +00:00
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
// Create menu items
|
2009-09-08 16:07:13 +00:00
|
|
|
// ---------------------
|
2009-02-23 06:15:48 +00:00
|
|
|
void CFrame::CreateMenu()
|
|
|
|
{
|
2009-09-03 05:24:30 +00:00
|
|
|
if (GetMenuBar()) GetMenuBar()->Destroy();
|
2009-04-16 02:32:21 +00:00
|
|
|
|
2009-09-03 05:24:30 +00:00
|
|
|
m_MenuBar = new wxMenuBar(wxMB_DOCKABLE);
|
2009-02-23 06:15:48 +00:00
|
|
|
|
|
|
|
// file menu
|
|
|
|
wxMenu* fileMenu = new wxMenu;
|
2009-04-16 02:32:21 +00:00
|
|
|
fileMenu->Append(wxID_OPEN, _T("&Open...\tCtrl+O"));
|
2009-02-24 07:30:10 +00:00
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
wxMenu *externalDrive = new wxMenu;
|
2009-04-16 02:32:21 +00:00
|
|
|
m_pSubMenuDrive = fileMenu->AppendSubMenu(externalDrive, _T("&Boot from DVD Drive..."));
|
2009-02-24 15:04:12 +00:00
|
|
|
|
|
|
|
drives = cdio_get_devices();
|
2010-02-16 08:46:21 +00:00
|
|
|
// Windows Limitation of 24 character drives
|
2010-02-24 03:38:36 +00:00
|
|
|
for (unsigned int i = 0; i < drives.size() && i < 24; i++) {
|
2010-02-16 08:46:21 +00:00
|
|
|
externalDrive->Append(IDM_DRIVE1 + i, wxString::FromAscii(drives[i].c_str()));
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
2009-02-24 15:04:12 +00:00
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
fileMenu->AppendSeparator();
|
|
|
|
fileMenu->Append(wxID_REFRESH, _T("&Refresh List"));
|
|
|
|
fileMenu->AppendSeparator();
|
|
|
|
fileMenu->Append(IDM_BROWSE, _T("&Browse for ISOs..."));
|
|
|
|
fileMenu->AppendSeparator();
|
2009-06-29 09:24:39 +00:00
|
|
|
fileMenu->Append(wxID_EXIT, _T("E&xit\tAlt+F4"));
|
2009-09-03 05:24:30 +00:00
|
|
|
m_MenuBar->Append(fileMenu, _T("&File"));
|
2009-02-23 06:15:48 +00:00
|
|
|
|
|
|
|
// Emulation menu
|
|
|
|
wxMenu* emulationMenu = new wxMenu;
|
2010-04-12 01:33:10 +00:00
|
|
|
emulationMenu->Append(IDM_PLAY, GetMenuLabel(HK_PLAY_PAUSE));
|
|
|
|
emulationMenu->Append(IDM_STOP, GetMenuLabel(HK_STOP));
|
2009-10-06 15:49:20 +00:00
|
|
|
emulationMenu->Append(IDM_RESET, _T("&Reset"));
|
2009-08-21 19:55:03 +00:00
|
|
|
emulationMenu->AppendSeparator();
|
2010-04-12 01:33:10 +00:00
|
|
|
emulationMenu->Append(IDM_TOGGLE_FULLSCREEN, GetMenuLabel(HK_FULLSCREEN));
|
|
|
|
emulationMenu->AppendSeparator();
|
2009-10-06 15:49:20 +00:00
|
|
|
emulationMenu->Append(IDM_RECORD, _T("Start Re&cording..."));
|
2009-08-21 19:55:03 +00:00
|
|
|
emulationMenu->Append(IDM_PLAYRECORD, _T("P&lay Recording..."));
|
|
|
|
emulationMenu->AppendSeparator();
|
|
|
|
emulationMenu->Append(IDM_CHANGEDISC, _T("Change &Disc"));
|
|
|
|
|
2009-08-22 02:05:02 +00:00
|
|
|
emulationMenu->Append(IDM_FRAMESTEP, _T("&Frame Stepping"), wxEmptyString, wxITEM_CHECK);
|
|
|
|
|
2009-08-08 01:39:56 +00:00
|
|
|
wxMenu *skippingMenu = new wxMenu;
|
2009-08-22 02:05:02 +00:00
|
|
|
m_pSubMenuFrameSkipping = emulationMenu->AppendSubMenu(skippingMenu, _T("Frame S&kipping"));
|
2009-08-08 01:39:56 +00:00
|
|
|
for(int i = 0; i < 10; i++)
|
|
|
|
skippingMenu->Append(IDM_FRAMESKIP0 + i, wxString::Format(_T("%i"), i), wxEmptyString, wxITEM_RADIO);
|
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
emulationMenu->AppendSeparator();
|
2009-06-29 09:24:39 +00:00
|
|
|
emulationMenu->Append(IDM_SCREENSHOT, _T("Take S&creenshot\tF9"));
|
|
|
|
emulationMenu->AppendSeparator();
|
2009-02-23 06:15:48 +00:00
|
|
|
wxMenu *saveMenu = new wxMenu;
|
|
|
|
wxMenu *loadMenu = new wxMenu;
|
2009-06-28 01:11:35 +00:00
|
|
|
m_pSubMenuLoad = emulationMenu->AppendSubMenu(loadMenu, _T("&Load State"));
|
|
|
|
m_pSubMenuSave = emulationMenu->AppendSubMenu(saveMenu, _T("Sa&ve State"));
|
|
|
|
|
|
|
|
saveMenu->Append(IDM_SAVESTATEFILE, _T("Save State..."));
|
2009-06-28 21:11:51 +00:00
|
|
|
loadMenu->Append(IDM_UNDOSAVESTATE, _T("Last Overwritten State\tShift+F12"));
|
2009-06-28 01:11:35 +00:00
|
|
|
saveMenu->AppendSeparator();
|
|
|
|
|
|
|
|
loadMenu->Append(IDM_LOADSTATEFILE, _T("Load State..."));
|
|
|
|
loadMenu->Append(IDM_LOADLASTSTATE, _T("Last Saved State\tF11"));
|
2009-06-28 21:11:51 +00:00
|
|
|
loadMenu->Append(IDM_UNDOLOADSTATE, _T("Undo Load State\tF12"));
|
2009-06-28 01:11:35 +00:00
|
|
|
loadMenu->AppendSeparator();
|
|
|
|
|
2009-06-28 19:47:02 +00:00
|
|
|
for (int i = 1; i <= 8; i++) {
|
2009-06-28 01:11:35 +00:00
|
|
|
loadMenu->Append(IDM_LOADSLOT1 + i - 1, wxString::Format(_T("Slot %i\tF%i"), i, i));
|
|
|
|
saveMenu->Append(IDM_SAVESLOT1 + i - 1, wxString::Format(_T("Slot %i\tShift+F%i"), i, i));
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
2009-09-03 05:24:30 +00:00
|
|
|
m_MenuBar->Append(emulationMenu, _T("&Emulation"));
|
2009-02-23 06:15:48 +00:00
|
|
|
|
|
|
|
// Options menu
|
|
|
|
wxMenu* pOptionsMenu = new wxMenu;
|
2010-06-01 21:03:02 +00:00
|
|
|
pOptionsMenu->Append(wxID_PREFERENCES, _T("Co&nfigure..."));
|
2009-02-23 06:15:48 +00:00
|
|
|
pOptionsMenu->AppendSeparator();
|
|
|
|
pOptionsMenu->Append(IDM_CONFIG_GFX_PLUGIN, _T("&Graphics Settings"));
|
|
|
|
pOptionsMenu->Append(IDM_CONFIG_DSP_PLUGIN, _T("&DSP Settings"));
|
2010-06-03 18:05:08 +00:00
|
|
|
pOptionsMenu->Append(IDM_CONFIG_PAD_PLUGIN, _T("&Gamecube Pad Settings"));
|
2009-02-23 06:15:48 +00:00
|
|
|
pOptionsMenu->Append(IDM_CONFIG_WIIMOTE_PLUGIN, _T("&Wiimote Settings"));
|
2009-09-07 12:40:43 +00:00
|
|
|
if (g_pCodeWindow)
|
2009-09-03 06:54:46 +00:00
|
|
|
{
|
|
|
|
pOptionsMenu->AppendSeparator();
|
|
|
|
g_pCodeWindow->CreateMenuOptions(NULL, pOptionsMenu);
|
|
|
|
}
|
2009-09-03 05:24:30 +00:00
|
|
|
m_MenuBar->Append(pOptionsMenu, _T("&Options"));
|
2009-02-23 06:15:48 +00:00
|
|
|
|
2009-03-02 21:58:56 +00:00
|
|
|
// Tools menu
|
|
|
|
wxMenu* toolsMenu = new wxMenu;
|
2009-11-07 23:54:10 +00:00
|
|
|
toolsMenu->Append(IDM_LUA, _T("New &Lua Console"));
|
2010-01-05 07:34:03 +00:00
|
|
|
toolsMenu->Append(IDM_MEMCARD, _T("&Memcard Manager (GC)"));
|
2010-05-16 17:11:51 +00:00
|
|
|
toolsMenu->Append(IDM_IMPORTSAVE, _T("Wii Save Import"));
|
2009-03-02 21:58:56 +00:00
|
|
|
toolsMenu->Append(IDM_CHEATS, _T("Action &Replay Manager"));
|
2009-05-13 21:50:24 +00:00
|
|
|
|
2010-05-01 19:10:35 +00:00
|
|
|
toolsMenu->Append(IDM_NETPLAY, _T("Start &NetPlay"));
|
2009-04-28 02:30:50 +00:00
|
|
|
|
2010-02-02 21:56:29 +00:00
|
|
|
if (DiscIO::CNANDContentManager::Access().GetNANDLoader(std::string (File::GetUserPath(D_WIIMENU_IDX))).IsValid())
|
2009-04-28 02:30:50 +00:00
|
|
|
{
|
|
|
|
toolsMenu->Append(IDM_LOAD_WII_MENU, _T("Load Wii Menu"));
|
|
|
|
}
|
2010-05-13 04:50:18 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
toolsMenu->Append(IDM_INSTALL_WII_MENU, _T("Install Wii Menu"));
|
|
|
|
}
|
2009-12-27 19:31:02 +00:00
|
|
|
toolsMenu->AppendSeparator();
|
2010-04-25 20:10:16 +00:00
|
|
|
toolsMenu->AppendCheckItem(IDM_CONNECT_WIIMOTE1, GetMenuLabel(HK_WIIMOTE1_CONNECT));
|
|
|
|
toolsMenu->AppendCheckItem(IDM_CONNECT_WIIMOTE2, GetMenuLabel(HK_WIIMOTE2_CONNECT));
|
|
|
|
toolsMenu->AppendCheckItem(IDM_CONNECT_WIIMOTE3, GetMenuLabel(HK_WIIMOTE3_CONNECT));
|
|
|
|
toolsMenu->AppendCheckItem(IDM_CONNECT_WIIMOTE4, GetMenuLabel(HK_WIIMOTE4_CONNECT));
|
2009-02-27 23:44:15 +00:00
|
|
|
|
2009-09-03 05:24:30 +00:00
|
|
|
m_MenuBar->Append(toolsMenu, _T("&Tools"));
|
2009-02-23 06:15:48 +00:00
|
|
|
|
2009-04-28 02:30:50 +00:00
|
|
|
wxMenu* viewMenu = new wxMenu;
|
|
|
|
viewMenu->AppendCheckItem(IDM_TOGGLE_TOOLBAR, _T("Show &Toolbar"));
|
|
|
|
viewMenu->Check(IDM_TOGGLE_TOOLBAR, SConfig::GetInstance().m_InterfaceToolbar);
|
|
|
|
viewMenu->AppendCheckItem(IDM_TOGGLE_STATUSBAR, _T("Show &Statusbar"));
|
|
|
|
viewMenu->Check(IDM_TOGGLE_STATUSBAR, SConfig::GetInstance().m_InterfaceStatusbar);
|
2009-09-03 06:54:46 +00:00
|
|
|
viewMenu->AppendSeparator();
|
2009-08-31 23:09:50 +00:00
|
|
|
viewMenu->AppendCheckItem(IDM_LOGWINDOW, _T("Show &Logwindow"));
|
2009-09-01 14:33:16 +00:00
|
|
|
viewMenu->Check(IDM_LOGWINDOW, SConfig::GetInstance().m_InterfaceLogWindow);
|
2009-08-27 19:38:35 +00:00
|
|
|
viewMenu->AppendCheckItem(IDM_CONSOLEWINDOW, _T("Show &Console"));
|
|
|
|
viewMenu->Check(IDM_CONSOLEWINDOW, SConfig::GetInstance().m_InterfaceConsole);
|
2009-04-28 02:30:50 +00:00
|
|
|
viewMenu->AppendSeparator();
|
|
|
|
|
2009-09-07 12:40:43 +00:00
|
|
|
if (g_pCodeWindow)
|
2009-09-03 06:54:46 +00:00
|
|
|
{
|
|
|
|
g_pCodeWindow->CreateMenuView(NULL, viewMenu);
|
|
|
|
viewMenu->AppendSeparator();
|
|
|
|
}
|
|
|
|
|
2009-09-15 21:35:32 +00:00
|
|
|
wxMenu *platformMenu = new wxMenu;
|
|
|
|
viewMenu->AppendSubMenu(platformMenu, _T("Show Platforms"));
|
|
|
|
platformMenu->AppendCheckItem(IDM_LISTWII, _T("Show Wii"));
|
|
|
|
platformMenu->Check(IDM_LISTWII, SConfig::GetInstance().m_ListWii);
|
|
|
|
platformMenu->AppendCheckItem(IDM_LISTGC, _T("Show GameCube"));
|
|
|
|
platformMenu->Check(IDM_LISTGC, SConfig::GetInstance().m_ListGC);
|
|
|
|
platformMenu->AppendCheckItem(IDM_LISTWAD, _T("Show Wad"));
|
|
|
|
platformMenu->Check(IDM_LISTWAD, SConfig::GetInstance().m_ListWad);
|
|
|
|
|
|
|
|
wxMenu *regionMenu = new wxMenu;
|
|
|
|
viewMenu->AppendSubMenu(regionMenu, _T("Show Regions"));
|
|
|
|
regionMenu->AppendCheckItem(IDM_LISTJAP, _T("Show JAP"));
|
|
|
|
regionMenu->Check(IDM_LISTJAP, SConfig::GetInstance().m_ListJap);
|
|
|
|
regionMenu->AppendCheckItem(IDM_LISTPAL, _T("Show PAL"));
|
|
|
|
regionMenu->Check(IDM_LISTPAL, SConfig::GetInstance().m_ListPal);
|
|
|
|
regionMenu->AppendCheckItem(IDM_LISTUSA, _T("Show USA"));
|
|
|
|
regionMenu->Check(IDM_LISTUSA, SConfig::GetInstance().m_ListUsa);
|
2010-01-11 05:07:56 +00:00
|
|
|
regionMenu->AppendSeparator();
|
|
|
|
regionMenu->AppendCheckItem(IDM_LISTFRANCE, _T("Show France"));
|
|
|
|
regionMenu->Check(IDM_LISTFRANCE, SConfig::GetInstance().m_ListFrance);
|
|
|
|
regionMenu->AppendCheckItem(IDM_LISTITALY, _T("Show Italy"));
|
|
|
|
regionMenu->Check(IDM_LISTITALY, SConfig::GetInstance().m_ListItaly);
|
|
|
|
regionMenu->AppendCheckItem(IDM_LISTKOREA, _T("Show Korea"));
|
|
|
|
regionMenu->Check(IDM_LISTKOREA, SConfig::GetInstance().m_ListKorea);
|
|
|
|
regionMenu->AppendCheckItem(IDM_LISTTAIWAN, _T("Show Taiwan"));
|
|
|
|
regionMenu->Check(IDM_LISTTAIWAN, SConfig::GetInstance().m_ListTaiwan);
|
|
|
|
regionMenu->AppendCheckItem(IDM_LIST_UNK, _T("Show unknown"));
|
|
|
|
regionMenu->Check(IDM_LIST_UNK, SConfig::GetInstance().m_ListUnknown);
|
2009-04-28 02:30:50 +00:00
|
|
|
viewMenu->AppendCheckItem(IDM_LISTDRIVES, _T("Show Drives"));
|
|
|
|
viewMenu->Check(IDM_LISTDRIVES, SConfig::GetInstance().m_ListDrives);
|
2009-06-07 02:27:36 +00:00
|
|
|
viewMenu->Append(IDM_PURGECACHE, _T("Purge Cache"));
|
2009-09-03 05:24:30 +00:00
|
|
|
m_MenuBar->Append(viewMenu, _T("&View"));
|
2009-04-28 02:30:50 +00:00
|
|
|
|
2009-09-07 12:40:43 +00:00
|
|
|
if (g_pCodeWindow) g_pCodeWindow->CreateMenu(SConfig::GetInstance().m_LocalCoreStartupParameter, m_MenuBar);
|
2009-09-03 06:54:46 +00:00
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
// Help menu
|
|
|
|
wxMenu* helpMenu = new wxMenu;
|
2010-06-01 21:03:02 +00:00
|
|
|
// Re-enable when there's something useful to display */
|
|
|
|
// helpMenu->Append(wxID_HELP, _T("&Help"));
|
2009-02-23 06:15:48 +00:00
|
|
|
helpMenu->Append(IDM_HELPWEBSITE, _T("Dolphin &Web Site"));
|
|
|
|
helpMenu->Append(IDM_HELPGOOGLECODE, _T("Dolphin at &Google Code"));
|
|
|
|
helpMenu->AppendSeparator();
|
2010-06-01 21:03:02 +00:00
|
|
|
helpMenu->Append(wxID_ABOUT, _T("&About..."));
|
2009-09-03 05:24:30 +00:00
|
|
|
m_MenuBar->Append(helpMenu, _T("&Help"));
|
2009-02-23 06:15:48 +00:00
|
|
|
|
|
|
|
// Associate the menu bar with the frame
|
2009-09-03 05:24:30 +00:00
|
|
|
SetMenuBar(m_MenuBar);
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
|
|
|
|
2010-04-14 03:26:18 +00:00
|
|
|
wxString CFrame::GetMenuLabel(int Id)
|
2010-04-12 01:33:10 +00:00
|
|
|
{
|
|
|
|
wxString Label;
|
|
|
|
switch (Id)
|
|
|
|
{
|
|
|
|
case HK_FULLSCREEN:
|
|
|
|
Label = _T("&Fullscreen\t");
|
|
|
|
break;
|
|
|
|
case HK_PLAY_PAUSE:
|
2010-04-25 20:10:16 +00:00
|
|
|
if (Core::GetState() == Core::CORE_RUN)
|
|
|
|
Label = _T("&Pause\t");
|
2010-04-12 01:33:10 +00:00
|
|
|
else
|
|
|
|
Label = _T("&Play\t");
|
|
|
|
break;
|
|
|
|
case HK_STOP:
|
|
|
|
Label = _T("&Stop\t");
|
2010-04-26 23:25:36 +00:00
|
|
|
break;
|
2010-04-25 20:10:16 +00:00
|
|
|
case HK_WIIMOTE1_CONNECT:
|
|
|
|
Label = _T("Connect Wiimote 1\t");
|
2010-04-26 23:25:36 +00:00
|
|
|
break;
|
2010-04-25 20:10:16 +00:00
|
|
|
case HK_WIIMOTE2_CONNECT:
|
|
|
|
Label = _T("Connect Wiimote 2\t");
|
2010-04-26 23:25:36 +00:00
|
|
|
break;
|
2010-04-25 20:10:16 +00:00
|
|
|
case HK_WIIMOTE3_CONNECT:
|
|
|
|
Label = _T("Connect Wiimote 3\t");
|
2010-04-26 23:25:36 +00:00
|
|
|
break;
|
2010-04-25 20:10:16 +00:00
|
|
|
case HK_WIIMOTE4_CONNECT:
|
|
|
|
Label = _T("Connect Wiimote 4\t");
|
2010-04-26 23:25:36 +00:00
|
|
|
break;
|
2010-04-12 01:33:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
wxString Modifier = InputCommon::WXKeymodToString
|
|
|
|
(SConfig::GetInstance().m_LocalCoreStartupParameter.iHotkeyModifier[Id]);
|
|
|
|
wxString Hotkey = InputCommon::WXKeyToString
|
|
|
|
(SConfig::GetInstance().m_LocalCoreStartupParameter.iHotkey[Id]);
|
2009-02-23 06:15:48 +00:00
|
|
|
|
2010-04-12 01:33:10 +00:00
|
|
|
return Label + Modifier + (Modifier.Len() ? _T("+") : _T("")) + Hotkey;
|
|
|
|
}
|
2009-09-02 21:00:45 +00:00
|
|
|
|
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
// Create toolbar items
|
2009-09-08 16:07:13 +00:00
|
|
|
// ---------------------
|
2009-08-27 07:33:07 +00:00
|
|
|
void CFrame::PopulateToolbar(wxAuiToolBar* ToolBar)
|
2009-02-23 06:15:48 +00:00
|
|
|
{
|
|
|
|
int w = m_Bitmaps[Toolbar_FileOpen].GetWidth(),
|
2010-06-05 01:38:22 +00:00
|
|
|
h = m_Bitmaps[Toolbar_FileOpen].GetHeight();
|
2009-09-08 08:47:33 +00:00
|
|
|
ToolBar->SetToolBitmapSize(wxSize(w, h));
|
|
|
|
|
2009-09-02 15:38:04 +00:00
|
|
|
|
2009-08-27 07:33:07 +00:00
|
|
|
ToolBar->AddTool(wxID_OPEN, _T("Open"), m_Bitmaps[Toolbar_FileOpen], _T("Open file..."));
|
2010-01-20 10:11:53 +00:00
|
|
|
ToolBar->AddTool(wxID_REFRESH, _T("Refresh"), m_Bitmaps[Toolbar_Refresh], _T("Refresh game list"));
|
2009-08-27 07:33:07 +00:00
|
|
|
ToolBar->AddTool(IDM_BROWSE, _T("Browse"), m_Bitmaps[Toolbar_Browse], _T("Browse for an ISO directory..."));
|
|
|
|
ToolBar->AddSeparator();
|
2009-09-08 08:47:33 +00:00
|
|
|
ToolBar->AddTool(IDM_PLAY, wxT("Play"), m_Bitmaps[Toolbar_Play], _T("Play"));
|
2009-08-27 07:33:07 +00:00
|
|
|
ToolBar->AddTool(IDM_STOP, _T("Stop"), m_Bitmaps[Toolbar_Stop], _T("Stop"));
|
2010-01-20 10:11:53 +00:00
|
|
|
ToolBar->AddTool(IDM_TOGGLE_FULLSCREEN, _T("FullScr"), m_Bitmaps[Toolbar_FullScreen], _T("Toggle Fullscreen"));
|
|
|
|
ToolBar->AddTool(IDM_SCREENSHOT, _T("ScrShot"), m_Bitmaps[Toolbar_FullScreen], _T("Take Screenshot"));
|
2009-08-27 07:33:07 +00:00
|
|
|
ToolBar->AddSeparator();
|
2010-06-01 21:03:02 +00:00
|
|
|
ToolBar->AddTool(wxID_PREFERENCES, _T("Config"), m_Bitmaps[Toolbar_PluginOptions], _T("Configure..."));
|
2009-09-08 08:47:33 +00:00
|
|
|
ToolBar->AddTool(IDM_CONFIG_GFX_PLUGIN, _T("Graphics"), m_Bitmaps[Toolbar_PluginGFX], _T("Graphics settings"));
|
2009-08-27 07:33:07 +00:00
|
|
|
ToolBar->AddTool(IDM_CONFIG_DSP_PLUGIN, _T("DSP"), m_Bitmaps[Toolbar_PluginDSP], _T("DSP settings"));
|
2010-06-03 18:05:08 +00:00
|
|
|
ToolBar->AddTool(IDM_CONFIG_PAD_PLUGIN, _T("GCPad"), m_Bitmaps[Toolbar_PluginPAD], _T("Gamecube Pad settings"));
|
2009-08-27 07:33:07 +00:00
|
|
|
ToolBar->AddTool(IDM_CONFIG_WIIMOTE_PLUGIN, _T("Wiimote"), m_Bitmaps[Toolbar_Wiimote], _T("Wiimote settings"));
|
2009-09-15 21:35:32 +00:00
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
// after adding the buttons to the toolbar, must call Realize() to reflect
|
|
|
|
// the changes
|
2009-08-27 07:33:07 +00:00
|
|
|
ToolBar->Realize();
|
|
|
|
}
|
2009-12-28 19:34:19 +00:00
|
|
|
|
2009-08-27 07:33:07 +00:00
|
|
|
void CFrame::PopulateToolbarAui(wxAuiToolBar* ToolBar)
|
|
|
|
{
|
|
|
|
int w = m_Bitmaps[Toolbar_FileOpen].GetWidth(),
|
|
|
|
h = m_Bitmaps[Toolbar_FileOpen].GetHeight();
|
|
|
|
ToolBar->SetToolBitmapSize(wxSize(w, h));
|
|
|
|
|
2009-08-30 19:44:42 +00:00
|
|
|
ToolBar->AddTool(IDM_SAVE_PERSPECTIVE, wxT("Save"), g_pCodeWindow->m_Bitmaps[Toolbar_GotoPC], wxT("Save current perspective"));
|
2009-09-01 19:47:04 +00:00
|
|
|
ToolBar->AddTool(IDM_EDIT_PERSPECTIVES, wxT("Edit"), g_pCodeWindow->m_Bitmaps[Toolbar_GotoPC], wxT("Edit current perspective"));
|
2009-08-30 19:44:42 +00:00
|
|
|
|
|
|
|
ToolBar->SetToolDropDown(IDM_SAVE_PERSPECTIVE, true);
|
2009-09-01 19:47:04 +00:00
|
|
|
ToolBar->SetToolDropDown(IDM_EDIT_PERSPECTIVES, true);
|
2009-08-27 07:33:07 +00:00
|
|
|
|
|
|
|
ToolBar->Realize();
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Delete and recreate the toolbar
|
|
|
|
void CFrame::RecreateToolbar()
|
|
|
|
{
|
2009-09-15 21:35:32 +00:00
|
|
|
if (m_ToolBar)
|
|
|
|
{
|
|
|
|
m_Mgr->DetachPane(m_ToolBar);
|
|
|
|
m_ToolBar->Destroy();
|
|
|
|
}
|
|
|
|
|
2009-09-01 19:47:04 +00:00
|
|
|
m_ToolBar = new wxAuiToolBar(this, ID_TOOLBAR, wxDefaultPosition, wxDefaultSize, TOOLBAR_STYLE);
|
2009-12-28 19:34:19 +00:00
|
|
|
|
2009-08-25 07:49:23 +00:00
|
|
|
PopulateToolbar(m_ToolBar);
|
2009-09-01 12:44:02 +00:00
|
|
|
|
2009-08-25 07:49:23 +00:00
|
|
|
m_Mgr->AddPane(m_ToolBar, wxAuiPaneInfo().
|
2009-08-25 06:34:58 +00:00
|
|
|
Name(wxT("TBMain")).Caption(wxT("TBMain")).
|
2009-08-25 01:50:27 +00:00
|
|
|
ToolbarPane().Top().
|
2009-08-25 07:49:23 +00:00
|
|
|
LeftDockable(false).RightDockable(false).Floatable(false));
|
2009-08-25 01:50:27 +00:00
|
|
|
|
2009-09-15 21:35:32 +00:00
|
|
|
if (g_pCodeWindow && !m_ToolBarDebug)
|
2009-08-25 01:50:27 +00:00
|
|
|
{
|
2009-09-01 19:47:04 +00:00
|
|
|
m_ToolBarDebug = new wxAuiToolBar(this, ID_TOOLBAR_DEBUG, wxDefaultPosition, wxDefaultSize, TOOLBAR_STYLE);
|
2009-08-27 07:33:07 +00:00
|
|
|
g_pCodeWindow->PopulateToolbar(m_ToolBarDebug);
|
2009-09-01 12:44:02 +00:00
|
|
|
|
2009-08-27 07:33:07 +00:00
|
|
|
m_Mgr->AddPane(m_ToolBarDebug, wxAuiPaneInfo().
|
2009-08-25 06:34:58 +00:00
|
|
|
Name(wxT("TBDebug")).Caption(wxT("TBDebug")).
|
2009-08-25 01:50:27 +00:00
|
|
|
ToolbarPane().Top().
|
2009-08-25 07:49:23 +00:00
|
|
|
LeftDockable(false).RightDockable(false).Floatable(false));
|
2009-08-27 07:33:07 +00:00
|
|
|
|
2009-09-01 19:47:04 +00:00
|
|
|
m_ToolBarAui = new wxAuiToolBar(this, ID_TOOLBAR_AUI, wxDefaultPosition, wxDefaultSize, TOOLBAR_STYLE);
|
2009-08-27 07:33:07 +00:00
|
|
|
PopulateToolbarAui(m_ToolBarAui);
|
|
|
|
m_Mgr->AddPane(m_ToolBarAui, wxAuiPaneInfo().
|
|
|
|
Name(wxT("TBAui")).Caption(wxT("TBAui")).
|
|
|
|
ToolbarPane().Top().
|
|
|
|
LeftDockable(false).RightDockable(false).Floatable(false));
|
2009-08-25 01:50:27 +00:00
|
|
|
}
|
2009-09-15 21:35:32 +00:00
|
|
|
|
|
|
|
UpdateGUI();
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
2009-06-18 08:22:02 +00:00
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
void CFrame::InitBitmaps()
|
|
|
|
{
|
|
|
|
// Get selected theme
|
|
|
|
int Theme = SConfig::GetInstance().m_LocalCoreStartupParameter.iTheme;
|
|
|
|
|
2009-06-18 08:22:02 +00:00
|
|
|
// Save memory by only having one set of bitmaps loaded at any time. I mean, they are still
|
2009-12-28 19:34:19 +00:00
|
|
|
// in the exe, which is in memory, but at least we wont make another copy of all of them.
|
2009-02-23 06:15:48 +00:00
|
|
|
switch (Theme)
|
|
|
|
{
|
|
|
|
case BOOMY:
|
|
|
|
{
|
|
|
|
// These are stored as 48x48
|
|
|
|
m_Bitmaps[Toolbar_FileOpen] = wxGetBitmapFromMemory(toolbar_file_open_png);
|
|
|
|
m_Bitmaps[Toolbar_Refresh] = wxGetBitmapFromMemory(toolbar_refresh_png);
|
|
|
|
m_Bitmaps[Toolbar_Browse] = wxGetBitmapFromMemory(toolbar_browse_png);
|
|
|
|
m_Bitmaps[Toolbar_Play] = wxGetBitmapFromMemory(toolbar_play_png);
|
|
|
|
m_Bitmaps[Toolbar_Stop] = wxGetBitmapFromMemory(toolbar_stop_png);
|
|
|
|
m_Bitmaps[Toolbar_Pause] = wxGetBitmapFromMemory(toolbar_pause_png);
|
|
|
|
m_Bitmaps[Toolbar_PluginOptions]= wxGetBitmapFromMemory(toolbar_plugin_options_png);
|
|
|
|
m_Bitmaps[Toolbar_PluginGFX] = wxGetBitmapFromMemory(toolbar_plugin_gfx_png);
|
|
|
|
m_Bitmaps[Toolbar_PluginDSP] = wxGetBitmapFromMemory(toolbar_plugin_dsp_png);
|
|
|
|
m_Bitmaps[Toolbar_PluginPAD] = wxGetBitmapFromMemory(toolbar_plugin_pad_png);
|
2010-01-20 10:11:53 +00:00
|
|
|
m_Bitmaps[Toolbar_Wiimote] = wxGetBitmapFromMemory(toolbar_plugin_wiimote_png);
|
2009-02-27 06:24:54 +00:00
|
|
|
m_Bitmaps[Toolbar_Screenshot] = wxGetBitmapFromMemory(toolbar_fullscreen_png);
|
2009-02-23 06:15:48 +00:00
|
|
|
m_Bitmaps[Toolbar_FullScreen] = wxGetBitmapFromMemory(toolbar_fullscreen_png);
|
|
|
|
m_Bitmaps[Toolbar_Help] = wxGetBitmapFromMemory(toolbar_help_png);
|
|
|
|
|
|
|
|
// Scale the 48x48 bitmaps to 24x24
|
2010-06-03 18:49:35 +00:00
|
|
|
for (size_t n = Toolbar_FileOpen; n < EToolbar_Max; n++)
|
2009-02-23 06:15:48 +00:00
|
|
|
{
|
|
|
|
m_Bitmaps[n] = wxBitmap(m_Bitmaps[n].ConvertToImage().Scale(24, 24));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VISTA:
|
|
|
|
{
|
|
|
|
// These are stored as 24x24 and need no scaling
|
|
|
|
m_Bitmaps[Toolbar_FileOpen] = wxGetBitmapFromMemory(Toolbar_Open1_png);
|
|
|
|
m_Bitmaps[Toolbar_Refresh] = wxGetBitmapFromMemory(Toolbar_Refresh1_png);
|
|
|
|
m_Bitmaps[Toolbar_Browse] = wxGetBitmapFromMemory(Toolbar_Browse1_png);
|
|
|
|
m_Bitmaps[Toolbar_Play] = wxGetBitmapFromMemory(Toolbar_Play1_png);
|
|
|
|
m_Bitmaps[Toolbar_Stop] = wxGetBitmapFromMemory(Toolbar_Stop1_png);
|
|
|
|
m_Bitmaps[Toolbar_Pause] = wxGetBitmapFromMemory(Toolbar_Pause1_png);
|
|
|
|
m_Bitmaps[Toolbar_PluginOptions]= wxGetBitmapFromMemory(Toolbar_Options1_png);
|
|
|
|
m_Bitmaps[Toolbar_PluginGFX] = wxGetBitmapFromMemory(Toolbar_Gfx1_png);
|
|
|
|
m_Bitmaps[Toolbar_PluginDSP] = wxGetBitmapFromMemory(Toolbar_DSP1_png);
|
|
|
|
m_Bitmaps[Toolbar_PluginPAD] = wxGetBitmapFromMemory(Toolbar_Pad1_png);
|
|
|
|
m_Bitmaps[Toolbar_Wiimote] = wxGetBitmapFromMemory(Toolbar_Wiimote1_png);
|
2009-02-27 06:24:54 +00:00
|
|
|
m_Bitmaps[Toolbar_Screenshot] = wxGetBitmapFromMemory(Toolbar_Fullscreen1_png);
|
2009-02-23 06:15:48 +00:00
|
|
|
m_Bitmaps[Toolbar_FullScreen] = wxGetBitmapFromMemory(Toolbar_Fullscreen1_png);
|
|
|
|
m_Bitmaps[Toolbar_Help] = wxGetBitmapFromMemory(Toolbar_Help1_png);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XPLASTIK:
|
|
|
|
{
|
|
|
|
m_Bitmaps[Toolbar_FileOpen] = wxGetBitmapFromMemory(Toolbar_Open2_png);
|
|
|
|
m_Bitmaps[Toolbar_Refresh] = wxGetBitmapFromMemory(Toolbar_Refresh2_png);
|
|
|
|
m_Bitmaps[Toolbar_Browse] = wxGetBitmapFromMemory(Toolbar_Browse2_png);
|
|
|
|
m_Bitmaps[Toolbar_Play] = wxGetBitmapFromMemory(Toolbar_Play2_png);
|
|
|
|
m_Bitmaps[Toolbar_Stop] = wxGetBitmapFromMemory(Toolbar_Stop2_png);
|
|
|
|
m_Bitmaps[Toolbar_Pause] = wxGetBitmapFromMemory(Toolbar_Pause2_png);
|
|
|
|
m_Bitmaps[Toolbar_PluginOptions]= wxGetBitmapFromMemory(Toolbar_Options2_png);
|
|
|
|
m_Bitmaps[Toolbar_PluginGFX] = wxGetBitmapFromMemory(Toolbar_Gfx2_png);
|
|
|
|
m_Bitmaps[Toolbar_PluginDSP] = wxGetBitmapFromMemory(Toolbar_DSP2_png);
|
|
|
|
m_Bitmaps[Toolbar_PluginPAD] = wxGetBitmapFromMemory(Toolbar_Pad2_png);
|
|
|
|
m_Bitmaps[Toolbar_Wiimote] = wxGetBitmapFromMemory(Toolbar_Wiimote2_png);
|
2009-02-27 06:24:54 +00:00
|
|
|
m_Bitmaps[Toolbar_Screenshot] = wxGetBitmapFromMemory(Toolbar_Fullscreen2_png);
|
2009-02-23 06:15:48 +00:00
|
|
|
m_Bitmaps[Toolbar_FullScreen] = wxGetBitmapFromMemory(Toolbar_Fullscreen2_png);
|
|
|
|
m_Bitmaps[Toolbar_Help] = wxGetBitmapFromMemory(Toolbar_Help2_png);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case KDE:
|
|
|
|
{
|
|
|
|
m_Bitmaps[Toolbar_FileOpen] = wxGetBitmapFromMemory(Toolbar_Open3_png);
|
|
|
|
m_Bitmaps[Toolbar_Refresh] = wxGetBitmapFromMemory(Toolbar_Refresh3_png);
|
|
|
|
m_Bitmaps[Toolbar_Browse] = wxGetBitmapFromMemory(Toolbar_Browse3_png);
|
|
|
|
m_Bitmaps[Toolbar_Play] = wxGetBitmapFromMemory(Toolbar_Play3_png);
|
|
|
|
m_Bitmaps[Toolbar_Stop] = wxGetBitmapFromMemory(Toolbar_Stop3_png);
|
|
|
|
m_Bitmaps[Toolbar_Pause] = wxGetBitmapFromMemory(Toolbar_Pause3_png);
|
|
|
|
m_Bitmaps[Toolbar_PluginOptions]= wxGetBitmapFromMemory(Toolbar_Options3_png);
|
|
|
|
m_Bitmaps[Toolbar_PluginGFX] = wxGetBitmapFromMemory(Toolbar_Gfx3_png);
|
|
|
|
m_Bitmaps[Toolbar_PluginDSP] = wxGetBitmapFromMemory(Toolbar_DSP3_png);
|
|
|
|
m_Bitmaps[Toolbar_PluginPAD] = wxGetBitmapFromMemory(Toolbar_Pad3_png);
|
|
|
|
m_Bitmaps[Toolbar_Wiimote] = wxGetBitmapFromMemory(Toolbar_Wiimote3_png);
|
2009-02-27 06:24:54 +00:00
|
|
|
m_Bitmaps[Toolbar_Screenshot] = wxGetBitmapFromMemory(Toolbar_Fullscreen3_png);
|
2009-02-23 06:15:48 +00:00
|
|
|
m_Bitmaps[Toolbar_FullScreen] = wxGetBitmapFromMemory(Toolbar_Fullscreen3_png);
|
|
|
|
m_Bitmaps[Toolbar_Help] = wxGetBitmapFromMemory(Toolbar_Help3_png);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: PanicAlert("Theme selection went wrong");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update in case the bitmap has been updated
|
2009-09-15 21:35:32 +00:00
|
|
|
if (m_ToolBar != NULL) RecreateToolbar();
|
2009-08-27 10:10:07 +00:00
|
|
|
|
|
|
|
aNormalFile = wxArtProvider::GetBitmap(wxART_NORMAL_FILE, wxART_OTHER, wxSize(16,16));
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
|
|
|
|
2009-08-25 07:49:23 +00:00
|
|
|
// Menu items
|
|
|
|
|
2010-01-18 12:10:51 +00:00
|
|
|
// Start the game or change the disc.
|
|
|
|
// Boot priority:
|
2010-01-18 18:21:27 +00:00
|
|
|
// 1. Show the game list and boot the selected game.
|
|
|
|
// 2. Default ISO
|
2010-01-18 12:10:51 +00:00
|
|
|
// 3. Boot last selected game
|
2010-01-22 21:41:25 +00:00
|
|
|
void CFrame::BootGame(const std::string& filename)
|
2009-02-23 06:15:48 +00:00
|
|
|
{
|
2010-04-17 03:17:36 +00:00
|
|
|
std::string bootfile = filename;
|
2010-01-18 12:10:51 +00:00
|
|
|
SCoreStartupParameter& StartUp = SConfig::GetInstance().m_LocalCoreStartupParameter;
|
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
if (Core::GetState() != Core::CORE_UNINITIALIZED)
|
2009-12-28 19:34:19 +00:00
|
|
|
return;
|
|
|
|
|
2010-01-22 21:41:25 +00:00
|
|
|
// Start filename if non empty.
|
2009-09-15 05:38:49 +00:00
|
|
|
// Start the selected ISO, or try one of the saved paths.
|
|
|
|
// If all that fails, ask to add a dir and don't boot
|
2010-04-17 03:17:36 +00:00
|
|
|
if (bootfile.empty())
|
2009-02-23 06:15:48 +00:00
|
|
|
{
|
2010-04-17 03:17:36 +00:00
|
|
|
if (m_GameListCtrl->GetSelectedISO() != NULL)
|
2009-09-15 05:38:49 +00:00
|
|
|
{
|
2010-04-17 03:17:36 +00:00
|
|
|
if (m_GameListCtrl->GetSelectedISO()->IsValid())
|
|
|
|
bootfile = m_GameListCtrl->GetSelectedISO()->GetFileName();
|
2009-09-15 05:38:49 +00:00
|
|
|
}
|
2010-04-17 03:17:36 +00:00
|
|
|
else if (!StartUp.m_strDefaultGCM.empty()
|
|
|
|
&& wxFileExists(wxString(StartUp.m_strDefaultGCM.c_str(), wxConvUTF8)))
|
|
|
|
bootfile = StartUp.m_strDefaultGCM;
|
2009-09-15 05:38:49 +00:00
|
|
|
else
|
|
|
|
{
|
2010-04-17 03:17:36 +00:00
|
|
|
if (!SConfig::GetInstance().m_LastFilename.empty()
|
|
|
|
&& wxFileExists(wxString(SConfig::GetInstance().m_LastFilename.c_str(), wxConvUTF8)))
|
|
|
|
bootfile = SConfig::GetInstance().m_LastFilename;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_GameListCtrl->BrowseForDirectory();
|
|
|
|
return;
|
|
|
|
}
|
2010-01-30 15:05:16 +00:00
|
|
|
}
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
2010-04-17 03:17:36 +00:00
|
|
|
if (!bootfile.empty())
|
|
|
|
StartGame(bootfile);
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
|
|
|
|
2009-06-18 08:22:02 +00:00
|
|
|
// Open file to boot
|
2009-02-23 06:15:48 +00:00
|
|
|
void CFrame::OnOpen(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
DoOpen(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFrame::DoOpen(bool Boot)
|
|
|
|
{
|
2010-06-05 01:38:22 +00:00
|
|
|
std::string currentDir = File::GetCurrentDir();
|
2009-02-24 07:18:08 +00:00
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
wxString path = wxFileSelector(
|
|
|
|
_T("Select the file to load"),
|
|
|
|
wxEmptyString, wxEmptyString, wxEmptyString,
|
|
|
|
wxString::Format
|
|
|
|
(
|
|
|
|
_T("All GC/Wii files (elf, dol, gcm, iso, wad)|*.elf;*.dol;*.gcm;*.iso;*.gcz;*.wad|All files (%s)|%s"),
|
|
|
|
wxFileSelectorDefaultWildcardStr,
|
|
|
|
wxFileSelectorDefaultWildcardStr
|
|
|
|
),
|
|
|
|
wxFD_OPEN | wxFD_PREVIEW | wxFD_FILE_MUST_EXIST,
|
|
|
|
this);
|
2009-06-18 08:22:02 +00:00
|
|
|
|
2009-07-01 04:55:53 +00:00
|
|
|
bool fileChosen = !path.IsEmpty();
|
2009-02-23 06:15:48 +00:00
|
|
|
|
2010-06-05 01:38:22 +00:00
|
|
|
std::string currentDir2 = File::GetCurrentDir();
|
2009-02-24 07:18:08 +00:00
|
|
|
|
2010-06-05 01:38:22 +00:00
|
|
|
if (currentDir != currentDir2)
|
|
|
|
{
|
|
|
|
PanicAlert("Current dir changed from %s to %s after wxFileSelector!",currentDir.c_str(),currentDir2.c_str());
|
|
|
|
File::SetCurrentDir(currentDir.c_str());
|
|
|
|
}
|
2009-02-24 07:18:08 +00:00
|
|
|
|
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
// Should we boot a new game or just change the disc?
|
2009-06-18 08:22:02 +00:00
|
|
|
if (Boot)
|
2009-02-23 06:15:48 +00:00
|
|
|
{
|
2009-06-18 08:22:02 +00:00
|
|
|
if (!fileChosen)
|
|
|
|
return;
|
2010-04-17 03:17:36 +00:00
|
|
|
BootGame(std::string(path.mb_str()));
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-01-24 03:17:42 +00:00
|
|
|
strncpy(newDiscpath, path.mb_str(), strlen(path.mb_str())+1);
|
|
|
|
DVDInterface::ChangeDisc(newDiscpath);
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-22 02:05:02 +00:00
|
|
|
void CFrame::OnFrameStep(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
Frame::SetFrameStepping(event.IsChecked());
|
|
|
|
}
|
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
void CFrame::OnChangeDisc(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
DoOpen(false);
|
|
|
|
}
|
|
|
|
|
2009-08-21 09:26:34 +00:00
|
|
|
void CFrame::OnRecord(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
wxString path = wxFileSelector(
|
|
|
|
_T("Select The Recording File"),
|
|
|
|
wxEmptyString, wxEmptyString, wxEmptyString,
|
|
|
|
wxString::Format
|
|
|
|
(
|
|
|
|
_T("Dolphin TAS Movies (*.dtm)|*.dtm|All files (%s)|%s"),
|
|
|
|
wxFileSelectorDefaultWildcardStr,
|
|
|
|
wxFileSelectorDefaultWildcardStr
|
|
|
|
),
|
|
|
|
wxFD_SAVE | wxFD_PREVIEW | wxFD_FILE_MUST_EXIST,
|
|
|
|
this);
|
|
|
|
|
|
|
|
if(path.IsEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// TODO: Take controller settings from Gamecube Configuration menu
|
2009-08-21 19:55:03 +00:00
|
|
|
if(Frame::BeginRecordingInput(path.mb_str(), 1))
|
2010-01-22 21:41:25 +00:00
|
|
|
BootGame(std::string(""));
|
2009-08-21 19:55:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CFrame::OnPlayRecording(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
wxString path = wxFileSelector(
|
|
|
|
_T("Select The Recording File"),
|
|
|
|
wxEmptyString, wxEmptyString, wxEmptyString,
|
|
|
|
wxString::Format
|
|
|
|
(
|
|
|
|
_T("Dolphin TAS Movies (*.dtm)|*.dtm|All files (%s)|%s"),
|
|
|
|
wxFileSelectorDefaultWildcardStr,
|
|
|
|
wxFileSelectorDefaultWildcardStr
|
|
|
|
),
|
|
|
|
wxFD_OPEN | wxFD_PREVIEW | wxFD_FILE_MUST_EXIST,
|
|
|
|
this);
|
|
|
|
|
|
|
|
if(path.IsEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(Frame::PlayInput(path.mb_str()))
|
2010-01-22 21:41:25 +00:00
|
|
|
BootGame(std::string(""));
|
2009-08-21 09:26:34 +00:00
|
|
|
}
|
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
void CFrame::OnPlay(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
2009-12-28 19:34:19 +00:00
|
|
|
if (Core::GetState() != Core::CORE_UNINITIALIZED)
|
|
|
|
{
|
2010-01-18 12:10:51 +00:00
|
|
|
// Core is initialized and emulator is running
|
2009-12-28 19:34:19 +00:00
|
|
|
if (UseDebugger)
|
|
|
|
{
|
|
|
|
if (CCPU::IsStepping())
|
|
|
|
CCPU::EnableStepping(false);
|
|
|
|
else
|
|
|
|
CCPU::EnableStepping(true); // Break
|
|
|
|
|
|
|
|
wxThread::Sleep(20);
|
|
|
|
g_pCodeWindow->JumpToAddress(PC);
|
|
|
|
g_pCodeWindow->Update();
|
2010-03-15 23:25:11 +00:00
|
|
|
// Update toolbar with Play/Pause status
|
|
|
|
UpdateGUI();
|
2009-12-28 19:34:19 +00:00
|
|
|
}
|
|
|
|
else
|
2010-03-15 23:25:11 +00:00
|
|
|
DoPause();
|
2009-12-28 19:34:19 +00:00
|
|
|
}
|
2010-01-18 12:10:51 +00:00
|
|
|
else
|
|
|
|
// Core is uninitialized, start the game
|
2010-04-17 03:17:36 +00:00
|
|
|
BootGame(std::string(""));
|
2010-01-18 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2010-04-12 01:33:10 +00:00
|
|
|
void CFrame::OnRenderParentClose(wxCloseEvent& event)
|
|
|
|
{
|
2010-04-17 03:17:36 +00:00
|
|
|
DoStop();
|
2010-04-12 01:33:10 +00:00
|
|
|
event.Skip();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFrame::OnRenderParentMove(wxMoveEvent& event)
|
|
|
|
{
|
2010-04-22 04:28:34 +00:00
|
|
|
if (Core::GetState() != Core::CORE_UNINITIALIZED &&
|
|
|
|
!RendererIsFullscreen() && !m_RenderFrame->IsMaximized())
|
2010-04-12 01:33:10 +00:00
|
|
|
{
|
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowXPos = m_RenderFrame->GetPosition().x;
|
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowYPos = m_RenderFrame->GetPosition().y;
|
|
|
|
}
|
|
|
|
event.Skip();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFrame::OnRenderParentResize(wxSizeEvent& event)
|
|
|
|
{
|
2010-04-22 04:28:34 +00:00
|
|
|
if (Core::GetState() != Core::CORE_UNINITIALIZED)
|
2010-04-12 01:33:10 +00:00
|
|
|
{
|
2010-04-22 04:28:34 +00:00
|
|
|
int width, height;
|
|
|
|
if (!SConfig::GetInstance().m_LocalCoreStartupParameter.bRenderToMain &&
|
|
|
|
!RendererIsFullscreen() && !m_RenderFrame->IsMaximized())
|
|
|
|
{
|
|
|
|
m_RenderFrame->GetSize(&width, &height);
|
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowWidth = width;
|
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowHeight = height;
|
|
|
|
}
|
2010-04-12 01:33:10 +00:00
|
|
|
#if defined(HAVE_X11) && HAVE_X11
|
2010-04-22 04:28:34 +00:00
|
|
|
int x, y;
|
|
|
|
m_RenderParent->GetSize(&width, &height);
|
|
|
|
m_RenderParent->GetPosition(&x, &y);
|
2010-07-16 14:14:57 +00:00
|
|
|
X11Utils::SendClientEvent(X11Utils::XDisplayFromHandle(GetHandle()),
|
|
|
|
"RESIZE", x, y, width, height);
|
2010-04-12 01:33:10 +00:00
|
|
|
#endif
|
2010-04-22 04:28:34 +00:00
|
|
|
}
|
2010-04-17 03:17:36 +00:00
|
|
|
event.Skip();
|
2010-04-12 01:33:10 +00:00
|
|
|
}
|
|
|
|
|
2010-04-22 04:28:34 +00:00
|
|
|
void CFrame::ToggleDisplayMode (bool bFullscreen)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
if (bFullscreen)
|
|
|
|
{
|
|
|
|
DEVMODE dmScreenSettings;
|
|
|
|
memset(&dmScreenSettings,0,sizeof(dmScreenSettings));
|
|
|
|
dmScreenSettings.dmSize = sizeof(dmScreenSettings);
|
|
|
|
sscanf(SConfig::GetInstance().m_LocalCoreStartupParameter.strFullscreenResolution.c_str(),
|
|
|
|
"%dx%d", &dmScreenSettings.dmPelsWidth, &dmScreenSettings.dmPelsHeight);
|
|
|
|
dmScreenSettings.dmBitsPerPel = 32;
|
|
|
|
dmScreenSettings.dmFields = DM_BITSPERPEL|DM_PELSWIDTH|DM_PELSHEIGHT;
|
|
|
|
|
|
|
|
// Try To Set Selected Mode And Get Results. NOTE: CDS_FULLSCREEN Gets Rid Of Start Bar.
|
|
|
|
ChangeDisplaySettings(&dmScreenSettings, CDS_FULLSCREEN);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Change to default resolution
|
|
|
|
ChangeDisplaySettings(NULL, CDS_FULLSCREEN);
|
|
|
|
}
|
|
|
|
#elif defined(HAVE_XRANDR) && HAVE_XRANDR
|
|
|
|
m_XRRConfig->ToggleDisplayMode(bFullscreen);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-01-18 12:10:51 +00:00
|
|
|
// Prepare the GUI to start the game.
|
2010-01-22 21:41:25 +00:00
|
|
|
void CFrame::StartGame(const std::string& filename)
|
2010-01-18 12:10:51 +00:00
|
|
|
{
|
2010-04-17 03:17:36 +00:00
|
|
|
m_bGameLoading = true;
|
2010-01-18 12:10:51 +00:00
|
|
|
|
|
|
|
if (m_ToolBar)
|
|
|
|
m_ToolBar->EnableTool(IDM_PLAY, false);
|
|
|
|
GetMenuBar()->FindItem(IDM_PLAY)->Enable(false);
|
|
|
|
|
|
|
|
// Game has been started, hide the game list
|
|
|
|
if (m_GameListCtrl->IsShown())
|
|
|
|
{
|
|
|
|
m_GameListCtrl->Disable();
|
|
|
|
m_GameListCtrl->Hide();
|
|
|
|
}
|
2009-12-28 19:34:19 +00:00
|
|
|
|
2010-04-12 01:33:10 +00:00
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bRenderToMain)
|
|
|
|
{
|
|
|
|
m_RenderParent = m_Panel;
|
|
|
|
m_RenderFrame = this;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wxPoint position(SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowXPos,
|
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowYPos);
|
|
|
|
wxSize size(SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowWidth,
|
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.iRenderWindowHeight);
|
2010-04-15 03:25:35 +00:00
|
|
|
m_RenderFrame = new CRenderFrame((wxFrame*)this, wxID_ANY, _("Dolphin"), position, size);
|
2010-04-12 01:33:10 +00:00
|
|
|
m_RenderFrame->Connect(wxID_ANY, wxEVT_CLOSE_WINDOW,
|
|
|
|
wxCloseEventHandler(CFrame::OnRenderParentClose),
|
|
|
|
(wxObject*)0, this);
|
|
|
|
m_RenderFrame->Connect(wxID_ANY, wxEVT_ACTIVATE,
|
|
|
|
wxActivateEventHandler(CFrame::OnActive),
|
|
|
|
(wxObject*)0, this);
|
|
|
|
m_RenderFrame->Connect(wxID_ANY, wxEVT_MOVE,
|
|
|
|
wxMoveEventHandler(CFrame::OnRenderParentMove),
|
|
|
|
(wxObject*)0, this);
|
|
|
|
m_RenderParent = new CPanel(m_RenderFrame, wxID_ANY);
|
|
|
|
m_RenderFrame->Show();
|
|
|
|
}
|
|
|
|
|
2010-04-17 03:17:36 +00:00
|
|
|
if (!BootManager::BootCore(filename))
|
|
|
|
{
|
|
|
|
// Destroy the renderer frame when not rendering to main
|
|
|
|
if (!SConfig::GetInstance().m_LocalCoreStartupParameter.bRenderToMain)
|
|
|
|
m_RenderFrame->Destroy();
|
|
|
|
m_RenderParent = NULL;
|
|
|
|
m_bGameLoading = false;
|
|
|
|
UpdateGUI();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-04-22 04:28:34 +00:00
|
|
|
DoFullscreen(SConfig::GetInstance().m_LocalCoreStartupParameter.bFullscreen);
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
::SetFocus((HWND)m_RenderParent->GetHandle());
|
|
|
|
#else
|
|
|
|
m_RenderParent->SetFocus();
|
|
|
|
#endif
|
|
|
|
|
2010-04-17 03:17:36 +00:00
|
|
|
wxTheApp->Connect(wxID_ANY, wxEVT_KEY_DOWN, // Keyboard
|
|
|
|
wxKeyEventHandler(CFrame::OnKeyDown),
|
|
|
|
(wxObject*)0, this);
|
|
|
|
wxTheApp->Connect(wxID_ANY, wxEVT_KEY_UP,
|
|
|
|
wxKeyEventHandler(CFrame::OnKeyUp),
|
|
|
|
(wxObject*)0, this);
|
|
|
|
m_RenderFrame->Connect(wxID_ANY, wxEVT_SIZE,
|
|
|
|
wxSizeEventHandler(CFrame::OnRenderParentResize),
|
|
|
|
(wxObject*)0, this);
|
|
|
|
}
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CFrame::OnBootDrive(wxCommandEvent& event)
|
|
|
|
{
|
2010-04-17 03:17:36 +00:00
|
|
|
BootGame(drives[event.GetId()-IDM_DRIVE1]);
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
2009-06-20 11:05:52 +00:00
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
|
|
|
|
// Refresh the file list and browse for a favorites directory
|
|
|
|
void CFrame::OnRefresh(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
2009-09-06 13:36:05 +00:00
|
|
|
if (m_GameListCtrl) m_GameListCtrl->Update();
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CFrame::OnBrowse(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
2009-09-06 13:36:05 +00:00
|
|
|
if (m_GameListCtrl) m_GameListCtrl->BrowseForDirectory();
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
2009-02-27 03:56:34 +00:00
|
|
|
|
2009-06-20 11:05:52 +00:00
|
|
|
// Create screenshot
|
2009-02-27 03:56:34 +00:00
|
|
|
void CFrame::OnScreenshot(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
2009-06-28 19:47:02 +00:00
|
|
|
Core::ScreenShot();
|
2009-02-27 03:56:34 +00:00
|
|
|
}
|
2009-02-23 06:15:48 +00:00
|
|
|
|
2010-02-09 00:34:27 +00:00
|
|
|
// Pause the emulation
|
|
|
|
void CFrame::DoPause()
|
|
|
|
{
|
2010-03-08 23:29:16 +00:00
|
|
|
if (Core::GetState() == Core::CORE_RUN)
|
2010-03-15 23:25:11 +00:00
|
|
|
{
|
2010-03-08 23:29:16 +00:00
|
|
|
Core::SetState(Core::CORE_PAUSE);
|
2010-04-12 01:33:10 +00:00
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor)
|
|
|
|
m_RenderParent->SetCursor(wxCURSOR_ARROW);
|
2010-03-15 23:25:11 +00:00
|
|
|
}
|
2010-03-08 23:29:16 +00:00
|
|
|
else
|
2010-03-15 23:25:11 +00:00
|
|
|
{
|
2010-03-08 23:29:16 +00:00
|
|
|
Core::SetState(Core::CORE_RUN);
|
2010-04-12 01:33:10 +00:00
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor &&
|
|
|
|
RendererHasFocus())
|
|
|
|
m_RenderParent->SetCursor(wxCURSOR_BLANK);
|
2010-03-15 23:25:11 +00:00
|
|
|
}
|
2010-02-09 00:34:27 +00:00
|
|
|
UpdateGUI();
|
|
|
|
}
|
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
// Stop the emulation
|
|
|
|
void CFrame::DoStop()
|
|
|
|
{
|
|
|
|
if (Core::GetState() != Core::CORE_UNINITIALIZED)
|
|
|
|
{
|
2010-01-19 06:37:09 +00:00
|
|
|
// Ask for confirmation in case the user accidentally clicked Stop / Escape
|
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bConfirmStop)
|
|
|
|
{
|
2010-01-20 10:11:53 +00:00
|
|
|
// Suppress duplicate dialog boxes
|
2010-01-20 07:47:41 +00:00
|
|
|
if (m_StopDlg)
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_StopDlg = new wxMessageDialog(
|
2010-01-19 06:37:09 +00:00
|
|
|
this,
|
2010-01-19 20:18:41 +00:00
|
|
|
wxT("Do you want to stop the current emulation?"),
|
|
|
|
wxT("Please confirm..."),
|
|
|
|
wxYES_NO | wxSTAY_ON_TOP | wxICON_EXCLAMATION,
|
2010-01-19 06:37:09 +00:00
|
|
|
wxDefaultPosition);
|
|
|
|
|
2010-01-20 07:47:41 +00:00
|
|
|
int Ret = m_StopDlg->ShowModal();
|
|
|
|
m_StopDlg->Destroy();
|
|
|
|
m_StopDlg = NULL;
|
2010-01-19 20:18:41 +00:00
|
|
|
if (Ret == wxID_NO)
|
2009-04-28 23:47:18 +00:00
|
|
|
return;
|
2010-01-19 06:37:09 +00:00
|
|
|
}
|
2009-08-21 09:26:34 +00:00
|
|
|
|
|
|
|
// TODO: Show the author/description dialog here
|
|
|
|
if(Frame::IsRecordingInput())
|
|
|
|
Frame::EndRecordingInput();
|
2009-08-21 20:15:33 +00:00
|
|
|
if(Frame::IsPlayingInput())
|
|
|
|
Frame::EndPlayInput();
|
2009-04-28 23:47:18 +00:00
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
Core::Stop();
|
|
|
|
UpdateGUI();
|
2010-01-01 03:55:39 +00:00
|
|
|
|
2010-04-12 01:33:10 +00:00
|
|
|
// Destroy the renderer frame when not rendering to main
|
2010-04-17 03:17:36 +00:00
|
|
|
m_RenderFrame->Disconnect(wxID_ANY, wxEVT_SIZE,
|
|
|
|
wxSizeEventHandler(CFrame::OnRenderParentResize),
|
|
|
|
(wxObject*)0, this);
|
|
|
|
wxTheApp->Disconnect(wxID_ANY, wxEVT_KEY_DOWN, // Keyboard
|
|
|
|
wxKeyEventHandler(CFrame::OnKeyDown),
|
|
|
|
(wxObject*)0, this);
|
|
|
|
wxTheApp->Disconnect(wxID_ANY, wxEVT_KEY_UP,
|
|
|
|
wxKeyEventHandler(CFrame::OnKeyUp),
|
|
|
|
(wxObject*)0, this);
|
2010-04-12 01:33:10 +00:00
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor)
|
|
|
|
m_RenderParent->SetCursor(wxCURSOR_ARROW);
|
2010-04-22 04:28:34 +00:00
|
|
|
DoFullscreen(FALSE);
|
2010-04-12 01:33:10 +00:00
|
|
|
if (!SConfig::GetInstance().m_LocalCoreStartupParameter.bRenderToMain)
|
|
|
|
m_RenderFrame->Destroy();
|
2010-04-12 20:41:38 +00:00
|
|
|
m_RenderParent = NULL;
|
2010-04-12 01:33:10 +00:00
|
|
|
|
2010-01-01 03:55:39 +00:00
|
|
|
// Clean framerate indications from the status bar.
|
|
|
|
m_pStatusBar->SetStatusText(wxT(" "), 0);
|
2010-07-08 17:25:20 +00:00
|
|
|
|
2010-07-08 23:27:51 +00:00
|
|
|
// If batch mode was specified on the command-line, exit now.
|
|
|
|
if (m_bBatchMode)
|
2010-07-08 17:25:20 +00:00
|
|
|
Close(true);
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFrame::OnStop(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
2010-04-17 03:17:36 +00:00
|
|
|
m_bGameLoading = false;
|
2009-04-28 23:47:18 +00:00
|
|
|
DoStop();
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
2009-06-20 11:05:52 +00:00
|
|
|
|
2009-10-06 15:49:20 +00:00
|
|
|
void CFrame::OnReset(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
ProcessorInterface::ResetButton_Tap();
|
|
|
|
}
|
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
void CFrame::OnConfigMain(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
CConfigMain ConfigMain(this);
|
|
|
|
if (ConfigMain.ShowModal() == wxID_OK)
|
|
|
|
m_GameListCtrl->Update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFrame::OnPluginGFX(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
CPluginManager::GetInstance().OpenConfig(
|
|
|
|
GetHandle(),
|
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.m_strVideoPlugin.c_str(),
|
|
|
|
PLUGIN_TYPE_VIDEO
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFrame::OnPluginDSP(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
CPluginManager::GetInstance().OpenConfig(
|
|
|
|
GetHandle(),
|
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.m_strDSPPlugin.c_str(),
|
|
|
|
PLUGIN_TYPE_DSP
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2010-06-03 18:05:08 +00:00
|
|
|
void CFrame::OnPluginPAD(wxCommandEvent& WXUNUSED (event))
|
2009-02-23 06:15:48 +00:00
|
|
|
{
|
2010-06-13 09:14:40 +00:00
|
|
|
InputPlugin *pad_plugin = PAD_GetPlugin();
|
|
|
|
bool was_init = false;
|
|
|
|
if ( pad_plugin->controller_interface.IsInit() ) // check if game is running
|
|
|
|
was_init = true;
|
|
|
|
else
|
|
|
|
{
|
2010-06-13 14:49:49 +00:00
|
|
|
#if defined(HAVE_X11) && HAVE_X11
|
2010-07-16 03:43:11 +00:00
|
|
|
Window win = X11Utils::XWindowFromHandle(GetHandle());
|
2010-07-16 14:14:57 +00:00
|
|
|
GCPad_Init((void *)win);
|
2010-06-13 14:49:49 +00:00
|
|
|
#else
|
2010-06-13 09:14:40 +00:00
|
|
|
GCPad_Init(GetHandle());
|
2010-06-13 14:49:49 +00:00
|
|
|
#endif
|
2010-06-13 09:14:40 +00:00
|
|
|
}
|
2010-06-16 02:57:50 +00:00
|
|
|
InputConfigDialog* m_ConfigFrame = new InputConfigDialog(this, *pad_plugin, "Dolphin GCPad Configuration");
|
2010-06-13 09:14:40 +00:00
|
|
|
m_ConfigFrame->ShowModal();
|
|
|
|
m_ConfigFrame->Destroy();
|
2010-06-16 02:57:50 +00:00
|
|
|
if (!was_init) // if game isn't running
|
2010-06-13 09:14:40 +00:00
|
|
|
{
|
|
|
|
GCPad_Deinit();
|
|
|
|
}
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
2010-06-13 09:14:40 +00:00
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
void CFrame::OnPluginWiimote(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
CPluginManager::GetInstance().OpenConfig(
|
|
|
|
GetHandle(),
|
2010-06-12 20:13:58 +00:00
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.m_strWiimotePlugin.c_str(),
|
2009-02-23 06:15:48 +00:00
|
|
|
PLUGIN_TYPE_WIIMOTE
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFrame::OnHelp(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
switch (event.GetId())
|
|
|
|
{
|
2010-06-01 21:03:02 +00:00
|
|
|
case wxID_ABOUT:
|
2009-02-23 06:15:48 +00:00
|
|
|
{
|
2009-11-01 01:24:30 +00:00
|
|
|
AboutDolphin frame(this);
|
|
|
|
frame.ShowModal();
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
2010-02-25 06:38:09 +00:00
|
|
|
break;
|
2009-02-23 06:15:48 +00:00
|
|
|
case IDM_HELPWEBSITE:
|
2009-02-24 19:31:32 +00:00
|
|
|
WxUtils::Launch("http://www.dolphin-emu.com/");
|
2009-02-23 06:15:48 +00:00
|
|
|
break;
|
|
|
|
case IDM_HELPGOOGLECODE:
|
2009-02-24 19:31:32 +00:00
|
|
|
WxUtils::Launch("http://code.google.com/p/dolphin-emu/");
|
2009-02-23 06:15:48 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-08-27 07:33:07 +00:00
|
|
|
|
2009-09-01 19:47:04 +00:00
|
|
|
void CFrame::ClearStatusBar()
|
2009-08-27 07:33:07 +00:00
|
|
|
{
|
2009-09-01 19:47:04 +00:00
|
|
|
if (this->GetStatusBar()->IsEnabled()) this->GetStatusBar()->SetStatusText(wxT(""),0);
|
2009-08-27 07:33:07 +00:00
|
|
|
}
|
2009-09-08 21:16:05 +00:00
|
|
|
|
|
|
|
void CFrame::StatusBarMessage(const char * Text, ...)
|
2009-09-03 07:59:24 +00:00
|
|
|
{
|
|
|
|
const int MAX_BYTES = 1024*10;
|
|
|
|
char Str[MAX_BYTES];
|
|
|
|
va_list ArgPtr;
|
|
|
|
int Cnt;
|
|
|
|
va_start(ArgPtr, Text);
|
|
|
|
Cnt = vsnprintf(Str, MAX_BYTES, Text, ArgPtr);
|
|
|
|
va_end(ArgPtr);
|
|
|
|
|
|
|
|
if (this->GetStatusBar()->IsEnabled()) this->GetStatusBar()->SetStatusText(wxString::FromAscii(Str),0);
|
|
|
|
}
|
2009-02-23 06:15:48 +00:00
|
|
|
|
2009-09-02 21:00:45 +00:00
|
|
|
|
2009-08-29 06:08:14 +00:00
|
|
|
// Miscellaneous menus
|
2009-09-08 16:07:13 +00:00
|
|
|
// ---------------------
|
2009-05-13 21:50:24 +00:00
|
|
|
// NetPlay stuff
|
|
|
|
void CFrame::OnNetPlay(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
2010-05-01 19:10:35 +00:00
|
|
|
new NetPlaySetupDiag(this, m_GameListCtrl);
|
2009-05-13 21:50:24 +00:00
|
|
|
}
|
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
void CFrame::OnMemcard(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
CMemcardManager MemcardManager(this);
|
|
|
|
MemcardManager.ShowModal();
|
2010-01-05 07:34:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CFrame::OnImportSave(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
wxString path = wxFileSelector(_T("Select the save file"),
|
|
|
|
wxEmptyString, wxEmptyString, wxEmptyString,
|
|
|
|
wxString::Format
|
|
|
|
(
|
|
|
|
_T("Wii save files|data.bin|All files (%s)|%s"),
|
|
|
|
wxFileSelectorDefaultWildcardStr,
|
|
|
|
wxFileSelectorDefaultWildcardStr
|
|
|
|
),
|
|
|
|
wxFD_OPEN | wxFD_PREVIEW | wxFD_FILE_MUST_EXIST,
|
|
|
|
this);
|
|
|
|
|
|
|
|
if (!path.IsEmpty())
|
|
|
|
{
|
2010-01-14 07:19:10 +00:00
|
|
|
CWiiSaveCrypted* saveFile = new CWiiSaveCrypted(path.ToUTF8().data());
|
|
|
|
delete saveFile;
|
2010-01-05 07:34:03 +00:00
|
|
|
}
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
|
|
|
|
2009-11-07 23:54:10 +00:00
|
|
|
void CFrame::OnOpenLuaWindow(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
new wxLuaWindow(this, wxDefaultPosition, wxSize(600, 390));
|
|
|
|
}
|
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
void CFrame::OnShow_CheatsWindow(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
2010-07-18 04:13:16 +00:00
|
|
|
CheatsWindow = new wxCheatsWindow(this);
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
2009-03-20 19:12:04 +00:00
|
|
|
|
2010-05-13 04:50:18 +00:00
|
|
|
void CFrame::OnLoadWiiMenu(wxCommandEvent& event)
|
2009-02-27 23:44:15 +00:00
|
|
|
{
|
2010-05-13 04:50:18 +00:00
|
|
|
if (event.GetId() == IDM_LOAD_WII_MENU)
|
|
|
|
{
|
|
|
|
BootGame(std::string (File::GetUserPath(D_WIIMENU_IDX)));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
|
|
|
|
wxString path = wxFileSelector(
|
|
|
|
_T("Select the System Menu wad extracted from the update partition of a disc"),
|
|
|
|
wxEmptyString, wxEmptyString, wxEmptyString,
|
|
|
|
wxString::Format
|
|
|
|
(
|
2010-05-28 17:23:51 +00:00
|
|
|
_T("System Menu wad|*.wad"),
|
2010-05-13 04:50:18 +00:00
|
|
|
wxFileSelectorDefaultWildcardStr,
|
|
|
|
wxFileSelectorDefaultWildcardStr
|
|
|
|
),
|
|
|
|
wxFD_OPEN | wxFD_PREVIEW | wxFD_FILE_MUST_EXIST,
|
|
|
|
this);
|
|
|
|
|
|
|
|
if (CBoot::Install_WiiWAD(path.mb_str()))
|
2010-05-16 17:11:51 +00:00
|
|
|
{
|
|
|
|
GetMenuBar()->FindItem(IDM_INSTALL_WII_MENU)->Enable(false);
|
2010-05-13 04:50:18 +00:00
|
|
|
}
|
|
|
|
}
|
2009-02-27 23:44:15 +00:00
|
|
|
}
|
|
|
|
|
2009-12-27 19:31:02 +00:00
|
|
|
void CFrame::OnConnectWiimote(wxCommandEvent& event)
|
|
|
|
{
|
2010-02-06 05:22:53 +00:00
|
|
|
if (Core::isRunning() && SConfig::GetInstance().m_LocalCoreStartupParameter.bWii)
|
2009-12-30 09:00:43 +00:00
|
|
|
{
|
|
|
|
int Id = event.GetId() - IDM_CONNECT_WIIMOTE1;
|
2010-01-04 03:11:31 +00:00
|
|
|
bNoWiimoteMsg = !event.IsChecked();
|
2009-12-30 09:00:43 +00:00
|
|
|
GetUsbPointer()->AccessWiiMote(Id | 0x100)->Activate(event.IsChecked());
|
2010-01-04 03:11:31 +00:00
|
|
|
wxString msg(wxString::Format(wxT("Wiimote %i %s"), Id + 1, (event.IsChecked()) ? wxT("Connected") : wxT("Disconnected")));
|
|
|
|
Core::DisplayMessage(msg.ToAscii(), 3000);
|
2009-12-30 09:00:43 +00:00
|
|
|
}
|
2009-12-27 19:31:02 +00:00
|
|
|
}
|
|
|
|
|
2009-06-18 08:22:02 +00:00
|
|
|
// Toogle fullscreen. In Windows the fullscreen mode is accomplished by expanding the m_Panel to cover
|
|
|
|
// the entire screen (when we render to the main window).
|
2009-02-23 06:15:48 +00:00
|
|
|
void CFrame::OnToggleFullscreen(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
2010-04-12 01:33:10 +00:00
|
|
|
DoFullscreen(!RendererIsFullscreen());
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CFrame::OnToggleDualCore(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
2009-10-23 15:26:35 +00:00
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.bCPUThread = !SConfig::GetInstance().m_LocalCoreStartupParameter.bCPUThread;
|
2009-02-23 06:15:48 +00:00
|
|
|
SConfig::GetInstance().SaveSettings();
|
|
|
|
}
|
2009-03-20 19:12:04 +00:00
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
void CFrame::OnToggleSkipIdle(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.bSkipIdle = !SConfig::GetInstance().m_LocalCoreStartupParameter.bSkipIdle;
|
|
|
|
SConfig::GetInstance().SaveSettings();
|
|
|
|
}
|
|
|
|
|
2009-06-28 01:11:35 +00:00
|
|
|
void CFrame::OnLoadStateFromFile(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
wxString path = wxFileSelector(
|
|
|
|
_T("Select the state to load"),
|
|
|
|
wxEmptyString, wxEmptyString, wxEmptyString,
|
|
|
|
wxString::Format
|
|
|
|
(
|
|
|
|
_T("All Save States (sav, s##)|*.sav;*.s??|All files (%s)|%s"),
|
|
|
|
wxFileSelectorDefaultWildcardStr,
|
|
|
|
wxFileSelectorDefaultWildcardStr
|
|
|
|
),
|
|
|
|
wxFD_OPEN | wxFD_PREVIEW | wxFD_FILE_MUST_EXIST,
|
|
|
|
this);
|
|
|
|
|
2009-10-05 07:31:38 +00:00
|
|
|
if(!path.IsEmpty())
|
2009-08-02 05:59:55 +00:00
|
|
|
State_LoadAs((const char*)path.mb_str());
|
2009-06-28 01:11:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CFrame::OnSaveStateToFile(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
wxString path = wxFileSelector(
|
|
|
|
_T("Select the state to save"),
|
|
|
|
wxEmptyString, wxEmptyString, wxEmptyString,
|
|
|
|
wxString::Format
|
|
|
|
(
|
|
|
|
_T("All Save States (sav, s##)|*.sav;*.s??|All files (%s)|%s"),
|
|
|
|
wxFileSelectorDefaultWildcardStr,
|
|
|
|
wxFileSelectorDefaultWildcardStr
|
|
|
|
),
|
|
|
|
wxFD_SAVE,
|
|
|
|
this);
|
|
|
|
|
2009-10-05 07:31:38 +00:00
|
|
|
if(! path.IsEmpty())
|
2009-08-02 05:59:55 +00:00
|
|
|
State_SaveAs((const char*)path.mb_str());
|
2009-06-28 01:11:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CFrame::OnLoadLastState(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
State_LoadLastSaved();
|
|
|
|
}
|
|
|
|
|
2009-06-28 21:11:51 +00:00
|
|
|
void CFrame::OnUndoLoadState(wxCommandEvent& WXUNUSED (event))
|
2009-06-28 01:11:35 +00:00
|
|
|
{
|
2009-06-28 21:11:51 +00:00
|
|
|
State_UndoLoadState();
|
2009-06-28 01:11:35 +00:00
|
|
|
}
|
|
|
|
|
2009-06-28 21:11:51 +00:00
|
|
|
void CFrame::OnUndoSaveState(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
State_UndoSaveState();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
void CFrame::OnLoadState(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
int id = event.GetId();
|
|
|
|
int slot = id - IDM_LOADSLOT1 + 1;
|
|
|
|
State_Load(slot);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFrame::OnSaveState(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
int id = event.GetId();
|
|
|
|
int slot = id - IDM_SAVESLOT1 + 1;
|
|
|
|
State_Save(slot);
|
|
|
|
}
|
|
|
|
|
2009-08-08 01:39:56 +00:00
|
|
|
void CFrame::OnFrameSkip(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
int amount = event.GetId() - IDM_FRAMESKIP0;
|
|
|
|
|
|
|
|
Frame::SetFrameSkipping((unsigned int)amount);
|
|
|
|
}
|
|
|
|
|
2009-08-25 07:49:23 +00:00
|
|
|
|
2009-09-02 21:00:45 +00:00
|
|
|
|
|
|
|
|
2009-08-27 10:10:07 +00:00
|
|
|
// GUI
|
2009-09-08 16:07:13 +00:00
|
|
|
// ---------------------
|
2009-02-23 06:15:48 +00:00
|
|
|
|
|
|
|
// Update the enabled/disabled status
|
|
|
|
void CFrame::UpdateGUI()
|
|
|
|
{
|
2009-12-31 16:25:12 +00:00
|
|
|
if (!m_bControlsCreated)
|
|
|
|
return;
|
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
// Save status
|
2009-09-07 12:40:43 +00:00
|
|
|
bool Initialized = Core::isRunning();
|
|
|
|
bool Running = Core::GetState() == Core::CORE_RUN;
|
|
|
|
bool Paused = Core::GetState() == Core::CORE_PAUSE;
|
2009-02-23 06:15:48 +00:00
|
|
|
|
|
|
|
// Make sure that we have a toolbar
|
2009-09-15 21:35:32 +00:00
|
|
|
if (m_ToolBar)
|
2009-02-23 06:15:48 +00:00
|
|
|
{
|
|
|
|
// Enable/disable the Config and Stop buttons
|
2009-09-07 12:40:43 +00:00
|
|
|
m_ToolBar->EnableTool(wxID_OPEN, !Initialized);
|
|
|
|
m_ToolBar->EnableTool(wxID_REFRESH, !Initialized); // Don't allow refresh when we don't show the list
|
|
|
|
m_ToolBar->EnableTool(IDM_STOP, Running || Paused);
|
2010-04-12 01:33:10 +00:00
|
|
|
m_ToolBar->EnableTool(IDM_TOGGLE_FULLSCREEN, Running || Paused);
|
2009-09-07 12:40:43 +00:00
|
|
|
m_ToolBar->EnableTool(IDM_SCREENSHOT, Running || Paused);
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// File
|
2009-09-07 12:40:43 +00:00
|
|
|
GetMenuBar()->FindItem(wxID_OPEN)->Enable(!Initialized);
|
|
|
|
m_pSubMenuDrive->Enable(!Initialized);
|
|
|
|
GetMenuBar()->FindItem(wxID_REFRESH)->Enable(!Initialized);
|
|
|
|
GetMenuBar()->FindItem(IDM_BROWSE)->Enable(!Initialized);
|
2009-02-23 06:15:48 +00:00
|
|
|
|
|
|
|
// Emulation
|
2009-09-07 12:40:43 +00:00
|
|
|
GetMenuBar()->FindItem(IDM_STOP)->Enable(Running || Paused);
|
2009-10-22 19:13:22 +00:00
|
|
|
GetMenuBar()->FindItem(IDM_RESET)->Enable(Running || Paused);
|
2009-09-07 12:40:43 +00:00
|
|
|
GetMenuBar()->FindItem(IDM_RECORD)->Enable(!Initialized);
|
|
|
|
GetMenuBar()->FindItem(IDM_PLAYRECORD)->Enable(!Initialized);
|
|
|
|
GetMenuBar()->FindItem(IDM_FRAMESTEP)->Enable(Running || Paused);
|
|
|
|
GetMenuBar()->FindItem(IDM_SCREENSHOT)->Enable(Running || Paused);
|
2010-04-12 01:33:10 +00:00
|
|
|
GetMenuBar()->FindItem(IDM_TOGGLE_FULLSCREEN)->Enable(Running || Paused);
|
|
|
|
|
|
|
|
// Update Menu Accelerators
|
|
|
|
GetMenuBar()->FindItem(IDM_TOGGLE_FULLSCREEN)->SetItemLabel(GetMenuLabel(HK_FULLSCREEN));
|
|
|
|
GetMenuBar()->FindItem(IDM_PLAY)->SetItemLabel(GetMenuLabel(HK_PLAY_PAUSE));
|
|
|
|
GetMenuBar()->FindItem(IDM_STOP)->SetItemLabel(GetMenuLabel(HK_STOP));
|
2010-04-25 20:10:16 +00:00
|
|
|
GetMenuBar()->FindItem(IDM_CONNECT_WIIMOTE1)->SetItemLabel(GetMenuLabel(HK_WIIMOTE1_CONNECT));
|
|
|
|
GetMenuBar()->FindItem(IDM_CONNECT_WIIMOTE2)->SetItemLabel(GetMenuLabel(HK_WIIMOTE2_CONNECT));
|
|
|
|
GetMenuBar()->FindItem(IDM_CONNECT_WIIMOTE3)->SetItemLabel(GetMenuLabel(HK_WIIMOTE3_CONNECT));
|
|
|
|
GetMenuBar()->FindItem(IDM_CONNECT_WIIMOTE4)->SetItemLabel(GetMenuLabel(HK_WIIMOTE4_CONNECT));
|
2010-04-12 01:33:10 +00:00
|
|
|
|
2009-09-07 12:40:43 +00:00
|
|
|
m_pSubMenuLoad->Enable(Initialized);
|
|
|
|
m_pSubMenuSave->Enable(Initialized);
|
2009-08-08 05:47:08 +00:00
|
|
|
|
2009-02-23 06:15:48 +00:00
|
|
|
// Misc
|
2009-09-07 12:40:43 +00:00
|
|
|
GetMenuBar()->FindItem(IDM_CHANGEDISC)->Enable(Initialized);
|
2010-02-02 21:56:29 +00:00
|
|
|
if (DiscIO::CNANDContentManager::Access().GetNANDLoader(std::string(File::GetUserPath(D_WIIMENU_IDX))).IsValid())
|
2009-09-07 12:40:43 +00:00
|
|
|
GetMenuBar()->FindItem(IDM_LOAD_WII_MENU)->Enable(!Initialized);
|
2009-02-23 06:15:48 +00:00
|
|
|
|
2010-02-06 05:22:53 +00:00
|
|
|
GetMenuBar()->FindItem(IDM_CONNECT_WIIMOTE1)->Enable(Initialized && SConfig::GetInstance().m_LocalCoreStartupParameter.bWii);
|
|
|
|
GetMenuBar()->FindItem(IDM_CONNECT_WIIMOTE2)->Enable(Initialized && SConfig::GetInstance().m_LocalCoreStartupParameter.bWii);
|
|
|
|
GetMenuBar()->FindItem(IDM_CONNECT_WIIMOTE3)->Enable(Initialized && SConfig::GetInstance().m_LocalCoreStartupParameter.bWii);
|
|
|
|
GetMenuBar()->FindItem(IDM_CONNECT_WIIMOTE4)->Enable(Initialized && SConfig::GetInstance().m_LocalCoreStartupParameter.bWii);
|
|
|
|
if (Initialized && SConfig::GetInstance().m_LocalCoreStartupParameter.bWii)
|
2009-12-27 19:31:02 +00:00
|
|
|
{
|
2009-12-30 09:00:43 +00:00
|
|
|
GetMenuBar()->FindItem(IDM_CONNECT_WIIMOTE1)->Check(GetUsbPointer()->AccessWiiMote(0x0100)->IsConnected() == 3);
|
|
|
|
GetMenuBar()->FindItem(IDM_CONNECT_WIIMOTE2)->Check(GetUsbPointer()->AccessWiiMote(0x0101)->IsConnected() == 3);
|
|
|
|
GetMenuBar()->FindItem(IDM_CONNECT_WIIMOTE3)->Check(GetUsbPointer()->AccessWiiMote(0x0102)->IsConnected() == 3);
|
|
|
|
GetMenuBar()->FindItem(IDM_CONNECT_WIIMOTE4)->Check(GetUsbPointer()->AccessWiiMote(0x0103)->IsConnected() == 3);
|
2009-12-27 19:31:02 +00:00
|
|
|
}
|
|
|
|
|
2009-09-07 12:40:43 +00:00
|
|
|
if (Running)
|
2009-02-23 06:15:48 +00:00
|
|
|
{
|
2009-09-15 21:35:32 +00:00
|
|
|
if (m_ToolBar)
|
2009-02-23 06:15:48 +00:00
|
|
|
{
|
2009-08-25 10:58:13 +00:00
|
|
|
m_ToolBar->SetToolBitmap(IDM_PLAY, m_Bitmaps[Toolbar_Pause]);
|
|
|
|
m_ToolBar->SetToolShortHelp(IDM_PLAY, _("Pause"));
|
|
|
|
m_ToolBar->SetToolLabel(IDM_PLAY, _("Pause"));
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-09-15 21:35:32 +00:00
|
|
|
if (m_ToolBar)
|
2009-02-23 06:15:48 +00:00
|
|
|
{
|
2009-08-25 10:58:13 +00:00
|
|
|
m_ToolBar->SetToolBitmap(IDM_PLAY, m_Bitmaps[Toolbar_Play]);
|
|
|
|
m_ToolBar->SetToolShortHelp(IDM_PLAY, _("Play"));
|
2009-08-27 00:54:44 +00:00
|
|
|
m_ToolBar->SetToolLabel(IDM_PLAY, wxT(" Play "));
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
|
|
|
}
|
2010-01-18 12:10:51 +00:00
|
|
|
|
2009-09-07 12:40:43 +00:00
|
|
|
if (!Initialized)
|
2009-02-23 06:15:48 +00:00
|
|
|
{
|
2010-01-22 21:41:25 +00:00
|
|
|
if (m_GameListCtrl->IsEnabled())
|
2010-01-18 12:10:51 +00:00
|
|
|
{
|
|
|
|
// Prepare to load Default ISO, enable play button
|
2010-02-06 05:22:53 +00:00
|
|
|
if (!SConfig::GetInstance().m_LocalCoreStartupParameter.m_strDefaultGCM.empty())
|
2010-01-18 12:10:51 +00:00
|
|
|
{
|
|
|
|
if (m_ToolBar)
|
|
|
|
m_ToolBar->EnableTool(IDM_PLAY, true);
|
|
|
|
GetMenuBar()->FindItem(IDM_PLAY)->Enable(true);
|
|
|
|
}
|
2010-01-19 13:43:51 +00:00
|
|
|
// Prepare to load last selected file, enable play button
|
|
|
|
else if (!SConfig::GetInstance().m_LastFilename.empty()
|
|
|
|
&& wxFileExists(wxString(SConfig::GetInstance().m_LastFilename.c_str(), wxConvUTF8)))
|
|
|
|
{
|
|
|
|
if (m_ToolBar)
|
|
|
|
m_ToolBar->EnableTool(IDM_PLAY, true);
|
|
|
|
GetMenuBar()->FindItem(IDM_PLAY)->Enable(true);
|
|
|
|
}
|
2010-01-18 12:10:51 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// No game has been selected yet, disable play button
|
|
|
|
if (m_ToolBar)
|
|
|
|
m_ToolBar->EnableTool(IDM_PLAY, false);
|
|
|
|
GetMenuBar()->FindItem(IDM_PLAY)->Enable(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-17 03:17:36 +00:00
|
|
|
if (m_GameListCtrl && !m_bGameLoading)
|
2010-01-18 12:10:51 +00:00
|
|
|
{
|
|
|
|
// Game has not started, show game list
|
2009-09-01 12:44:02 +00:00
|
|
|
if (!m_GameListCtrl->IsShown())
|
|
|
|
{
|
2009-09-07 12:40:43 +00:00
|
|
|
m_GameListCtrl->Reparent(m_Panel);
|
2009-09-01 12:44:02 +00:00
|
|
|
m_GameListCtrl->Enable();
|
|
|
|
m_GameListCtrl->Show();
|
|
|
|
sizerPanel->FitInside(m_Panel);
|
|
|
|
}
|
2010-01-18 12:10:51 +00:00
|
|
|
// Game has been selected but not started, enable play button
|
2010-04-17 03:17:36 +00:00
|
|
|
if (m_GameListCtrl->GetSelectedISO() != NULL && m_GameListCtrl->IsEnabled() && !m_bGameLoading)
|
2010-01-18 12:10:51 +00:00
|
|
|
{
|
|
|
|
if (m_ToolBar)
|
|
|
|
m_ToolBar->EnableTool(IDM_PLAY, true);
|
2010-01-20 09:24:06 +00:00
|
|
|
GetMenuBar()->FindItem(IDM_PLAY)->Enable(true);
|
2010-01-18 12:10:51 +00:00
|
|
|
}
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-06-05 01:38:22 +00:00
|
|
|
// Game has been loaded, enable the pause button
|
2010-01-18 12:10:51 +00:00
|
|
|
if (m_ToolBar)
|
|
|
|
m_ToolBar->EnableTool(IDM_PLAY, true);
|
|
|
|
GetMenuBar()->FindItem(IDM_PLAY)->Enable(true);
|
2010-01-20 09:24:06 +00:00
|
|
|
|
|
|
|
// Reset game loading flag
|
2010-04-17 03:17:36 +00:00
|
|
|
m_bGameLoading = false;
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
2009-08-27 00:54:44 +00:00
|
|
|
|
2009-09-25 16:29:00 +00:00
|
|
|
if (m_ToolBar) m_ToolBar->Refresh();
|
2009-09-07 12:40:43 +00:00
|
|
|
if (g_pCodeWindow) g_pCodeWindow->Update();
|
2009-09-15 21:35:32 +00:00
|
|
|
|
2009-08-27 00:54:44 +00:00
|
|
|
// Commit changes to manager
|
|
|
|
m_Mgr->Update();
|
2009-02-23 06:15:48 +00:00
|
|
|
}
|
|
|
|
|
2010-06-01 21:03:02 +00:00
|
|
|
void CFrame::UpdateGameList()
|
|
|
|
{
|
|
|
|
m_GameListCtrl->Update();
|
|
|
|
}
|
|
|
|
|
2009-04-28 02:30:50 +00:00
|
|
|
void CFrame::GameListChanged(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
switch (event.GetId())
|
|
|
|
{
|
|
|
|
case IDM_LISTWII:
|
|
|
|
SConfig::GetInstance().m_ListWii = event.IsChecked();
|
|
|
|
break;
|
|
|
|
case IDM_LISTGC:
|
|
|
|
SConfig::GetInstance().m_ListGC = event.IsChecked();
|
|
|
|
break;
|
2009-06-07 02:27:36 +00:00
|
|
|
case IDM_LISTWAD:
|
|
|
|
SConfig::GetInstance().m_ListWad = event.IsChecked();
|
|
|
|
break;
|
2009-04-28 02:30:50 +00:00
|
|
|
case IDM_LISTJAP:
|
|
|
|
SConfig::GetInstance().m_ListJap = event.IsChecked();
|
|
|
|
break;
|
|
|
|
case IDM_LISTPAL:
|
|
|
|
SConfig::GetInstance().m_ListPal = event.IsChecked();
|
|
|
|
break;
|
|
|
|
case IDM_LISTUSA:
|
|
|
|
SConfig::GetInstance().m_ListUsa = event.IsChecked();
|
|
|
|
break;
|
2010-01-11 05:07:56 +00:00
|
|
|
case IDM_LISTFRANCE:
|
|
|
|
SConfig::GetInstance().m_ListFrance = event.IsChecked();
|
|
|
|
break;
|
|
|
|
case IDM_LISTITALY:
|
|
|
|
SConfig::GetInstance().m_ListItaly = event.IsChecked();
|
|
|
|
break;
|
|
|
|
case IDM_LISTKOREA:
|
|
|
|
SConfig::GetInstance().m_ListKorea = event.IsChecked();
|
|
|
|
break;
|
|
|
|
case IDM_LISTTAIWAN:
|
|
|
|
SConfig::GetInstance().m_ListTaiwan = event.IsChecked();
|
|
|
|
break;
|
|
|
|
case IDM_LIST_UNK:
|
|
|
|
SConfig::GetInstance().m_ListUnknown = event.IsChecked();
|
|
|
|
break;
|
2009-04-28 02:30:50 +00:00
|
|
|
case IDM_LISTDRIVES:
|
|
|
|
SConfig::GetInstance().m_ListDrives = event.IsChecked();
|
|
|
|
break;
|
2009-06-06 07:36:22 +00:00
|
|
|
case IDM_PURGECACHE:
|
|
|
|
CFileSearch::XStringVector Directories;
|
2010-02-02 21:56:29 +00:00
|
|
|
Directories.push_back(File::GetUserPath(D_CACHE_IDX));
|
2009-06-06 07:36:22 +00:00
|
|
|
CFileSearch::XStringVector Extensions;
|
|
|
|
Extensions.push_back("*.cache");
|
|
|
|
|
|
|
|
CFileSearch FileSearch(Extensions, Directories);
|
|
|
|
const CFileSearch::XStringVector& rFilenames = FileSearch.GetFileNames();
|
|
|
|
|
|
|
|
for (u32 i = 0; i < rFilenames.size(); i++)
|
|
|
|
{
|
|
|
|
File::Delete(rFilenames[i].c_str());
|
|
|
|
}
|
|
|
|
break;
|
2009-04-28 02:30:50 +00:00
|
|
|
}
|
|
|
|
|
2009-09-06 13:36:05 +00:00
|
|
|
if (m_GameListCtrl) m_GameListCtrl->Update();
|
2009-04-28 02:30:50 +00:00
|
|
|
}
|
2009-09-01 19:47:04 +00:00
|
|
|
|
|
|
|
// Enable and disable the toolbar
|
|
|
|
void CFrame::OnToggleToolbar(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
SConfig::GetInstance().m_InterfaceToolbar = event.IsChecked();
|
|
|
|
DoToggleToolbar(event.IsChecked());
|
|
|
|
}
|
2009-09-02 07:59:06 +00:00
|
|
|
void CFrame::DoToggleToolbar(bool _show)
|
2009-09-01 19:47:04 +00:00
|
|
|
{
|
2009-09-02 07:59:06 +00:00
|
|
|
if (_show)
|
2009-09-01 19:47:04 +00:00
|
|
|
{
|
|
|
|
m_Mgr->GetPane(wxT("TBMain")).Show();
|
2009-09-07 12:40:43 +00:00
|
|
|
if (g_pCodeWindow) { m_Mgr->GetPane(wxT("TBDebug")).Show(); m_Mgr->GetPane(wxT("TBAui")).Show(); }
|
2009-09-01 19:47:04 +00:00
|
|
|
m_Mgr->Update();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_Mgr->GetPane(wxT("TBMain")).Hide();
|
2009-09-07 12:40:43 +00:00
|
|
|
if (g_pCodeWindow) { m_Mgr->GetPane(wxT("TBDebug")).Hide(); m_Mgr->GetPane(wxT("TBAui")).Hide(); }
|
2009-09-01 19:47:04 +00:00
|
|
|
m_Mgr->Update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enable and disable the status bar
|
|
|
|
void CFrame::OnToggleStatusbar(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
SConfig::GetInstance().m_InterfaceStatusbar = event.IsChecked();
|
|
|
|
if (SConfig::GetInstance().m_InterfaceStatusbar == true)
|
|
|
|
m_pStatusBar->Show();
|
|
|
|
else
|
|
|
|
m_pStatusBar->Hide();
|
|
|
|
|
|
|
|
this->SendSizeEvent();
|
|
|
|
}
|