2013-04-06 14:34:46 +00:00
|
|
|
// SDL/EGL implementation of the framework.
|
|
|
|
// This is quite messy due to platform-specific implementations and #ifdef's.
|
2014-05-30 15:21:43 +00:00
|
|
|
// Note: SDL1.2 implementation is deprecated and will soon be replaced by SDL2.0.
|
|
|
|
// If your platform is not supported, it is suggested to use Qt instead.
|
2012-04-10 09:59:57 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2015-09-17 20:02:15 +00:00
|
|
|
#pragma warning(disable:4091) // workaround bug in VS2015 headers
|
|
|
|
|
2012-04-10 09:59:57 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <Windows.h>
|
|
|
|
#include <shlobj.h>
|
|
|
|
#include <shlwapi.h>
|
|
|
|
#include <ShellAPI.h>
|
2012-11-27 15:53:22 +00:00
|
|
|
#else
|
2013-12-13 10:03:40 +00:00
|
|
|
#include <unistd.h>
|
2013-11-05 02:58:30 +00:00
|
|
|
#include <pwd.h>
|
2014-05-30 15:21:43 +00:00
|
|
|
#endif
|
|
|
|
|
2012-11-25 21:25:54 +00:00
|
|
|
#include "SDL.h"
|
2014-05-30 15:21:43 +00:00
|
|
|
#ifndef _WIN32
|
|
|
|
#include "SDL/SDLJoystick.h"
|
2014-06-07 14:55:51 +00:00
|
|
|
SDLJoystick *joystick = NULL;
|
2012-11-27 15:53:22 +00:00
|
|
|
#endif
|
2013-12-13 11:49:38 +00:00
|
|
|
|
2016-10-12 15:32:52 +00:00
|
|
|
#if PPSSPP_PLATFORM(RPI)
|
2014-02-09 22:31:31 +00:00
|
|
|
#include <bcm_host.h>
|
|
|
|
#endif
|
|
|
|
|
2013-12-13 11:49:38 +00:00
|
|
|
#include <algorithm>
|
|
|
|
|
2012-04-10 09:59:57 +00:00
|
|
|
#include "base/display.h"
|
|
|
|
#include "base/logging.h"
|
|
|
|
#include "base/timeutil.h"
|
2015-09-06 12:38:15 +00:00
|
|
|
#include "gfx/gl_common.h"
|
2015-09-06 10:21:15 +00:00
|
|
|
#include "gfx_es2/gpu_features.h"
|
2012-04-10 09:59:57 +00:00
|
|
|
#include "input/input_state.h"
|
2013-06-30 02:15:55 +00:00
|
|
|
#include "input/keycodes.h"
|
2012-06-03 17:01:08 +00:00
|
|
|
#include "net/resolve.h"
|
2013-11-05 02:58:30 +00:00
|
|
|
#include "base/NKCodeFromSDL.h"
|
2013-06-30 02:15:55 +00:00
|
|
|
#include "util/const_map.h"
|
2014-11-21 18:20:19 +00:00
|
|
|
#include "util/text/utf8.h"
|
2013-11-04 13:49:30 +00:00
|
|
|
#include "math/math_util.h"
|
2014-02-05 13:46:21 +00:00
|
|
|
|
2014-06-22 09:17:03 +00:00
|
|
|
#include "Core/System.h"
|
2013-11-26 15:30:10 +00:00
|
|
|
#include "Core/Core.h"
|
|
|
|
#include "Core/Config.h"
|
2015-12-31 15:59:40 +00:00
|
|
|
#include "Common/GraphicsContext.h"
|
2013-11-22 00:59:18 +00:00
|
|
|
|
2016-01-01 13:08:23 +00:00
|
|
|
class GLDummyGraphicsContext : public DummyGraphicsContext {
|
|
|
|
public:
|
2017-02-06 10:20:27 +00:00
|
|
|
GLDummyGraphicsContext() {
|
2016-01-07 04:10:42 +00:00
|
|
|
CheckGLExtensions();
|
2017-02-06 10:20:27 +00:00
|
|
|
draw_ = Draw::T3DCreateGLContext();
|
2016-01-01 13:08:23 +00:00
|
|
|
}
|
2017-02-06 10:20:27 +00:00
|
|
|
~GLDummyGraphicsContext() { delete draw_; }
|
|
|
|
|
|
|
|
Draw::DrawContext *GetDrawContext() override {
|
|
|
|
return draw_;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
Draw::DrawContext *draw_;
|
2016-01-01 13:08:23 +00:00
|
|
|
};
|
|
|
|
|
2014-06-22 08:53:06 +00:00
|
|
|
GlobalUIState lastUIState = UISTATE_MENU;
|
2014-06-22 08:34:22 +00:00
|
|
|
GlobalUIState GetUIState();
|
2013-11-05 02:58:30 +00:00
|
|
|
|
2014-09-01 13:46:14 +00:00
|
|
|
static SDL_Window* g_Screen = NULL;
|
2014-02-07 10:33:31 +00:00
|
|
|
static bool g_ToggleFullScreenNextFrame = false;
|
|
|
|
static int g_QuitRequested = 0;
|
2014-01-03 14:15:35 +00:00
|
|
|
|
2014-05-02 21:46:24 +00:00
|
|
|
static int g_DesktopWidth = 0;
|
|
|
|
static int g_DesktopHeight = 0;
|
|
|
|
|
2014-05-30 15:21:43 +00:00
|
|
|
#if defined(USING_EGL)
|
2013-01-12 15:38:37 +00:00
|
|
|
#include "EGL/egl.h"
|
2014-09-26 23:47:19 +00:00
|
|
|
|
|
|
|
#if !defined(USING_FBDEV)
|
2013-01-12 15:38:37 +00:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
2014-09-26 23:47:19 +00:00
|
|
|
#endif
|
|
|
|
|
2013-01-12 15:38:37 +00:00
|
|
|
#include "SDL_syswm.h"
|
2013-05-06 13:56:41 +00:00
|
|
|
#include "math.h"
|
|
|
|
|
2014-09-26 23:47:19 +00:00
|
|
|
static EGLDisplay g_eglDisplay = NULL;
|
|
|
|
static EGLContext g_eglContext = NULL;
|
|
|
|
static EGLSurface g_eglSurface = NULL;
|
|
|
|
#ifdef USING_FBDEV
|
|
|
|
static EGLNativeDisplayType g_Display = NULL;
|
|
|
|
#else
|
|
|
|
static Display* g_Display = NULL;
|
|
|
|
#endif
|
|
|
|
static NativeWindowType g_Window = (NativeWindowType)NULL;
|
2013-01-12 15:38:37 +00:00
|
|
|
|
2013-01-14 11:32:39 +00:00
|
|
|
int8_t CheckEGLErrors(const std::string& file, uint16_t line) {
|
2013-01-12 15:38:37 +00:00
|
|
|
EGLenum error;
|
2013-01-14 11:32:39 +00:00
|
|
|
std::string errortext;
|
2013-01-12 15:38:37 +00:00
|
|
|
|
|
|
|
error = eglGetError();
|
|
|
|
switch (error)
|
|
|
|
{
|
|
|
|
case EGL_SUCCESS: case 0: return 0;
|
|
|
|
case EGL_NOT_INITIALIZED: errortext = "EGL_NOT_INITIALIZED"; break;
|
|
|
|
case EGL_BAD_ACCESS: errortext = "EGL_BAD_ACCESS"; break;
|
|
|
|
case EGL_BAD_ALLOC: errortext = "EGL_BAD_ALLOC"; break;
|
|
|
|
case EGL_BAD_ATTRIBUTE: errortext = "EGL_BAD_ATTRIBUTE"; break;
|
|
|
|
case EGL_BAD_CONTEXT: errortext = "EGL_BAD_CONTEXT"; break;
|
|
|
|
case EGL_BAD_CONFIG: errortext = "EGL_BAD_CONFIG"; break;
|
|
|
|
case EGL_BAD_CURRENT_SURFACE: errortext = "EGL_BAD_CURRENT_SURFACE"; break;
|
|
|
|
case EGL_BAD_DISPLAY: errortext = "EGL_BAD_DISPLAY"; break;
|
|
|
|
case EGL_BAD_SURFACE: errortext = "EGL_BAD_SURFACE"; break;
|
|
|
|
case EGL_BAD_MATCH: errortext = "EGL_BAD_MATCH"; break;
|
|
|
|
case EGL_BAD_PARAMETER: errortext = "EGL_BAD_PARAMETER"; break;
|
|
|
|
case EGL_BAD_NATIVE_PIXMAP: errortext = "EGL_BAD_NATIVE_PIXMAP"; break;
|
|
|
|
case EGL_BAD_NATIVE_WINDOW: errortext = "EGL_BAD_NATIVE_WINDOW"; break;
|
|
|
|
default: errortext = "unknown"; break;
|
|
|
|
}
|
|
|
|
printf( "ERROR: EGL Error detected in file %s at line %d: %s (0x%X)\n", file.c_str(), line, errortext.c_str(), error );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#define EGL_ERROR(str, check) { \
|
|
|
|
if (check) CheckEGLErrors( __FILE__, __LINE__ ); \
|
|
|
|
printf("EGL ERROR: " str "\n"); \
|
|
|
|
return 1; \
|
|
|
|
}
|
|
|
|
|
2013-01-14 11:32:39 +00:00
|
|
|
int8_t EGL_Open() {
|
2014-05-30 15:21:43 +00:00
|
|
|
#ifdef USING_FBDEV
|
|
|
|
g_Display = ((EGLNativeDisplayType)0);
|
2013-05-06 13:56:41 +00:00
|
|
|
#else
|
2013-01-12 15:38:37 +00:00
|
|
|
if ((g_Display = XOpenDisplay(NULL)) == NULL)
|
|
|
|
EGL_ERROR("Unable to get display!", false);
|
2013-05-06 13:56:41 +00:00
|
|
|
#endif
|
2013-01-12 15:38:37 +00:00
|
|
|
if ((g_eglDisplay = eglGetDisplay((NativeDisplayType)g_Display)) == EGL_NO_DISPLAY)
|
|
|
|
EGL_ERROR("Unable to create EGL display.", true);
|
|
|
|
if (eglInitialize(g_eglDisplay, NULL, NULL) != EGL_TRUE)
|
|
|
|
EGL_ERROR("Unable to initialize EGL display.", true);
|
2013-01-14 11:32:39 +00:00
|
|
|
return 0;
|
2013-01-12 15:38:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int8_t EGL_Init() {
|
2014-02-07 13:18:45 +00:00
|
|
|
EGLConfig g_eglConfig;
|
2013-01-12 15:38:37 +00:00
|
|
|
EGLint g_numConfigs = 0;
|
|
|
|
EGLint attrib_list[]= {
|
2014-05-30 15:21:43 +00:00
|
|
|
// TODO: Should cycle through fallbacks, like on Android
|
|
|
|
#ifdef USING_FBDEV
|
2013-01-12 15:38:37 +00:00
|
|
|
EGL_RED_SIZE, 5,
|
|
|
|
EGL_GREEN_SIZE, 6,
|
|
|
|
EGL_BLUE_SIZE, 5,
|
2013-03-22 15:14:18 +00:00
|
|
|
#endif
|
2013-01-12 15:38:37 +00:00
|
|
|
EGL_DEPTH_SIZE, 16,
|
|
|
|
EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
|
2014-11-18 03:34:49 +00:00
|
|
|
#ifdef USING_GLES2
|
2013-01-12 15:38:37 +00:00
|
|
|
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
|
2014-11-18 03:34:49 +00:00
|
|
|
#else
|
|
|
|
EGL_RENDERABLE_TYPE, EGL_OPENGL_BIT,
|
|
|
|
#endif
|
2013-01-12 15:38:37 +00:00
|
|
|
EGL_SAMPLE_BUFFERS, 0,
|
|
|
|
EGL_SAMPLES, 0,
|
|
|
|
EGL_NONE};
|
|
|
|
|
|
|
|
const EGLint attributes[] = { EGL_CONTEXT_CLIENT_VERSION, 2, EGL_NONE };
|
|
|
|
|
2013-03-22 15:14:18 +00:00
|
|
|
EGLBoolean result = eglChooseConfig(g_eglDisplay, attrib_list, &g_eglConfig, 1, &g_numConfigs);
|
2013-01-14 11:32:39 +00:00
|
|
|
if (result != EGL_TRUE || g_numConfigs == 0) EGL_ERROR("Unable to query for available configs.", true);
|
2013-01-12 15:38:37 +00:00
|
|
|
|
2013-03-22 15:14:18 +00:00
|
|
|
g_eglContext = eglCreateContext(g_eglDisplay, g_eglConfig, NULL, attributes );
|
2013-01-12 15:38:37 +00:00
|
|
|
if (g_eglContext == EGL_NO_CONTEXT) EGL_ERROR("Unable to create GLES context!", true);
|
|
|
|
|
2014-09-26 23:47:19 +00:00
|
|
|
#if !defined(USING_FBDEV)
|
|
|
|
//Get the SDL window handle
|
2013-01-12 15:38:37 +00:00
|
|
|
SDL_SysWMinfo sysInfo; //Will hold our Window information
|
|
|
|
SDL_VERSION(&sysInfo.version); //Set SDL version
|
2014-09-26 23:47:19 +00:00
|
|
|
#endif
|
2012-04-10 09:59:57 +00:00
|
|
|
|
2014-05-30 15:21:43 +00:00
|
|
|
#ifdef USING_FBDEV
|
2013-05-06 13:56:41 +00:00
|
|
|
g_Window = (NativeWindowType)NULL;
|
|
|
|
#else
|
2013-01-12 15:38:37 +00:00
|
|
|
g_Window = (NativeWindowType)sysInfo.info.x11.window;
|
2013-05-06 13:56:41 +00:00
|
|
|
#endif
|
2013-01-12 15:38:37 +00:00
|
|
|
g_eglSurface = eglCreateWindowSurface(g_eglDisplay, g_eglConfig, g_Window, 0);
|
2014-01-21 14:57:15 +00:00
|
|
|
if (g_eglSurface == EGL_NO_SURFACE)
|
|
|
|
EGL_ERROR("Unable to create EGL surface!", true);
|
2013-01-12 15:38:37 +00:00
|
|
|
|
|
|
|
if (eglMakeCurrent(g_eglDisplay, g_eglSurface, g_eglSurface, g_eglContext) != EGL_TRUE)
|
|
|
|
EGL_ERROR("Unable to make GLES context current.", true);
|
2013-05-06 13:56:41 +00:00
|
|
|
|
2013-01-12 15:38:37 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EGL_Close() {
|
2014-02-07 13:18:45 +00:00
|
|
|
if (g_eglDisplay != NULL) {
|
2013-01-12 15:38:37 +00:00
|
|
|
eglMakeCurrent(g_eglDisplay, NULL, NULL, EGL_NO_CONTEXT);
|
|
|
|
if (g_eglContext != NULL) {
|
|
|
|
eglDestroyContext(g_eglDisplay, g_eglContext);
|
|
|
|
}
|
|
|
|
if (g_eglSurface != NULL) {
|
|
|
|
eglDestroySurface(g_eglDisplay, g_eglSurface);
|
|
|
|
}
|
|
|
|
eglTerminate(g_eglDisplay);
|
|
|
|
g_eglDisplay = NULL;
|
|
|
|
}
|
|
|
|
if (g_Display != NULL) {
|
2014-09-26 23:47:19 +00:00
|
|
|
#if !defined(USING_FBDEV)
|
2013-01-12 15:38:37 +00:00
|
|
|
XCloseDisplay(g_Display);
|
2014-09-26 23:47:19 +00:00
|
|
|
#endif
|
2013-01-12 15:38:37 +00:00
|
|
|
g_Display = NULL;
|
|
|
|
}
|
|
|
|
g_eglSurface = NULL;
|
|
|
|
g_eglContext = NULL;
|
|
|
|
}
|
2014-02-05 13:46:21 +00:00
|
|
|
#endif
|
2013-01-12 15:38:37 +00:00
|
|
|
|
2017-02-06 10:20:27 +00:00
|
|
|
int getDisplayNumber(void) {
|
|
|
|
int displayNumber = 0;
|
|
|
|
char * displayNumberStr;
|
2014-10-15 20:35:03 +00:00
|
|
|
|
2017-02-06 10:20:27 +00:00
|
|
|
//get environment
|
|
|
|
displayNumberStr=getenv("SDL_VIDEO_FULLSCREEN_HEAD");
|
2014-10-15 20:35:03 +00:00
|
|
|
|
2017-02-06 10:20:27 +00:00
|
|
|
if (displayNumberStr)
|
|
|
|
{
|
|
|
|
displayNumber = atoi(displayNumberStr);
|
|
|
|
}
|
2014-10-15 20:35:03 +00:00
|
|
|
|
2017-02-06 10:20:27 +00:00
|
|
|
return displayNumber;
|
2014-09-22 18:08:02 +00:00
|
|
|
}
|
|
|
|
|
2013-01-12 15:38:37 +00:00
|
|
|
// Simple implementations of System functions
|
2012-07-16 13:00:52 +00:00
|
|
|
|
|
|
|
|
2012-04-10 09:59:57 +00:00
|
|
|
void SystemToast(const char *text) {
|
2012-07-05 21:30:35 +00:00
|
|
|
#ifdef _WIN32
|
2012-07-06 20:32:32 +00:00
|
|
|
MessageBox(0, text, "Toast!", MB_ICONINFORMATION);
|
2012-07-05 21:30:35 +00:00
|
|
|
#else
|
2012-07-06 20:32:32 +00:00
|
|
|
puts(text);
|
2012-07-05 21:30:35 +00:00
|
|
|
#endif
|
2012-04-10 09:59:57 +00:00
|
|
|
}
|
|
|
|
|
2012-04-16 21:30:13 +00:00
|
|
|
void ShowKeyboard() {
|
|
|
|
// Irrelevant on PC
|
|
|
|
}
|
|
|
|
|
2012-04-10 09:59:57 +00:00
|
|
|
void Vibrate(int length_ms) {
|
|
|
|
// Ignore on PC
|
|
|
|
}
|
|
|
|
|
2013-12-04 16:38:37 +00:00
|
|
|
void System_SendMessage(const char *command, const char *parameter) {
|
2014-01-03 14:15:35 +00:00
|
|
|
if (!strcmp(command, "toggle_fullscreen")) {
|
|
|
|
g_ToggleFullScreenNextFrame = true;
|
2014-02-07 10:33:31 +00:00
|
|
|
} else if (!strcmp(command, "finish")) {
|
|
|
|
// Do a clean exit
|
|
|
|
g_QuitRequested = true;
|
2014-01-03 14:15:35 +00:00
|
|
|
}
|
2013-12-04 16:38:37 +00:00
|
|
|
}
|
|
|
|
|
2015-12-17 21:41:50 +00:00
|
|
|
void System_AskForPermission(SystemPermission permission) {}
|
|
|
|
PermissionStatus System_GetPermissionStatus(SystemPermission permission) { return PERMISSION_STATUS_GRANTED; }
|
|
|
|
|
2013-12-04 16:38:37 +00:00
|
|
|
void LaunchBrowser(const char *url) {
|
2015-05-26 14:51:53 +00:00
|
|
|
#if defined(MOBILE_DEVICE)
|
|
|
|
ILOG("Would have gone to %s but LaunchBrowser is not implemented on this platform", url);
|
|
|
|
#elif defined(_WIN32)
|
2012-04-10 09:59:57 +00:00
|
|
|
ShellExecute(NULL, "open", url, NULL, NULL, SW_SHOWNORMAL);
|
2015-05-26 14:51:53 +00:00
|
|
|
#elif defined(__APPLE__)
|
|
|
|
std::string command = std::string("open ") + url;
|
|
|
|
system(command.c_str());
|
|
|
|
#else
|
2013-10-30 21:48:12 +00:00
|
|
|
std::string command = std::string("xdg-open ") + url;
|
2014-01-30 16:33:48 +00:00
|
|
|
int err = system(command.c_str());
|
|
|
|
if (err) {
|
2014-01-30 16:23:04 +00:00
|
|
|
ILOG("Would have gone to %s but xdg-utils seems not to be installed", url)
|
|
|
|
}
|
2012-04-10 09:59:57 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-12-04 16:38:37 +00:00
|
|
|
void LaunchMarket(const char *url) {
|
2015-05-26 14:51:53 +00:00
|
|
|
#if defined(MOBILE_DEVICE)
|
|
|
|
ILOG("Would have gone to %s but LaunchMarket is not implemented on this platform", url);
|
|
|
|
#elif defined(_WIN32)
|
2012-04-10 09:59:57 +00:00
|
|
|
ShellExecute(NULL, "open", url, NULL, NULL, SW_SHOWNORMAL);
|
2015-05-26 14:51:53 +00:00
|
|
|
#elif defined(__APPLE__)
|
|
|
|
std::string command = std::string("open ") + url;
|
|
|
|
system(command.c_str());
|
|
|
|
#else
|
2013-10-30 21:48:12 +00:00
|
|
|
std::string command = std::string("xdg-open ") + url;
|
2014-01-30 16:33:48 +00:00
|
|
|
int err = system(command.c_str());
|
|
|
|
if (err) {
|
2014-01-30 16:23:04 +00:00
|
|
|
ILOG("Would have gone to %s but xdg-utils seems not to be installed", url)
|
|
|
|
}
|
2012-04-10 09:59:57 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-12-04 16:38:37 +00:00
|
|
|
void LaunchEmail(const char *email_address) {
|
2015-05-26 14:51:53 +00:00
|
|
|
#if defined(MOBILE_DEVICE)
|
|
|
|
ILOG("Would have opened your email client for %s but LaunchEmail is not implemented on this platform", email_address);
|
|
|
|
#elif defined(_WIN32)
|
2012-04-10 09:59:57 +00:00
|
|
|
ShellExecute(NULL, "open", (std::string("mailto:") + email_address).c_str(), NULL, NULL, SW_SHOWNORMAL);
|
2015-05-26 14:51:53 +00:00
|
|
|
#elif defined(__APPLE__)
|
|
|
|
std::string command = std::string("open mailto:") + email_address;
|
|
|
|
system(command.c_str());
|
|
|
|
#else
|
2013-11-01 17:09:36 +00:00
|
|
|
std::string command = std::string("xdg-email ") + email_address;
|
2014-01-30 16:33:48 +00:00
|
|
|
int err = system(command.c_str());
|
|
|
|
if (err) {
|
2014-01-30 16:23:04 +00:00
|
|
|
ILOG("Would have gone to %s but xdg-utils seems not to be installed", email_address)
|
|
|
|
}
|
2012-04-10 09:59:57 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-09-04 09:28:19 +00:00
|
|
|
std::string System_GetProperty(SystemProperty prop) {
|
|
|
|
switch (prop) {
|
|
|
|
case SYSPROP_NAME:
|
2013-11-26 06:38:00 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
return "SDL:Windows";
|
|
|
|
#elif __linux__
|
|
|
|
return "SDL:Linux";
|
|
|
|
#elif __APPLE__
|
|
|
|
return "SDL:OSX";
|
|
|
|
#else
|
2013-09-04 09:28:19 +00:00
|
|
|
return "SDL:";
|
2013-11-26 06:38:00 +00:00
|
|
|
#endif
|
2013-09-04 09:28:19 +00:00
|
|
|
case SYSPROP_LANGREGION:
|
|
|
|
return "en_US";
|
|
|
|
default:
|
|
|
|
return "";
|
|
|
|
}
|
2013-08-17 22:14:25 +00:00
|
|
|
}
|
|
|
|
|
2015-01-11 13:15:26 +00:00
|
|
|
int System_GetPropertyInt(SystemProperty prop) {
|
|
|
|
switch (prop) {
|
|
|
|
case SYSPROP_AUDIO_SAMPLE_RATE:
|
|
|
|
return 44100;
|
2015-01-13 23:27:21 +00:00
|
|
|
case SYSPROP_DISPLAY_REFRESH_RATE:
|
|
|
|
return 60000;
|
2015-04-03 09:13:38 +00:00
|
|
|
case SYSPROP_DEVICE_TYPE:
|
2015-05-26 14:51:53 +00:00
|
|
|
#if defined(MOBILE_DEVICE)
|
2015-04-03 09:13:38 +00:00
|
|
|
return DEVICE_TYPE_MOBILE;
|
|
|
|
#else
|
2015-05-26 14:51:53 +00:00
|
|
|
return DEVICE_TYPE_DESKTOP;
|
2015-04-03 09:13:38 +00:00
|
|
|
#endif
|
2017-03-07 09:33:53 +00:00
|
|
|
case SYSPROP_HAS_BACK_BUTTON:
|
|
|
|
return 1;
|
2017-04-05 14:21:08 +00:00
|
|
|
case SYSPROP_APP_GOLD:
|
|
|
|
#ifdef GOLD
|
|
|
|
return 1;
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
2015-01-11 13:15:26 +00:00
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2014-07-20 10:04:22 +00:00
|
|
|
|
2012-04-10 09:59:57 +00:00
|
|
|
extern void mixaudio(void *userdata, Uint8 *stream, int len) {
|
2012-10-31 13:01:32 +00:00
|
|
|
NativeMix((short *)stream, len / 4);
|
2012-04-10 09:59:57 +00:00
|
|
|
}
|
|
|
|
|
2013-12-16 13:05:51 +00:00
|
|
|
// returns -1 on failure
|
2014-01-21 14:57:15 +00:00
|
|
|
static int parseInt(const char *str) {
|
2013-12-16 13:05:51 +00:00
|
|
|
int val;
|
|
|
|
int retval = sscanf(str, "%d", &val);
|
2014-01-21 14:57:15 +00:00
|
|
|
printf("%i = scanf %s\n", retval, str);
|
2013-12-16 13:05:51 +00:00
|
|
|
if (retval != 1) {
|
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-21 14:57:15 +00:00
|
|
|
static float parseFloat(const char *str) {
|
|
|
|
float val;
|
|
|
|
int retval = sscanf(str, "%f", &val);
|
|
|
|
printf("%i = sscanf %s\n", retval, str);
|
|
|
|
if (retval != 1) {
|
|
|
|
return -1.0f;
|
|
|
|
} else {
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-03 14:15:35 +00:00
|
|
|
void ToggleFullScreenIfFlagSet() {
|
|
|
|
if (g_ToggleFullScreenNextFrame) {
|
|
|
|
g_ToggleFullScreenNextFrame = false;
|
|
|
|
|
2014-09-01 13:46:14 +00:00
|
|
|
Uint32 window_flags = SDL_GetWindowFlags(g_Screen);
|
|
|
|
SDL_SetWindowFullscreen(g_Screen, window_flags ^ SDL_WINDOW_FULLSCREEN_DESKTOP);
|
2014-01-03 14:15:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-10 09:59:57 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#undef main
|
|
|
|
#endif
|
|
|
|
int main(int argc, char *argv[]) {
|
2016-10-12 15:32:52 +00:00
|
|
|
#if PPSSPP_PLATFORM(RPI)
|
2014-02-09 22:31:31 +00:00
|
|
|
bcm_host_init();
|
|
|
|
#endif
|
2014-05-30 15:21:43 +00:00
|
|
|
putenv((char*)"SDL_VIDEO_CENTERED=1");
|
2017-02-22 21:44:32 +00:00
|
|
|
SDL_SetHint(SDL_HINT_VIDEO_MINIMIZE_ON_FOCUS_LOSS, "0");
|
2014-02-05 18:44:43 +00:00
|
|
|
|
2012-04-10 09:59:57 +00:00
|
|
|
std::string app_name;
|
|
|
|
std::string app_name_nice;
|
2014-12-18 21:50:17 +00:00
|
|
|
std::string version;
|
2012-10-31 11:12:24 +00:00
|
|
|
bool landscape;
|
2014-12-18 21:50:17 +00:00
|
|
|
NativeGetAppInfo(&app_name, &app_name_nice, &landscape, &version);
|
2013-07-14 11:51:30 +00:00
|
|
|
|
2016-07-09 07:15:11 +00:00
|
|
|
bool joystick_enabled = true;
|
2016-09-18 22:23:36 +00:00
|
|
|
if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_JOYSTICK | SDL_INIT_GAMECONTROLLER | SDL_INIT_AUDIO) < 0) {
|
2016-07-09 07:15:11 +00:00
|
|
|
joystick_enabled = false;
|
|
|
|
if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO) < 0) {
|
|
|
|
fprintf(stderr, "Unable to initialize SDL: %s\n", SDL_GetError());
|
|
|
|
return 1;
|
|
|
|
}
|
2014-09-01 13:46:14 +00:00
|
|
|
}
|
|
|
|
|
2012-09-01 13:16:23 +00:00
|
|
|
#ifdef __APPLE__
|
2012-10-31 11:12:24 +00:00
|
|
|
// Make sure to request a somewhat modern GL context at least - the
|
2012-09-01 13:16:23 +00:00
|
|
|
// latest supported by MacOSX (really, really sad...)
|
2013-10-30 03:05:17 +00:00
|
|
|
// Requires SDL 2.0
|
2013-10-30 11:22:22 +00:00
|
|
|
// We really should upgrade to SDL 2.0 soon.
|
2014-09-01 13:46:14 +00:00
|
|
|
//SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE);
|
2012-09-01 13:16:23 +00:00
|
|
|
//SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3);
|
2014-09-01 13:46:14 +00:00
|
|
|
//SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 2);
|
2012-09-01 13:16:23 +00:00
|
|
|
#endif
|
2012-06-03 17:01:08 +00:00
|
|
|
|
2014-05-30 15:21:43 +00:00
|
|
|
#ifdef USING_EGL
|
2013-01-14 11:32:39 +00:00
|
|
|
if (EGL_Open())
|
|
|
|
return 1;
|
2013-01-12 15:38:37 +00:00
|
|
|
#endif
|
2012-04-10 09:59:57 +00:00
|
|
|
|
2014-05-02 21:46:24 +00:00
|
|
|
// Get the video info before doing anything else, so we don't get skewed resolution results.
|
2014-09-01 13:46:14 +00:00
|
|
|
// TODO: support multiple displays correctly
|
|
|
|
SDL_DisplayMode displayMode;
|
|
|
|
int should_be_zero = SDL_GetCurrentDisplayMode(0, &displayMode);
|
|
|
|
if (should_be_zero != 0) {
|
|
|
|
fprintf(stderr, "Could not get display mode: %s\n", SDL_GetError());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
g_DesktopWidth = displayMode.w;
|
|
|
|
g_DesktopHeight = displayMode.h;
|
2014-05-02 21:46:24 +00:00
|
|
|
|
2012-04-10 09:59:57 +00:00
|
|
|
SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8);
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8);
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8);
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 24);
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_STENCIL_SIZE, 8);
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
|
2014-09-01 13:46:14 +00:00
|
|
|
SDL_GL_SetSwapInterval(1);
|
2012-04-10 09:59:57 +00:00
|
|
|
|
2014-09-01 13:46:14 +00:00
|
|
|
Uint32 mode;
|
2013-01-12 15:38:37 +00:00
|
|
|
#ifdef USING_GLES2
|
2014-11-18 03:34:49 +00:00
|
|
|
mode = SDL_WINDOW_OPENGL | SDL_WINDOW_FULLSCREEN;
|
2013-01-12 15:38:37 +00:00
|
|
|
#else
|
2014-09-01 13:46:14 +00:00
|
|
|
mode = SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE;
|
2014-05-29 02:12:50 +00:00
|
|
|
#endif
|
2013-12-16 13:05:51 +00:00
|
|
|
int set_xres = -1;
|
|
|
|
int set_yres = -1;
|
2014-04-13 15:08:36 +00:00
|
|
|
bool portrait = false;
|
2014-05-29 02:12:50 +00:00
|
|
|
bool set_ipad = false;
|
|
|
|
float set_dpi = 1.0f;
|
|
|
|
float set_scale = 1.0f;
|
|
|
|
|
2017-03-16 09:50:08 +00:00
|
|
|
// Produce a new set of arguments with the ones we skip.
|
|
|
|
int remain_argc = 1;
|
|
|
|
const char *remain_argv[256] = { argv[0] };
|
|
|
|
|
2013-12-16 13:05:51 +00:00
|
|
|
for (int i = 1; i < argc; i++) {
|
2013-10-30 03:05:17 +00:00
|
|
|
if (!strcmp(argv[i],"--fullscreen"))
|
2014-09-01 13:46:14 +00:00
|
|
|
mode |= SDL_WINDOW_FULLSCREEN_DESKTOP;
|
2017-03-16 09:50:08 +00:00
|
|
|
else if (set_xres == -2)
|
2013-12-16 13:05:51 +00:00
|
|
|
set_xres = parseInt(argv[i]);
|
2017-03-16 09:50:08 +00:00
|
|
|
else if (set_yres == -2)
|
2013-12-16 13:05:51 +00:00
|
|
|
set_yres = parseInt(argv[i]);
|
2017-03-16 09:50:08 +00:00
|
|
|
else if (set_dpi == -2)
|
2014-01-21 14:57:15 +00:00
|
|
|
set_dpi = parseFloat(argv[i]);
|
2017-03-16 09:50:08 +00:00
|
|
|
else if (set_scale == -2)
|
2014-01-23 13:31:56 +00:00
|
|
|
set_scale = parseFloat(argv[i]);
|
2017-03-16 09:50:08 +00:00
|
|
|
else if (!strcmp(argv[i],"--xres"))
|
2013-12-16 13:05:51 +00:00
|
|
|
set_xres = -2;
|
2017-03-16 09:50:08 +00:00
|
|
|
else if (!strcmp(argv[i],"--yres"))
|
2013-12-16 13:05:51 +00:00
|
|
|
set_yres = -2;
|
2017-03-16 09:50:08 +00:00
|
|
|
else if (!strcmp(argv[i],"--dpi"))
|
2014-01-21 14:57:15 +00:00
|
|
|
set_dpi = -2;
|
2017-03-16 09:50:08 +00:00
|
|
|
else if (!strcmp(argv[i],"--scale"))
|
2014-01-23 13:31:56 +00:00
|
|
|
set_scale = -2;
|
2017-03-16 09:50:08 +00:00
|
|
|
else if (!strcmp(argv[i],"--ipad"))
|
2014-05-29 02:12:50 +00:00
|
|
|
set_ipad = true;
|
2017-03-16 09:50:08 +00:00
|
|
|
else if (!strcmp(argv[i],"--portrait"))
|
2014-04-13 15:08:36 +00:00
|
|
|
portrait = true;
|
2017-03-16 09:50:08 +00:00
|
|
|
else {
|
|
|
|
remain_argv[remain_argc++] = argv[i];
|
|
|
|
}
|
2013-12-16 13:05:51 +00:00
|
|
|
}
|
2014-05-29 02:12:50 +00:00
|
|
|
|
2014-11-13 15:38:50 +00:00
|
|
|
// Is resolution is too low to run windowed
|
2014-11-13 17:13:01 +00:00
|
|
|
if (g_DesktopWidth < 480 * 2 && g_DesktopHeight < 272 * 2) {
|
2014-11-13 15:38:50 +00:00
|
|
|
mode |= SDL_WINDOW_FULLSCREEN_DESKTOP;
|
|
|
|
}
|
|
|
|
|
2014-09-01 13:46:14 +00:00
|
|
|
if (mode & SDL_WINDOW_FULLSCREEN_DESKTOP) {
|
|
|
|
pixel_xres = g_DesktopWidth;
|
|
|
|
pixel_yres = g_DesktopHeight;
|
2013-11-05 02:58:30 +00:00
|
|
|
g_Config.bFullScreen = true;
|
2013-11-04 13:49:30 +00:00
|
|
|
} else {
|
2013-10-30 11:22:22 +00:00
|
|
|
// set a sensible default resolution (2x)
|
2014-01-23 13:31:56 +00:00
|
|
|
pixel_xres = 480 * 2 * set_scale;
|
|
|
|
pixel_yres = 272 * 2 * set_scale;
|
2014-04-13 15:08:36 +00:00
|
|
|
if (portrait) {
|
|
|
|
std::swap(pixel_xres, pixel_yres);
|
|
|
|
}
|
2013-11-05 02:58:30 +00:00
|
|
|
g_Config.bFullScreen = false;
|
2013-10-30 11:22:22 +00:00
|
|
|
}
|
2013-12-13 11:49:38 +00:00
|
|
|
|
2014-01-23 13:31:56 +00:00
|
|
|
set_dpi = 1.0f / set_dpi;
|
|
|
|
|
2014-04-08 13:27:14 +00:00
|
|
|
if (set_ipad) {
|
|
|
|
pixel_xres = 1024;
|
|
|
|
pixel_yres = 768;
|
|
|
|
}
|
2013-12-13 11:49:38 +00:00
|
|
|
if (!landscape) {
|
|
|
|
std::swap(pixel_xres, pixel_yres);
|
|
|
|
}
|
|
|
|
|
2013-12-16 13:05:51 +00:00
|
|
|
if (set_xres > 0) {
|
|
|
|
pixel_xres = set_xres;
|
|
|
|
}
|
|
|
|
if (set_yres > 0) {
|
|
|
|
pixel_yres = set_yres;
|
|
|
|
}
|
2014-01-21 14:57:15 +00:00
|
|
|
float dpi_scale = 1.0f;
|
|
|
|
if (set_dpi > 0) {
|
|
|
|
dpi_scale = set_dpi;
|
|
|
|
}
|
2013-12-16 13:05:51 +00:00
|
|
|
|
2014-01-21 14:57:15 +00:00
|
|
|
dp_xres = (float)pixel_xres * dpi_scale;
|
|
|
|
dp_yres = (float)pixel_yres * dpi_scale;
|
2013-10-30 11:22:22 +00:00
|
|
|
|
2014-10-15 20:35:03 +00:00
|
|
|
g_Screen = SDL_CreateWindow(app_name_nice.c_str(), SDL_WINDOWPOS_UNDEFINED_DISPLAY(getDisplayNumber()),\
|
|
|
|
SDL_WINDOWPOS_UNDEFINED, pixel_xres, pixel_yres, mode);
|
2014-09-22 18:08:02 +00:00
|
|
|
|
2014-01-03 14:15:35 +00:00
|
|
|
if (g_Screen == NULL) {
|
2014-09-02 05:34:08 +00:00
|
|
|
fprintf(stderr, "SDL_CreateWindow failed: %s\n", SDL_GetError());
|
2012-04-10 09:59:57 +00:00
|
|
|
SDL_Quit();
|
2013-12-16 13:05:51 +00:00
|
|
|
return 2;
|
2012-04-10 09:59:57 +00:00
|
|
|
}
|
2014-01-03 14:15:35 +00:00
|
|
|
|
2014-09-01 13:46:14 +00:00
|
|
|
SDL_GLContext glContext = SDL_GL_CreateContext(g_Screen);
|
2014-09-02 05:34:08 +00:00
|
|
|
if (glContext == NULL) {
|
|
|
|
fprintf(stderr, "SDL_GL_CreateContext failed: %s\n", SDL_GetError());
|
2012-04-10 09:59:57 +00:00
|
|
|
SDL_Quit();
|
2013-12-16 13:05:51 +00:00
|
|
|
return 2;
|
2012-04-10 09:59:57 +00:00
|
|
|
}
|
2014-01-03 14:15:35 +00:00
|
|
|
|
2014-05-30 15:21:43 +00:00
|
|
|
#ifdef USING_EGL
|
2013-01-12 15:38:37 +00:00
|
|
|
EGL_Init();
|
|
|
|
#endif
|
2012-11-07 17:29:35 +00:00
|
|
|
|
2014-09-01 13:46:14 +00:00
|
|
|
SDL_SetWindowTitle(g_Screen, (app_name_nice + " " + PPSSPP_GIT_VERSION).c_str());
|
2013-12-13 10:03:40 +00:00
|
|
|
|
2014-05-30 15:21:43 +00:00
|
|
|
#ifdef MOBILE_DEVICE
|
2013-03-25 18:45:39 +00:00
|
|
|
SDL_ShowCursor(SDL_DISABLE);
|
|
|
|
#endif
|
|
|
|
|
2012-04-10 09:59:57 +00:00
|
|
|
|
2013-01-12 15:38:37 +00:00
|
|
|
#ifndef USING_GLES2
|
2016-08-07 03:19:50 +00:00
|
|
|
// Some core profile drivers elide certain extensions from GL_EXTENSIONS/etc.
|
|
|
|
// glewExperimental allows us to force GLEW to search for the pointers anyway.
|
|
|
|
if (gl_extensions.IsCoreContext)
|
|
|
|
glewExperimental = true;
|
2012-04-10 09:59:57 +00:00
|
|
|
if (GLEW_OK != glewInit()) {
|
|
|
|
printf("Failed to initialize glew!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2016-08-07 03:19:50 +00:00
|
|
|
// Unfortunately, glew will generate an invalid enum error, ignore.
|
|
|
|
if (gl_extensions.IsCoreContext)
|
|
|
|
glGetError();
|
2012-04-10 09:59:57 +00:00
|
|
|
|
|
|
|
if (GLEW_VERSION_2_0) {
|
|
|
|
printf("OpenGL 2.0 or higher.\n");
|
|
|
|
} else {
|
|
|
|
printf("Sorry, this program requires OpenGL 2.0.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2013-01-12 15:38:37 +00:00
|
|
|
#endif
|
2012-04-10 09:59:57 +00:00
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
// VFSRegister("temp/", new DirectoryAssetReader("E:\\Temp\\"));
|
|
|
|
TCHAR path[MAX_PATH];
|
|
|
|
SHGetFolderPath(NULL, CSIDL_APPDATA, NULL, 0, path);
|
|
|
|
PathAppend(path, (app_name + "\\").c_str());
|
|
|
|
#else
|
2012-07-15 15:04:27 +00:00
|
|
|
// Mac / Linux
|
2014-09-13 22:13:24 +00:00
|
|
|
char path[2048];
|
2012-09-17 17:26:28 +00:00
|
|
|
const char *the_path = getenv("HOME");
|
|
|
|
if (!the_path) {
|
2012-04-10 09:59:57 +00:00
|
|
|
struct passwd* pwd = getpwuid(getuid());
|
|
|
|
if (pwd)
|
2012-09-17 17:26:28 +00:00
|
|
|
the_path = pwd->pw_dir;
|
2012-04-10 09:59:57 +00:00
|
|
|
}
|
2012-10-31 11:12:24 +00:00
|
|
|
strcpy(path, the_path);
|
|
|
|
if (path[strlen(path)-1] != '/')
|
|
|
|
strcat(path, "/");
|
2012-04-10 09:59:57 +00:00
|
|
|
#endif
|
|
|
|
|
2012-09-28 08:01:01 +00:00
|
|
|
#ifdef _WIN32
|
2017-03-16 09:50:08 +00:00
|
|
|
NativeInit(remain_argc, (const char **)remain_argv, path, "D:\\", nullptr);
|
2012-09-28 08:01:01 +00:00
|
|
|
#else
|
2017-03-16 09:50:08 +00:00
|
|
|
NativeInit(remain_argc, (const char **)remain_argv, path, "/tmp", nullptr);
|
2012-09-28 08:01:01 +00:00
|
|
|
#endif
|
2012-07-15 15:04:27 +00:00
|
|
|
|
2012-11-21 14:30:43 +00:00
|
|
|
pixel_in_dps = (float)pixel_xres / dp_xres;
|
2013-07-15 12:53:06 +00:00
|
|
|
g_dpi_scale = dp_xres / (float)pixel_xres;
|
2017-03-12 19:17:35 +00:00
|
|
|
g_dpi_scale_real = g_dpi_scale;
|
2012-11-21 14:30:43 +00:00
|
|
|
|
2012-10-31 11:12:24 +00:00
|
|
|
printf("Pixels: %i x %i\n", pixel_xres, pixel_yres);
|
|
|
|
printf("Virtual pixels: %i x %i\n", dp_xres, dp_yres);
|
2014-02-10 14:12:55 +00:00
|
|
|
|
2016-01-01 13:08:23 +00:00
|
|
|
GraphicsContext *graphicsContext = new GLDummyGraphicsContext();
|
2016-01-01 11:14:09 +00:00
|
|
|
NativeInitGraphics(graphicsContext);
|
2015-12-31 15:59:40 +00:00
|
|
|
|
2014-02-10 14:12:55 +00:00
|
|
|
NativeResized();
|
2012-07-15 15:04:27 +00:00
|
|
|
|
2014-05-04 10:33:28 +00:00
|
|
|
SDL_AudioSpec fmt, ret_fmt;
|
|
|
|
memset(&fmt, 0, sizeof(fmt));
|
2012-07-06 20:32:32 +00:00
|
|
|
fmt.freq = 44100;
|
|
|
|
fmt.format = AUDIO_S16;
|
|
|
|
fmt.channels = 2;
|
2013-10-22 03:29:34 +00:00
|
|
|
fmt.samples = 2048;
|
2012-07-06 20:32:32 +00:00
|
|
|
fmt.callback = &mixaudio;
|
|
|
|
fmt.userdata = (void *)0;
|
|
|
|
|
2014-05-04 10:33:28 +00:00
|
|
|
if (SDL_OpenAudio(&fmt, &ret_fmt) < 0) {
|
2012-07-06 20:32:32 +00:00
|
|
|
ELOG("Failed to open audio: %s", SDL_GetError());
|
2014-05-04 10:33:28 +00:00
|
|
|
} else {
|
2014-06-25 05:40:28 +00:00
|
|
|
if (ret_fmt.samples != fmt.samples) // Notify, but still use it
|
|
|
|
ELOG("Output audio samples: %d (requested: %d)", ret_fmt.samples, fmt.samples);
|
|
|
|
if (ret_fmt.freq != fmt.freq || ret_fmt.format != fmt.format || ret_fmt.channels != fmt.channels) {
|
2014-05-04 10:33:28 +00:00
|
|
|
ELOG("Sound buffer format does not match requested format.");
|
2014-06-25 05:40:28 +00:00
|
|
|
ELOG("Output audio freq: %d (requested: %d)", ret_fmt.freq, fmt.freq);
|
|
|
|
ELOG("Output audio format: %d (requested: %d)", ret_fmt.format, fmt.format);
|
|
|
|
ELOG("Output audio channels: %d (requested: %d)", ret_fmt.channels, fmt.channels);
|
2014-05-04 10:33:28 +00:00
|
|
|
ELOG("Provided output format does not match requirement, turning audio off");
|
|
|
|
SDL_CloseAudio();
|
|
|
|
}
|
2013-12-16 13:05:51 +00:00
|
|
|
}
|
2012-07-06 20:32:32 +00:00
|
|
|
|
|
|
|
// Audio must be unpaused _after_ NativeInit()
|
2013-11-24 05:13:24 +00:00
|
|
|
SDL_PauseAudio(0);
|
2014-05-30 15:21:43 +00:00
|
|
|
#ifndef _WIN32
|
2016-07-09 07:15:11 +00:00
|
|
|
if (joystick_enabled) {
|
|
|
|
joystick = new SDLJoystick();
|
|
|
|
} else {
|
|
|
|
joystick = nullptr;
|
|
|
|
}
|
2013-01-14 11:32:39 +00:00
|
|
|
#endif
|
2013-11-22 00:59:18 +00:00
|
|
|
EnableFZ();
|
2013-07-14 11:51:30 +00:00
|
|
|
|
2012-07-06 20:32:32 +00:00
|
|
|
int framecount = 0;
|
2013-07-14 11:51:30 +00:00
|
|
|
float t = 0;
|
|
|
|
float lastT = 0;
|
2017-03-15 04:09:43 +00:00
|
|
|
bool mouseDown = false;
|
2012-10-31 11:12:24 +00:00
|
|
|
|
2017-03-15 04:09:43 +00:00
|
|
|
while (true) {
|
2012-10-31 11:12:24 +00:00
|
|
|
SDL_Event event;
|
2012-04-10 09:59:57 +00:00
|
|
|
while (SDL_PollEvent(&event)) {
|
2013-12-16 13:05:51 +00:00
|
|
|
float mx = event.motion.x * g_dpi_scale;
|
|
|
|
float my = event.motion.y * g_dpi_scale;
|
2012-07-15 15:04:27 +00:00
|
|
|
|
2013-07-14 11:51:30 +00:00
|
|
|
switch (event.type) {
|
|
|
|
case SDL_QUIT:
|
2014-02-07 10:33:31 +00:00
|
|
|
g_QuitRequested = 1;
|
2013-07-14 11:51:30 +00:00
|
|
|
break;
|
2015-12-27 20:03:26 +00:00
|
|
|
|
2014-04-26 04:08:20 +00:00
|
|
|
#if !defined(MOBILE_DEVICE)
|
2014-09-01 13:46:14 +00:00
|
|
|
case SDL_WINDOWEVENT:
|
2015-12-27 20:03:26 +00:00
|
|
|
switch (event.window.event) {
|
2014-09-01 13:46:14 +00:00
|
|
|
case SDL_WINDOWEVENT_RESIZED:
|
2015-12-27 20:03:26 +00:00
|
|
|
{
|
|
|
|
Uint32 window_flags = SDL_GetWindowFlags(g_Screen);
|
|
|
|
bool fullscreen = (window_flags & SDL_WINDOW_FULLSCREEN);
|
2014-09-04 08:20:04 +00:00
|
|
|
|
2015-12-27 20:03:26 +00:00
|
|
|
pixel_xres = event.window.data1;
|
|
|
|
pixel_yres = event.window.data2;
|
|
|
|
dp_xres = (float)pixel_xres * dpi_scale;
|
|
|
|
dp_yres = (float)pixel_yres * dpi_scale;
|
|
|
|
NativeResized();
|
2014-09-04 08:20:04 +00:00
|
|
|
|
|
|
|
#if defined(PPSSPP)
|
2015-12-27 20:03:26 +00:00
|
|
|
// Set variable here in case fullscreen was toggled by hotkey
|
|
|
|
g_Config.bFullScreen = fullscreen;
|
|
|
|
|
|
|
|
// Hide/Show cursor correctly toggling fullscreen
|
|
|
|
if (lastUIState == UISTATE_INGAME && fullscreen && !g_Config.bShowTouchControls) {
|
|
|
|
SDL_ShowCursor(SDL_DISABLE);
|
|
|
|
} else if (lastUIState != UISTATE_INGAME || !fullscreen) {
|
|
|
|
SDL_ShowCursor(SDL_ENABLE);
|
2014-09-01 13:46:14 +00:00
|
|
|
}
|
2015-12-27 20:03:26 +00:00
|
|
|
#endif
|
2014-09-01 13:46:14 +00:00
|
|
|
break;
|
2014-04-26 04:08:20 +00:00
|
|
|
}
|
2015-12-27 20:03:26 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2014-04-26 04:08:20 +00:00
|
|
|
#endif
|
2013-07-14 11:51:30 +00:00
|
|
|
case SDL_KEYDOWN:
|
|
|
|
{
|
2017-03-23 02:54:41 +00:00
|
|
|
if (event.key.repeat > 0) { break;}
|
2013-07-14 11:51:30 +00:00
|
|
|
int k = event.key.keysym.sym;
|
|
|
|
KeyInput key;
|
|
|
|
key.flags = KEY_DOWN;
|
2015-12-27 20:04:18 +00:00
|
|
|
auto mapped = KeyMapRawSDLtoNative.find(k);
|
|
|
|
if (mapped == KeyMapRawSDLtoNative.end() || mapped->second == NKCODE_UNKNOWN) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
key.keyCode = mapped->second;
|
2013-07-14 11:51:30 +00:00
|
|
|
key.deviceId = DEVICE_ID_KEYBOARD;
|
|
|
|
NativeKey(key);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case SDL_KEYUP:
|
|
|
|
{
|
2017-03-23 02:54:41 +00:00
|
|
|
if (event.key.repeat > 0) { break;}
|
2013-07-14 11:51:30 +00:00
|
|
|
int k = event.key.keysym.sym;
|
|
|
|
KeyInput key;
|
|
|
|
key.flags = KEY_UP;
|
2015-12-27 20:04:18 +00:00
|
|
|
auto mapped = KeyMapRawSDLtoNative.find(k);
|
|
|
|
if (mapped == KeyMapRawSDLtoNative.end() || mapped->second == NKCODE_UNKNOWN) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
key.keyCode = mapped->second;
|
2013-07-14 11:51:30 +00:00
|
|
|
key.deviceId = DEVICE_ID_KEYBOARD;
|
|
|
|
NativeKey(key);
|
|
|
|
break;
|
|
|
|
}
|
2014-11-21 18:20:19 +00:00
|
|
|
case SDL_TEXTINPUT:
|
|
|
|
{
|
|
|
|
int pos = 0;
|
|
|
|
int c = u8_nextchar(event.text.text, &pos);
|
|
|
|
KeyInput key;
|
|
|
|
key.flags = KEY_CHAR;
|
|
|
|
key.keyCode = c;
|
|
|
|
key.deviceId = DEVICE_ID_KEYBOARD;
|
|
|
|
NativeKey(key);
|
|
|
|
break;
|
|
|
|
}
|
2013-07-14 11:51:30 +00:00
|
|
|
case SDL_MOUSEBUTTONDOWN:
|
2013-07-08 09:03:14 +00:00
|
|
|
switch (event.button.button) {
|
|
|
|
case SDL_BUTTON_LEFT:
|
|
|
|
{
|
2017-03-15 04:09:43 +00:00
|
|
|
mouseDown = true;
|
2013-07-08 09:03:14 +00:00
|
|
|
TouchInput input;
|
|
|
|
input.x = mx;
|
|
|
|
input.y = my;
|
2014-07-20 20:20:09 +00:00
|
|
|
input.flags = TOUCH_DOWN | TOUCH_MOUSE;
|
2013-07-08 09:03:14 +00:00
|
|
|
input.id = 0;
|
|
|
|
NativeTouch(input);
|
2013-08-04 17:30:34 +00:00
|
|
|
KeyInput key(DEVICE_ID_MOUSE, NKCODE_EXT_MOUSEBUTTON_1, KEY_DOWN);
|
2013-07-09 14:33:05 +00:00
|
|
|
NativeKey(key);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SDL_BUTTON_RIGHT:
|
|
|
|
{
|
2013-08-04 17:30:34 +00:00
|
|
|
KeyInput key(DEVICE_ID_MOUSE, NKCODE_EXT_MOUSEBUTTON_2, KEY_DOWN);
|
2013-07-09 14:33:05 +00:00
|
|
|
NativeKey(key);
|
2013-07-08 09:03:14 +00:00
|
|
|
}
|
|
|
|
break;
|
2014-09-01 13:46:14 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SDL_MOUSEWHEEL:
|
|
|
|
{
|
|
|
|
KeyInput key;
|
|
|
|
key.deviceId = DEVICE_ID_MOUSE;
|
|
|
|
if (event.wheel.y > 0) {
|
2013-08-04 17:30:34 +00:00
|
|
|
key.keyCode = NKCODE_EXT_MOUSEWHEEL_UP;
|
2014-09-01 13:46:14 +00:00
|
|
|
} else {
|
2013-08-04 17:30:34 +00:00
|
|
|
key.keyCode = NKCODE_EXT_MOUSEWHEEL_DOWN;
|
2013-07-08 09:03:14 +00:00
|
|
|
}
|
2014-09-01 13:46:14 +00:00
|
|
|
key.flags = KEY_DOWN;
|
|
|
|
NativeKey(key);
|
|
|
|
|
|
|
|
// SDL2 doesn't consider the mousewheel a button anymore
|
2014-09-04 08:20:04 +00:00
|
|
|
// so let's send the KEY_UP right away.
|
|
|
|
// Maybe KEY_UP alone will suffice?
|
2014-09-01 13:46:14 +00:00
|
|
|
key.flags = KEY_UP;
|
|
|
|
NativeKey(key);
|
2013-05-25 13:12:46 +00:00
|
|
|
}
|
2013-07-14 11:51:30 +00:00
|
|
|
case SDL_MOUSEMOTION:
|
2017-03-15 04:09:43 +00:00
|
|
|
if (mouseDown) {
|
2013-05-02 22:21:39 +00:00
|
|
|
TouchInput input;
|
|
|
|
input.x = mx;
|
|
|
|
input.y = my;
|
2014-07-20 20:20:09 +00:00
|
|
|
input.flags = TOUCH_MOVE | TOUCH_MOUSE;
|
2013-05-02 22:21:39 +00:00
|
|
|
input.id = 0;
|
|
|
|
NativeTouch(input);
|
2012-04-10 09:59:57 +00:00
|
|
|
}
|
2013-07-14 11:51:30 +00:00
|
|
|
break;
|
|
|
|
case SDL_MOUSEBUTTONUP:
|
2013-07-08 09:03:14 +00:00
|
|
|
switch (event.button.button) {
|
|
|
|
case SDL_BUTTON_LEFT:
|
|
|
|
{
|
2017-03-15 04:09:43 +00:00
|
|
|
mouseDown = false;
|
2013-07-08 09:03:14 +00:00
|
|
|
TouchInput input;
|
|
|
|
input.x = mx;
|
|
|
|
input.y = my;
|
2014-07-20 20:20:09 +00:00
|
|
|
input.flags = TOUCH_UP | TOUCH_MOUSE;
|
2013-07-08 09:03:14 +00:00
|
|
|
input.id = 0;
|
|
|
|
NativeTouch(input);
|
2013-08-04 17:30:34 +00:00
|
|
|
KeyInput key(DEVICE_ID_MOUSE, NKCODE_EXT_MOUSEBUTTON_1, KEY_UP);
|
2013-07-09 14:33:05 +00:00
|
|
|
NativeKey(key);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SDL_BUTTON_RIGHT:
|
|
|
|
{
|
2013-08-04 17:30:34 +00:00
|
|
|
KeyInput key(DEVICE_ID_MOUSE, NKCODE_EXT_MOUSEBUTTON_2, KEY_UP);
|
2013-07-09 14:33:05 +00:00
|
|
|
NativeKey(key);
|
2013-07-08 09:03:14 +00:00
|
|
|
}
|
|
|
|
break;
|
2012-07-06 20:32:32 +00:00
|
|
|
}
|
2013-07-14 11:51:30 +00:00
|
|
|
break;
|
2013-11-22 00:59:18 +00:00
|
|
|
default:
|
2014-06-07 14:55:51 +00:00
|
|
|
#ifndef _WIN32
|
2016-07-09 07:15:11 +00:00
|
|
|
if (joystick) {
|
|
|
|
joystick->ProcessInput(event);
|
|
|
|
}
|
2014-06-07 14:55:51 +00:00
|
|
|
#endif
|
2013-11-22 12:19:32 +00:00
|
|
|
break;
|
2012-04-10 09:59:57 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-07 10:33:31 +00:00
|
|
|
if (g_QuitRequested)
|
2012-07-06 20:32:32 +00:00
|
|
|
break;
|
2015-09-06 18:14:00 +00:00
|
|
|
const uint8_t *keys = SDL_GetKeyboardState(NULL);
|
2017-03-15 05:01:18 +00:00
|
|
|
UpdateRunLoop();
|
2014-02-12 11:45:26 +00:00
|
|
|
if (g_QuitRequested)
|
|
|
|
break;
|
2014-05-30 15:21:43 +00:00
|
|
|
#if defined(PPSSPP) && !defined(MOBILE_DEVICE)
|
2014-06-22 08:34:22 +00:00
|
|
|
if (lastUIState != GetUIState()) {
|
|
|
|
lastUIState = GetUIState();
|
2013-11-05 02:58:30 +00:00
|
|
|
if (lastUIState == UISTATE_INGAME && g_Config.bFullScreen && !g_Config.bShowTouchControls)
|
|
|
|
SDL_ShowCursor(SDL_DISABLE);
|
|
|
|
if (lastUIState != UISTATE_INGAME && g_Config.bFullScreen)
|
|
|
|
SDL_ShowCursor(SDL_ENABLE);
|
|
|
|
}
|
|
|
|
#endif
|
2012-10-26 16:42:17 +00:00
|
|
|
|
2012-07-06 20:32:32 +00:00
|
|
|
if (framecount % 60 == 0) {
|
2012-10-31 11:12:24 +00:00
|
|
|
// glsl_refresh(); // auto-reloads modified GLSL shaders once per second.
|
2012-07-06 20:32:32 +00:00
|
|
|
}
|
2012-10-31 11:12:24 +00:00
|
|
|
|
2014-05-30 15:21:43 +00:00
|
|
|
#ifdef USING_EGL
|
2013-01-12 15:38:37 +00:00
|
|
|
eglSwapBuffers(g_eglDisplay, g_eglSurface);
|
|
|
|
#else
|
2016-01-01 11:14:09 +00:00
|
|
|
if (!keys[SDLK_TAB] || t - lastT >= 1.0/60.0) {
|
2014-09-01 13:46:14 +00:00
|
|
|
SDL_GL_SwapWindow(g_Screen);
|
2013-01-26 01:24:50 +00:00
|
|
|
lastT = t;
|
|
|
|
}
|
2013-01-12 15:38:37 +00:00
|
|
|
#endif
|
2014-01-03 14:15:35 +00:00
|
|
|
|
|
|
|
ToggleFullScreenIfFlagSet();
|
2012-07-06 20:32:32 +00:00
|
|
|
time_update();
|
2012-04-10 09:59:57 +00:00
|
|
|
t = time_now();
|
2012-07-06 20:32:32 +00:00
|
|
|
framecount++;
|
2012-04-10 09:59:57 +00:00
|
|
|
}
|
2014-05-30 15:29:00 +00:00
|
|
|
#ifndef _WIN32
|
2014-06-07 14:55:51 +00:00
|
|
|
delete joystick;
|
2014-05-30 15:29:00 +00:00
|
|
|
#endif
|
2015-12-26 03:39:52 +00:00
|
|
|
NativeShutdownGraphics();
|
2016-01-01 11:14:09 +00:00
|
|
|
graphicsContext->Shutdown();
|
2015-12-26 03:39:52 +00:00
|
|
|
NativeShutdown();
|
2017-03-11 11:54:13 +00:00
|
|
|
delete graphicsContext;
|
2012-07-06 20:32:32 +00:00
|
|
|
// Faster exit, thanks to the OS. Remove this if you want to debug shutdown
|
2012-10-31 11:12:24 +00:00
|
|
|
// The speed difference is only really noticable on Linux. On Windows you do notice it though
|
2014-05-30 15:21:43 +00:00
|
|
|
#ifndef MOBILE_DEVICE
|
2012-11-27 15:38:24 +00:00
|
|
|
exit(0);
|
|
|
|
#endif
|
2012-07-06 20:32:32 +00:00
|
|
|
SDL_PauseAudio(1);
|
|
|
|
SDL_CloseAudio();
|
2014-05-30 15:21:43 +00:00
|
|
|
#ifdef USING_EGL
|
2013-01-12 15:38:37 +00:00
|
|
|
EGL_Close();
|
|
|
|
#endif
|
2014-09-01 13:46:14 +00:00
|
|
|
SDL_GL_DeleteContext(glContext);
|
2012-04-10 09:59:57 +00:00
|
|
|
SDL_Quit();
|
2016-10-12 15:32:52 +00:00
|
|
|
#if PPSSPP_PLATFORM(RPI)
|
2014-02-09 22:31:31 +00:00
|
|
|
bcm_host_deinit();
|
|
|
|
#endif
|
|
|
|
|
2012-10-31 11:12:24 +00:00
|
|
|
exit(0);
|
2012-04-10 09:59:57 +00:00
|
|
|
return 0;
|
|
|
|
}
|