2020-06-21 12:25:28 +00:00
|
|
|
//
|
|
|
|
// Platform.cpp
|
|
|
|
//
|
|
|
|
// Platform-specific functions.
|
|
|
|
//
|
|
|
|
|
2020-06-21 10:26:21 +00:00
|
|
|
#include "Platform.h"
|
2020-07-08 15:01:47 +00:00
|
|
|
|
|
|
|
#include "renderers/Renderer.h"
|
2020-07-07 19:25:15 +00:00
|
|
|
#include "utils/StringUtil.h"
|
2020-07-08 15:01:47 +00:00
|
|
|
#include "AudioManager.h"
|
|
|
|
#include "Log.h"
|
|
|
|
#include "MameNames.h"
|
2015-02-22 03:35:50 +00:00
|
|
|
|
2020-07-03 18:23:51 +00:00
|
|
|
#if defined(__linux__) || defined(_WIN64)
|
2020-06-26 16:03:55 +00:00
|
|
|
#include <SDL2/SDL_events.h>
|
|
|
|
#else
|
|
|
|
#include "SDL_events.h"
|
|
|
|
#endif
|
|
|
|
|
2020-07-03 18:23:51 +00:00
|
|
|
#ifdef _WIN64
|
2020-07-07 19:25:15 +00:00
|
|
|
#include <windows.h>
|
2015-02-21 22:48:56 +00:00
|
|
|
#include <codecvt>
|
2020-07-03 18:23:51 +00:00
|
|
|
#include <locale>
|
2018-01-27 20:04:08 +00:00
|
|
|
#else
|
|
|
|
#include <unistd.h>
|
2015-02-22 03:35:50 +00:00
|
|
|
#endif
|
2017-11-01 22:21:10 +00:00
|
|
|
#include <fcntl.h>
|
2013-05-13 19:53:28 +00:00
|
|
|
|
2020-05-15 15:58:25 +00:00
|
|
|
int runRebootCommand()
|
2014-08-02 19:19:57 +00:00
|
|
|
{
|
2020-07-03 18:23:51 +00:00
|
|
|
#ifdef _WIN64 // Windows.
|
2020-06-21 12:25:28 +00:00
|
|
|
return system("shutdown -r -t 0");
|
|
|
|
#else // macOS and Linux.
|
|
|
|
return system("shutdown --reboot now");
|
2014-08-02 19:19:57 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-05-15 15:58:25 +00:00
|
|
|
int runPoweroffCommand()
|
2014-08-02 19:19:57 +00:00
|
|
|
{
|
2020-07-03 18:23:51 +00:00
|
|
|
#ifdef _WIN64 // Windows.
|
2020-06-21 12:25:28 +00:00
|
|
|
return system("shutdown -s -t 0");
|
|
|
|
#else // macOS and Linux.
|
|
|
|
return system("shutdown --poweroff now");
|
2014-08-02 19:19:57 +00:00
|
|
|
#endif
|
2015-02-21 22:48:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int runSystemCommand(const std::string& cmd_utf8)
|
|
|
|
{
|
2020-07-07 19:25:15 +00:00
|
|
|
#ifdef _WIN64
|
2020-06-21 12:25:28 +00:00
|
|
|
// On Windows we use _wsystem to support non-ASCII paths
|
2020-07-07 19:25:15 +00:00
|
|
|
// which requires converting from UTF-8 to a wstring.
|
2020-07-10 16:32:23 +00:00
|
|
|
std::wstring wchar_str = Utils::String::stringToWideString(cmd_utf8);
|
2020-06-21 12:25:28 +00:00
|
|
|
return _wsystem(wchar_str.c_str());
|
2020-07-07 19:25:15 +00:00
|
|
|
#else
|
2020-06-21 12:25:28 +00:00
|
|
|
return system(cmd_utf8.c_str());
|
2020-07-07 19:25:15 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int runSystemCommand(const std::wstring& cmd_utf16)
|
|
|
|
{
|
|
|
|
#ifdef _WIN64
|
|
|
|
return _wsystem(cmd_utf16.c_str());
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int launchEmulatorUnix(const std::string& cmd_utf8)
|
|
|
|
{
|
|
|
|
#ifdef __unix__
|
|
|
|
return system(cmd_utf8.c_str());
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int launchEmulatorWindows(const std::wstring& cmd_utf16)
|
|
|
|
{
|
|
|
|
#ifdef _WIN64
|
|
|
|
STARTUPINFOW si {};
|
|
|
|
PROCESS_INFORMATION pi;
|
|
|
|
|
|
|
|
si.cb = sizeof(si);
|
|
|
|
bool processReturnValue = true;
|
|
|
|
DWORD errorCode = 0;
|
|
|
|
|
|
|
|
processReturnValue = CreateProcessW(
|
|
|
|
nullptr, // No application name (use command line).
|
|
|
|
(wchar_t*) cmd_utf16.c_str(), // Command line.
|
|
|
|
nullptr, // Process attributes.
|
|
|
|
nullptr, // Thread attributes.
|
|
|
|
FALSE, // Handles inheritance.
|
|
|
|
0, // Creation flags.
|
|
|
|
nullptr, // Use parent's environment block.
|
|
|
|
nullptr, // Use parent's starting directory.
|
|
|
|
&si, // Pointer to the STARTUPINFOW structure.
|
|
|
|
&pi ); // Pointer to the PROCESS_INFORMATION structure.
|
|
|
|
|
|
|
|
// Wait for the child process to exit.
|
|
|
|
WaitForSingleObject(pi.hThread, INFINITE);
|
|
|
|
WaitForSingleObject(pi.hProcess, INFINITE);
|
|
|
|
|
|
|
|
// If the return value is false, then something failed.
|
|
|
|
if (!processReturnValue) {
|
|
|
|
LPWSTR pBuffer = nullptr;
|
|
|
|
|
|
|
|
FormatMessageW(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_ALLOCATE_BUFFER,
|
|
|
|
nullptr, GetLastError(), MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
|
|
|
|
(LPWSTR)&pBuffer, 0, nullptr);
|
|
|
|
|
|
|
|
errorCode = GetLastError();
|
|
|
|
|
2020-07-10 16:32:23 +00:00
|
|
|
std::string errorMessage = Utils::String::wideStringToString(pBuffer);
|
2020-07-07 19:25:15 +00:00
|
|
|
// Remove trailing newline from the error message.
|
|
|
|
if (errorMessage.back() == '\n');
|
|
|
|
errorMessage.pop_back();
|
|
|
|
if (errorMessage.back() == '\r');
|
|
|
|
errorMessage.pop_back();
|
|
|
|
|
|
|
|
LOG(LogError) << "Error - launchEmulatorWindows - system error code " <<
|
|
|
|
errorCode << ": " << errorMessage;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close process and thread handles.
|
|
|
|
CloseHandle(pi.hProcess);
|
|
|
|
CloseHandle(pi.hThread);
|
|
|
|
|
|
|
|
return errorCode;
|
|
|
|
#else // _WIN64
|
|
|
|
return 0;
|
|
|
|
#endif
|
2016-01-17 04:24:28 +00:00
|
|
|
}
|
|
|
|
|
2019-08-14 23:50:23 +00:00
|
|
|
QuitMode quitMode = QuitMode::QUIT;
|
|
|
|
|
|
|
|
int quitES(QuitMode mode)
|
2016-01-17 04:24:28 +00:00
|
|
|
{
|
2020-06-21 12:25:28 +00:00
|
|
|
quitMode = mode;
|
2019-08-14 23:50:23 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
SDL_Event *quit = new SDL_Event();
|
|
|
|
quit->type = SDL_QUIT;
|
|
|
|
SDL_PushEvent(quit);
|
|
|
|
return 0;
|
2016-01-17 04:24:28 +00:00
|
|
|
}
|
|
|
|
|
2020-07-08 15:01:47 +00:00
|
|
|
void emergencyShutdown()
|
|
|
|
{
|
|
|
|
LOG(LogError) << "Critical Error - Performing emergency shutdown...";
|
|
|
|
|
|
|
|
MameNames::deinit();
|
|
|
|
AudioManager::getInstance()->deinit();
|
|
|
|
// Most of the SDL deinitialization is done in Renderer.
|
|
|
|
Renderer::deinit();
|
|
|
|
Log::flush();
|
|
|
|
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2016-01-17 04:24:28 +00:00
|
|
|
void touch(const std::string& filename)
|
|
|
|
{
|
2020-07-03 18:23:51 +00:00
|
|
|
#ifdef _WIN64
|
2020-06-21 12:25:28 +00:00
|
|
|
FILE* fp = fopen(filename.c_str(), "ab+");
|
2020-06-28 16:39:18 +00:00
|
|
|
if (fp != nullptr)
|
2020-06-21 12:25:28 +00:00
|
|
|
fclose(fp);
|
2016-11-17 20:37:44 +00:00
|
|
|
#else
|
2020-06-21 12:25:28 +00:00
|
|
|
int fd = open(filename.c_str(), O_CREAT|O_WRONLY, 0644);
|
|
|
|
if (fd >= 0)
|
|
|
|
close(fd);
|
2016-11-17 20:37:44 +00:00
|
|
|
#endif
|
2019-08-14 23:50:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void processQuitMode()
|
|
|
|
{
|
2020-06-21 12:25:28 +00:00
|
|
|
switch (quitMode) {
|
|
|
|
case QuitMode::REBOOT:
|
|
|
|
LOG(LogInfo) << "Rebooting system";
|
|
|
|
runRebootCommand();
|
|
|
|
break;
|
|
|
|
case QuitMode::POWEROFF:
|
|
|
|
LOG(LogInfo) << "Powering off system";
|
|
|
|
runPoweroffCommand();
|
|
|
|
break;
|
2020-06-25 17:52:38 +00:00
|
|
|
default:
|
|
|
|
break;
|
2020-06-21 12:25:28 +00:00
|
|
|
}
|
2019-08-14 23:50:23 +00:00
|
|
|
}
|