2012-11-01 15:19:01 +00:00
|
|
|
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
2012-11-04 22:01:49 +00:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
2015-12-26 03:14:05 +00:00
|
|
|
#include <algorithm>
|
2016-12-05 15:51:28 +00:00
|
|
|
#include <cmath>
|
2014-02-13 14:57:36 +00:00
|
|
|
|
2013-07-29 04:01:49 +00:00
|
|
|
#include "Common/CommonWindows.h"
|
2017-02-14 09:33:42 +00:00
|
|
|
#include "Common/OSVersion.h"
|
|
|
|
|
2016-12-05 15:51:28 +00:00
|
|
|
#include <Wbemidl.h>
|
|
|
|
#include <shellapi.h>
|
|
|
|
#include <mmsystem.h>
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2017-01-16 12:08:26 +00:00
|
|
|
#include "base/display.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
#include "file/vfs.h"
|
|
|
|
#include "file/zip_read.h"
|
2013-09-04 09:29:38 +00:00
|
|
|
#include "base/NativeApp.h"
|
2015-05-12 17:45:14 +00:00
|
|
|
#include "profiler/profiler.h"
|
2014-06-29 10:53:03 +00:00
|
|
|
#include "thread/threadutil.h"
|
2013-08-26 17:00:16 +00:00
|
|
|
#include "util/text/utf8.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-07-29 04:01:49 +00:00
|
|
|
#include "Core/Config.h"
|
|
|
|
#include "Core/SaveState.h"
|
|
|
|
#include "Windows/EmuThread.h"
|
2015-01-11 13:18:40 +00:00
|
|
|
#include "Windows/DSoundStream.h"
|
2013-01-08 16:03:17 +00:00
|
|
|
#include "ext/disarm.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-07-29 04:01:49 +00:00
|
|
|
#include "Common/LogManager.h"
|
|
|
|
#include "Common/ConsoleListener.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
#include "Commctrl.h"
|
|
|
|
|
2015-10-04 10:24:59 +00:00
|
|
|
#include "UI/GameInfoCache.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
#include "Windows/resource.h"
|
|
|
|
|
2015-09-19 11:14:05 +00:00
|
|
|
#include "Windows/MainWindow.h"
|
2013-09-22 17:27:09 +00:00
|
|
|
#include "Windows/Debugger/Debugger_Disasm.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
#include "Windows/Debugger/Debugger_MemoryDlg.h"
|
|
|
|
#include "Windows/Debugger/Debugger_VFPUDlg.h"
|
2013-09-22 18:03:29 +00:00
|
|
|
#include "Windows/GEDebugger/GEDebugger.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
#include "Windows/W32Util/DialogManager.h"
|
|
|
|
|
|
|
|
#include "Windows/Debugger/CtrlDisAsmView.h"
|
|
|
|
#include "Windows/Debugger/CtrlMemView.h"
|
|
|
|
#include "Windows/Debugger/CtrlRegisterList.h"
|
2013-12-08 10:16:18 +00:00
|
|
|
#include "Windows/InputBox.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
#include "Windows/WindowsHost.h"
|
|
|
|
#include "Windows/main.h"
|
|
|
|
|
2016-04-22 03:03:08 +00:00
|
|
|
|
2014-03-03 16:26:27 +00:00
|
|
|
// Nvidia drivers >= v302 will check if the application exports a global
|
|
|
|
// variable named NvOptimusEnablement to know if it should run the app in high
|
|
|
|
// performance graphics mode or using the IGP.
|
|
|
|
extern "C" {
|
|
|
|
__declspec(dllexport) DWORD NvOptimusEnablement = 1;
|
|
|
|
}
|
|
|
|
|
2013-04-01 01:35:29 +00:00
|
|
|
CDisasm *disasmWindow[MAX_CPUCOUNT] = {0};
|
2013-09-22 17:27:09 +00:00
|
|
|
CGEDebugger *geDebuggerWindow = 0;
|
2013-04-01 01:35:29 +00:00
|
|
|
CMemoryDlg *memoryWindow[MAX_CPUCOUNT] = {0};
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-09-04 10:07:42 +00:00
|
|
|
static std::string langRegion;
|
2013-10-09 21:17:28 +00:00
|
|
|
static std::string osName;
|
2014-07-31 05:21:37 +00:00
|
|
|
static std::string gpuDriverVersion;
|
2013-09-04 10:07:42 +00:00
|
|
|
|
2013-08-26 17:00:16 +00:00
|
|
|
void LaunchBrowser(const char *url) {
|
|
|
|
ShellExecute(NULL, L"open", ConvertUTF8ToWString(url).c_str(), NULL, NULL, SW_SHOWNORMAL);
|
2013-08-17 22:41:19 +00:00
|
|
|
}
|
|
|
|
|
2013-10-10 15:00:15 +00:00
|
|
|
void Vibrate(int length_ms) {
|
|
|
|
// Ignore on PC
|
|
|
|
}
|
|
|
|
|
2014-07-31 05:21:37 +00:00
|
|
|
// Adapted mostly as-is from http://www.gamedev.net/topic/495075-how-to-retrieve-info-about-videocard/?view=findpost&p=4229170
|
|
|
|
// so credit goes to that post's author, and in turn, the author of the site mentioned in that post (which seems to be down?).
|
2014-07-31 08:00:48 +00:00
|
|
|
std::string GetVideoCardDriverVersion() {
|
2014-07-31 05:21:37 +00:00
|
|
|
std::string retvalue = "";
|
|
|
|
|
|
|
|
HRESULT hr;
|
|
|
|
hr = CoInitializeEx(NULL, COINIT_MULTITHREADED);
|
2014-08-02 10:49:09 +00:00
|
|
|
if (FAILED(hr)) {
|
|
|
|
return retvalue;
|
|
|
|
}
|
2014-07-31 05:21:37 +00:00
|
|
|
|
|
|
|
IWbemLocator *pIWbemLocator = NULL;
|
|
|
|
hr = CoCreateInstance(__uuidof(WbemLocator), NULL, CLSCTX_INPROC_SERVER,
|
|
|
|
__uuidof(IWbemLocator), (LPVOID *)&pIWbemLocator);
|
2014-08-02 10:49:09 +00:00
|
|
|
if (FAILED(hr)) {
|
|
|
|
CoUninitialize();
|
|
|
|
return retvalue;
|
|
|
|
}
|
2014-07-31 05:21:37 +00:00
|
|
|
|
|
|
|
BSTR bstrServer = SysAllocString(L"\\\\.\\root\\cimv2");
|
|
|
|
IWbemServices *pIWbemServices;
|
|
|
|
hr = pIWbemLocator->ConnectServer(bstrServer, NULL, NULL, 0L, 0L, NULL, NULL, &pIWbemServices);
|
2014-08-02 10:49:09 +00:00
|
|
|
if (FAILED(hr)) {
|
|
|
|
pIWbemLocator->Release();
|
2015-01-17 22:00:54 +00:00
|
|
|
SysFreeString(bstrServer);
|
2014-08-02 10:49:09 +00:00
|
|
|
CoUninitialize();
|
|
|
|
return retvalue;
|
|
|
|
}
|
2014-07-31 05:21:37 +00:00
|
|
|
|
|
|
|
hr = CoSetProxyBlanket(pIWbemServices, RPC_C_AUTHN_WINNT, RPC_C_AUTHZ_NONE,
|
|
|
|
NULL, RPC_C_AUTHN_LEVEL_CALL, RPC_C_IMP_LEVEL_IMPERSONATE, NULL,EOAC_DEFAULT);
|
2014-08-02 10:49:09 +00:00
|
|
|
|
2014-07-31 05:21:37 +00:00
|
|
|
BSTR bstrWQL = SysAllocString(L"WQL");
|
|
|
|
BSTR bstrPath = SysAllocString(L"select * from Win32_VideoController");
|
|
|
|
IEnumWbemClassObject* pEnum;
|
|
|
|
hr = pIWbemServices->ExecQuery(bstrWQL, bstrPath, WBEM_FLAG_FORWARD_ONLY, NULL, &pEnum);
|
|
|
|
|
|
|
|
ULONG uReturned;
|
|
|
|
VARIANT var;
|
2014-08-02 10:49:09 +00:00
|
|
|
IWbemClassObject* pObj = NULL;
|
|
|
|
if (!FAILED(hr)) {
|
|
|
|
hr = pEnum->Next(WBEM_INFINITE, 1, &pObj, &uReturned);
|
|
|
|
}
|
2014-07-31 05:21:37 +00:00
|
|
|
|
2015-04-08 18:35:40 +00:00
|
|
|
if (!FAILED(hr) && uReturned) {
|
2014-07-31 05:21:37 +00:00
|
|
|
hr = pObj->Get(L"DriverVersion", 0, &var, NULL, NULL);
|
|
|
|
if (SUCCEEDED(hr)) {
|
|
|
|
char str[MAX_PATH];
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, var.bstrVal, -1, str, sizeof(str), NULL, NULL);
|
|
|
|
retvalue = str;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pEnum->Release();
|
|
|
|
SysFreeString(bstrPath);
|
|
|
|
SysFreeString(bstrWQL);
|
|
|
|
pIWbemServices->Release();
|
2014-08-02 10:49:09 +00:00
|
|
|
pIWbemLocator->Release();
|
2014-07-31 05:21:37 +00:00
|
|
|
SysFreeString(bstrServer);
|
|
|
|
CoUninitialize();
|
|
|
|
return retvalue;
|
|
|
|
}
|
|
|
|
|
2013-09-04 09:29:38 +00:00
|
|
|
std::string System_GetProperty(SystemProperty prop) {
|
2014-08-02 10:49:09 +00:00
|
|
|
static bool hasCheckedGPUDriverVersion = false;
|
2013-09-04 09:29:38 +00:00
|
|
|
switch (prop) {
|
|
|
|
case SYSPROP_NAME:
|
2013-10-09 21:17:28 +00:00
|
|
|
return osName;
|
2013-09-04 09:29:38 +00:00
|
|
|
case SYSPROP_LANGREGION:
|
2013-09-04 10:07:42 +00:00
|
|
|
return langRegion;
|
2014-07-21 09:59:47 +00:00
|
|
|
case SYSPROP_CLIPBOARD_TEXT:
|
|
|
|
{
|
|
|
|
std::string retval;
|
|
|
|
if (OpenClipboard(MainWindow::GetDisplayHWND())) {
|
|
|
|
HANDLE handle = GetClipboardData(CF_UNICODETEXT);
|
|
|
|
const wchar_t *wstr = (const wchar_t*)GlobalLock(handle);
|
2014-07-21 12:54:17 +00:00
|
|
|
if (wstr)
|
|
|
|
retval = ConvertWStringToUTF8(wstr);
|
|
|
|
else
|
|
|
|
retval = "";
|
2014-07-21 09:59:47 +00:00
|
|
|
GlobalUnlock(handle);
|
|
|
|
CloseClipboard();
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
2014-07-31 05:21:37 +00:00
|
|
|
case SYSPROP_GPUDRIVER_VERSION:
|
2014-08-02 10:49:09 +00:00
|
|
|
if (!hasCheckedGPUDriverVersion) {
|
|
|
|
hasCheckedGPUDriverVersion = true;
|
|
|
|
gpuDriverVersion = GetVideoCardDriverVersion();
|
|
|
|
}
|
2014-07-31 05:21:37 +00:00
|
|
|
return gpuDriverVersion;
|
2013-09-04 09:29:38 +00:00
|
|
|
default:
|
|
|
|
return "";
|
|
|
|
}
|
2013-08-17 22:41:19 +00:00
|
|
|
}
|
|
|
|
|
2015-01-11 20:00:56 +00:00
|
|
|
// Ugly!
|
|
|
|
extern WindowsAudioBackend *winAudioBackend;
|
|
|
|
|
2014-07-20 10:11:50 +00:00
|
|
|
int System_GetPropertyInt(SystemProperty prop) {
|
2015-01-11 13:18:40 +00:00
|
|
|
switch (prop) {
|
|
|
|
case SYSPROP_AUDIO_SAMPLE_RATE:
|
2015-01-11 20:00:56 +00:00
|
|
|
return winAudioBackend ? winAudioBackend->GetSampleRate() : -1;
|
2015-01-13 23:45:12 +00:00
|
|
|
case SYSPROP_DISPLAY_REFRESH_RATE:
|
|
|
|
return 60000;
|
2015-10-06 17:17:29 +00:00
|
|
|
case SYSPROP_DEVICE_TYPE:
|
|
|
|
return DEVICE_TYPE_DESKTOP;
|
2015-01-11 13:18:40 +00:00
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
2014-07-20 10:11:50 +00:00
|
|
|
}
|
|
|
|
|
2014-04-26 05:00:45 +00:00
|
|
|
void System_SendMessage(const char *command, const char *parameter) {
|
|
|
|
if (!strcmp(command, "finish")) {
|
|
|
|
PostMessage(MainWindow::GetHWND(), WM_CLOSE, 0, 0);
|
2014-07-21 15:36:25 +00:00
|
|
|
} else if (!strcmp(command, "setclipboardtext")) {
|
|
|
|
if (OpenClipboard(MainWindow::GetDisplayHWND())) {
|
|
|
|
std::wstring data = ConvertUTF8ToWString(parameter);
|
|
|
|
HANDLE handle = GlobalAlloc(GMEM_MOVEABLE, (data.size() + 1) * sizeof(wchar_t));
|
|
|
|
wchar_t *wstr = (wchar_t *)GlobalLock(handle);
|
|
|
|
memcpy(wstr, data.c_str(), (data.size() + 1) * sizeof(wchar_t));
|
|
|
|
GlobalUnlock(wstr);
|
|
|
|
SetClipboardData(CF_UNICODETEXT, handle);
|
|
|
|
GlobalFree(handle);
|
|
|
|
CloseClipboard();
|
|
|
|
}
|
2014-04-26 05:00:45 +00:00
|
|
|
}
|
|
|
|
}
|
2013-12-04 16:41:59 +00:00
|
|
|
|
2015-12-17 21:41:50 +00:00
|
|
|
void System_AskForPermission(SystemPermission permission) {}
|
|
|
|
PermissionStatus System_GetPermissionStatus(SystemPermission permission) { return PERMISSION_STATUS_GRANTED; }
|
|
|
|
|
2015-01-17 20:32:58 +00:00
|
|
|
void EnableCrashingOnCrashes() {
|
|
|
|
typedef BOOL (WINAPI *tGetPolicy)(LPDWORD lpFlags);
|
|
|
|
typedef BOOL (WINAPI *tSetPolicy)(DWORD dwFlags);
|
|
|
|
const DWORD EXCEPTION_SWALLOWING = 0x1;
|
|
|
|
|
|
|
|
HMODULE kernel32 = LoadLibrary(L"kernel32.dll");
|
|
|
|
tGetPolicy pGetPolicy = (tGetPolicy)GetProcAddress(kernel32,
|
|
|
|
"GetProcessUserModeExceptionPolicy");
|
|
|
|
tSetPolicy pSetPolicy = (tSetPolicy)GetProcAddress(kernel32,
|
|
|
|
"SetProcessUserModeExceptionPolicy");
|
|
|
|
if (pGetPolicy && pSetPolicy) {
|
|
|
|
DWORD dwFlags;
|
|
|
|
if (pGetPolicy(&dwFlags)) {
|
|
|
|
// Turn off the filter.
|
|
|
|
pSetPolicy(dwFlags & ~EXCEPTION_SWALLOWING);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
FreeLibrary(kernel32);
|
2013-11-12 16:50:35 +00:00
|
|
|
}
|
|
|
|
|
2014-02-15 09:47:14 +00:00
|
|
|
bool System_InputBoxGetString(const char *title, const char *defaultValue, char *outValue, size_t outLength)
|
2013-12-08 10:16:18 +00:00
|
|
|
{
|
|
|
|
std::string out;
|
|
|
|
if (InputBox_GetString(MainWindow::GetHInstance(), MainWindow::GetHWND(), ConvertUTF8ToWString(title).c_str(), defaultValue, out)) {
|
|
|
|
strcpy(outValue, out.c_str());
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool System_InputBoxGetWString(const wchar_t *title, const std::wstring &defaultvalue, std::wstring &outvalue)
|
|
|
|
{
|
|
|
|
if (InputBox_GetWString(MainWindow::GetHInstance(), MainWindow::GetHWND(), title, defaultvalue, outvalue)) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-26 03:14:05 +00:00
|
|
|
static std::string GetDefaultLangRegion() {
|
|
|
|
wchar_t lcLangName[256] = {};
|
|
|
|
|
|
|
|
// LOCALE_SNAME is only available in WinVista+
|
|
|
|
if (0 != GetLocaleInfo(LOCALE_NAME_USER_DEFAULT, LOCALE_SNAME, lcLangName, ARRAY_SIZE(lcLangName))) {
|
|
|
|
std::string result = ConvertWStringToUTF8(lcLangName);
|
|
|
|
std::replace(result.begin(), result.end(), '-', '_');
|
|
|
|
return result;
|
|
|
|
} else {
|
|
|
|
// This should work on XP, but we may get numbers for some countries.
|
|
|
|
if (0 != GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SISO639LANGNAME, lcLangName, ARRAY_SIZE(lcLangName))) {
|
|
|
|
wchar_t lcRegion[256] = {};
|
|
|
|
if (0 != GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SISO3166CTRYNAME, lcRegion, ARRAY_SIZE(lcRegion))) {
|
|
|
|
return ConvertWStringToUTF8(lcLangName) + "_" + ConvertWStringToUTF8(lcRegion);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Unfortunate default. We tried.
|
|
|
|
return "en_US";
|
|
|
|
}
|
|
|
|
}
|
2014-02-17 08:30:38 +00:00
|
|
|
|
2014-08-31 05:17:25 +00:00
|
|
|
std::vector<std::wstring> GetWideCmdLine() {
|
|
|
|
wchar_t **wargv;
|
|
|
|
int wargc = -1;
|
|
|
|
wargv = CommandLineToArgvW(GetCommandLineW(), &wargc);
|
|
|
|
|
|
|
|
std::vector<std::wstring> wideArgs(wargv, wargv + wargc);
|
|
|
|
|
|
|
|
return wideArgs;
|
|
|
|
}
|
|
|
|
|
2017-01-16 12:08:26 +00:00
|
|
|
int WINAPI WinMain(HINSTANCE _hInstance, HINSTANCE hPrevInstance, LPSTR szCmdLine, int iCmdShow) {
|
2014-06-29 10:53:03 +00:00
|
|
|
setCurrentThreadName("Main");
|
|
|
|
|
2015-01-15 21:32:25 +00:00
|
|
|
CoInitializeEx(NULL, COINIT_MULTITHREADED);
|
|
|
|
|
2015-10-04 10:24:59 +00:00
|
|
|
#ifdef _DEBUG
|
2016-02-10 14:22:28 +00:00
|
|
|
_CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
|
2015-10-04 10:24:59 +00:00
|
|
|
#endif
|
2015-05-12 17:45:14 +00:00
|
|
|
PROFILE_INIT();
|
2014-02-17 08:30:38 +00:00
|
|
|
|
2015-12-23 07:22:16 +00:00
|
|
|
#if defined(_M_X64) && defined(_MSC_VER) && _MSC_VER < 1900
|
2014-02-13 14:57:36 +00:00
|
|
|
// FMA3 support in the 2013 CRT is broken on Vista and Windows 7 RTM (fixed in SP1). Just disable it.
|
|
|
|
_set_FMA3_enable(0);
|
2014-02-13 15:02:10 +00:00
|
|
|
#endif
|
2014-02-13 14:57:36 +00:00
|
|
|
|
2013-11-12 16:50:35 +00:00
|
|
|
EnableCrashingOnCrashes();
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-10-13 19:27:05 +00:00
|
|
|
#ifndef _DEBUG
|
2013-10-16 05:27:03 +00:00
|
|
|
bool showLog = false;
|
2013-10-13 19:27:05 +00:00
|
|
|
#else
|
2015-12-26 03:14:05 +00:00
|
|
|
bool showLog = true;
|
2013-10-13 19:27:05 +00:00
|
|
|
#endif
|
|
|
|
|
2015-10-31 04:04:45 +00:00
|
|
|
const std::string &exePath = File::GetExeDirectory();
|
|
|
|
VFSRegister("", new DirectoryAssetReader((exePath + "/assets/").c_str()));
|
|
|
|
VFSRegister("", new DirectoryAssetReader(exePath.c_str()));
|
2013-09-15 09:02:13 +00:00
|
|
|
|
2015-12-26 03:14:05 +00:00
|
|
|
langRegion = GetDefaultLangRegion();
|
2013-10-09 21:17:28 +00:00
|
|
|
osName = GetWindowsVersion() + " " + GetWindowsSystemArchitecture();
|
|
|
|
|
2014-08-31 05:17:25 +00:00
|
|
|
char configFilename[MAX_PATH] = { 0 };
|
|
|
|
const std::wstring configOption = L"--config=";
|
2013-09-15 16:50:42 +00:00
|
|
|
|
2014-08-31 05:17:25 +00:00
|
|
|
char controlsConfigFilename[MAX_PATH] = { 0 };
|
|
|
|
const std::wstring controlsOption = L"--controlconfig=";
|
2013-09-15 16:50:42 +00:00
|
|
|
|
2014-08-31 05:17:25 +00:00
|
|
|
std::vector<std::wstring> wideArgs = GetWideCmdLine();
|
|
|
|
|
2014-09-12 20:58:05 +00:00
|
|
|
for (size_t i = 1; i < wideArgs.size(); ++i) {
|
2014-08-31 05:17:25 +00:00
|
|
|
if (wideArgs[i][0] == L'\0')
|
2013-09-15 16:50:42 +00:00
|
|
|
continue;
|
2014-08-31 05:17:25 +00:00
|
|
|
if (wideArgs[i][0] == L'-') {
|
|
|
|
if (wideArgs[i].find(configOption) != std::wstring::npos && wideArgs[i].size() > configOption.size()) {
|
|
|
|
const std::wstring tempWide = wideArgs[i].substr(configOption.size());
|
|
|
|
const std::string tempStr = ConvertWStringToUTF8(tempWide);
|
|
|
|
std::strncpy(configFilename, tempStr.c_str(), MAX_PATH);
|
2013-09-15 16:50:42 +00:00
|
|
|
}
|
2014-08-31 05:17:25 +00:00
|
|
|
|
|
|
|
if (wideArgs[i].find(controlsOption) != std::wstring::npos && wideArgs[i].size() > controlsOption.size()) {
|
2014-11-02 19:38:00 +00:00
|
|
|
const std::wstring tempWide = wideArgs[i].substr(controlsOption.size());
|
2014-08-31 05:17:25 +00:00
|
|
|
const std::string tempStr = ConvertWStringToUTF8(tempWide);
|
2014-11-02 13:19:20 +00:00
|
|
|
std::strncpy(controlsConfigFilename, tempStr.c_str(), MAX_PATH);
|
2013-09-15 16:50:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-15 06:03:39 +00:00
|
|
|
// On Win32 it makes more sense to initialize the system directories here
|
2013-10-15 06:28:14 +00:00
|
|
|
// because the next place it was called was in the EmuThread, and it's too late by then.
|
2013-10-15 06:03:39 +00:00
|
|
|
InitSysDirectories();
|
2013-09-15 16:50:42 +00:00
|
|
|
|
2013-09-12 20:56:18 +00:00
|
|
|
// Load config up here, because those changes below would be overwritten
|
|
|
|
// if it's not loaded here first.
|
2013-10-12 23:02:03 +00:00
|
|
|
g_Config.AddSearchPath("");
|
2013-10-15 06:03:39 +00:00
|
|
|
g_Config.AddSearchPath(GetSysDirectory(DIRECTORY_SYSTEM));
|
|
|
|
g_Config.SetDefaultPath(GetSysDirectory(DIRECTORY_SYSTEM));
|
2013-10-12 23:02:03 +00:00
|
|
|
g_Config.Load(configFilename, controlsConfigFilename);
|
2013-09-12 20:56:18 +00:00
|
|
|
|
2014-04-01 02:44:05 +00:00
|
|
|
bool debugLogLevel = false;
|
|
|
|
|
2014-09-13 05:33:45 +00:00
|
|
|
const std::wstring gpuBackend = L"--graphics=";
|
2014-09-12 20:16:13 +00:00
|
|
|
|
2013-04-01 01:22:27 +00:00
|
|
|
// The rest is handled in NativeInit().
|
2014-09-12 20:58:05 +00:00
|
|
|
for (size_t i = 1; i < wideArgs.size(); ++i) {
|
2014-08-31 05:17:25 +00:00
|
|
|
if (wideArgs[i][0] == L'\0')
|
2012-12-22 17:21:23 +00:00
|
|
|
continue;
|
|
|
|
|
2014-08-31 05:17:25 +00:00
|
|
|
if (wideArgs[i][0] == L'-') {
|
|
|
|
switch (wideArgs[i][1]) {
|
|
|
|
case L'l':
|
2013-10-16 05:27:03 +00:00
|
|
|
showLog = true;
|
2013-10-13 18:25:59 +00:00
|
|
|
g_Config.bEnableLogging = true;
|
2012-12-22 17:21:23 +00:00
|
|
|
break;
|
2014-08-31 05:17:25 +00:00
|
|
|
case L's':
|
2013-01-04 09:26:14 +00:00
|
|
|
g_Config.bAutoRun = false;
|
|
|
|
g_Config.bSaveSettings = false;
|
2012-12-22 17:21:23 +00:00
|
|
|
break;
|
2014-08-31 05:17:25 +00:00
|
|
|
case L'd':
|
2014-04-01 02:44:05 +00:00
|
|
|
debugLogLevel = true;
|
|
|
|
break;
|
2012-12-22 17:21:23 +00:00
|
|
|
}
|
2013-09-12 20:56:18 +00:00
|
|
|
|
2014-08-31 05:17:25 +00:00
|
|
|
if (wideArgs[i] == L"--fullscreen")
|
2013-09-12 20:56:18 +00:00
|
|
|
g_Config.bFullScreen = true;
|
|
|
|
|
2014-08-31 05:17:25 +00:00
|
|
|
if (wideArgs[i] == L"--windowed")
|
2013-09-12 20:56:18 +00:00
|
|
|
g_Config.bFullScreen = false;
|
2014-09-12 20:16:13 +00:00
|
|
|
|
2014-09-12 20:58:05 +00:00
|
|
|
if (wideArgs[i].find(gpuBackend) != std::wstring::npos && wideArgs[i].size() > gpuBackend.size()) {
|
2014-09-12 20:16:13 +00:00
|
|
|
const std::wstring restOfOption = wideArgs[i].substr(gpuBackend.size());
|
|
|
|
|
2014-09-13 05:33:45 +00:00
|
|
|
// Force software rendering off, as picking directx9 or gles implies HW acceleration.
|
|
|
|
// Once software rendering supports Direct3D9/11, we can add more options for software,
|
|
|
|
// such as "software-gles", "software-d3d9", and "software-d3d11", or something similar.
|
|
|
|
// For now, software rendering force-activates OpenGL.
|
|
|
|
if (restOfOption == L"directx9") {
|
2014-09-12 20:16:13 +00:00
|
|
|
g_Config.iGPUBackend = GPU_BACKEND_DIRECT3D9;
|
2014-09-13 05:33:45 +00:00
|
|
|
g_Config.bSoftwareRendering = false;
|
2016-02-13 20:22:06 +00:00
|
|
|
} else if (restOfOption == L"gles") {
|
2014-09-12 20:16:13 +00:00
|
|
|
g_Config.iGPUBackend = GPU_BACKEND_OPENGL;
|
2014-09-13 05:33:45 +00:00
|
|
|
g_Config.bSoftwareRendering = false;
|
2016-02-13 20:22:06 +00:00
|
|
|
} else if (restOfOption == L"software") {
|
2014-09-13 05:33:45 +00:00
|
|
|
g_Config.iGPUBackend = GPU_BACKEND_OPENGL;
|
|
|
|
g_Config.bSoftwareRendering = true;
|
|
|
|
}
|
2014-09-12 20:16:13 +00:00
|
|
|
}
|
2012-12-22 17:21:23 +00:00
|
|
|
}
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
2013-10-13 18:25:59 +00:00
|
|
|
#ifdef _DEBUG
|
|
|
|
g_Config.bEnableLogging = true;
|
|
|
|
#endif
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2015-12-26 03:18:32 +00:00
|
|
|
if (iCmdShow == SW_MAXIMIZE) {
|
|
|
|
// Consider this to mean --fullscreen.
|
|
|
|
g_Config.bFullScreen = true;
|
|
|
|
}
|
|
|
|
|
2013-06-15 08:55:18 +00:00
|
|
|
LogManager::Init();
|
2013-10-13 19:27:05 +00:00
|
|
|
// Consider at least the following cases before changing this code:
|
|
|
|
// - By default in Release, the console should be hidden by default even if logging is enabled.
|
|
|
|
// - By default in Debug, the console should be shown by default.
|
|
|
|
// - The -l switch is expected to show the log console, REGARDLESS of config settings.
|
|
|
|
// - It should be possible to log to a file without showing the console.
|
2013-10-16 05:27:03 +00:00
|
|
|
LogManager::GetInstance()->GetConsoleListener()->Init(showLog, 150, 120, "PPSSPP Debug Console");
|
2014-04-01 02:44:05 +00:00
|
|
|
|
|
|
|
if (debugLogLevel)
|
|
|
|
LogManager::GetInstance()->SetAllLogLevels(LogTypes::LDEBUG);
|
2013-06-08 00:32:07 +00:00
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
//Windows, API init stuff
|
|
|
|
INITCOMMONCONTROLSEX comm;
|
|
|
|
comm.dwSize = sizeof(comm);
|
|
|
|
comm.dwICC = ICC_BAR_CLASSES | ICC_LISTVIEW_CLASSES | ICC_TAB_CLASSES;
|
|
|
|
InitCommonControlsEx(&comm);
|
2012-12-03 08:44:37 +00:00
|
|
|
timeBeginPeriod(1);
|
2012-11-01 15:19:01 +00:00
|
|
|
MainWindow::Init(_hInstance);
|
|
|
|
|
2013-08-26 17:00:16 +00:00
|
|
|
g_hPopupMenus = LoadMenu(_hInstance, (LPCWSTR)IDR_POPUPMENUS);
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2014-07-17 04:06:52 +00:00
|
|
|
MainWindow::Show(_hInstance);
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
HWND hwndMain = MainWindow::GetHWND();
|
2014-06-29 20:13:53 +00:00
|
|
|
HWND hwndDisplay = MainWindow::GetDisplayHWND();
|
2013-06-08 00:32:07 +00:00
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
//initialize custom controls
|
|
|
|
CtrlDisAsmView::init();
|
|
|
|
CtrlMemView::init();
|
|
|
|
CtrlRegisterList::init();
|
2013-09-28 05:41:44 +00:00
|
|
|
CGEDebugger::Init();
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
DialogManager::AddDlg(vfpudlg = new CVFPUDlg(_hInstance, hwndMain, currentDebugMIPS));
|
|
|
|
|
2015-12-31 15:59:40 +00:00
|
|
|
host = new WindowsHost(_hInstance, hwndMain, hwndDisplay);
|
2013-08-20 15:21:25 +00:00
|
|
|
host->SetWindowTitle(0);
|
2013-03-29 17:50:08 +00:00
|
|
|
|
2013-08-26 12:19:46 +00:00
|
|
|
MainWindow::CreateDebugWindows();
|
|
|
|
|
2015-12-26 03:18:32 +00:00
|
|
|
const bool minimized = iCmdShow == SW_MINIMIZE || iCmdShow == SW_SHOWMINIMIZED || iCmdShow == SW_SHOWMINNOACTIVE;
|
|
|
|
if (minimized) {
|
|
|
|
MainWindow::Minimize();
|
|
|
|
}
|
|
|
|
|
2013-03-29 17:50:08 +00:00
|
|
|
// Emu thread is always running!
|
|
|
|
EmuThread_Start();
|
2014-03-24 05:18:54 +00:00
|
|
|
InputDevice::BeginPolling();
|
2013-03-29 17:50:08 +00:00
|
|
|
|
2013-06-08 00:32:07 +00:00
|
|
|
HACCEL hAccelTable = LoadAccelerators(_hInstance, (LPCTSTR)IDR_ACCELS);
|
2013-08-14 21:30:50 +00:00
|
|
|
HACCEL hDebugAccelTable = LoadAccelerators(_hInstance, (LPCTSTR)IDR_DEBUGACCELS);
|
2012-12-22 17:21:23 +00:00
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
//so.. we're at the message pump of the GUI thread
|
2013-06-08 00:32:07 +00:00
|
|
|
for (MSG msg; GetMessage(&msg, NULL, 0, 0); ) // for no quit
|
2012-11-01 15:19:01 +00:00
|
|
|
{
|
2013-05-13 08:08:10 +00:00
|
|
|
if (msg.message == WM_KEYDOWN)
|
|
|
|
{
|
|
|
|
//hack to enable/disable menu command accelerate keys
|
|
|
|
MainWindow::UpdateCommands();
|
2016-02-14 21:07:10 +00:00
|
|
|
|
2013-05-13 08:08:10 +00:00
|
|
|
//hack to make it possible to get to main window from floating windows with Esc
|
|
|
|
if (msg.hwnd != hwndMain && msg.wParam == VK_ESCAPE)
|
|
|
|
BringWindowToTop(hwndMain);
|
|
|
|
}
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
//Translate accelerators and dialog messages...
|
2013-08-14 21:46:59 +00:00
|
|
|
HWND wnd;
|
|
|
|
HACCEL accel;
|
2013-09-28 12:34:08 +00:00
|
|
|
switch (g_activeWindow)
|
|
|
|
{
|
|
|
|
case WINDOW_MAINWINDOW:
|
2013-08-14 21:46:59 +00:00
|
|
|
wnd = hwndMain;
|
|
|
|
accel = hAccelTable;
|
2013-09-28 12:34:08 +00:00
|
|
|
break;
|
|
|
|
case WINDOW_CPUDEBUGGER:
|
2014-02-15 05:17:36 +00:00
|
|
|
wnd = disasmWindow[0] ? disasmWindow[0]->GetDlgHandle() : 0;
|
2013-09-28 12:34:08 +00:00
|
|
|
accel = hDebugAccelTable;
|
|
|
|
break;
|
|
|
|
case WINDOW_GEDEBUGGER:
|
|
|
|
default:
|
|
|
|
wnd = 0;
|
|
|
|
accel = 0;
|
|
|
|
break;
|
2013-08-14 21:46:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!TranslateAccelerator(wnd, accel, &msg))
|
2012-11-01 15:19:01 +00:00
|
|
|
{
|
|
|
|
if (!DialogManager::IsDialogMessage(&msg))
|
|
|
|
{
|
|
|
|
//and finally translate and dispatch
|
|
|
|
TranslateMessage(&msg);
|
|
|
|
DispatchMessage(&msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-08 18:35:05 +00:00
|
|
|
VFSShutdown();
|
|
|
|
|
2014-03-24 05:18:54 +00:00
|
|
|
InputDevice::StopPolling();
|
2013-06-30 00:47:09 +00:00
|
|
|
EmuThread_Stop();
|
|
|
|
|
2014-02-15 05:17:36 +00:00
|
|
|
MainWindow::DestroyDebugWindows();
|
2012-11-01 15:19:01 +00:00
|
|
|
DialogManager::DestroyAll();
|
2012-12-03 08:44:37 +00:00
|
|
|
timeEndPeriod(1);
|
2012-11-01 15:19:01 +00:00
|
|
|
delete host;
|
2014-09-14 10:59:27 +00:00
|
|
|
|
2013-06-26 07:31:52 +00:00
|
|
|
g_Config.Save();
|
|
|
|
LogManager::Shutdown();
|
2014-09-14 10:59:27 +00:00
|
|
|
|
|
|
|
if (g_Config.bRestartRequired) {
|
2014-09-14 22:24:42 +00:00
|
|
|
W32Util::ExitAndRestart();
|
2014-09-14 10:59:27 +00:00
|
|
|
}
|
2015-10-04 10:24:59 +00:00
|
|
|
|
2015-01-15 21:32:25 +00:00
|
|
|
CoUninitialize();
|
2015-10-04 10:24:59 +00:00
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|