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
|
|
|
|
2014-02-19 00:08:17 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
#include <Cocoa/Cocoa.h>
|
|
|
|
#endif
|
2014-02-22 22:36:30 +00:00
|
|
|
|
|
|
|
#include <cstddef>
|
2014-06-24 20:41:12 +00:00
|
|
|
#include <fstream>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
#include <wx/chartype.h>
|
|
|
|
#include <wx/defs.h>
|
|
|
|
#include <wx/event.h>
|
2014-06-21 00:59:07 +00:00
|
|
|
#include <wx/filename.h>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <wx/frame.h>
|
|
|
|
#include <wx/gdicmn.h>
|
|
|
|
#include <wx/icon.h>
|
|
|
|
#include <wx/listbase.h>
|
|
|
|
#include <wx/menu.h>
|
|
|
|
#include <wx/menuitem.h>
|
|
|
|
#include <wx/mousestate.h>
|
|
|
|
#include <wx/msgdlg.h>
|
|
|
|
#include <wx/panel.h>
|
|
|
|
#include <wx/sizer.h>
|
|
|
|
#include <wx/statusbr.h>
|
|
|
|
#include <wx/string.h>
|
|
|
|
#include <wx/textctrl.h>
|
|
|
|
#include <wx/thread.h>
|
|
|
|
#include <wx/toplevel.h>
|
|
|
|
#include <wx/translation.h>
|
|
|
|
#include <wx/window.h>
|
|
|
|
#include <wx/windowid.h>
|
|
|
|
#include <wx/aui/auibook.h>
|
|
|
|
#include <wx/aui/framemanager.h>
|
2014-02-17 10:18:15 +00:00
|
|
|
|
2014-12-29 10:00:03 +00:00
|
|
|
#include "AudioCommon/AudioCommon.h"
|
|
|
|
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/FileUtil.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "Common/Thread.h"
|
2014-06-05 23:29:54 +00:00
|
|
|
#include "Common/Logging/ConsoleListener.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"
|
2015-01-27 01:24:47 +00:00
|
|
|
#include "Core/HotkeyManager.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/Movie.h"
|
|
|
|
#include "Core/State.h"
|
2014-06-21 00:59:07 +00:00
|
|
|
#include "Core/HW/DVDInterface.h"
|
2015-02-04 07:05:22 +00:00
|
|
|
#include "Core/HW/GCKeyboard.h"
|
|
|
|
#include "Core/HW/GCPad.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
|
2014-02-19 01:56:29 +00:00
|
|
|
#include "DolphinWX/Frame.h"
|
|
|
|
#include "DolphinWX/GameListCtrl.h"
|
|
|
|
#include "DolphinWX/Globals.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "DolphinWX/LogWindow.h"
|
2014-07-08 14:49:33 +00:00
|
|
|
#include "DolphinWX/Main.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "DolphinWX/TASInputDlg.h"
|
|
|
|
#include "DolphinWX/WxUtils.h"
|
|
|
|
#include "DolphinWX/Debugger/CodeWindow.h"
|
|
|
|
|
|
|
|
#include "InputCommon/GCPadStatus.h"
|
2014-02-19 01:56:29 +00:00
|
|
|
|
2014-09-04 22:42:40 +00:00
|
|
|
#include "VideoCommon/OnScreenDisplay.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/RenderBase.h"
|
|
|
|
#include "VideoCommon/VertexShaderManager.h"
|
|
|
|
#include "VideoCommon/VideoConfig.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-09-01 13:06:37 +00:00
|
|
|
// Resources
|
2009-09-01 12:44:02 +00:00
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
extern "C" {
|
2014-02-19 01:56:29 +00:00
|
|
|
#include "DolphinWX/resources/Dolphin.c" // NOLINT: Dolphin icon
|
2008-12-08 05:30:24 +00:00
|
|
|
};
|
|
|
|
|
2014-09-16 21:41:16 +00:00
|
|
|
int g_saveSlot = 1;
|
2009-09-01 12:44:02 +00:00
|
|
|
|
2014-11-01 14:33:02 +00:00
|
|
|
#if defined(HAVE_X11) && HAVE_X11
|
|
|
|
// X11Utils nastiness that's only used here
|
|
|
|
namespace X11Utils {
|
|
|
|
|
|
|
|
Window XWindowFromHandle(void *Handle)
|
|
|
|
{
|
|
|
|
return GDK_WINDOW_XID(gtk_widget_get_window(GTK_WIDGET(Handle)));
|
|
|
|
}
|
|
|
|
|
|
|
|
Display *XDisplayFromHandle(void *Handle)
|
|
|
|
{
|
|
|
|
return GDK_WINDOW_XDISPLAY(gtk_widget_get_window(GTK_WIDGET(Handle)));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-04-15 03:25:35 +00:00
|
|
|
CRenderFrame::CRenderFrame(wxFrame* parent, wxWindowID id, const wxString& title,
|
2014-02-17 04:51:41 +00:00
|
|
|
const wxPoint& pos, const wxSize& size, long style)
|
2010-04-15 03:25:35 +00:00
|
|
|
: wxFrame(parent, id, title, pos, size, style)
|
|
|
|
{
|
2011-02-18 20:03:01 +00:00
|
|
|
// Give it an icon
|
|
|
|
wxIcon IconTemp;
|
2013-09-14 18:48:23 +00:00
|
|
|
IconTemp.CopyFromBitmap(wxGetBitmapFromMemory(Dolphin_png));
|
2011-02-18 20:03:01 +00:00
|
|
|
SetIcon(IconTemp);
|
2013-09-27 12:38:12 +00:00
|
|
|
|
|
|
|
DragAcceptFiles(true);
|
2014-07-08 19:40:23 +00:00
|
|
|
Bind(wxEVT_DROP_FILES, &CRenderFrame::OnDropFiles, this);
|
2013-09-27 12:38:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CRenderFrame::OnDropFiles(wxDropFilesEvent& event)
|
|
|
|
{
|
|
|
|
if (event.GetNumberOfFiles() != 1)
|
|
|
|
return;
|
2014-06-21 00:59:07 +00:00
|
|
|
if (File::IsDirectory(WxStrToStr(event.GetFiles()[0])))
|
2013-09-27 12:38:12 +00:00
|
|
|
return;
|
|
|
|
|
2014-06-21 00:59:07 +00:00
|
|
|
wxFileName file = event.GetFiles()[0];
|
2014-06-24 20:41:12 +00:00
|
|
|
const std::string filepath = WxStrToStr(file.GetFullPath());
|
2014-06-21 00:59:07 +00:00
|
|
|
|
|
|
|
if (file.GetExt() == "dtm")
|
|
|
|
{
|
|
|
|
if (Core::IsRunning())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!Movie::IsReadOnly())
|
|
|
|
{
|
|
|
|
// let's make the read-only flag consistent at the start of a movie.
|
|
|
|
Movie::SetReadOnly(true);
|
2014-12-21 01:36:26 +00:00
|
|
|
main_frame->GetMenuBar()->FindItem(IDM_RECORD_READ_ONLY)->Check(true);
|
2014-06-21 00:59:07 +00:00
|
|
|
}
|
|
|
|
|
2014-06-24 20:41:12 +00:00
|
|
|
if (Movie::PlayInput(filepath))
|
2014-06-21 00:59:07 +00:00
|
|
|
main_frame->BootGame("");
|
|
|
|
}
|
|
|
|
else if (!Core::IsRunning())
|
|
|
|
{
|
2014-06-24 20:41:12 +00:00
|
|
|
main_frame->BootGame(filepath);
|
|
|
|
}
|
|
|
|
else if (IsValidSavestateDropped(filepath) && Core::IsRunning())
|
|
|
|
{
|
|
|
|
State::LoadAs(filepath);
|
2014-06-21 00:59:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-06-24 20:41:12 +00:00
|
|
|
DVDInterface::ChangeDisc(filepath);
|
2014-06-21 00:59:07 +00:00
|
|
|
}
|
2010-04-15 03:25:35 +00:00
|
|
|
}
|
|
|
|
|
2014-06-24 20:41:12 +00:00
|
|
|
bool CRenderFrame::IsValidSavestateDropped(const std::string& filepath)
|
|
|
|
{
|
|
|
|
const int game_id_length = 6;
|
|
|
|
std::ifstream file(filepath, std::ios::in | std::ios::binary);
|
|
|
|
|
|
|
|
if (!file)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
std::string internal_game_id(game_id_length, ' ');
|
|
|
|
file.read(&internal_game_id[0], game_id_length);
|
|
|
|
|
|
|
|
return internal_game_id == SConfig::GetInstance().m_LocalCoreStartupParameter.GetUniqueID();
|
|
|
|
}
|
|
|
|
|
2010-04-15 03:25:35 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
WXLRESULT CRenderFrame::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
|
|
|
|
{
|
|
|
|
switch (nMsg)
|
|
|
|
{
|
|
|
|
case WM_SYSCOMMAND:
|
|
|
|
switch (wParam)
|
|
|
|
{
|
|
|
|
case SC_SCREENSAVE:
|
|
|
|
case SC_MONITORPOWER:
|
2011-08-25 19:44:13 +00:00
|
|
|
if (Core::GetState() == Core::CORE_RUN && SConfig::GetInstance().m_LocalCoreStartupParameter.bDisableScreenSaver)
|
2010-04-15 03:25:35 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return wxFrame::MSWWindowProc(nMsg, wParam, lParam);
|
|
|
|
}
|
|
|
|
break;
|
2010-10-04 11:09:32 +00:00
|
|
|
|
2014-06-15 10:12:19 +00:00
|
|
|
case WM_USER:
|
|
|
|
switch (wParam)
|
|
|
|
{
|
|
|
|
case WM_USER_STOP:
|
|
|
|
main_frame->DoStop();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WM_USER_SETCURSOR:
|
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor &&
|
|
|
|
main_frame->RendererHasFocus() && Core::GetState() == Core::CORE_RUN)
|
|
|
|
SetCursor(wxCURSOR_BLANK);
|
|
|
|
else
|
|
|
|
SetCursor(wxNullCursor);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2010-10-04 11:09:32 +00:00
|
|
|
case WM_CLOSE:
|
|
|
|
// Let Core finish initializing before accepting any WM_CLOSE messages
|
2014-07-07 22:47:57 +00:00
|
|
|
if (!Core::IsRunning()) break;
|
2010-10-04 11:09:32 +00:00
|
|
|
// Use default action otherwise
|
|
|
|
|
2010-04-15 03:25:35 +00:00
|
|
|
default:
|
|
|
|
// By default let wxWidgets do what it normally does with this event
|
|
|
|
return wxFrame::MSWWindowProc(nMsg, wParam, lParam);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-08-03 21:36:54 +00:00
|
|
|
bool CRenderFrame::ShowFullScreen(bool show, long style)
|
|
|
|
{
|
2014-10-09 09:30:26 +00:00
|
|
|
#if defined WIN32
|
2014-10-07 14:46:10 +00:00
|
|
|
if (show && !g_Config.bBorderlessFullscreen)
|
2014-08-03 21:36:54 +00:00
|
|
|
{
|
|
|
|
// OpenGL requires the pop-up style to activate exclusive mode.
|
|
|
|
SetWindowStyle((GetWindowStyle() & ~wxDEFAULT_FRAME_STYLE) | wxPOPUP_WINDOW);
|
2015-01-17 03:23:48 +00:00
|
|
|
|
|
|
|
// Some backends don't support exclusive fullscreen, so we
|
|
|
|
// can't tell exactly when exclusive mode is activated.
|
|
|
|
if (!g_Config.backend_info.bSupportsExclusiveFullscreen)
|
|
|
|
OSD::AddMessage("Enabled exclusive fullscreen.");
|
2014-08-03 21:36:54 +00:00
|
|
|
}
|
2014-10-09 09:30:26 +00:00
|
|
|
#endif
|
2014-08-03 21:36:54 +00:00
|
|
|
|
|
|
|
bool result = wxTopLevelWindow::ShowFullScreen(show, style);
|
|
|
|
|
2014-10-09 09:30:26 +00:00
|
|
|
#if defined WIN32
|
2014-08-03 21:36:54 +00:00
|
|
|
if (!show)
|
|
|
|
{
|
|
|
|
// Restore the default style.
|
|
|
|
SetWindowStyle((GetWindowStyle() & ~wxPOPUP_WINDOW) | wxDEFAULT_FRAME_STYLE);
|
|
|
|
}
|
2014-10-09 09:30:26 +00:00
|
|
|
#endif
|
2014-08-03 21:36:54 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-09-01 12:44:02 +00:00
|
|
|
// event tables
|
2008-12-08 05:30:24 +00:00
|
|
|
// Notice that wxID_HELP will be processed for the 'About' menu and the toolbar
|
|
|
|
// help button.
|
|
|
|
|
2014-11-06 03:19:52 +00:00
|
|
|
wxDEFINE_EVENT(wxEVT_HOST_COMMAND, wxCommandEvent);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2010-04-15 03:25:35 +00:00
|
|
|
BEGIN_EVENT_TABLE(CFrame, CRenderFrame)
|
2009-09-03 05:24:30 +00:00
|
|
|
|
|
|
|
// Menu bar
|
2008-12-08 05:30:24 +00:00
|
|
|
EVT_MENU(wxID_OPEN, CFrame::OnOpen)
|
|
|
|
EVT_MENU(wxID_EXIT, CFrame::OnQuit)
|
2014-12-21 01:36:26 +00:00
|
|
|
EVT_MENU(IDM_HELP_WEBSITE, CFrame::OnHelp)
|
|
|
|
EVT_MENU(IDM_HELP_ONLINE_DOCS, CFrame::OnHelp)
|
|
|
|
EVT_MENU(IDM_HELP_GITHUB, CFrame::OnHelp)
|
2010-06-01 21:03:02 +00:00
|
|
|
EVT_MENU(wxID_ABOUT, CFrame::OnHelp)
|
2008-12-08 05:30:24 +00:00
|
|
|
EVT_MENU(wxID_REFRESH, CFrame::OnRefresh)
|
|
|
|
EVT_MENU(IDM_PLAY, CFrame::OnPlay)
|
2009-10-06 15:49:20 +00:00
|
|
|
EVT_MENU(IDM_STOP, CFrame::OnStop)
|
|
|
|
EVT_MENU(IDM_RESET, CFrame::OnReset)
|
2009-08-21 09:26:34 +00:00
|
|
|
EVT_MENU(IDM_RECORD, CFrame::OnRecord)
|
2014-12-21 01:36:26 +00:00
|
|
|
EVT_MENU(IDM_PLAY_RECORD, CFrame::OnPlayRecording)
|
|
|
|
EVT_MENU(IDM_RECORD_EXPORT, CFrame::OnRecordExport)
|
|
|
|
EVT_MENU(IDM_RECORD_READ_ONLY, CFrame::OnRecordReadOnly)
|
|
|
|
EVT_MENU(IDM_TAS_INPUT, CFrame::OnTASInput)
|
|
|
|
EVT_MENU(IDM_TOGGLE_PAUSE_MOVIE, CFrame::OnTogglePauseMovie)
|
|
|
|
EVT_MENU(IDM_SHOW_LAG, CFrame::OnShowLag)
|
|
|
|
EVT_MENU(IDM_SHOW_FRAME_COUNT, CFrame::OnShowFrameCount)
|
|
|
|
EVT_MENU(IDM_SHOW_INPUT_DISPLAY, CFrame::OnShowInputDisplay)
|
2009-08-22 02:05:02 +00:00
|
|
|
EVT_MENU(IDM_FRAMESTEP, CFrame::OnFrameStep)
|
2009-02-27 03:56:34 +00:00
|
|
|
EVT_MENU(IDM_SCREENSHOT, CFrame::OnScreenshot)
|
2014-12-21 01:36:26 +00:00
|
|
|
EVT_MENU(IDM_TOGGLE_DUMP_FRAMES, CFrame::OnToggleDumpFrames)
|
|
|
|
EVT_MENU(IDM_TOGGLE_DUMP_AUDIO, CFrame::OnToggleDumpAudio)
|
2010-06-01 21:03:02 +00:00
|
|
|
EVT_MENU(wxID_PREFERENCES, CFrame::OnConfigMain)
|
2011-02-14 02:18:03 +00:00
|
|
|
EVT_MENU(IDM_CONFIG_GFX_BACKEND, CFrame::OnConfigGFX)
|
2014-12-21 00:25:57 +00:00
|
|
|
EVT_MENU(IDM_CONFIG_AUDIO, CFrame::OnConfigAudio)
|
2014-11-22 20:29:13 +00:00
|
|
|
EVT_MENU(IDM_CONFIG_CONTROLLERS, CFrame::OnConfigControllers)
|
2011-02-12 06:46:33 +00:00
|
|
|
EVT_MENU(IDM_CONFIG_HOTKEYS, CFrame::OnConfigHotkey)
|
2015-01-27 01:24:47 +00:00
|
|
|
EVT_MENU(IDM_CONFIG_MENU_COMMANDS, CFrame::OnConfigMenuCommands)
|
2009-01-03 01:38:44 +00:00
|
|
|
|
2014-08-09 07:42:32 +00:00
|
|
|
EVT_MENU(IDM_SAVE_PERSPECTIVE, CFrame::OnPerspectiveMenu)
|
|
|
|
EVT_MENU(IDM_EDIT_PERSPECTIVES, CFrame::OnPerspectiveMenu)
|
2009-09-01 19:47:04 +00:00
|
|
|
// Drop down
|
2014-08-09 07:42:32 +00:00
|
|
|
EVT_MENU(IDM_PERSPECTIVES_ADD_PANE, CFrame::OnPerspectiveMenu)
|
2009-08-30 19:44:42 +00:00
|
|
|
EVT_MENU_RANGE(IDM_PERSPECTIVES_0, IDM_PERSPECTIVES_100, CFrame::OnSelectPerspective)
|
2014-08-09 07:42:32 +00:00
|
|
|
EVT_MENU(IDM_ADD_PERSPECTIVE, CFrame::OnPerspectiveMenu)
|
|
|
|
EVT_MENU(IDM_TAB_SPLIT, CFrame::OnPerspectiveMenu)
|
|
|
|
EVT_MENU(IDM_NO_DOCKING, CFrame::OnPerspectiveMenu)
|
2009-09-05 04:50:45 +00:00
|
|
|
// Drop down float
|
2014-12-21 01:36:26 +00:00
|
|
|
EVT_MENU_RANGE(IDM_FLOAT_LOG_WINDOW, IDM_FLOAT_CODE_WINDOW, CFrame::OnFloatWindow)
|
2009-09-05 04:50:45 +00:00
|
|
|
|
2009-05-13 21:50:24 +00:00
|
|
|
EVT_MENU(IDM_NETPLAY, CFrame::OnNetPlay)
|
2008-12-08 05:30:24 +00:00
|
|
|
EVT_MENU(IDM_BROWSE, CFrame::OnBrowse)
|
|
|
|
EVT_MENU(IDM_MEMCARD, CFrame::OnMemcard)
|
2014-12-21 01:36:26 +00:00
|
|
|
EVT_MENU(IDM_IMPORT_SAVE, CFrame::OnImportSave)
|
|
|
|
EVT_MENU(IDM_EXPORT_ALL_SAVE, CFrame::OnExportAllSaves)
|
2008-12-08 05:30:24 +00:00
|
|
|
EVT_MENU(IDM_CHEATS, CFrame::OnShow_CheatsWindow)
|
2014-12-21 01:36:26 +00:00
|
|
|
EVT_MENU(IDM_CHANGE_DISC, CFrame::OnChangeDisc)
|
|
|
|
EVT_MENU(IDM_MENU_INSTALL_WAD, CFrame::OnInstallWAD)
|
|
|
|
EVT_MENU(IDM_LIST_INSTALL_WAD, CFrame::OnInstallWAD)
|
2009-02-27 23:44:15 +00:00
|
|
|
EVT_MENU(IDM_LOAD_WII_MENU, CFrame::OnLoadWiiMenu)
|
2011-03-27 02:55:08 +00:00
|
|
|
EVT_MENU(IDM_FIFOPLAYER, CFrame::OnFifoPlayer)
|
2010-01-08 21:57:31 +00:00
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
EVT_MENU(IDM_TOGGLE_FULLSCREEN, CFrame::OnToggleFullscreen)
|
2014-12-21 01:36:26 +00:00
|
|
|
EVT_MENU(IDM_TOGGLE_DUAL_CORE, CFrame::OnToggleDualCore)
|
|
|
|
EVT_MENU(IDM_TOGGLE_SKIP_IDLE, CFrame::OnToggleSkipIdle)
|
2008-12-08 05:30:24 +00:00
|
|
|
EVT_MENU(IDM_TOGGLE_TOOLBAR, CFrame::OnToggleToolbar)
|
|
|
|
EVT_MENU(IDM_TOGGLE_STATUSBAR, CFrame::OnToggleStatusbar)
|
2014-12-21 01:36:26 +00:00
|
|
|
EVT_MENU_RANGE(IDM_LOG_WINDOW, IDM_VIDEO_WINDOW, CFrame::OnToggleWindow)
|
2014-06-04 13:54:48 +00:00
|
|
|
EVT_MENU_RANGE(IDM_SHOW_SYSTEM, IDM_SHOW_STATE, CFrame::OnChangeColumnsVisible)
|
2009-02-27 23:44:15 +00:00
|
|
|
|
2014-12-21 01:36:26 +00:00
|
|
|
EVT_MENU(IDM_PURGE_CACHE, CFrame::GameListChanged)
|
|
|
|
|
|
|
|
EVT_MENU(IDM_SAVE_FIRST_STATE, CFrame::OnSaveFirstState)
|
|
|
|
EVT_MENU(IDM_UNDO_LOAD_STATE, CFrame::OnUndoLoadState)
|
|
|
|
EVT_MENU(IDM_UNDO_SAVE_STATE, CFrame::OnUndoSaveState)
|
|
|
|
EVT_MENU(IDM_LOAD_STATE_FILE, CFrame::OnLoadStateFromFile)
|
|
|
|
EVT_MENU(IDM_SAVE_STATE_FILE, CFrame::OnSaveStateToFile)
|
|
|
|
EVT_MENU(IDM_SAVE_SELECTED_SLOT, CFrame::OnSaveCurrentSlot)
|
|
|
|
EVT_MENU(IDM_LOAD_SELECTED_SLOT, CFrame::OnLoadCurrentSlot)
|
|
|
|
|
|
|
|
EVT_MENU_RANGE(IDM_LOAD_SLOT_1, IDM_LOAD_SLOT_10, CFrame::OnLoadState)
|
|
|
|
EVT_MENU_RANGE(IDM_LOAD_LAST_1, IDM_LOAD_LAST_8, CFrame::OnLoadLastState)
|
|
|
|
EVT_MENU_RANGE(IDM_SAVE_SLOT_1, IDM_SAVE_SLOT_10, CFrame::OnSaveState)
|
|
|
|
EVT_MENU_RANGE(IDM_SELECT_SLOT_1, IDM_SELECT_SLOT_10, CFrame::OnSelectSlot)
|
|
|
|
EVT_MENU_RANGE(IDM_FRAME_SKIP_0, IDM_FRAME_SKIP_9, CFrame::OnFrameSkip)
|
2009-02-21 23:44:40 +00:00
|
|
|
EVT_MENU_RANGE(IDM_DRIVE1, IDM_DRIVE24, CFrame::OnBootDrive)
|
2013-06-26 10:23:29 +00:00
|
|
|
EVT_MENU_RANGE(IDM_CONNECT_WIIMOTE1, IDM_CONNECT_BALANCEBOARD, CFrame::OnConnectWiimote)
|
2014-12-21 01:36:26 +00:00
|
|
|
EVT_MENU_RANGE(IDM_LIST_WAD, IDM_LIST_DRIVES, CFrame::GameListChanged)
|
2009-01-04 21:53:41 +00:00
|
|
|
|
2009-09-03 05:24:30 +00:00
|
|
|
// Other
|
2009-12-30 09:00:43 +00:00
|
|
|
EVT_ACTIVATE(CFrame::OnActive)
|
2009-09-03 05:24:30 +00:00
|
|
|
EVT_CLOSE(CFrame::OnClose)
|
2008-12-12 03:38:50 +00:00
|
|
|
EVT_SIZE(CFrame::OnResize)
|
2010-01-18 18:01:03 +00:00
|
|
|
EVT_MOVE(CFrame::OnMove)
|
2008-12-08 05:30:24 +00:00
|
|
|
EVT_HOST_COMMAND(wxID_ANY, CFrame::OnHostMessage)
|
2009-08-25 01:50:27 +00:00
|
|
|
|
2009-08-30 19:44:42 +00:00
|
|
|
EVT_AUI_PANE_CLOSE(CFrame::OnPaneClose)
|
2009-08-26 09:19:15 +00:00
|
|
|
EVT_AUINOTEBOOK_PAGE_CLOSE(wxID_ANY, CFrame::OnNotebookPageClose)
|
2009-08-26 15:23:48 +00:00
|
|
|
EVT_AUINOTEBOOK_ALLOW_DND(wxID_ANY, CFrame::OnAllowNotebookDnD)
|
2009-08-27 15:53:19 +00:00
|
|
|
EVT_AUINOTEBOOK_PAGE_CHANGED(wxID_ANY, CFrame::OnNotebookPageChanged)
|
2009-09-05 04:50:45 +00:00
|
|
|
EVT_AUINOTEBOOK_TAB_RIGHT_UP(wxID_ANY, CFrame::OnTab)
|
2009-08-26 09:19:15 +00:00
|
|
|
|
2009-09-03 05:24:30 +00:00
|
|
|
// Post events to child panels
|
2010-07-27 02:39:12 +00:00
|
|
|
EVT_MENU_RANGE(IDM_INTERPRETER, IDM_ADDRBOX, CFrame::PostEvent)
|
|
|
|
EVT_TEXT(IDM_ADDRBOX, CFrame::PostEvent)
|
2009-09-03 05:24:30 +00:00
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
END_EVENT_TABLE()
|
2009-01-05 04:08:18 +00:00
|
|
|
|
2009-09-03 07:56:35 +00:00
|
|
|
// ---------------
|
2009-09-01 12:44:02 +00:00
|
|
|
// Creation and close, quit functions
|
2009-09-01 13:06:37 +00:00
|
|
|
|
2015-01-27 01:24:47 +00:00
|
|
|
|
2015-02-04 07:05:22 +00:00
|
|
|
bool CFrame::InitControllers()
|
2015-01-27 01:24:47 +00:00
|
|
|
{
|
|
|
|
if (!g_controller_interface.IsInit())
|
|
|
|
{
|
|
|
|
#if defined(HAVE_X11) && HAVE_X11
|
|
|
|
Window win = X11Utils::XWindowFromHandle(GetHandle());
|
|
|
|
HotkeyManagerEmu::Initialize(reinterpret_cast<void*>(win));
|
2015-02-04 07:05:22 +00:00
|
|
|
Pad::Initialize(reinterpret_cast<void*>(win));
|
|
|
|
Keyboard::Initialize(reinterpret_cast<void*>(win));
|
2015-01-27 01:24:47 +00:00
|
|
|
#else
|
|
|
|
HotkeyManagerEmu::Initialize(reinterpret_cast<void*>(GetHandle()));
|
2015-02-04 07:05:22 +00:00
|
|
|
Pad::Initialize(reinterpret_cast<void*>(GetHandle()));
|
|
|
|
Keyboard::Initialize(reinterpret_cast<void*>(GetHandle()));
|
2015-01-27 01:24:47 +00:00
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-09-01 14:33:16 +00:00
|
|
|
CFrame::CFrame(wxFrame* parent,
|
2008-12-08 05:30:24 +00:00
|
|
|
wxWindowID id,
|
|
|
|
const wxString& title,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
2009-08-25 01:50:27 +00:00
|
|
|
bool _UseDebugger,
|
2010-07-08 23:27:51 +00:00
|
|
|
bool _BatchMode,
|
2009-09-01 15:16:44 +00:00
|
|
|
bool ShowLogWindow,
|
2008-12-08 05:30:24 +00:00
|
|
|
long style)
|
2010-04-15 03:25:35 +00:00
|
|
|
: CRenderFrame(parent, id, title, pos, size, style)
|
2014-03-09 20:14:26 +00:00
|
|
|
, g_pCodeWindow(nullptr), g_NetPlaySetupDiag(nullptr), g_CheatsWindow(nullptr)
|
2014-09-06 20:01:24 +00:00
|
|
|
, m_SavedPerspectives(nullptr), m_ToolBar(nullptr)
|
2014-03-09 20:14:26 +00:00
|
|
|
, m_GameListCtrl(nullptr), m_Panel(nullptr)
|
|
|
|
, m_RenderFrame(nullptr), m_RenderParent(nullptr)
|
|
|
|
, m_LogWindow(nullptr), m_LogConfigWindow(nullptr)
|
|
|
|
, m_FifoPlayerDlg(nullptr), UseDebugger(_UseDebugger)
|
2010-07-08 23:27:51 +00:00
|
|
|
, m_bBatchMode(_BatchMode), m_bEdit(false), m_bTabSplit(false), m_bNoDocking(false)
|
2014-09-06 20:01:24 +00:00
|
|
|
, m_bGameLoading(false), m_bClosing(false), m_confirmStop(false), m_menubar_shadow(nullptr)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2014-12-21 01:36:26 +00:00
|
|
|
for (int i = 0; i <= IDM_CODE_WINDOW - IDM_LOG_WINDOW; i++)
|
2010-07-22 02:05:28 +00:00
|
|
|
bFloatWindow[i] = false;
|
|
|
|
|
2014-02-23 07:38:46 +00:00
|
|
|
if (ShowLogWindow)
|
|
|
|
SConfig::GetInstance().m_InterfaceLogWindow = true;
|
2009-08-27 15:53:19 +00:00
|
|
|
|
2013-01-17 03:23:42 +00:00
|
|
|
// Start debugging maximized
|
2014-02-23 07:38:46 +00:00
|
|
|
if (UseDebugger)
|
|
|
|
this->Maximize(true);
|
|
|
|
|
2009-08-25 01:50:27 +00:00
|
|
|
// Debugger class
|
|
|
|
if (UseDebugger)
|
2009-08-30 19:44:42 +00:00
|
|
|
{
|
2014-12-21 01:36:26 +00:00
|
|
|
g_pCodeWindow = new CCodeWindow(SConfig::GetInstance().m_LocalCoreStartupParameter, this, IDM_CODE_WINDOW);
|
2010-07-26 03:46:14 +00:00
|
|
|
LoadIniPerspectives();
|
2010-07-28 15:22:27 +00:00
|
|
|
g_pCodeWindow->Load();
|
2010-07-24 02:36:22 +00:00
|
|
|
}
|
2009-08-25 01:50:27 +00:00
|
|
|
|
2010-07-24 02:36:22 +00:00
|
|
|
// Create toolbar bitmaps
|
2008-12-08 05:30:24 +00:00
|
|
|
InitBitmaps();
|
|
|
|
|
2008-12-09 14:57:55 +00:00
|
|
|
// Give it a status bar
|
2010-07-30 03:51:49 +00:00
|
|
|
SetStatusBar(CreateStatusBar(2, wxST_SIZEGRIP, ID_STATUSBAR));
|
2009-03-18 17:17:58 +00:00
|
|
|
if (!SConfig::GetInstance().m_InterfaceStatusbar)
|
2010-07-30 03:51:49 +00:00
|
|
|
GetStatusBar()->Hide();
|
2008-12-09 05:37:15 +00:00
|
|
|
|
2009-01-04 21:53:41 +00:00
|
|
|
// Give it a menu bar
|
2014-09-06 05:15:10 +00:00
|
|
|
wxMenuBar* menubar_active = CreateMenu();
|
|
|
|
SetMenuBar(menubar_active);
|
|
|
|
// Create a menubar to service requests while the real menubar is hidden from the screen
|
|
|
|
m_menubar_shadow = CreateMenu();
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-09-01 13:06:37 +00:00
|
|
|
// ---------------
|
2009-09-01 12:44:02 +00:00
|
|
|
// Main panel
|
2009-08-27 11:08:52 +00:00
|
|
|
// This panel is the parent for rendering and it holds the gamelistctrl
|
2014-06-15 10:12:19 +00:00
|
|
|
m_Panel = new wxPanel(this, IDM_MPANEL, wxDefaultPosition, wxDefaultSize, 0);
|
2009-03-18 17:17:58 +00:00
|
|
|
|
2014-11-09 00:26:20 +00:00
|
|
|
m_GameListCtrl = new CGameListCtrl(m_Panel, wxID_ANY,
|
|
|
|
wxDefaultPosition, wxDefaultSize,
|
|
|
|
wxLC_REPORT | wxSUNKEN_BORDER | wxLC_ALIGN_LEFT);
|
|
|
|
m_GameListCtrl->Bind(wxEVT_LIST_ITEM_ACTIVATED, &CFrame::OnGameListCtrl_ItemActivated, this);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2010-07-24 02:36:22 +00:00
|
|
|
wxBoxSizer *sizerPanel = new wxBoxSizer(wxHORIZONTAL);
|
2009-03-07 05:32:16 +00:00
|
|
|
sizerPanel->Add(m_GameListCtrl, 1, wxEXPAND | wxALL);
|
2008-12-08 05:30:24 +00:00
|
|
|
m_Panel->SetSizer(sizerPanel);
|
2009-09-01 13:06:37 +00:00
|
|
|
// ---------------
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-09-01 19:47:04 +00:00
|
|
|
// Manager
|
|
|
|
m_Mgr = new wxAuiManager(this, wxAUI_MGR_DEFAULT | wxAUI_MGR_LIVE_RESIZE);
|
2009-08-27 07:33:07 +00:00
|
|
|
|
2011-03-23 02:06:40 +00:00
|
|
|
m_Mgr->AddPane(m_Panel, wxAuiPaneInfo()
|
2014-05-17 17:17:28 +00:00
|
|
|
.Name("Pane 0").Caption("Pane 0").PaneBorder(false)
|
2011-03-23 02:06:40 +00:00
|
|
|
.CaptionVisible(false).Layer(0).Center().Show());
|
|
|
|
if (!g_pCodeWindow)
|
2010-07-30 03:51:49 +00:00
|
|
|
m_Mgr->AddPane(CreateEmptyNotebook(), wxAuiPaneInfo()
|
2014-05-17 17:17:28 +00:00
|
|
|
.Name("Pane 1").Caption(_("Logging")).CaptionVisible(true)
|
2010-07-30 03:51:49 +00:00
|
|
|
.Layer(0).FloatingSize(wxSize(600, 350)).CloseButton(true).Hide());
|
2011-03-23 02:06:40 +00:00
|
|
|
AuiFullscreen = m_Mgr->SavePerspective();
|
2009-08-27 07:33:07 +00:00
|
|
|
|
2009-08-27 10:46:43 +00:00
|
|
|
// Create toolbar
|
|
|
|
RecreateToolbar();
|
|
|
|
if (!SConfig::GetInstance().m_InterfaceToolbar) DoToggleToolbar(false);
|
|
|
|
|
2014-12-21 01:36:26 +00:00
|
|
|
m_LogWindow = new CLogWindow(this, IDM_LOG_WINDOW);
|
2010-08-02 01:52:00 +00:00
|
|
|
m_LogWindow->Hide();
|
|
|
|
m_LogWindow->Disable();
|
|
|
|
|
2014-09-15 03:42:32 +00:00
|
|
|
for (int i = 0; i < 8; ++i)
|
|
|
|
g_TASInputDlg[i] = new TASInputDlg(this);
|
2012-11-11 22:38:01 +00:00
|
|
|
|
2014-09-15 03:42:32 +00:00
|
|
|
Movie::SetGCInputManip(GCTASManipFunction);
|
|
|
|
Movie::SetWiiInputManip(WiiTASManipFunction);
|
2011-06-24 06:50:50 +00:00
|
|
|
|
2011-12-18 09:15:59 +00:00
|
|
|
State::SetOnAfterLoadCallback(OnAfterLoadCallback);
|
2014-06-20 00:43:57 +00:00
|
|
|
Core::SetOnStoppedCallback(OnStoppedCallback);
|
2011-12-18 09:15:59 +00:00
|
|
|
|
2009-08-27 10:46:43 +00:00
|
|
|
// Setup perspectives
|
2009-09-07 12:40:43 +00:00
|
|
|
if (g_pCodeWindow)
|
2010-07-24 02:36:22 +00:00
|
|
|
{
|
2009-08-27 07:33:07 +00:00
|
|
|
// Load perspective
|
2009-08-31 05:56:30 +00:00
|
|
|
DoLoadPerspective();
|
2009-08-27 07:33:07 +00:00
|
|
|
}
|
|
|
|
else
|
2009-08-31 05:56:30 +00:00
|
|
|
{
|
2010-07-19 02:09:34 +00:00
|
|
|
if (SConfig::GetInstance().m_InterfaceLogWindow)
|
2010-08-01 04:09:59 +00:00
|
|
|
ToggleLogWindow(true);
|
2011-02-21 15:01:00 +00:00
|
|
|
if (SConfig::GetInstance().m_InterfaceLogConfigWindow)
|
|
|
|
ToggleLogConfigWindow(true);
|
2009-08-31 05:56:30 +00:00
|
|
|
}
|
2009-08-27 10:10:07 +00:00
|
|
|
|
2009-09-15 21:35:32 +00:00
|
|
|
// Show window
|
|
|
|
Show();
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2010-07-24 02:36:22 +00:00
|
|
|
// Commit
|
2009-08-25 01:50:27 +00:00
|
|
|
m_Mgr->Update();
|
|
|
|
|
2009-01-04 23:24:13 +00:00
|
|
|
#ifdef _WIN32
|
2014-05-17 17:17:28 +00:00
|
|
|
SetToolTip("");
|
2011-04-20 15:25:21 +00:00
|
|
|
GetToolTip()->SetAutoPop(25000);
|
2009-01-04 23:24:13 +00:00
|
|
|
#endif
|
|
|
|
|
2010-04-22 04:28:34 +00:00
|
|
|
#if defined(HAVE_XRANDR) && HAVE_XRANDR
|
|
|
|
m_XRRConfig = new X11Utils::XRRConfiguration(X11Utils::XDisplayFromHandle(GetHandle()),
|
2010-08-01 04:09:59 +00:00
|
|
|
X11Utils::XWindowFromHandle(GetHandle()));
|
2010-04-22 04:28:34 +00:00
|
|
|
#endif
|
|
|
|
|
2009-09-01 12:44:02 +00:00
|
|
|
// -------------------------
|
|
|
|
// Connect event handlers
|
2009-09-03 07:56:35 +00:00
|
|
|
|
2013-01-13 18:07:45 +00:00
|
|
|
m_Mgr->Bind(wxEVT_AUI_RENDER, &CFrame::OnManagerResize, this);
|
2009-09-01 12:44:02 +00:00
|
|
|
// ----------
|
2009-01-15 06:48:15 +00:00
|
|
|
|
2009-09-01 12:44:02 +00:00
|
|
|
// Update controls
|
2008-12-08 05:30:24 +00:00
|
|
|
UpdateGUI();
|
2014-09-07 03:38:22 +00:00
|
|
|
if (g_pCodeWindow)
|
|
|
|
g_pCodeWindow->UpdateButtonStates();
|
2015-01-27 01:24:47 +00:00
|
|
|
|
|
|
|
// check if game is running
|
2015-02-04 07:05:22 +00:00
|
|
|
m_bHotkeysInit = InitControllers();
|
2015-01-27 01:24:47 +00:00
|
|
|
|
|
|
|
m_poll_hotkey_timer = new wxTimer(this);
|
|
|
|
Bind(wxEVT_TIMER, &CFrame::PollHotkeys, this);
|
|
|
|
m_poll_hotkey_timer->Start(1000 / 60, wxTIMER_CONTINUOUS);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2009-01-04 21:53:41 +00:00
|
|
|
// Destructor
|
|
|
|
CFrame::~CFrame()
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2015-01-27 01:24:47 +00:00
|
|
|
m_poll_hotkey_timer->Stop();
|
|
|
|
|
|
|
|
if (m_bHotkeysInit)
|
|
|
|
{
|
|
|
|
HotkeyManagerEmu::Shutdown();
|
2015-02-04 07:05:22 +00:00
|
|
|
Keyboard::Shutdown();
|
|
|
|
Pad::Shutdown();
|
|
|
|
m_bHotkeysInit = false;
|
2015-01-27 01:24:47 +00:00
|
|
|
}
|
|
|
|
|
2010-02-16 08:46:21 +00:00
|
|
|
drives.clear();
|
2009-09-01 12:44:02 +00:00
|
|
|
|
2010-04-22 04:28:34 +00:00
|
|
|
#if defined(HAVE_XRANDR) && HAVE_XRANDR
|
|
|
|
delete m_XRRConfig;
|
|
|
|
#endif
|
2013-09-10 08:04:29 +00:00
|
|
|
|
|
|
|
ClosePages();
|
|
|
|
|
|
|
|
delete m_Mgr;
|
2014-09-06 05:15:10 +00:00
|
|
|
|
|
|
|
// This object is owned by us, not wxw
|
|
|
|
m_menubar_shadow->Destroy();
|
|
|
|
m_menubar_shadow = nullptr;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2010-04-12 01:33:10 +00:00
|
|
|
bool CFrame::RendererIsFullscreen()
|
|
|
|
{
|
2013-03-31 16:08:29 +00:00
|
|
|
bool fullscreen = false;
|
|
|
|
|
2010-04-12 01:33:10 +00:00
|
|
|
if (Core::GetState() == Core::CORE_RUN || Core::GetState() == Core::CORE_PAUSE)
|
|
|
|
{
|
2014-07-28 20:45:53 +00:00
|
|
|
fullscreen = m_RenderFrame->IsFullScreen();
|
2012-12-23 08:33:52 +00:00
|
|
|
}
|
2013-03-31 16:08:29 +00:00
|
|
|
|
|
|
|
#if defined(__APPLE__)
|
2014-03-09 20:14:26 +00:00
|
|
|
if (m_RenderFrame != nullptr)
|
2013-03-31 16:08:29 +00:00
|
|
|
{
|
|
|
|
NSView *view = (NSView *) m_RenderFrame->GetHandle();
|
|
|
|
NSWindow *window = [view window];
|
|
|
|
|
|
|
|
fullscreen = (([window styleMask] & NSFullScreenWindowMask) == NSFullScreenWindowMask);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return fullscreen;
|
2010-04-12 01:33:10 +00:00
|
|
|
}
|
|
|
|
|
2009-01-05 04:08:18 +00:00
|
|
|
void CFrame::OnQuit(wxCommandEvent& WXUNUSED (event))
|
|
|
|
{
|
|
|
|
Close(true);
|
|
|
|
}
|
|
|
|
|
2009-09-03 07:56:35 +00:00
|
|
|
// --------
|
2009-09-01 15:16:44 +00:00
|
|
|
// Events
|
2009-12-30 09:00:43 +00:00
|
|
|
void CFrame::OnActive(wxActivateEvent& event)
|
|
|
|
{
|
2010-03-15 23:25:11 +00:00
|
|
|
if (Core::GetState() == Core::CORE_RUN || Core::GetState() == Core::CORE_PAUSE)
|
|
|
|
{
|
2010-04-12 01:33:10 +00:00
|
|
|
if (event.GetActive() && event.GetEventObject() == m_RenderFrame)
|
|
|
|
{
|
2014-08-01 19:31:17 +00:00
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bRenderToMain)
|
|
|
|
{
|
2012-03-19 14:39:04 +00:00
|
|
|
#ifdef __WXMSW__
|
2014-08-01 19:31:17 +00:00
|
|
|
::SetFocus((HWND)m_RenderParent->GetHandle());
|
2012-03-19 14:46:23 +00:00
|
|
|
#else
|
2014-08-01 19:31:17 +00:00
|
|
|
m_RenderParent->SetFocus();
|
2012-03-19 14:39:04 +00:00
|
|
|
#endif
|
2014-08-01 19:31:17 +00:00
|
|
|
}
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2012-12-15 06:04:10 +00:00
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor &&
|
2010-04-12 01:33:10 +00:00
|
|
|
Core::GetState() == Core::CORE_RUN)
|
2012-12-17 03:32:14 +00:00
|
|
|
m_RenderParent->SetCursor(wxCURSOR_BLANK);
|
2010-04-12 01:33:10 +00:00
|
|
|
}
|
2010-03-15 23:25:11 +00:00
|
|
|
else
|
2010-04-12 01:33:10 +00:00
|
|
|
{
|
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor)
|
2012-12-17 17:32:10 +00:00
|
|
|
m_RenderParent->SetCursor(wxNullCursor);
|
2010-04-12 01:33:10 +00:00
|
|
|
}
|
2010-03-15 23:25:11 +00:00
|
|
|
}
|
2009-12-30 09:00:43 +00:00
|
|
|
event.Skip();
|
|
|
|
}
|
2009-09-01 15:16:44 +00:00
|
|
|
|
2009-01-05 04:08:18 +00:00
|
|
|
void CFrame::OnClose(wxCloseEvent& event)
|
|
|
|
{
|
2014-06-20 01:03:00 +00:00
|
|
|
m_bClosing = true;
|
|
|
|
|
|
|
|
// Before closing the window we need to shut down the emulation core.
|
|
|
|
// We'll try to close this window again once that is done.
|
2010-12-17 15:23:33 +00:00
|
|
|
if (Core::GetState() != Core::CORE_UNINITIALIZED)
|
|
|
|
{
|
|
|
|
DoStop();
|
2014-07-29 09:26:19 +00:00
|
|
|
if (event.CanVeto())
|
|
|
|
{
|
|
|
|
event.Veto();
|
|
|
|
}
|
2014-06-20 01:03:00 +00:00
|
|
|
return;
|
2010-12-17 15:23:33 +00:00
|
|
|
}
|
|
|
|
|
2014-06-20 01:03:00 +00:00
|
|
|
// Stop Dolphin from saving the minimized Xpos and Ypos
|
2014-03-10 11:30:55 +00:00
|
|
|
if (main_frame->IsIconized())
|
2010-01-23 06:15:17 +00:00
|
|
|
main_frame->Iconize(false);
|
|
|
|
|
2009-04-15 20:19:25 +00:00
|
|
|
// Don't forget the skip or the window won't be destroyed
|
2009-01-05 04:08:18 +00:00
|
|
|
event.Skip();
|
2010-12-17 15:23:33 +00:00
|
|
|
|
2009-08-27 01:30:08 +00:00
|
|
|
// Save GUI settings
|
2013-04-08 05:16:50 +00:00
|
|
|
if (g_pCodeWindow)
|
|
|
|
{
|
|
|
|
SaveIniPerspectives();
|
|
|
|
}
|
2011-03-23 02:06:40 +00:00
|
|
|
else
|
|
|
|
{
|
2013-04-08 05:16:50 +00:00
|
|
|
// Close the log window now so that its settings are saved
|
2014-12-22 01:05:04 +00:00
|
|
|
if (m_LogWindow)
|
|
|
|
m_LogWindow->Close();
|
2014-03-09 20:14:26 +00:00
|
|
|
m_LogWindow = nullptr;
|
2011-03-23 02:06:40 +00:00
|
|
|
}
|
|
|
|
|
2010-07-27 02:39:12 +00:00
|
|
|
|
2009-09-01 02:41:48 +00:00
|
|
|
// Uninit
|
|
|
|
m_Mgr->UnInit();
|
2009-01-05 04:08:18 +00:00
|
|
|
}
|
2009-08-26 09:19:15 +00:00
|
|
|
|
2009-09-01 15:16:44 +00:00
|
|
|
// Post events
|
2009-09-01 07:32:07 +00:00
|
|
|
|
2009-09-01 15:16:44 +00:00
|
|
|
// Warning: This may cause an endless loop if the event is propagated back to its parent
|
|
|
|
void CFrame::PostEvent(wxCommandEvent& event)
|
2009-08-27 07:33:07 +00:00
|
|
|
{
|
2010-07-27 02:39:12 +00:00
|
|
|
if (g_pCodeWindow &&
|
|
|
|
event.GetId() >= IDM_INTERPRETER &&
|
|
|
|
event.GetId() <= IDM_ADDRBOX)
|
2009-09-03 05:24:30 +00:00
|
|
|
{
|
|
|
|
event.StopPropagation();
|
2010-01-20 11:49:11 +00:00
|
|
|
g_pCodeWindow->GetEventHandler()->AddPendingEvent(event);
|
2009-09-03 05:24:30 +00:00
|
|
|
}
|
|
|
|
else
|
2013-04-08 05:16:50 +00:00
|
|
|
{
|
2009-09-03 05:24:30 +00:00
|
|
|
event.Skip();
|
2013-04-08 05:16:50 +00:00
|
|
|
}
|
2009-08-31 05:56:30 +00:00
|
|
|
}
|
|
|
|
|
2010-01-18 18:01:03 +00:00
|
|
|
void CFrame::OnMove(wxMoveEvent& event)
|
|
|
|
{
|
|
|
|
event.Skip();
|
|
|
|
|
2010-04-12 01:33:10 +00:00
|
|
|
if (!IsMaximized() &&
|
2010-10-17 12:42:04 +00:00
|
|
|
!(SConfig::GetInstance().m_LocalCoreStartupParameter.bRenderToMain && RendererIsFullscreen()))
|
2010-04-12 01:33:10 +00:00
|
|
|
{
|
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.iPosX = GetPosition().x;
|
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.iPosY = GetPosition().y;
|
|
|
|
}
|
2010-01-18 18:01:03 +00:00
|
|
|
}
|
2010-03-08 23:29:16 +00:00
|
|
|
|
2009-09-07 12:40:43 +00:00
|
|
|
void CFrame::OnResize(wxSizeEvent& event)
|
|
|
|
{
|
|
|
|
event.Skip();
|
2010-10-17 12:42:04 +00:00
|
|
|
|
2010-04-12 01:33:10 +00:00
|
|
|
if (!IsMaximized() &&
|
2011-01-25 03:30:12 +00:00
|
|
|
!(SConfig::GetInstance().m_LocalCoreStartupParameter.bRenderToMain && RendererIsFullscreen()) &&
|
|
|
|
!(Core::GetState() != Core::CORE_UNINITIALIZED &&
|
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.bRenderToMain &&
|
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.bRenderWindowAutoSize))
|
2010-04-12 01:33:10 +00:00
|
|
|
{
|
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.iWidth = GetSize().GetWidth();
|
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.iHeight = GetSize().GetHeight();
|
|
|
|
}
|
2011-03-23 02:06:40 +00:00
|
|
|
|
|
|
|
// Make sure the logger pane is a sane size
|
2014-05-17 17:17:28 +00:00
|
|
|
if (!g_pCodeWindow && m_LogWindow && m_Mgr->GetPane("Pane 1").IsShown() &&
|
|
|
|
!m_Mgr->GetPane("Pane 1").IsFloating() &&
|
2011-03-23 02:06:40 +00:00
|
|
|
(m_LogWindow->x > GetClientRect().GetWidth() ||
|
|
|
|
m_LogWindow->y > GetClientRect().GetHeight()))
|
|
|
|
ShowResizePane();
|
2009-09-07 12:40:43 +00:00
|
|
|
}
|
2009-08-31 05:56:30 +00:00
|
|
|
|
2009-09-01 12:44:02 +00:00
|
|
|
// Host messages
|
2009-09-01 13:06:37 +00:00
|
|
|
|
2008-12-14 17:37:59 +00:00
|
|
|
#ifdef _WIN32
|
2009-07-02 21:17:36 +00:00
|
|
|
WXLRESULT CFrame::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
|
|
|
|
{
|
2011-03-15 23:09:12 +00:00
|
|
|
if (WM_SYSCOMMAND == nMsg && (SC_SCREENSAVE == wParam || SC_MONITORPOWER == wParam))
|
2013-09-10 10:14:21 +00:00
|
|
|
{
|
2011-03-15 23:09:12 +00:00
|
|
|
return 0;
|
2013-09-10 10:14:21 +00:00
|
|
|
}
|
|
|
|
else if (nMsg == WM_QUERYENDSESSION)
|
|
|
|
{
|
|
|
|
// Indicate that the application will be able to close
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else if (nMsg == WM_ENDSESSION)
|
|
|
|
{
|
|
|
|
// Actually trigger the close now
|
|
|
|
Close(true);
|
|
|
|
return 0;
|
|
|
|
}
|
2011-03-15 23:09:12 +00:00
|
|
|
else
|
2013-09-10 10:14:21 +00:00
|
|
|
{
|
2010-02-25 06:12:35 +00:00
|
|
|
return wxFrame::MSWWindowProc(nMsg, wParam, lParam);
|
2013-09-10 10:14:21 +00:00
|
|
|
}
|
2009-07-02 21:17:36 +00:00
|
|
|
}
|
2009-01-04 21:53:41 +00:00
|
|
|
#endif
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-08-19 14:17:33 +00:00
|
|
|
void CFrame::UpdateTitle(const std::string &str)
|
|
|
|
{
|
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bRenderToMain &&
|
|
|
|
SConfig::GetInstance().m_InterfaceStatusbar)
|
|
|
|
{
|
|
|
|
GetStatusBar()->SetStatusText(str, 0);
|
|
|
|
m_RenderFrame->SetTitle(scm_rev_str);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::string titleStr = StringFromFormat("%s | %s", scm_rev_str, str.c_str());
|
|
|
|
m_RenderFrame->SetTitle(titleStr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
void CFrame::OnHostMessage(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
switch (event.GetId())
|
|
|
|
{
|
2014-12-21 01:36:26 +00:00
|
|
|
case IDM_UPDATE_GUI:
|
2008-12-10 08:57:57 +00:00
|
|
|
UpdateGUI();
|
|
|
|
break;
|
|
|
|
|
2014-12-21 01:36:26 +00:00
|
|
|
case IDM_UPDATE_STATUS_BAR:
|
2014-03-09 20:14:26 +00:00
|
|
|
if (GetStatusBar() != nullptr)
|
2010-07-30 03:51:49 +00:00
|
|
|
GetStatusBar()->SetStatusText(event.GetString(), event.GetInt());
|
2008-12-10 08:57:57 +00:00
|
|
|
break;
|
2010-04-12 01:33:10 +00:00
|
|
|
|
2014-12-21 01:36:26 +00:00
|
|
|
case IDM_UPDATE_TITLE:
|
2014-08-22 21:28:02 +00:00
|
|
|
UpdateTitle(WxStrToStr(event.GetString()));
|
2010-04-15 20:58:34 +00:00
|
|
|
break;
|
|
|
|
|
2014-12-21 01:36:26 +00:00
|
|
|
case IDM_WINDOW_SIZE_REQUEST:
|
2011-02-01 04:35:25 +00:00
|
|
|
{
|
|
|
|
std::pair<int, int> *win_size = (std::pair<int, int> *)(event.GetClientData());
|
|
|
|
OnRenderWindowSizeRequest(win_size->first, win_size->second);
|
|
|
|
delete win_size;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2014-12-21 01:36:26 +00:00
|
|
|
case IDM_FULLSCREEN_REQUEST:
|
2014-07-21 17:56:52 +00:00
|
|
|
{
|
2014-07-26 10:43:49 +00:00
|
|
|
bool enable_fullscreen = event.GetInt() == 0 ? false : true;
|
|
|
|
ToggleDisplayMode(enable_fullscreen);
|
2014-07-21 17:56:52 +00:00
|
|
|
if (m_RenderFrame != nullptr)
|
2014-07-26 10:43:49 +00:00
|
|
|
m_RenderFrame->ShowFullScreen(enable_fullscreen);
|
|
|
|
|
|
|
|
// If the stop dialog initiated this fullscreen switch then we need
|
|
|
|
// to pause the emulator after we've completed the switch.
|
|
|
|
// TODO: Allow the renderer to switch fullscreen modes while paused.
|
2014-07-21 17:56:52 +00:00
|
|
|
if (m_confirmStop)
|
|
|
|
Core::SetState(Core::CORE_PAUSE);
|
|
|
|
}
|
2014-07-16 13:53:33 +00:00
|
|
|
break;
|
|
|
|
|
2012-05-02 19:40:40 +00:00
|
|
|
case WM_USER_CREATE:
|
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bHideCursor)
|
|
|
|
m_RenderParent->SetCursor(wxCURSOR_BLANK);
|
|
|
|
break;
|
|
|
|
|
2012-12-17 03:32:14 +00:00
|
|
|
#ifdef __WXGTK__
|
2010-11-11 00:55:06 +00:00
|
|
|
case IDM_PANIC:
|
2011-07-15 14:49:34 +00:00
|
|
|
{
|
|
|
|
wxString caption = event.GetString().BeforeFirst(':');
|
|
|
|
wxString text = event.GetString().AfterFirst(':');
|
2013-10-29 05:23:17 +00:00
|
|
|
bPanicResult = (wxYES == wxMessageBox(text,
|
2014-09-30 05:28:01 +00:00
|
|
|
caption, event.GetInt() ? wxYES_NO : wxOK, wxWindow::FindFocus()));
|
2011-07-15 14:49:34 +00:00
|
|
|
panic_event.Set();
|
|
|
|
}
|
2011-01-30 22:02:47 +00:00
|
|
|
break;
|
2010-11-11 00:55:06 +00:00
|
|
|
#endif
|
|
|
|
|
2010-02-07 02:41:02 +00:00
|
|
|
case WM_USER_STOP:
|
2010-03-15 23:25:11 +00:00
|
|
|
DoStop();
|
2010-02-07 06:07:56 +00:00
|
|
|
break;
|
2014-06-20 00:43:57 +00:00
|
|
|
|
|
|
|
case IDM_STOPPED:
|
|
|
|
OnStopped();
|
|
|
|
break;
|
2009-09-07 12:40:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-25 03:30:12 +00:00
|
|
|
void CFrame::OnRenderWindowSizeRequest(int width, int height)
|
2011-01-07 04:57:59 +00:00
|
|
|
{
|
2014-07-07 22:47:57 +00:00
|
|
|
if (!Core::IsRunning() ||
|
2013-10-29 05:23:17 +00:00
|
|
|
!SConfig::GetInstance().m_LocalCoreStartupParameter.bRenderWindowAutoSize ||
|
2011-01-25 12:52:20 +00:00
|
|
|
RendererIsFullscreen() || m_RenderFrame->IsMaximized())
|
2011-01-25 03:30:12 +00:00
|
|
|
return;
|
2011-01-07 04:57:59 +00:00
|
|
|
|
2011-02-01 04:35:25 +00:00
|
|
|
int old_width, old_height, log_width = 0, log_height = 0;
|
2011-01-25 03:30:12 +00:00
|
|
|
m_RenderFrame->GetClientSize(&old_width, &old_height);
|
2011-02-01 04:35:25 +00:00
|
|
|
|
|
|
|
// Add space for the log/console/debugger window
|
2011-03-15 12:50:58 +00:00
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bRenderToMain &&
|
|
|
|
(SConfig::GetInstance().m_InterfaceLogWindow ||
|
|
|
|
SConfig::GetInstance().m_InterfaceLogConfigWindow) &&
|
2014-05-17 17:17:28 +00:00
|
|
|
!m_Mgr->GetPane("Pane 1").IsFloating())
|
2011-01-07 04:57:59 +00:00
|
|
|
{
|
2014-05-17 17:17:28 +00:00
|
|
|
switch (m_Mgr->GetPane("Pane 1").dock_direction)
|
2011-02-01 04:35:25 +00:00
|
|
|
{
|
|
|
|
case wxAUI_DOCK_LEFT:
|
|
|
|
case wxAUI_DOCK_RIGHT:
|
2014-05-17 17:17:28 +00:00
|
|
|
log_width = m_Mgr->GetPane("Pane 1").rect.GetWidth();
|
2011-02-01 04:35:25 +00:00
|
|
|
break;
|
|
|
|
case wxAUI_DOCK_TOP:
|
|
|
|
case wxAUI_DOCK_BOTTOM:
|
2014-05-17 17:17:28 +00:00
|
|
|
log_height = m_Mgr->GetPane("Pane 1").rect.GetHeight();
|
2011-02-01 04:35:25 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-01-07 04:57:59 +00:00
|
|
|
}
|
2011-02-01 04:35:25 +00:00
|
|
|
|
|
|
|
if (old_width != width + log_width || old_height != height + log_height)
|
|
|
|
m_RenderFrame->SetClientSize(width + log_width, height + log_height);
|
2011-01-07 04:57:59 +00:00
|
|
|
}
|
|
|
|
|
2010-04-12 01:33:10 +00:00
|
|
|
bool CFrame::RendererHasFocus()
|
|
|
|
{
|
2014-07-16 14:21:22 +00:00
|
|
|
if (m_RenderParent == nullptr)
|
|
|
|
return false;
|
|
|
|
#ifdef _WIN32
|
2014-06-15 11:13:37 +00:00
|
|
|
HWND window = GetForegroundWindow();
|
|
|
|
if (window == nullptr)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (m_RenderFrame->GetHWND() == window)
|
2014-07-16 14:21:22 +00:00
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
wxWindow *window = wxWindow::FindFocus();
|
|
|
|
if (window == nullptr)
|
|
|
|
return false;
|
|
|
|
// Why these different cases?
|
|
|
|
if (m_RenderParent == window ||
|
|
|
|
m_RenderParent == window->GetParent() ||
|
|
|
|
m_RenderParent->GetParent() == window->GetParent())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return false;
|
2010-04-12 01:33:10 +00:00
|
|
|
}
|
|
|
|
|
2014-07-16 14:24:40 +00:00
|
|
|
bool CFrame::UIHasFocus()
|
|
|
|
{
|
|
|
|
// UIHasFocus should return true any time any one of our UI
|
|
|
|
// windows has the focus, including any dialogs or other windows.
|
|
|
|
//
|
2014-09-30 05:28:01 +00:00
|
|
|
// wxWindow::FindFocus() returns the current wxWindow which has
|
2014-07-16 14:24:40 +00:00
|
|
|
// focus. If it's not one of our windows, then it will return
|
|
|
|
// null.
|
|
|
|
|
2014-09-30 05:28:01 +00:00
|
|
|
wxWindow *focusWindow = wxWindow::FindFocus();
|
2014-07-16 14:24:40 +00:00
|
|
|
return (focusWindow != nullptr);
|
|
|
|
}
|
|
|
|
|
2009-01-28 16:51:05 +00:00
|
|
|
void CFrame::OnGameListCtrl_ItemActivated(wxListEvent& WXUNUSED (event))
|
2009-01-07 09:06:42 +00:00
|
|
|
{
|
2009-06-09 05:08:58 +00:00
|
|
|
// Show all platforms and regions if...
|
|
|
|
// 1. All platforms are set to hide
|
|
|
|
// 2. All Regions are set to hide
|
|
|
|
// Otherwise call BootGame to either...
|
|
|
|
// 1. Boot the selected iso
|
2009-07-01 04:55:53 +00:00
|
|
|
// 2. Boot the default or last loaded iso.
|
|
|
|
// 3. Call BrowseForDirectory if the gamelist is empty
|
2013-03-03 23:56:40 +00:00
|
|
|
if (!m_GameListCtrl->GetISO(0) &&
|
2009-09-25 16:29:00 +00:00
|
|
|
!((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 &&
|
2010-01-11 05:07:56 +00:00
|
|
|
SConfig::GetInstance().m_ListPal &&
|
2014-10-30 14:35:46 +00:00
|
|
|
SConfig::GetInstance().m_ListAustralia &&
|
2010-01-11 05:07:56 +00:00
|
|
|
SConfig::GetInstance().m_ListFrance &&
|
2014-10-30 14:35:46 +00:00
|
|
|
SConfig::GetInstance().m_ListGermany &&
|
2015-01-06 05:30:48 +00:00
|
|
|
SConfig::GetInstance().m_ListInternational &&
|
2010-01-11 05:07:56 +00:00
|
|
|
SConfig::GetInstance().m_ListItaly &&
|
|
|
|
SConfig::GetInstance().m_ListKorea &&
|
2014-10-30 14:35:46 +00:00
|
|
|
SConfig::GetInstance().m_ListNetherlands &&
|
|
|
|
SConfig::GetInstance().m_ListRussia &&
|
|
|
|
SConfig::GetInstance().m_ListSpain &&
|
2010-01-11 05:07:56 +00:00
|
|
|
SConfig::GetInstance().m_ListTaiwan &&
|
|
|
|
SConfig::GetInstance().m_ListUnknown)))
|
2009-06-09 05:08:58 +00:00
|
|
|
{
|
2014-10-30 14:35:46 +00:00
|
|
|
SConfig::GetInstance().m_ListGC =
|
|
|
|
SConfig::GetInstance().m_ListWii =
|
|
|
|
SConfig::GetInstance().m_ListWad =
|
|
|
|
SConfig::GetInstance().m_ListJap =
|
|
|
|
SConfig::GetInstance().m_ListUsa =
|
|
|
|
SConfig::GetInstance().m_ListPal =
|
|
|
|
SConfig::GetInstance().m_ListAustralia =
|
|
|
|
SConfig::GetInstance().m_ListFrance =
|
|
|
|
SConfig::GetInstance().m_ListGermany =
|
2015-01-06 05:30:48 +00:00
|
|
|
SConfig::GetInstance().m_ListInternational =
|
2014-10-30 14:35:46 +00:00
|
|
|
SConfig::GetInstance().m_ListItaly =
|
|
|
|
SConfig::GetInstance().m_ListKorea =
|
|
|
|
SConfig::GetInstance().m_ListNetherlands =
|
|
|
|
SConfig::GetInstance().m_ListRussia =
|
|
|
|
SConfig::GetInstance().m_ListSpain =
|
|
|
|
SConfig::GetInstance().m_ListTaiwan =
|
2014-02-17 04:51:41 +00:00
|
|
|
SConfig::GetInstance().m_ListUnknown = true;
|
2009-06-09 05:08:58 +00:00
|
|
|
|
2014-12-21 01:36:26 +00:00
|
|
|
GetMenuBar()->FindItem(IDM_LIST_GC)->Check(true);
|
|
|
|
GetMenuBar()->FindItem(IDM_LIST_WII)->Check(true);
|
|
|
|
GetMenuBar()->FindItem(IDM_LIST_WAD)->Check(true);
|
|
|
|
GetMenuBar()->FindItem(IDM_LIST_JAP)->Check(true);
|
|
|
|
GetMenuBar()->FindItem(IDM_LIST_USA)->Check(true);
|
|
|
|
GetMenuBar()->FindItem(IDM_LIST_PAL)->Check(true);
|
|
|
|
GetMenuBar()->FindItem(IDM_LIST_AUSTRALIA)->Check(true);
|
|
|
|
GetMenuBar()->FindItem(IDM_LIST_FRANCE)->Check(true);
|
|
|
|
GetMenuBar()->FindItem(IDM_LIST_GERMANY)->Check(true);
|
2015-01-06 05:30:48 +00:00
|
|
|
GetMenuBar()->FindItem(IDM_LIST_INTERNATIONAL)->Check(true);
|
2014-12-21 01:36:26 +00:00
|
|
|
GetMenuBar()->FindItem(IDM_LIST_ITALY)->Check(true);
|
|
|
|
GetMenuBar()->FindItem(IDM_LIST_KOREA)->Check(true);
|
|
|
|
GetMenuBar()->FindItem(IDM_LIST_NETHERLANDS)->Check(true);
|
|
|
|
GetMenuBar()->FindItem(IDM_LIST_RUSSIA)->Check(true);
|
|
|
|
GetMenuBar()->FindItem(IDM_LIST_SPAIN)->Check(true);
|
|
|
|
GetMenuBar()->FindItem(IDM_LIST_TAIWAN)->Check(true);
|
|
|
|
GetMenuBar()->FindItem(IDM_LIST_UNKNOWN)->Check(true);
|
2009-06-09 05:08:58 +00:00
|
|
|
|
|
|
|
m_GameListCtrl->Update();
|
2010-07-24 02:36:22 +00:00
|
|
|
}
|
2013-03-03 23:56:40 +00:00
|
|
|
else if (!m_GameListCtrl->GetISO(0))
|
2013-04-08 05:16:50 +00:00
|
|
|
{
|
2010-08-03 03:20:44 +00:00
|
|
|
m_GameListCtrl->BrowseForDirectory();
|
2013-04-08 05:16:50 +00:00
|
|
|
}
|
2010-01-18 12:10:51 +00:00
|
|
|
else
|
2013-04-08 05:16:50 +00:00
|
|
|
{
|
2010-01-18 12:10:51 +00:00
|
|
|
// Game started by double click
|
2014-05-17 17:17:28 +00:00
|
|
|
BootGame("");
|
2013-04-08 05:16:50 +00:00
|
|
|
}
|
2009-01-07 09:06:42 +00:00
|
|
|
}
|
2009-01-28 16:51:05 +00:00
|
|
|
|
2015-01-27 01:24:47 +00:00
|
|
|
static bool IsHotkey(wxKeyEvent &event, int Id, bool keyUp = false)
|
2010-04-12 01:33:10 +00:00
|
|
|
{
|
2015-01-27 01:24:47 +00:00
|
|
|
// Input event hotkey
|
|
|
|
if (event.GetKeyCode() == WXK_NONE)
|
|
|
|
{
|
|
|
|
return HotkeyManagerEmu::IsPressed(Id, keyUp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2010-04-12 01:33:10 +00:00
|
|
|
}
|
|
|
|
|
2011-02-14 01:18:01 +00:00
|
|
|
int GetCmdForHotkey(unsigned int key)
|
|
|
|
{
|
2013-01-17 03:23:42 +00:00
|
|
|
switch (key)
|
|
|
|
{
|
2012-11-08 07:40:49 +00:00
|
|
|
case HK_OPEN: return wxID_OPEN;
|
2014-12-21 01:36:26 +00:00
|
|
|
case HK_CHANGE_DISC: return IDM_CHANGE_DISC;
|
2012-11-08 07:40:49 +00:00
|
|
|
case HK_REFRESH_LIST: return wxID_REFRESH;
|
|
|
|
case HK_PLAY_PAUSE: return IDM_PLAY;
|
|
|
|
case HK_STOP: return IDM_STOP;
|
|
|
|
case HK_RESET: return IDM_RESET;
|
|
|
|
case HK_FRAME_ADVANCE: return IDM_FRAMESTEP;
|
|
|
|
case HK_START_RECORDING: return IDM_RECORD;
|
2014-12-21 01:36:26 +00:00
|
|
|
case HK_PLAY_RECORDING: return IDM_PLAY_RECORD;
|
|
|
|
case HK_EXPORT_RECORDING: return IDM_RECORD_EXPORT;
|
|
|
|
case HK_READ_ONLY_MODE: return IDM_RECORD_READ_ONLY;
|
2012-11-08 07:40:49 +00:00
|
|
|
case HK_FULLSCREEN: return IDM_TOGGLE_FULLSCREEN;
|
|
|
|
case HK_SCREENSHOT: return IDM_SCREENSHOT;
|
|
|
|
case HK_EXIT: return wxID_EXIT;
|
|
|
|
|
|
|
|
case HK_WIIMOTE1_CONNECT: return IDM_CONNECT_WIIMOTE1;
|
|
|
|
case HK_WIIMOTE2_CONNECT: return IDM_CONNECT_WIIMOTE2;
|
|
|
|
case HK_WIIMOTE3_CONNECT: return IDM_CONNECT_WIIMOTE3;
|
|
|
|
case HK_WIIMOTE4_CONNECT: return IDM_CONNECT_WIIMOTE4;
|
2013-06-26 10:23:29 +00:00
|
|
|
case HK_BALANCEBOARD_CONNECT: return IDM_CONNECT_BALANCEBOARD;
|
2012-11-08 07:40:49 +00:00
|
|
|
|
2014-12-21 01:36:26 +00:00
|
|
|
case HK_LOAD_STATE_SLOT_1: return IDM_LOAD_SLOT_1;
|
|
|
|
case HK_LOAD_STATE_SLOT_2: return IDM_LOAD_SLOT_2;
|
|
|
|
case HK_LOAD_STATE_SLOT_3: return IDM_LOAD_SLOT_3;
|
|
|
|
case HK_LOAD_STATE_SLOT_4: return IDM_LOAD_SLOT_4;
|
|
|
|
case HK_LOAD_STATE_SLOT_5: return IDM_LOAD_SLOT_5;
|
|
|
|
case HK_LOAD_STATE_SLOT_6: return IDM_LOAD_SLOT_6;
|
|
|
|
case HK_LOAD_STATE_SLOT_7: return IDM_LOAD_SLOT_7;
|
|
|
|
case HK_LOAD_STATE_SLOT_8: return IDM_LOAD_SLOT_8;
|
|
|
|
case HK_LOAD_STATE_SLOT_9: return IDM_LOAD_SLOT_9;
|
|
|
|
case HK_LOAD_STATE_SLOT_10: return IDM_LOAD_SLOT_10;
|
|
|
|
|
|
|
|
case HK_SAVE_STATE_SLOT_1: return IDM_SAVE_SLOT_1;
|
|
|
|
case HK_SAVE_STATE_SLOT_2: return IDM_SAVE_SLOT_2;
|
|
|
|
case HK_SAVE_STATE_SLOT_3: return IDM_SAVE_SLOT_3;
|
|
|
|
case HK_SAVE_STATE_SLOT_4: return IDM_SAVE_SLOT_4;
|
|
|
|
case HK_SAVE_STATE_SLOT_5: return IDM_SAVE_SLOT_5;
|
|
|
|
case HK_SAVE_STATE_SLOT_6: return IDM_SAVE_SLOT_6;
|
|
|
|
case HK_SAVE_STATE_SLOT_7: return IDM_SAVE_SLOT_7;
|
|
|
|
case HK_SAVE_STATE_SLOT_8: return IDM_SAVE_SLOT_8;
|
|
|
|
case HK_SAVE_STATE_SLOT_9: return IDM_SAVE_SLOT_9;
|
|
|
|
case HK_SAVE_STATE_SLOT_10: return IDM_SAVE_SLOT_10;
|
|
|
|
|
|
|
|
case HK_LOAD_LAST_STATE_1: return IDM_LOAD_LAST_1;
|
|
|
|
case HK_LOAD_LAST_STATE_2: return IDM_LOAD_LAST_2;
|
|
|
|
case HK_LOAD_LAST_STATE_3: return IDM_LOAD_LAST_3;
|
|
|
|
case HK_LOAD_LAST_STATE_4: return IDM_LOAD_LAST_4;
|
|
|
|
case HK_LOAD_LAST_STATE_5: return IDM_LOAD_LAST_5;
|
|
|
|
case HK_LOAD_LAST_STATE_6: return IDM_LOAD_LAST_6;
|
|
|
|
case HK_LOAD_LAST_STATE_7: return IDM_LOAD_LAST_7;
|
|
|
|
case HK_LOAD_LAST_STATE_8: return IDM_LOAD_LAST_8;
|
|
|
|
|
|
|
|
case HK_SAVE_FIRST_STATE: return IDM_SAVE_FIRST_STATE;
|
|
|
|
case HK_UNDO_LOAD_STATE: return IDM_UNDO_LOAD_STATE;
|
|
|
|
case HK_UNDO_SAVE_STATE: return IDM_UNDO_SAVE_STATE;
|
|
|
|
case HK_LOAD_STATE_FILE: return IDM_LOAD_STATE_FILE;
|
|
|
|
case HK_SAVE_STATE_FILE: return IDM_SAVE_STATE_FILE;
|
|
|
|
|
|
|
|
case HK_SELECT_STATE_SLOT_1: return IDM_SELECT_SLOT_1;
|
|
|
|
case HK_SELECT_STATE_SLOT_2: return IDM_SELECT_SLOT_2;
|
|
|
|
case HK_SELECT_STATE_SLOT_3: return IDM_SELECT_SLOT_3;
|
|
|
|
case HK_SELECT_STATE_SLOT_4: return IDM_SELECT_SLOT_4;
|
|
|
|
case HK_SELECT_STATE_SLOT_5: return IDM_SELECT_SLOT_5;
|
|
|
|
case HK_SELECT_STATE_SLOT_6: return IDM_SELECT_SLOT_6;
|
|
|
|
case HK_SELECT_STATE_SLOT_7: return IDM_SELECT_SLOT_7;
|
|
|
|
case HK_SELECT_STATE_SLOT_8: return IDM_SELECT_SLOT_8;
|
|
|
|
case HK_SELECT_STATE_SLOT_9: return IDM_SELECT_SLOT_9;
|
|
|
|
case HK_SELECT_STATE_SLOT_10: return IDM_SELECT_SLOT_10;
|
|
|
|
case HK_SAVE_STATE_SLOT_SELECTED: return IDM_SAVE_SELECTED_SLOT;
|
|
|
|
case HK_LOAD_STATE_SLOT_SELECTED: return IDM_LOAD_SELECTED_SLOT;
|
2014-11-17 02:58:37 +00:00
|
|
|
|
|
|
|
case HK_FREELOOK_DECREASE_SPEED: return IDM_FREELOOK_DECREASE_SPEED;
|
2015-01-20 22:35:20 +00:00
|
|
|
case HK_FREELOOK_INCREASE_SPEED: return IDM_FREELOOK_INCREASE_SPEED;
|
2014-11-17 02:58:37 +00:00
|
|
|
case HK_FREELOOK_RESET_SPEED: return IDM_FREELOOK_RESET_SPEED;
|
|
|
|
case HK_FREELOOK_LEFT: return IDM_FREELOOK_LEFT;
|
|
|
|
case HK_FREELOOK_RIGHT: return IDM_FREELOOK_RIGHT;
|
|
|
|
case HK_FREELOOK_UP: return IDM_FREELOOK_UP;
|
|
|
|
case HK_FREELOOK_DOWN: return IDM_FREELOOK_DOWN;
|
|
|
|
case HK_FREELOOK_ZOOM_IN: return IDM_FREELOOK_ZOOM_IN;
|
|
|
|
case HK_FREELOOK_ZOOM_OUT: return IDM_FREELOOK_ZOOM_OUT;
|
|
|
|
case HK_FREELOOK_RESET: return IDM_FREELOOK_RESET;
|
2013-01-17 03:23:42 +00:00
|
|
|
}
|
2011-02-14 01:18:01 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-12-18 09:15:59 +00:00
|
|
|
void OnAfterLoadCallback()
|
|
|
|
{
|
2011-12-19 04:38:54 +00:00
|
|
|
// warning: this gets called from the CPU thread, so we should only queue things to do on the proper thread
|
2012-11-11 22:38:01 +00:00
|
|
|
if (main_frame)
|
2011-12-19 04:38:54 +00:00
|
|
|
{
|
2014-12-21 01:36:26 +00:00
|
|
|
wxCommandEvent event(wxEVT_HOST_COMMAND, IDM_UPDATE_GUI);
|
2011-12-19 04:38:54 +00:00
|
|
|
main_frame->GetEventHandler()->AddPendingEvent(event);
|
|
|
|
}
|
2011-12-18 09:15:59 +00:00
|
|
|
}
|
|
|
|
|
2014-06-20 00:43:57 +00:00
|
|
|
void OnStoppedCallback()
|
|
|
|
{
|
|
|
|
// warning: this gets called from the EmuThread, so we should only queue things to do on the proper thread
|
|
|
|
if (main_frame)
|
|
|
|
{
|
|
|
|
wxCommandEvent event(wxEVT_HOST_COMMAND, IDM_STOPPED);
|
|
|
|
main_frame->GetEventHandler()->AddPendingEvent(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-15 03:42:32 +00:00
|
|
|
void GCTASManipFunction(GCPadStatus* PadStatus, int controllerID)
|
2011-06-24 06:50:50 +00:00
|
|
|
{
|
2012-11-11 22:38:01 +00:00
|
|
|
if (main_frame)
|
2014-09-15 03:42:32 +00:00
|
|
|
main_frame->g_TASInputDlg[controllerID]->GetValues(PadStatus);
|
|
|
|
}
|
|
|
|
|
2014-10-31 08:34:30 +00:00
|
|
|
void WiiTASManipFunction(u8* data, WiimoteEmu::ReportFeatures rptf, int controllerID, int ext, const wiimote_key key)
|
2014-09-15 03:42:32 +00:00
|
|
|
{
|
|
|
|
if (main_frame)
|
2014-10-31 08:34:30 +00:00
|
|
|
{
|
|
|
|
main_frame->g_TASInputDlg[controllerID + 4]->GetValues(data, rptf, ext, key);
|
|
|
|
}
|
2011-06-24 06:50:50 +00:00
|
|
|
}
|
|
|
|
|
2012-11-11 21:35:08 +00:00
|
|
|
bool TASInputHasFocus()
|
|
|
|
{
|
2014-09-15 03:42:32 +00:00
|
|
|
for (int i = 0; i < 8; ++i)
|
2012-11-11 22:38:01 +00:00
|
|
|
{
|
2013-08-29 05:33:24 +00:00
|
|
|
if (main_frame->g_TASInputDlg[i]->TASHasFocus())
|
2012-11-11 22:38:01 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2012-11-11 21:35:08 +00:00
|
|
|
}
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
void CFrame::OnKeyDown(wxKeyEvent& event)
|
|
|
|
{
|
2014-03-10 11:30:55 +00:00
|
|
|
if (Core::GetState() != Core::CORE_UNINITIALIZED &&
|
|
|
|
(RendererHasFocus() || TASInputHasFocus()))
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2015-01-27 01:24:47 +00:00
|
|
|
ParseHotkeys(event);
|
2010-04-10 20:44:56 +00:00
|
|
|
}
|
2010-04-12 01:33:10 +00:00
|
|
|
else
|
2013-04-08 05:16:50 +00:00
|
|
|
{
|
2010-04-12 01:33:10 +00:00
|
|
|
event.Skip();
|
2013-04-08 05:16:50 +00:00
|
|
|
}
|
2008-12-28 18:50:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CFrame::OnKeyUp(wxKeyEvent& event)
|
|
|
|
{
|
2014-07-07 22:47:57 +00:00
|
|
|
if(Core::IsRunning() && (RendererHasFocus() || TASInputHasFocus()))
|
2014-02-16 22:13:01 +00:00
|
|
|
{
|
|
|
|
if (IsHotkey(event, HK_TOGGLE_THROTTLE))
|
|
|
|
{
|
2014-04-30 10:50:29 +00:00
|
|
|
Core::SetIsFramelimiterTempDisabled(false);
|
2014-02-16 22:13:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
event.Skip();
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2009-09-01 12:44:02 +00:00
|
|
|
|
2010-12-21 23:58:25 +00:00
|
|
|
void CFrame::OnMouse(wxMouseEvent& event)
|
|
|
|
{
|
2013-11-29 05:09:54 +00:00
|
|
|
// next handlers are all for FreeLook, so we don't need to check them if disabled
|
2014-03-10 11:30:55 +00:00
|
|
|
if (!g_Config.bFreeLook)
|
2013-11-29 05:09:54 +00:00
|
|
|
{
|
|
|
|
event.Skip();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Free look variables
|
|
|
|
static bool mouseLookEnabled = false;
|
|
|
|
static bool mouseMoveEnabled = false;
|
|
|
|
static float lastMouse[2];
|
|
|
|
|
2014-03-10 11:30:55 +00:00
|
|
|
if (event.MiddleDown())
|
2013-11-29 05:09:54 +00:00
|
|
|
{
|
|
|
|
lastMouse[0] = event.GetX();
|
|
|
|
lastMouse[1] = event.GetY();
|
|
|
|
mouseMoveEnabled = true;
|
|
|
|
}
|
2014-03-10 11:30:55 +00:00
|
|
|
else if (event.RightDown())
|
2013-11-29 05:09:54 +00:00
|
|
|
{
|
|
|
|
lastMouse[0] = event.GetX();
|
|
|
|
lastMouse[1] = event.GetY();
|
|
|
|
mouseLookEnabled = true;
|
|
|
|
}
|
2014-03-10 11:30:55 +00:00
|
|
|
else if (event.MiddleUp())
|
2013-11-29 05:09:54 +00:00
|
|
|
{
|
|
|
|
mouseMoveEnabled = false;
|
|
|
|
}
|
2014-03-10 11:30:55 +00:00
|
|
|
else if (event.RightUp())
|
2013-11-29 05:09:54 +00:00
|
|
|
{
|
|
|
|
mouseLookEnabled = false;
|
|
|
|
}
|
|
|
|
// no button, so it's a move event
|
2014-03-10 11:30:55 +00:00
|
|
|
else if (event.GetButton() == wxMOUSE_BTN_NONE)
|
2013-11-29 05:09:54 +00:00
|
|
|
{
|
|
|
|
if (mouseLookEnabled)
|
|
|
|
{
|
|
|
|
VertexShaderManager::RotateView((event.GetX() - lastMouse[0]) / 200.0f,
|
|
|
|
(event.GetY() - lastMouse[1]) / 200.0f);
|
|
|
|
lastMouse[0] = event.GetX();
|
|
|
|
lastMouse[1] = event.GetY();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mouseMoveEnabled)
|
|
|
|
{
|
|
|
|
VertexShaderManager::TranslateView((event.GetX() - lastMouse[0]) / 50.0f,
|
|
|
|
(event.GetY() - lastMouse[1]) / 50.0f);
|
|
|
|
lastMouse[0] = event.GetX();
|
|
|
|
lastMouse[1] = event.GetY();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-02 23:36:50 +00:00
|
|
|
event.Skip();
|
2010-12-21 23:58:25 +00:00
|
|
|
}
|
|
|
|
|
2014-07-26 10:43:49 +00:00
|
|
|
void CFrame::DoFullscreen(bool enable_fullscreen)
|
2009-09-01 15:16:44 +00:00
|
|
|
{
|
2015-01-18 03:35:08 +00:00
|
|
|
if (g_Config.bExclusiveMode && Core::GetState() == Core::CORE_PAUSE)
|
2014-07-25 13:33:50 +00:00
|
|
|
{
|
2014-07-26 10:43:49 +00:00
|
|
|
// A responsive renderer is required for exclusive fullscreen, but the
|
|
|
|
// renderer can only respond in the running state. Therefore we ignore
|
2015-01-18 03:35:08 +00:00
|
|
|
// fullscreen switches if we are in exclusive fullscreen, but the
|
2014-07-26 10:43:49 +00:00
|
|
|
// renderer is not running.
|
|
|
|
// TODO: Allow the renderer to switch fullscreen modes while paused.
|
2014-07-25 13:33:50 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-26 10:43:49 +00:00
|
|
|
ToggleDisplayMode(enable_fullscreen);
|
2010-04-22 04:28:34 +00:00
|
|
|
|
2013-03-31 16:08:29 +00:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
NSView *view = (NSView *) m_RenderFrame->GetHandle();
|
|
|
|
NSWindow *window = [view window];
|
|
|
|
|
2014-07-26 10:43:49 +00:00
|
|
|
if (enable_fullscreen != RendererIsFullscreen())
|
2013-03-31 16:08:29 +00:00
|
|
|
{
|
|
|
|
[window toggleFullScreen:nil];
|
|
|
|
}
|
|
|
|
#else
|
2014-07-26 10:43:49 +00:00
|
|
|
if (enable_fullscreen)
|
2014-07-16 13:53:33 +00:00
|
|
|
{
|
|
|
|
m_RenderFrame->ShowFullScreen(true, wxFULLSCREEN_ALL);
|
|
|
|
}
|
2015-01-18 03:35:08 +00:00
|
|
|
else if (!g_Config.bExclusiveMode)
|
2014-07-16 13:53:33 +00:00
|
|
|
{
|
|
|
|
// Exiting exclusive fullscreen should be done from a Renderer callback.
|
2015-01-18 03:35:08 +00:00
|
|
|
// Therefore we don't exit fullscreen from here if we are in exclusive mode.
|
2014-07-16 13:53:33 +00:00
|
|
|
m_RenderFrame->ShowFullScreen(false, wxFULLSCREEN_ALL);
|
|
|
|
}
|
2013-03-31 16:08:29 +00:00
|
|
|
#endif
|
|
|
|
|
2010-04-22 04:28:34 +00:00
|
|
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bRenderToMain)
|
2009-09-01 15:16:44 +00:00
|
|
|
{
|
2014-07-26 10:43:49 +00:00
|
|
|
if (enable_fullscreen)
|
2009-10-24 21:31:28 +00:00
|
|
|
{
|
2010-04-22 04:28:34 +00:00
|
|
|
// Save the current mode before going to fullscreen
|
|
|
|
AuiCurrent = m_Mgr->SavePerspective();
|
|
|
|
m_Mgr->LoadPerspective(AuiFullscreen, true);
|
2014-08-13 09:21:21 +00:00
|
|
|
|
2014-08-13 00:47:25 +00:00
|
|
|
// Hide toolbar
|
|
|
|
DoToggleToolbar(false);
|
2014-08-13 09:21:21 +00:00
|
|
|
|
2014-08-25 03:57:57 +00:00
|
|
|
// Hide menubar (by having wxwidgets delete it)
|
|
|
|
SetMenuBar(nullptr);
|
|
|
|
|
|
|
|
// Hide the statusbar if enabled
|
|
|
|
if (GetStatusBar()->IsShown())
|
|
|
|
{
|
|
|
|
GetStatusBar()->Hide();
|
|
|
|
this->SendSizeEvent();
|
|
|
|
}
|
2009-10-24 21:31:28 +00:00
|
|
|
}
|
2010-04-12 01:33:10 +00:00
|
|
|
else
|
2010-04-22 04:28:34 +00:00
|
|
|
{
|
|
|
|
// Restore saved perspective
|
|
|
|
m_Mgr->LoadPerspective(AuiCurrent, true);
|
2014-08-13 09:21:21 +00:00
|
|
|
|
2014-08-13 00:47:25 +00:00
|
|
|
// Restore toolbar to the status it was at before going fullscreen.
|
|
|
|
DoToggleToolbar(SConfig::GetInstance().m_InterfaceToolbar);
|
2014-08-13 09:21:21 +00:00
|
|
|
|
2014-08-25 03:57:57 +00:00
|
|
|
// Recreate the menubar if needed.
|
2014-09-06 05:15:10 +00:00
|
|
|
if (wxFrame::GetMenuBar() == nullptr)
|
2014-08-25 03:57:57 +00:00
|
|
|
{
|
2014-09-06 05:15:10 +00:00
|
|
|
SetMenuBar(CreateMenu());
|
2014-08-25 03:57:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Show statusbar if enabled
|
|
|
|
if (SConfig::GetInstance().m_InterfaceStatusbar)
|
|
|
|
{
|
|
|
|
GetStatusBar()->Show();
|
|
|
|
this->SendSizeEvent();
|
|
|
|
}
|
2010-04-22 04:28:34 +00:00
|
|
|
}
|
2010-03-15 23:25:11 +00:00
|
|
|
}
|
2010-04-22 04:28:34 +00:00
|
|
|
else
|
2013-04-08 05:16:50 +00:00
|
|
|
{
|
2010-04-22 04:28:34 +00:00
|
|
|
m_RenderFrame->Raise();
|
2013-04-08 05:16:50 +00:00
|
|
|
}
|
2014-06-18 13:04:23 +00:00
|
|
|
|
2015-01-17 12:49:02 +00:00
|
|
|
g_Config.bFullscreen = enable_fullscreen;
|
2009-09-05 04:50:45 +00:00
|
|
|
}
|
2011-02-13 22:36:12 +00:00
|
|
|
|
2011-02-20 23:42:21 +00:00
|
|
|
const CGameListCtrl *CFrame::GetGameListCtrl() const
|
2011-02-13 22:36:12 +00:00
|
|
|
{
|
2011-02-20 23:42:21 +00:00
|
|
|
return m_GameListCtrl;
|
2011-02-13 22:36:12 +00:00
|
|
|
}
|
2015-01-27 01:24:47 +00:00
|
|
|
|
|
|
|
void CFrame::PollHotkeys(wxTimerEvent& event)
|
|
|
|
{
|
|
|
|
if (Core::GetState() == Core::CORE_UNINITIALIZED || Core::GetState() == Core::CORE_PAUSE)
|
|
|
|
{
|
2015-02-04 07:05:22 +00:00
|
|
|
m_bHotkeysInit = InitControllers();
|
2015-01-27 01:24:47 +00:00
|
|
|
g_controller_interface.UpdateInput();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Core::GetState() != Core::CORE_STOPPING)
|
|
|
|
{
|
|
|
|
wxKeyEvent keyevent = 0;
|
|
|
|
|
|
|
|
if (IsHotkey(keyevent, HK_TOGGLE_THROTTLE))
|
|
|
|
{
|
|
|
|
Core::SetIsFramelimiterTempDisabled(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ParseHotkeys(keyevent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFrame::ParseHotkeys(wxKeyEvent &event)
|
|
|
|
{
|
|
|
|
int WiimoteId = -1;
|
|
|
|
// Toggle fullscreen
|
|
|
|
if (IsHotkey(event, HK_FULLSCREEN))
|
|
|
|
DoFullscreen(!RendererIsFullscreen());
|
|
|
|
// Send Debugger keys to CodeWindow
|
|
|
|
else if (g_pCodeWindow && (event.GetKeyCode() >= WXK_F9 && event.GetKeyCode() <= WXK_F11))
|
|
|
|
event.Skip();
|
|
|
|
// Pause and Unpause
|
|
|
|
else if (IsHotkey(event, HK_PLAY_PAUSE))
|
|
|
|
DoPause();
|
|
|
|
// Stop
|
|
|
|
else if (IsHotkey(event, HK_STOP))
|
|
|
|
DoStop();
|
|
|
|
// Screenshot hotkey
|
|
|
|
else if (IsHotkey(event, HK_SCREENSHOT))
|
|
|
|
Core::SaveScreenShot();
|
|
|
|
else if (IsHotkey(event, HK_EXIT))
|
|
|
|
wxPostEvent(this, wxCommandEvent(wxID_EXIT));
|
|
|
|
else if (IsHotkey(event, HK_VOLUME_DOWN))
|
|
|
|
AudioCommon::DecreaseVolume(3);
|
|
|
|
else if (IsHotkey(event, HK_VOLUME_UP))
|
|
|
|
AudioCommon::IncreaseVolume(3);
|
|
|
|
else if (IsHotkey(event, HK_VOLUME_TOGGLE_MUTE))
|
|
|
|
AudioCommon::ToggleMuteVolume();
|
|
|
|
// Wiimote connect and disconnect hotkeys
|
|
|
|
else if (IsHotkey(event, HK_WIIMOTE1_CONNECT))
|
|
|
|
WiimoteId = 0;
|
|
|
|
else if (IsHotkey(event, HK_WIIMOTE2_CONNECT))
|
|
|
|
WiimoteId = 1;
|
|
|
|
else if (IsHotkey(event, HK_WIIMOTE3_CONNECT))
|
|
|
|
WiimoteId = 2;
|
|
|
|
else if (IsHotkey(event, HK_WIIMOTE4_CONNECT))
|
|
|
|
WiimoteId = 3;
|
|
|
|
else if (IsHotkey(event, HK_BALANCEBOARD_CONNECT))
|
|
|
|
WiimoteId = 4;
|
|
|
|
else if (IsHotkey(event, HK_TOGGLE_IR))
|
|
|
|
{
|
|
|
|
OSDChoice = 1;
|
|
|
|
// Toggle native resolution
|
|
|
|
if (++g_Config.iEFBScale > SCALE_4X)
|
|
|
|
g_Config.iEFBScale = SCALE_AUTO;
|
|
|
|
}
|
|
|
|
else if (IsHotkey(event, HK_TOGGLE_AR))
|
|
|
|
{
|
|
|
|
OSDChoice = 2;
|
|
|
|
// Toggle aspect ratio
|
|
|
|
g_Config.iAspectRatio = (g_Config.iAspectRatio + 1) & 3;
|
|
|
|
}
|
|
|
|
else if (IsHotkey(event, HK_TOGGLE_EFBCOPIES))
|
|
|
|
{
|
|
|
|
OSDChoice = 3;
|
|
|
|
// Toggle EFB copies between EFB2RAM and EFB2Texture
|
|
|
|
if (!g_Config.bEFBCopyEnable)
|
|
|
|
{
|
|
|
|
OSD::AddMessage("EFB Copies are disabled, enable them in Graphics settings for toggling", 6000);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_Config.bCopyEFBToTexture = !g_Config.bCopyEFBToTexture;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (IsHotkey(event, HK_TOGGLE_FOG))
|
|
|
|
{
|
|
|
|
OSDChoice = 4;
|
|
|
|
g_Config.bDisableFog = !g_Config.bDisableFog;
|
|
|
|
}
|
|
|
|
else if (IsHotkey(event, HK_TOGGLE_THROTTLE, true))
|
|
|
|
{
|
|
|
|
Core::SetIsFramelimiterTempDisabled(true);
|
|
|
|
}
|
|
|
|
else if (IsHotkey(event, HK_DECREASE_FRAME_LIMIT))
|
|
|
|
{
|
|
|
|
if (--SConfig::GetInstance().m_Framelimit > 0x19)
|
|
|
|
SConfig::GetInstance().m_Framelimit = 0x19;
|
|
|
|
}
|
|
|
|
else if (IsHotkey(event, HK_INCREASE_FRAME_LIMIT))
|
|
|
|
{
|
|
|
|
if (++SConfig::GetInstance().m_Framelimit > 0x19)
|
|
|
|
SConfig::GetInstance().m_Framelimit = 0;
|
|
|
|
}
|
|
|
|
else if (IsHotkey(event, HK_SAVE_STATE_SLOT_SELECTED))
|
|
|
|
{
|
|
|
|
State::Save(g_saveSlot);
|
|
|
|
}
|
|
|
|
else if (IsHotkey(event, HK_LOAD_STATE_SLOT_SELECTED))
|
|
|
|
{
|
|
|
|
State::Load(g_saveSlot);
|
|
|
|
}
|
|
|
|
else if (IsHotkey(event, HK_DECREASE_DEPTH))
|
|
|
|
{
|
|
|
|
if (--g_Config.iStereoDepth < 0)
|
|
|
|
g_Config.iStereoDepth = 0;
|
|
|
|
}
|
|
|
|
else if (IsHotkey(event, HK_INCREASE_DEPTH))
|
|
|
|
{
|
|
|
|
if (++g_Config.iStereoDepth > 100)
|
|
|
|
g_Config.iStereoDepth = 100;
|
|
|
|
}
|
|
|
|
else if (IsHotkey(event, HK_DECREASE_CONVERGENCE))
|
|
|
|
{
|
|
|
|
if (--g_Config.iStereoConvergence < 0)
|
|
|
|
g_Config.iStereoConvergence = 0;
|
|
|
|
}
|
|
|
|
else if (IsHotkey(event, HK_INCREASE_CONVERGENCE))
|
|
|
|
{
|
|
|
|
if (++g_Config.iStereoConvergence > 500)
|
|
|
|
g_Config.iStereoConvergence = 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (int i = HK_SELECT_STATE_SLOT_1; i < HK_SELECT_STATE_SLOT_10; ++i)
|
|
|
|
{
|
|
|
|
if (IsHotkey(event, i))
|
|
|
|
{
|
|
|
|
wxCommandEvent slot_event;
|
|
|
|
slot_event.SetId(i + IDM_SELECT_SLOT_1 - HK_SELECT_STATE_SLOT_1);
|
|
|
|
CFrame::OnSelectSlot(slot_event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int i = NUM_HOTKEYS;
|
|
|
|
if (!SConfig::GetInstance().m_LocalCoreStartupParameter.bRenderToMain || TASInputHasFocus())
|
|
|
|
{
|
|
|
|
for (i = 0; i < NUM_HOTKEYS; i++)
|
|
|
|
{
|
|
|
|
if (IsHotkey(event, i))
|
|
|
|
{
|
|
|
|
int cmd = GetCmdForHotkey(i);
|
|
|
|
if (cmd >= 0)
|
|
|
|
{
|
|
|
|
wxCommandEvent evt(wxEVT_MENU, cmd);
|
|
|
|
wxMenuItem *item = GetMenuBar()->FindItem(cmd);
|
|
|
|
if (item && item->IsCheckable())
|
|
|
|
{
|
|
|
|
item->wxMenuItemBase::Toggle();
|
|
|
|
evt.SetInt(item->IsChecked());
|
|
|
|
}
|
|
|
|
GetEventHandler()->AddPendingEvent(evt);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// On OS X, we claim all keyboard events while
|
|
|
|
// emulation is running to avoid wxWidgets sounding
|
|
|
|
// the system beep for unhandled key events when
|
|
|
|
// receiving pad/Wiimote keypresses which take an
|
|
|
|
// entirely different path through the HID subsystem.
|
|
|
|
#ifndef __APPLE__
|
|
|
|
// On other platforms, we leave the key event alone
|
|
|
|
// so it can be passed on to the windowing system.
|
|
|
|
if (i == NUM_HOTKEYS)
|
|
|
|
event.Skip();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// Actually perform the Wiimote connection or disconnection
|
|
|
|
if (Core::GetState() != Core::CORE_UNINITIALIZED)
|
|
|
|
{
|
|
|
|
if (WiimoteId >= 0)
|
|
|
|
{
|
|
|
|
wxCommandEvent evt;
|
|
|
|
evt.SetId(IDM_CONNECT_WIIMOTE1 + WiimoteId);
|
|
|
|
OnConnectWiimote(evt);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (g_Config.bFreeLook)
|
|
|
|
{
|
|
|
|
static float debugSpeed = 1.0f;
|
|
|
|
|
|
|
|
if (IsHotkey(event, HK_FREELOOK_DECREASE_SPEED))
|
|
|
|
debugSpeed /= 2.0f;
|
|
|
|
else if (IsHotkey(event, HK_FREELOOK_INCREASE_SPEED))
|
|
|
|
debugSpeed *= 2.0f;
|
|
|
|
else if (IsHotkey(event, HK_FREELOOK_RESET_SPEED))
|
|
|
|
debugSpeed = 1.0f;
|
|
|
|
else if (IsHotkey(event, HK_FREELOOK_UP))
|
|
|
|
VertexShaderManager::TranslateView(0.0f, 0.0f, -debugSpeed);
|
|
|
|
else if (IsHotkey(event, HK_FREELOOK_DOWN))
|
|
|
|
VertexShaderManager::TranslateView(0.0f, 0.0f, debugSpeed);
|
|
|
|
else if (IsHotkey(event, HK_FREELOOK_LEFT))
|
|
|
|
VertexShaderManager::TranslateView(debugSpeed, 0.0f);
|
|
|
|
else if (IsHotkey(event, HK_FREELOOK_RIGHT))
|
|
|
|
VertexShaderManager::TranslateView(-debugSpeed, 0.0f);
|
|
|
|
else if (IsHotkey(event, HK_FREELOOK_ZOOM_IN))
|
|
|
|
VertexShaderManager::TranslateView(0.0f, debugSpeed);
|
|
|
|
else if (IsHotkey(event, HK_FREELOOK_ZOOM_OUT))
|
|
|
|
VertexShaderManager::TranslateView(0.0f, -debugSpeed);
|
|
|
|
else if (IsHotkey(event, HK_FREELOOK_RESET))
|
|
|
|
VertexShaderManager::ResetView();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|