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-22 22:36:30 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
|
|
|
#include <mutex>
|
2008-12-08 05:30:24 +00:00
|
|
|
#include <string>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <utility>
|
|
|
|
#include <wx/app.h>
|
|
|
|
#include <wx/buffer.h>
|
|
|
|
#include <wx/chartype.h>
|
|
|
|
#include <wx/cmdline.h>
|
|
|
|
#include <wx/defs.h>
|
|
|
|
#include <wx/event.h>
|
|
|
|
#include <wx/gdicmn.h>
|
|
|
|
#include <wx/image.h>
|
|
|
|
#include <wx/imagpng.h>
|
2014-02-19 01:56:29 +00:00
|
|
|
#include <wx/intl.h>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include <wx/language.h>
|
|
|
|
#include <wx/msgdlg.h>
|
|
|
|
#include <wx/setup.h>
|
|
|
|
#include <wx/string.h>
|
|
|
|
#include <wx/thread.h>
|
|
|
|
#include <wx/timer.h>
|
|
|
|
#include <wx/translation.h>
|
|
|
|
#include <wx/utils.h>
|
|
|
|
#include <wx/window.h>
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/CommonPaths.h"
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/CPUDetect.h"
|
|
|
|
#include "Common/FileUtil.h"
|
|
|
|
#include "Common/IniFile.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "Common/Thread.h"
|
2014-06-05 23:29:54 +00:00
|
|
|
#include "Common/Logging/LogManager.h"
|
2010-02-20 04:18:19 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/ConfigManager.h"
|
2014-06-20 00:43:57 +00:00
|
|
|
#include "Core/Core.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "Core/CoreParameter.h"
|
2014-07-08 12:29:26 +00:00
|
|
|
#include "Core/Host.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "Core/Movie.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/HW/Wiimote.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DolphinWX/Frame.h"
|
|
|
|
#include "DolphinWX/Globals.h"
|
|
|
|
#include "DolphinWX/Main.h"
|
2014-08-04 00:07:27 +00:00
|
|
|
#include "DolphinWX/SoftwareVideoConfigDialog.h"
|
2014-08-02 06:21:03 +00:00
|
|
|
#include "DolphinWX/VideoConfigDiag.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "DolphinWX/WxUtils.h"
|
|
|
|
#include "DolphinWX/Debugger/CodeWindow.h"
|
|
|
|
#include "DolphinWX/Debugger/JitWindow.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-10-04 19:12:15 +00:00
|
|
|
#include "UICommon/UICommon.h"
|
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/VideoBackendBase.h"
|
2011-01-31 01:28:32 +00:00
|
|
|
|
2014-02-18 11:09:38 +00:00
|
|
|
#if defined HAVE_X11 && HAVE_X11
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#endif
|
|
|
|
|
2012-12-31 01:29:36 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <shellapi.h>
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "Common/ExtendedTrace.h"
|
2013-03-15 15:45:43 +00:00
|
|
|
|
|
|
|
#ifndef SM_XVIRTUALSCREEN
|
|
|
|
#define SM_XVIRTUALSCREEN 76
|
|
|
|
#endif
|
2013-03-15 19:41:13 +00:00
|
|
|
#ifndef SM_YVIRTUALSCREEN
|
|
|
|
#define SM_YVIRTUALSCREEN 77
|
|
|
|
#endif
|
2013-03-15 15:45:43 +00:00
|
|
|
#ifndef SM_CXVIRTUALSCREEN
|
|
|
|
#define SM_CXVIRTUALSCREEN 78
|
|
|
|
#endif
|
|
|
|
#ifndef SM_CYVIRTUALSCREEN
|
|
|
|
#define SM_CYVIRTUALSCREEN 79
|
|
|
|
#endif
|
|
|
|
|
2012-12-31 01:29:36 +00:00
|
|
|
#endif
|
|
|
|
|
2013-03-14 20:25:41 +00:00
|
|
|
#ifdef __APPLE__
|
2013-03-14 20:46:27 +00:00
|
|
|
#import <AppKit/AppKit.h>
|
2013-03-14 20:25:41 +00:00
|
|
|
#endif
|
|
|
|
|
2014-02-22 22:36:30 +00:00
|
|
|
class wxFrame;
|
|
|
|
|
2009-09-06 01:40:44 +00:00
|
|
|
// ------------
|
2009-09-03 20:00:09 +00:00
|
|
|
// Main window
|
2009-09-06 01:40:44 +00:00
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
IMPLEMENT_APP(DolphinApp)
|
|
|
|
|
2010-03-18 14:34:37 +00:00
|
|
|
bool wxMsgAlert(const char*, const char*, bool, int);
|
2011-01-14 00:15:08 +00:00
|
|
|
std::string wxStringTranslator(const char *);
|
2008-12-14 12:30:37 +00:00
|
|
|
|
2014-03-09 20:14:26 +00:00
|
|
|
CFrame* main_frame = nullptr;
|
2008-12-08 05:30:24 +00:00
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
//Has no error handling.
|
|
|
|
//I think that if an error occurs here there's no way to handle it anyway.
|
2014-08-30 21:01:19 +00:00
|
|
|
LONG WINAPI MyUnhandledExceptionFilter(LPEXCEPTION_POINTERS e)
|
|
|
|
{
|
2008-12-08 05:30:24 +00:00
|
|
|
//EnterCriticalSection(&g_uefcs);
|
|
|
|
|
2011-03-11 10:21:46 +00:00
|
|
|
File::IOFile file("exceptioninfo.txt", "a");
|
|
|
|
file.Seek(0, SEEK_END);
|
|
|
|
etfprint(file.GetHandle(), "\n");
|
2009-01-09 00:09:07 +00:00
|
|
|
//etfprint(file, g_buildtime);
|
|
|
|
//etfprint(file, "\n");
|
2008-12-08 05:30:24 +00:00
|
|
|
//dumpCurrentDate(file);
|
2011-03-11 10:21:46 +00:00
|
|
|
etfprintf(file.GetHandle(), "Unhandled Exception\n Code: 0x%08X\n",
|
2008-12-08 05:30:24 +00:00
|
|
|
e->ExceptionRecord->ExceptionCode);
|
2014-05-28 03:37:16 +00:00
|
|
|
|
2011-03-11 10:21:46 +00:00
|
|
|
STACKTRACE2(file.GetHandle(), e->ContextRecord->Rip, e->ContextRecord->Rsp, e->ContextRecord->Rbp);
|
2014-05-28 03:37:16 +00:00
|
|
|
|
2011-03-11 10:21:46 +00:00
|
|
|
file.Close();
|
2008-12-08 05:30:24 +00:00
|
|
|
_flushall();
|
|
|
|
|
|
|
|
//LeaveCriticalSection(&g_uefcs);
|
|
|
|
return EXCEPTION_CONTINUE_SEARCH;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-02-19 21:53:53 +00:00
|
|
|
bool DolphinApp::Initialize(int& c, wxChar **v)
|
|
|
|
{
|
|
|
|
#if defined HAVE_X11 && HAVE_X11
|
|
|
|
XInitThreads();
|
2013-10-29 05:23:17 +00:00
|
|
|
#endif
|
2011-02-19 21:53:53 +00:00
|
|
|
return wxApp::Initialize(c, v);
|
|
|
|
}
|
|
|
|
|
2013-10-29 05:23:17 +00:00
|
|
|
// The `main program' equivalent that creates the main window and return the main frame
|
2009-01-04 21:53:41 +00:00
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
bool DolphinApp::OnInit()
|
|
|
|
{
|
2014-11-09 00:26:20 +00:00
|
|
|
Bind(wxEVT_QUERY_END_SESSION, &DolphinApp::OnEndSession, this);
|
|
|
|
Bind(wxEVT_END_SESSION, &DolphinApp::OnEndSession, this);
|
|
|
|
|
2011-01-05 04:35:46 +00:00
|
|
|
InitLanguageSupport();
|
|
|
|
|
2009-01-04 21:53:41 +00:00
|
|
|
// Declarations and definitions
|
|
|
|
bool UseDebugger = false;
|
2009-09-01 15:16:44 +00:00
|
|
|
bool UseLogger = false;
|
2011-02-02 16:34:12 +00:00
|
|
|
bool selectVideoBackend = false;
|
2012-12-22 23:25:52 +00:00
|
|
|
bool selectAudioEmulation = false;
|
2009-09-06 02:55:14 +00:00
|
|
|
|
2011-02-02 16:34:12 +00:00
|
|
|
wxString videoBackendName;
|
|
|
|
wxString audioEmulationName;
|
2013-08-25 03:15:55 +00:00
|
|
|
wxString userPath;
|
2009-09-06 02:55:14 +00:00
|
|
|
|
2010-03-18 14:34:37 +00:00
|
|
|
#if wxUSE_CMDLINE_PARSER // Parse command lines
|
|
|
|
wxCmdLineEntryDesc cmdLineDesc[] =
|
|
|
|
{
|
|
|
|
{
|
2012-03-18 09:31:19 +00:00
|
|
|
wxCMD_LINE_SWITCH, "h", "help",
|
2012-11-16 22:46:28 +00:00
|
|
|
"Show this help message",
|
2010-03-18 14:34:37 +00:00
|
|
|
wxCMD_LINE_VAL_NONE, wxCMD_LINE_OPTION_HELP
|
|
|
|
},
|
|
|
|
{
|
2012-03-18 09:31:19 +00:00
|
|
|
wxCMD_LINE_SWITCH, "d", "debugger",
|
2012-11-16 22:46:28 +00:00
|
|
|
"Opens the debugger",
|
2011-02-14 21:58:53 +00:00
|
|
|
wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL
|
2010-03-18 14:34:37 +00:00
|
|
|
},
|
|
|
|
{
|
2012-03-18 09:31:19 +00:00
|
|
|
wxCMD_LINE_SWITCH, "l", "logger",
|
2012-11-16 22:46:28 +00:00
|
|
|
"Opens the logger",
|
2011-02-14 21:58:53 +00:00
|
|
|
wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL
|
2010-03-18 14:34:37 +00:00
|
|
|
},
|
|
|
|
{
|
2012-03-18 09:31:19 +00:00
|
|
|
wxCMD_LINE_OPTION, "e", "exec",
|
2014-11-14 02:28:27 +00:00
|
|
|
"Loads the specified file (ELF, DOL, GCM, ISO, WBFS, CISO, GCZ, WAD)",
|
2010-03-18 14:34:37 +00:00
|
|
|
wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL
|
|
|
|
},
|
2010-07-08 23:27:51 +00:00
|
|
|
{
|
2012-03-18 09:31:19 +00:00
|
|
|
wxCMD_LINE_SWITCH, "b", "batch",
|
2012-11-16 22:46:28 +00:00
|
|
|
"Exit Dolphin with emulator",
|
2011-02-14 21:58:53 +00:00
|
|
|
wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL
|
2010-07-08 23:27:51 +00:00
|
|
|
},
|
2010-03-18 14:34:37 +00:00
|
|
|
{
|
2012-03-18 09:31:19 +00:00
|
|
|
wxCMD_LINE_OPTION, "V", "video_backend",
|
2012-11-16 22:46:28 +00:00
|
|
|
"Specify a video backend",
|
2010-03-18 14:34:37 +00:00
|
|
|
wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL
|
|
|
|
},
|
|
|
|
{
|
2012-03-18 09:31:19 +00:00
|
|
|
wxCMD_LINE_OPTION, "A", "audio_emulation",
|
2012-11-16 22:46:28 +00:00
|
|
|
"Low level (LLE) or high level (HLE) audio",
|
2010-03-18 14:34:37 +00:00
|
|
|
wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL
|
|
|
|
},
|
2013-03-13 05:37:35 +00:00
|
|
|
{
|
|
|
|
wxCMD_LINE_OPTION, "m", "movie",
|
|
|
|
"Play a movie file",
|
|
|
|
wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL
|
|
|
|
},
|
2013-08-25 03:15:55 +00:00
|
|
|
{
|
|
|
|
wxCMD_LINE_OPTION, "U", "user",
|
|
|
|
"User folder path",
|
|
|
|
wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL
|
|
|
|
},
|
2010-03-18 14:34:37 +00:00
|
|
|
{
|
2014-03-09 20:14:26 +00:00
|
|
|
wxCMD_LINE_NONE, nullptr, nullptr, nullptr, wxCMD_LINE_VAL_NONE, 0
|
2010-03-18 14:34:37 +00:00
|
|
|
}
|
|
|
|
};
|
2011-01-11 00:07:22 +00:00
|
|
|
|
2010-03-18 14:34:37 +00:00
|
|
|
// Gets the command line parameters
|
|
|
|
wxCmdLineParser parser(cmdLineDesc, argc, argv);
|
2014-10-03 11:39:51 +00:00
|
|
|
if (argc == 2 && File::Exists(argv[1].ToUTF8().data()))
|
2014-09-30 13:21:34 +00:00
|
|
|
{
|
|
|
|
LoadFile = true;
|
|
|
|
FileToLoad = argv[1];
|
|
|
|
}
|
|
|
|
else if (parser.Parse() != 0)
|
2010-03-18 14:34:37 +00:00
|
|
|
{
|
|
|
|
return false;
|
2013-10-29 05:23:17 +00:00
|
|
|
}
|
2011-01-11 00:07:22 +00:00
|
|
|
|
2014-05-17 17:17:28 +00:00
|
|
|
UseDebugger = parser.Found("debugger");
|
|
|
|
UseLogger = parser.Found("logger");
|
2014-09-30 13:21:34 +00:00
|
|
|
if (!LoadFile)
|
|
|
|
LoadFile = parser.Found("exec", &FileToLoad);
|
2014-05-17 17:17:28 +00:00
|
|
|
BatchMode = parser.Found("batch");
|
|
|
|
selectVideoBackend = parser.Found("video_backend", &videoBackendName);
|
|
|
|
selectAudioEmulation = parser.Found("audio_emulation", &audioEmulationName);
|
|
|
|
playMovie = parser.Found("movie", &movieFile);
|
|
|
|
|
|
|
|
if (parser.Found("user", &userPath))
|
2013-08-25 03:15:55 +00:00
|
|
|
{
|
|
|
|
File::CreateFullPath(WxStrToStr(userPath) + DIR_SEP);
|
|
|
|
File::GetUserPath(D_USER_IDX, userPath.ToStdString() + DIR_SEP);
|
|
|
|
}
|
2010-03-18 14:34:37 +00:00
|
|
|
#endif // wxUSE_CMDLINE_PARSER
|
|
|
|
|
2011-01-13 15:32:14 +00:00
|
|
|
// Register message box and translation handlers
|
2010-03-18 14:34:37 +00:00
|
|
|
RegisterMsgAlertHandler(&wxMsgAlert);
|
2011-01-13 02:05:58 +00:00
|
|
|
RegisterStringTranslator(&wxStringTranslator);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2013-04-01 04:10:54 +00:00
|
|
|
// "ExtendedTrace" looks freakin' dangerous!!!
|
2010-03-18 14:34:37 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
EXTENDEDTRACEINITIALIZE(".");
|
|
|
|
SetUnhandledExceptionFilter(&MyUnhandledExceptionFilter);
|
2011-01-21 16:54:37 +00:00
|
|
|
#elif wxUSE_ON_FATAL_EXCEPTION
|
2011-01-12 01:27:01 +00:00
|
|
|
wxHandleFatalExceptions(true);
|
2010-03-18 14:34:37 +00:00
|
|
|
#endif
|
|
|
|
|
2013-03-14 20:25:41 +00:00
|
|
|
#ifdef __APPLE__
|
2013-03-14 20:46:27 +00:00
|
|
|
if (floor(NSAppKitVersionNumber) < NSAppKitVersionNumber10_7)
|
2013-03-14 20:25:41 +00:00
|
|
|
{
|
2013-04-01 04:10:54 +00:00
|
|
|
PanicAlertT("Hi,\n\nDolphin requires Mac OS X 10.7 or greater.\n"
|
2013-03-14 20:25:41 +00:00
|
|
|
"Unfortunately you're running an old version of OS X.\n"
|
2013-03-14 20:46:27 +00:00
|
|
|
"The last Dolphin version to support OS X 10.6 is Dolphin 3.5\n"
|
|
|
|
"Please upgrade to 10.7 or greater to use the newest Dolphin version.\n\n"
|
2013-03-14 20:25:41 +00:00
|
|
|
"Sayonara!\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
2010-03-18 14:34:37 +00:00
|
|
|
|
2014-10-04 19:12:15 +00:00
|
|
|
UICommon::CreateDirectories();
|
|
|
|
UICommon::Init();
|
2009-01-04 21:53:41 +00:00
|
|
|
|
2011-02-02 16:34:12 +00:00
|
|
|
if (selectVideoBackend && videoBackendName != wxEmptyString)
|
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.m_strVideoBackend =
|
2013-02-28 04:37:38 +00:00
|
|
|
WxStrToStr(videoBackendName);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2012-12-22 23:25:52 +00:00
|
|
|
if (selectAudioEmulation)
|
2012-12-23 06:24:30 +00:00
|
|
|
{
|
2012-12-22 23:25:52 +00:00
|
|
|
if (audioEmulationName == "HLE")
|
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.bDSPHLE = true;
|
|
|
|
else if (audioEmulationName == "LLE")
|
|
|
|
SConfig::GetInstance().m_LocalCoreStartupParameter.bDSPHLE = false;
|
2012-12-23 06:24:30 +00:00
|
|
|
}
|
2012-12-22 23:25:52 +00:00
|
|
|
|
2011-02-02 16:34:12 +00:00
|
|
|
VideoBackend::ActivateBackend(SConfig::GetInstance().m_LocalCoreStartupParameter.m_strVideoBackend);
|
2011-01-31 01:28:32 +00:00
|
|
|
|
2010-08-01 15:48:11 +00:00
|
|
|
// Enable the PNG image handler for screenshots
|
|
|
|
wxImage::AddHandler(new wxPNGHandler);
|
2009-09-06 02:55:14 +00:00
|
|
|
|
2010-01-18 18:01:03 +00:00
|
|
|
int x = SConfig::GetInstance().m_LocalCoreStartupParameter.iPosX;
|
|
|
|
int y = SConfig::GetInstance().m_LocalCoreStartupParameter.iPosY;
|
|
|
|
int w = SConfig::GetInstance().m_LocalCoreStartupParameter.iWidth;
|
|
|
|
int h = SConfig::GetInstance().m_LocalCoreStartupParameter.iHeight;
|
2009-09-15 21:35:32 +00:00
|
|
|
|
2012-12-31 01:29:36 +00:00
|
|
|
if (File::Exists("www.dolphin-emulator.com.txt"))
|
|
|
|
{
|
2012-12-31 02:27:36 +00:00
|
|
|
File::Delete("www.dolphin-emulator.com.txt");
|
2014-11-05 04:13:25 +00:00
|
|
|
wxMessageDialog dlg(nullptr, _(
|
|
|
|
"This version of Dolphin was downloaded from a website stealing money from developers of the emulator. Please "
|
2014-11-07 02:34:38 +00:00
|
|
|
"download Dolphin from the official website instead: https://dolphin-emu.org/"),
|
2014-11-05 04:13:25 +00:00
|
|
|
_("Unofficial version detected"), wxOK | wxICON_WARNING);
|
|
|
|
dlg.ShowModal();
|
|
|
|
|
2014-11-07 02:34:38 +00:00
|
|
|
wxLaunchDefaultBrowser("https://dolphin-emu.org/?ref=badver");
|
2014-11-05 04:13:25 +00:00
|
|
|
|
2012-12-31 01:29:36 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2011-02-02 18:21:20 +00:00
|
|
|
// The following is not needed with X11, where window managers
|
|
|
|
// do not allow windows to be created off the desktop.
|
2010-01-25 12:17:48 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
// Out of desktop check
|
2013-03-15 15:45:43 +00:00
|
|
|
int leftPos = GetSystemMetrics(SM_XVIRTUALSCREEN);
|
|
|
|
int topPos = GetSystemMetrics(SM_YVIRTUALSCREEN);
|
2013-03-15 19:41:13 +00:00
|
|
|
int width = GetSystemMetrics(SM_CXVIRTUALSCREEN);
|
2013-10-29 05:23:17 +00:00
|
|
|
int height = GetSystemMetrics(SM_CYVIRTUALSCREEN);
|
2013-03-15 13:19:39 +00:00
|
|
|
if ((leftPos + width) < (x + w) || leftPos > x || (topPos + height) < (y + h) || topPos > y)
|
2011-02-02 18:21:20 +00:00
|
|
|
x = y = wxDefaultCoord;
|
|
|
|
#elif defined __APPLE__
|
|
|
|
if (y < 1)
|
|
|
|
y = wxDefaultCoord;
|
2010-01-25 12:17:48 +00:00
|
|
|
#endif
|
|
|
|
|
2014-11-09 00:26:20 +00:00
|
|
|
main_frame = new CFrame(nullptr, wxID_ANY,
|
2013-02-28 04:37:38 +00:00
|
|
|
StrToWxStr(scm_rev_str),
|
2010-07-08 15:25:01 +00:00
|
|
|
wxPoint(x, y), wxSize(w, h),
|
2010-07-08 23:27:51 +00:00
|
|
|
UseDebugger, BatchMode, UseLogger);
|
2010-07-07 22:00:41 +00:00
|
|
|
SetTopWindow(main_frame);
|
2011-01-15 10:33:07 +00:00
|
|
|
main_frame->SetMinSize(wxSize(400, 300));
|
2010-07-07 22:00:41 +00:00
|
|
|
|
2014-11-09 00:26:20 +00:00
|
|
|
AfterInit();
|
2011-03-16 01:50:46 +00:00
|
|
|
|
2010-07-07 22:00:41 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-01-20 03:26:51 +00:00
|
|
|
void DolphinApp::MacOpenFile(const wxString &fileName)
|
2010-07-07 22:00:41 +00:00
|
|
|
{
|
2011-01-20 03:26:51 +00:00
|
|
|
FileToLoad = fileName;
|
|
|
|
LoadFile = true;
|
2014-11-09 00:26:20 +00:00
|
|
|
main_frame->BootGame(WxStrToStr(FileToLoad));
|
2011-01-20 03:26:51 +00:00
|
|
|
}
|
2009-01-04 21:53:41 +00:00
|
|
|
|
2014-11-09 00:26:20 +00:00
|
|
|
void DolphinApp::AfterInit()
|
2011-01-20 03:26:51 +00:00
|
|
|
{
|
2011-01-21 02:56:54 +00:00
|
|
|
if (!BatchMode)
|
|
|
|
main_frame->UpdateGameList();
|
|
|
|
|
2013-03-13 05:37:35 +00:00
|
|
|
if (playMovie && movieFile != wxEmptyString)
|
|
|
|
{
|
2014-03-12 19:33:41 +00:00
|
|
|
if (Movie::PlayInput(WxStrToStr(movieFile)))
|
2013-03-13 05:37:35 +00:00
|
|
|
{
|
|
|
|
if (LoadFile && FileToLoad != wxEmptyString)
|
|
|
|
{
|
|
|
|
main_frame->BootGame(WxStrToStr(FileToLoad));
|
|
|
|
}
|
|
|
|
else
|
2013-04-08 05:16:50 +00:00
|
|
|
{
|
2014-11-09 00:26:20 +00:00
|
|
|
main_frame->BootGame("");
|
2013-04-08 05:16:50 +00:00
|
|
|
}
|
2013-03-13 05:37:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-03 10:24:55 +00:00
|
|
|
// First check if we have an exec command line.
|
2013-03-13 05:37:35 +00:00
|
|
|
else if (LoadFile && FileToLoad != wxEmptyString)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2013-02-28 04:37:38 +00:00
|
|
|
main_frame->BootGame(WxStrToStr(FileToLoad));
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2010-07-07 22:00:41 +00:00
|
|
|
// If we have selected Automatic Start, start the default ISO,
|
|
|
|
// or if no default ISO exists, start the last loaded ISO
|
2009-09-07 12:40:43 +00:00
|
|
|
else if (main_frame->g_pCodeWindow)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2009-08-25 01:50:27 +00:00
|
|
|
if (main_frame->g_pCodeWindow->AutomaticStart())
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2013-03-13 05:37:35 +00:00
|
|
|
main_frame->BootGame("");
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-05 04:35:46 +00:00
|
|
|
void DolphinApp::InitLanguageSupport()
|
|
|
|
{
|
2011-01-08 17:35:34 +00:00
|
|
|
unsigned int language = 0;
|
2011-01-05 04:35:46 +00:00
|
|
|
|
|
|
|
IniFile ini;
|
2011-03-01 03:06:14 +00:00
|
|
|
ini.Load(File::GetUserPath(F_DOLPHINCONFIG_IDX));
|
2014-06-16 05:12:43 +00:00
|
|
|
ini.GetOrCreateSection("Interface")->Get("Language", &language, wxLANGUAGE_DEFAULT);
|
2011-01-05 04:35:46 +00:00
|
|
|
|
|
|
|
// Load language if possible, fall back to system default otherwise
|
2014-03-10 11:30:55 +00:00
|
|
|
if (wxLocale::IsAvailable(language))
|
2011-01-05 04:35:46 +00:00
|
|
|
{
|
2011-01-10 19:26:36 +00:00
|
|
|
m_locale = new wxLocale(language);
|
2011-01-05 04:35:46 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2013-09-21 18:20:38 +00:00
|
|
|
m_locale->AddCatalogLookupPathPrefix(StrToWxStr(File::GetExeDirectory() + DIR_SEP "Languages"));
|
2011-01-05 04:35:46 +00:00
|
|
|
#endif
|
|
|
|
|
2014-05-17 17:17:28 +00:00
|
|
|
m_locale->AddCatalog("dolphin-emu");
|
2011-01-05 04:35:46 +00:00
|
|
|
|
2014-03-10 11:30:55 +00:00
|
|
|
if (!m_locale->IsOk())
|
2011-01-05 04:35:46 +00:00
|
|
|
{
|
2014-07-25 01:46:46 +00:00
|
|
|
wxMessageBox(_("Error loading selected language. Falling back to system default."), _("Error"));
|
2011-01-05 04:35:46 +00:00
|
|
|
delete m_locale;
|
|
|
|
m_locale = new wxLocale(wxLANGUAGE_DEFAULT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-25 01:46:46 +00:00
|
|
|
wxMessageBox(_("The selected language is not supported by your system. Falling back to system default."), _("Error"));
|
2011-01-05 04:35:46 +00:00
|
|
|
m_locale = new wxLocale(wxLANGUAGE_DEFAULT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-10 10:14:21 +00:00
|
|
|
void DolphinApp::OnEndSession(wxCloseEvent& event)
|
|
|
|
{
|
2014-11-14 02:28:27 +00:00
|
|
|
// Close if we've received wxEVT_END_SESSION (ignore wxEVT_QUERY_END_SESSION)
|
2013-09-10 10:14:21 +00:00
|
|
|
if (!event.CanVeto())
|
|
|
|
{
|
|
|
|
main_frame->Close(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-16 04:34:41 +00:00
|
|
|
int DolphinApp::OnExit()
|
|
|
|
{
|
2014-07-13 21:47:59 +00:00
|
|
|
Core::Shutdown();
|
2014-10-04 19:12:15 +00:00
|
|
|
UICommon::Shutdown();
|
2010-02-16 04:34:41 +00:00
|
|
|
|
2011-01-05 04:35:46 +00:00
|
|
|
delete m_locale;
|
|
|
|
|
2010-02-16 04:34:41 +00:00
|
|
|
return wxApp::OnExit();
|
|
|
|
}
|
|
|
|
|
2011-01-12 01:27:01 +00:00
|
|
|
void DolphinApp::OnFatalException()
|
|
|
|
{
|
|
|
|
WiimoteReal::Shutdown();
|
|
|
|
}
|
|
|
|
|
2009-09-03 07:59:24 +00:00
|
|
|
|
2009-09-06 01:40:44 +00:00
|
|
|
// ------------
|
2009-09-03 20:00:09 +00:00
|
|
|
// Talk to GUI
|
2009-09-06 01:40:44 +00:00
|
|
|
|
2009-01-24 00:45:46 +00:00
|
|
|
bool wxMsgAlert(const char* caption, const char* text, bool yes_no, int /*Style*/)
|
2008-12-28 18:50:24 +00:00
|
|
|
{
|
2010-11-11 00:55:06 +00:00
|
|
|
#ifdef __WXGTK__
|
|
|
|
if (wxIsMainThread())
|
|
|
|
#endif
|
2013-02-28 04:37:38 +00:00
|
|
|
return wxYES == wxMessageBox(StrToWxStr(text), StrToWxStr(caption),
|
2014-09-30 05:28:01 +00:00
|
|
|
(yes_no) ? wxYES_NO : wxOK, wxWindow::FindFocus());
|
2010-11-11 00:55:06 +00:00
|
|
|
#ifdef __WXGTK__
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wxCommandEvent event(wxEVT_HOST_COMMAND, IDM_PANIC);
|
2014-05-17 17:17:28 +00:00
|
|
|
event.SetString(StrToWxStr(caption) + ":" + StrToWxStr(text));
|
2010-11-11 00:55:06 +00:00
|
|
|
event.SetInt(yes_no);
|
|
|
|
main_frame->GetEventHandler()->AddPendingEvent(event);
|
|
|
|
main_frame->panic_event.Wait();
|
|
|
|
return main_frame->bPanicResult;
|
|
|
|
}
|
|
|
|
#endif
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
|
2011-01-14 00:15:08 +00:00
|
|
|
std::string wxStringTranslator(const char *text)
|
2011-01-13 02:05:58 +00:00
|
|
|
{
|
2013-03-04 00:40:50 +00:00
|
|
|
return WxStrToStr(wxGetTranslation(wxString::FromUTF8(text)));
|
2011-01-13 02:05:58 +00:00
|
|
|
}
|
|
|
|
|
2009-03-20 18:25:36 +00:00
|
|
|
// Accessor for the main window class
|
|
|
|
CFrame* DolphinApp::GetCFrame()
|
|
|
|
{
|
|
|
|
return main_frame;
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-09-07 12:40:43 +00:00
|
|
|
void Host_Message(int Id)
|
|
|
|
{
|
2010-07-19 02:09:34 +00:00
|
|
|
wxCommandEvent event(wxEVT_HOST_COMMAND, Id);
|
|
|
|
main_frame->GetEventHandler()->AddPendingEvent(event);
|
2009-09-07 12:40:43 +00:00
|
|
|
}
|
|
|
|
|
2011-02-12 21:25:49 +00:00
|
|
|
void* Host_GetRenderHandle()
|
|
|
|
{
|
2013-04-08 05:16:50 +00:00
|
|
|
return main_frame->GetRenderHandle();
|
2011-02-12 21:25:49 +00:00
|
|
|
}
|
|
|
|
|
2014-11-14 02:28:27 +00:00
|
|
|
// OK, this thread boundary is DANGEROUS on Linux
|
2008-12-08 05:30:24 +00:00
|
|
|
// wxPostEvent / wxAddPendingEvent is the solution.
|
|
|
|
void Host_NotifyMapLoaded()
|
|
|
|
{
|
|
|
|
wxCommandEvent event(wxEVT_HOST_COMMAND, IDM_NOTIFYMAPLOADED);
|
2010-01-20 11:49:11 +00:00
|
|
|
main_frame->GetEventHandler()->AddPendingEvent(event);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-09-03 07:59:24 +00:00
|
|
|
if (main_frame->g_pCodeWindow)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2010-01-20 11:49:11 +00:00
|
|
|
main_frame->g_pCodeWindow->GetEventHandler()->AddPendingEvent(event);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Host_UpdateDisasmDialog()
|
|
|
|
{
|
|
|
|
wxCommandEvent event(wxEVT_HOST_COMMAND, IDM_UPDATEDISASMDIALOG);
|
2010-01-20 11:49:11 +00:00
|
|
|
main_frame->GetEventHandler()->AddPendingEvent(event);
|
2009-07-15 15:09:20 +00:00
|
|
|
|
2009-09-03 07:59:24 +00:00
|
|
|
if (main_frame->g_pCodeWindow)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2010-01-20 11:49:11 +00:00
|
|
|
main_frame->g_pCodeWindow->GetEventHandler()->AddPendingEvent(event);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Host_UpdateMainFrame()
|
|
|
|
{
|
|
|
|
wxCommandEvent event(wxEVT_HOST_COMMAND, IDM_UPDATEGUI);
|
2010-01-20 11:49:11 +00:00
|
|
|
main_frame->GetEventHandler()->AddPendingEvent(event);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2009-09-03 07:59:24 +00:00
|
|
|
if (main_frame->g_pCodeWindow)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2010-01-20 11:49:11 +00:00
|
|
|
main_frame->g_pCodeWindow->GetEventHandler()->AddPendingEvent(event);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
|
|
|
}
|
2009-09-27 21:28:09 +00:00
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
void Host_UpdateTitle(const std::string& title)
|
2010-04-15 20:58:34 +00:00
|
|
|
{
|
|
|
|
wxCommandEvent event(wxEVT_HOST_COMMAND, IDM_UPDATETITLE);
|
2013-02-28 04:37:38 +00:00
|
|
|
event.SetString(StrToWxStr(title));
|
2010-04-15 20:58:34 +00:00
|
|
|
main_frame->GetEventHandler()->AddPendingEvent(event);
|
|
|
|
}
|
|
|
|
|
2011-01-25 03:30:12 +00:00
|
|
|
void Host_RequestRenderWindowSize(int width, int height)
|
2011-01-07 04:57:59 +00:00
|
|
|
{
|
2011-02-01 04:35:25 +00:00
|
|
|
wxCommandEvent event(wxEVT_HOST_COMMAND, IDM_WINDOWSIZEREQUEST);
|
|
|
|
event.SetClientData(new std::pair<int, int>(width, height));
|
|
|
|
main_frame->GetEventHandler()->AddPendingEvent(event);
|
2010-04-12 01:33:10 +00:00
|
|
|
}
|
|
|
|
|
2014-07-26 10:43:49 +00:00
|
|
|
void Host_RequestFullscreen(bool enable_fullscreen)
|
2014-07-16 13:53:33 +00:00
|
|
|
{
|
|
|
|
wxCommandEvent event(wxEVT_HOST_COMMAND, IDM_FULLSCREENREQUEST);
|
2014-07-26 10:43:49 +00:00
|
|
|
event.SetInt(enable_fullscreen ? 1 : 0);
|
2014-07-16 13:53:33 +00:00
|
|
|
main_frame->GetEventHandler()->AddPendingEvent(event);
|
|
|
|
}
|
|
|
|
|
2011-02-12 21:25:49 +00:00
|
|
|
void Host_SetStartupDebuggingParameters()
|
|
|
|
{
|
|
|
|
SCoreStartupParameter& StartUp = SConfig::GetInstance().m_LocalCoreStartupParameter;
|
|
|
|
if (main_frame->g_pCodeWindow)
|
2013-04-08 05:16:50 +00:00
|
|
|
{
|
2011-02-12 21:25:49 +00:00
|
|
|
StartUp.bBootToPause = main_frame->g_pCodeWindow->BootToPause();
|
|
|
|
StartUp.bAutomaticStart = main_frame->g_pCodeWindow->AutomaticStart();
|
|
|
|
StartUp.bJITNoBlockCache = main_frame->g_pCodeWindow->JITNoBlockCache();
|
2014-10-09 02:02:02 +00:00
|
|
|
StartUp.bJITNoBlockLinking = main_frame->g_pCodeWindow->JITNoBlockLinking();
|
2011-02-12 21:25:49 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
StartUp.bBootToPause = false;
|
|
|
|
}
|
|
|
|
StartUp.bEnableDebugging = main_frame->g_pCodeWindow ? true : false; // RUNNING_DEBUG
|
|
|
|
}
|
|
|
|
|
2008-12-08 05:30:24 +00:00
|
|
|
void Host_SetWiiMoteConnectionState(int _State)
|
|
|
|
{
|
|
|
|
static int currentState = -1;
|
|
|
|
if (_State == currentState)
|
|
|
|
return;
|
|
|
|
currentState = _State;
|
|
|
|
|
|
|
|
wxCommandEvent event(wxEVT_HOST_COMMAND, IDM_UPDATESTATUSBAR);
|
|
|
|
|
2014-03-10 11:30:55 +00:00
|
|
|
switch (_State)
|
2008-12-08 05:30:24 +00:00
|
|
|
{
|
2011-01-05 17:56:08 +00:00
|
|
|
case 0: event.SetString(_("Not connected")); break;
|
|
|
|
case 1: event.SetString(_("Connecting...")); break;
|
|
|
|
case 2: event.SetString(_("Wiimote Connected")); break;
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2009-02-16 06:18:18 +00:00
|
|
|
// Update field 1 or 2
|
2010-01-01 03:55:39 +00:00
|
|
|
event.SetInt(1);
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2013-07-10 20:07:57 +00:00
|
|
|
NOTICE_LOG(WIIMOTE, "%s", static_cast<const char*>(event.GetString().c_str()));
|
2013-06-01 04:01:31 +00:00
|
|
|
|
2010-01-20 11:49:11 +00:00
|
|
|
main_frame->GetEventHandler()->AddPendingEvent(event);
|
2008-12-08 05:30:24 +00:00
|
|
|
}
|
2010-04-12 01:33:10 +00:00
|
|
|
|
2014-07-16 14:24:40 +00:00
|
|
|
bool Host_UIHasFocus()
|
|
|
|
{
|
|
|
|
return main_frame->UIHasFocus();
|
|
|
|
}
|
|
|
|
|
2010-04-12 01:33:10 +00:00
|
|
|
bool Host_RendererHasFocus()
|
|
|
|
{
|
|
|
|
return main_frame->RendererHasFocus();
|
|
|
|
}
|
2011-01-07 15:18:00 +00:00
|
|
|
|
|
|
|
void Host_ConnectWiimote(int wm_idx, bool connect)
|
|
|
|
{
|
|
|
|
CFrame::ConnectWiimote(wm_idx, connect);
|
|
|
|
}
|
2014-08-02 06:21:03 +00:00
|
|
|
|
|
|
|
void Host_ShowVideoConfig(void* parent, const std::string& backend_name,
|
|
|
|
const std::string& config_name)
|
|
|
|
{
|
2014-08-04 00:07:27 +00:00
|
|
|
if (backend_name == "Direct3D" || backend_name == "OpenGL")
|
|
|
|
{
|
|
|
|
VideoConfigDiag diag((wxWindow*)parent, backend_name, config_name);
|
|
|
|
diag.ShowModal();
|
|
|
|
}
|
|
|
|
else if (backend_name == "Software Renderer")
|
|
|
|
{
|
|
|
|
SoftwareVideoConfigDialog diag((wxWindow*)parent, backend_name, config_name);
|
|
|
|
diag.ShowModal();
|
|
|
|
}
|
2014-08-02 06:21:03 +00:00
|
|
|
}
|