2012-04-10 10:03:30 +00:00
|
|
|
// PC implementation of the framework.
|
2012-04-10 09:59:57 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <Windows.h>
|
|
|
|
#include <shlobj.h>
|
|
|
|
#include <shlwapi.h>
|
|
|
|
#include <ShellAPI.h>
|
2012-04-15 22:35:11 +00:00
|
|
|
#else
|
|
|
|
#include <pwd.h>
|
2012-11-03 02:34:06 +00:00
|
|
|
#include <unistd.h>
|
2012-04-10 09:59:57 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <string>
|
2012-11-27 15:53:22 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include "SDL/SDL.h"
|
|
|
|
#include "SDL/SDL_timer.h"
|
|
|
|
#include "SDL/SDL_audio.h"
|
|
|
|
#include "SDL/SDL_video.h"
|
|
|
|
#else
|
2012-11-25 21:25:54 +00:00
|
|
|
#include "SDL.h"
|
|
|
|
#include "SDL_timer.h"
|
|
|
|
#include "SDL_audio.h"
|
|
|
|
#include "SDL_video.h"
|
2012-11-27 15:53:22 +00:00
|
|
|
#endif
|
2012-04-10 09:59:57 +00:00
|
|
|
#include "base/display.h"
|
|
|
|
#include "base/logging.h"
|
|
|
|
#include "base/timeutil.h"
|
2013-01-11 18:02:56 +00:00
|
|
|
#include "gfx_es2/gl_state.h"
|
2012-04-10 09:59:57 +00:00
|
|
|
#include "gfx_es2/glsl_program.h"
|
|
|
|
#include "file/zip_read.h"
|
|
|
|
#include "input/input_state.h"
|
|
|
|
#include "base/NativeApp.h"
|
2012-06-03 17:01:08 +00:00
|
|
|
#include "net/resolve.h"
|
2012-04-10 09:59:57 +00:00
|
|
|
|
2013-03-22 15:14:18 +00:00
|
|
|
|
|
|
|
#ifdef MAEMO
|
|
|
|
#define EGL
|
|
|
|
#endif
|
|
|
|
|
2013-01-12 15:38:37 +00:00
|
|
|
#ifdef PANDORA
|
2013-03-22 15:14:18 +00:00
|
|
|
#define EGL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef EGL
|
2013-01-12 15:38:37 +00:00
|
|
|
#include "EGL/egl.h"
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
#include "SDL_syswm.h"
|
2013-01-14 11:32:39 +00:00
|
|
|
SDL_Joystick *ljoy = NULL;
|
|
|
|
SDL_Joystick *rjoy = NULL;
|
2013-01-12 15:38:37 +00:00
|
|
|
|
|
|
|
EGLDisplay g_eglDisplay = NULL;
|
|
|
|
EGLContext g_eglContext = NULL;
|
|
|
|
EGLSurface g_eglSurface = NULL;
|
|
|
|
Display* g_Display = NULL;
|
2013-01-14 11:32:39 +00:00
|
|
|
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() {
|
2013-01-12 15:38:37 +00:00
|
|
|
if ((g_Display = XOpenDisplay(NULL)) == NULL)
|
|
|
|
EGL_ERROR("Unable to get display!", false);
|
|
|
|
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() {
|
2013-03-22 15:14:18 +00:00
|
|
|
EGLConfig g_eglConfig; //[1] = {NULL};
|
2013-01-12 15:38:37 +00:00
|
|
|
EGLint g_numConfigs = 0;
|
|
|
|
EGLint attrib_list[]= {
|
2013-03-22 15:14:18 +00:00
|
|
|
#ifdef PANDORA
|
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,
|
|
|
|
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
|
|
|
|
EGL_SAMPLE_BUFFERS, 0,
|
|
|
|
EGL_SAMPLES, 0,
|
2013-03-22 15:14:18 +00:00
|
|
|
#ifdef MAEMO
|
|
|
|
EGL_BUFFER_SIZE, 16,
|
|
|
|
#endif
|
2013-01-12 15:38:37 +00:00
|
|
|
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);
|
|
|
|
|
|
|
|
// Get the SDL window handle
|
|
|
|
SDL_SysWMinfo sysInfo; //Will hold our Window information
|
|
|
|
SDL_VERSION(&sysInfo.version); //Set SDL version
|
|
|
|
if(SDL_GetWMInfo(&sysInfo) <= 0)
|
|
|
|
{
|
|
|
|
printf("EGL ERROR: Unable to get SDL window handle: %s\n", SDL_GetError());
|
|
|
|
return 1;
|
|
|
|
}
|
2012-04-10 09:59:57 +00:00
|
|
|
|
2013-01-12 15:38:37 +00:00
|
|
|
g_Window = (NativeWindowType)sysInfo.info.x11.window;
|
|
|
|
g_eglSurface = eglCreateWindowSurface(g_eglDisplay, g_eglConfig, g_Window, 0);
|
|
|
|
if (g_eglSurface == EGL_NO_SURFACE) EGL_ERROR("Unable to create EGL surface!", true);
|
|
|
|
|
|
|
|
if (eglMakeCurrent(g_eglDisplay, g_eglSurface, g_eglSurface, g_eglContext) != EGL_TRUE)
|
|
|
|
EGL_ERROR("Unable to make GLES context current.", true);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EGL_Close() {
|
|
|
|
if (g_eglDisplay != NULL)
|
|
|
|
{
|
|
|
|
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) {
|
|
|
|
XCloseDisplay(g_Display);
|
|
|
|
g_Display = NULL;
|
|
|
|
}
|
|
|
|
g_eglSurface = NULL;
|
|
|
|
g_eglContext = NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// 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
|
|
|
}
|
|
|
|
|
|
|
|
void ShowAd(int x, int y, bool center_x) {
|
|
|
|
// Ignore ads on PC
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2012-12-01 09:35:55 +00:00
|
|
|
void System_InputBox(const char *title, const char *defaultValue) {
|
|
|
|
// Stub
|
|
|
|
NativeMessageReceived((std::string("INPUTBOX:") + title).c_str(), "TestFile");
|
|
|
|
}
|
|
|
|
|
2012-04-10 09:59:57 +00:00
|
|
|
void LaunchBrowser(const char *url)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
ShellExecute(NULL, "open", url, NULL, NULL, SW_SHOWNORMAL);
|
|
|
|
#else
|
2012-10-31 13:01:32 +00:00
|
|
|
ILOG("Would have gone to %s but LaunchBrowser is not implemented on this platform", url);
|
2012-04-10 09:59:57 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void LaunchMarket(const char *url)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
ShellExecute(NULL, "open", url, NULL, NULL, SW_SHOWNORMAL);
|
|
|
|
#else
|
2012-10-31 13:01:32 +00:00
|
|
|
ILOG("Would have gone to %s but LaunchMarket is not implemented on this platform", url);
|
2012-04-10 09:59:57 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void LaunchEmail(const char *email_address)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
ShellExecute(NULL, "open", (std::string("mailto:") + email_address).c_str(), NULL, NULL, SW_SHOWNORMAL);
|
|
|
|
#else
|
2012-10-31 13:01:32 +00:00
|
|
|
ILOG("Would have opened your email client for %s but LaunchEmail is not implemented on this platform", email_address);
|
2012-04-10 09:59:57 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-03-30 05:20:21 +00:00
|
|
|
InputState input_state;
|
|
|
|
|
2012-10-28 10:37:10 +00:00
|
|
|
const int buttonMappings[14] = {
|
2013-01-12 15:38:37 +00:00
|
|
|
#ifdef PANDORA
|
|
|
|
SDLK_PAGEDOWN, //X => cross
|
|
|
|
SDLK_END, //B => circle
|
|
|
|
SDLK_HOME, //A => box
|
|
|
|
SDLK_PAGEUP, //Y => triangle
|
|
|
|
SDLK_RSHIFT, //LBUMPER
|
|
|
|
SDLK_RCTRL, //RBUMPER
|
|
|
|
SDLK_LALT, //START
|
|
|
|
SDLK_LCTRL, //SELECT
|
|
|
|
#else
|
|
|
|
SDLK_z, //A
|
|
|
|
SDLK_x, //B
|
|
|
|
SDLK_a, //X
|
|
|
|
SDLK_s, //Y
|
|
|
|
SDLK_w, //LBUMPER
|
|
|
|
SDLK_q, //RBUMPER
|
|
|
|
SDLK_SPACE, //START
|
|
|
|
SDLK_v, //SELECT
|
|
|
|
#endif
|
|
|
|
SDLK_UP, //UP
|
|
|
|
SDLK_DOWN, //DOWN
|
|
|
|
SDLK_LEFT, //LEFT
|
|
|
|
SDLK_RIGHT, //RIGHT
|
|
|
|
SDLK_m, //MENU
|
|
|
|
SDLK_BACKSPACE, //BACK
|
2012-04-10 09:59:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void SimulateGamepad(const uint8 *keys, InputState *input) {
|
2012-07-06 20:32:32 +00:00
|
|
|
input->pad_buttons = 0;
|
|
|
|
input->pad_lstick_x = 0;
|
|
|
|
input->pad_lstick_y = 0;
|
|
|
|
input->pad_rstick_x = 0;
|
|
|
|
input->pad_rstick_y = 0;
|
2012-10-28 10:37:10 +00:00
|
|
|
for (int b = 0; b < 14; b++) {
|
2012-04-10 09:59:57 +00:00
|
|
|
if (keys[buttonMappings[b]])
|
|
|
|
input->pad_buttons |= (1<<b);
|
|
|
|
}
|
|
|
|
|
2013-01-12 15:38:37 +00:00
|
|
|
#ifdef PANDORA
|
2013-01-14 11:32:39 +00:00
|
|
|
if ((ljoy)||(rjoy)) {
|
|
|
|
SDL_JoystickUpdate();
|
|
|
|
if (ljoy) {
|
|
|
|
input->pad_lstick_x = SDL_JoystickGetAxis(ljoy, 0) / 32768.0f;
|
|
|
|
input->pad_lstick_y = SDL_JoystickGetAxis(ljoy, 1) / 32768.0f;
|
|
|
|
}
|
|
|
|
if (rjoy) {
|
|
|
|
input->pad_rstick_x = SDL_JoystickGetAxis(rjoy, 0) / 32768.0f;
|
|
|
|
input->pad_rstick_y = SDL_JoystickGetAxis(rjoy, 1) / 32768.0f;
|
|
|
|
}
|
|
|
|
}
|
2013-01-12 15:38:37 +00:00
|
|
|
#else
|
2012-10-31 13:01:32 +00:00
|
|
|
if (keys[SDLK_i])
|
2012-10-31 11:12:24 +00:00
|
|
|
input->pad_lstick_y=1;
|
2012-07-26 15:24:47 +00:00
|
|
|
else if (keys[SDLK_k])
|
2012-10-31 13:01:32 +00:00
|
|
|
input->pad_lstick_y=-1;
|
|
|
|
if (keys[SDLK_j])
|
2012-10-31 11:12:24 +00:00
|
|
|
input->pad_lstick_x=-1;
|
2012-07-26 15:24:47 +00:00
|
|
|
else if (keys[SDLK_l])
|
2012-10-31 13:01:32 +00:00
|
|
|
input->pad_lstick_x=1;
|
|
|
|
if (keys[SDLK_KP8])
|
2012-10-31 11:12:24 +00:00
|
|
|
input->pad_rstick_y=1;
|
2012-07-26 15:24:47 +00:00
|
|
|
else if (keys[SDLK_KP2])
|
2012-10-31 13:01:32 +00:00
|
|
|
input->pad_rstick_y=-1;
|
|
|
|
if (keys[SDLK_KP4])
|
2012-10-31 11:12:24 +00:00
|
|
|
input->pad_rstick_x=-1;
|
2012-07-26 15:24:47 +00:00
|
|
|
else if (keys[SDLK_KP6])
|
2012-10-31 13:01:32 +00:00
|
|
|
input->pad_rstick_x=1;
|
2013-01-12 15:38:37 +00:00
|
|
|
#endif
|
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
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#undef main
|
|
|
|
#endif
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
std::string app_name;
|
|
|
|
std::string app_name_nice;
|
2012-04-10 13:44:58 +00:00
|
|
|
|
2012-07-08 22:43:04 +00:00
|
|
|
float zoom = 1.0f;
|
2012-10-31 11:12:24 +00:00
|
|
|
bool tablet = false;
|
2012-11-27 15:38:24 +00:00
|
|
|
bool aspect43 = false;
|
2012-07-06 20:32:32 +00:00
|
|
|
const char *zoomenv = getenv("ZOOM");
|
2012-10-31 11:12:24 +00:00
|
|
|
const char *tabletenv = getenv("TABLET");
|
2012-11-27 15:38:24 +00:00
|
|
|
const char *ipad = getenv("IPAD");
|
|
|
|
|
2012-07-06 20:32:32 +00:00
|
|
|
if (zoomenv) {
|
|
|
|
zoom = atof(zoomenv);
|
|
|
|
}
|
2012-10-31 13:01:32 +00:00
|
|
|
if (tabletenv) {
|
2012-12-01 09:35:55 +00:00
|
|
|
tablet = atoi(tabletenv) ? true : false;
|
2012-10-31 13:01:32 +00:00
|
|
|
}
|
2012-11-27 15:38:24 +00:00
|
|
|
if (ipad) aspect43 = true;
|
|
|
|
|
2012-10-31 11:12:24 +00:00
|
|
|
bool landscape;
|
|
|
|
NativeGetAppInfo(&app_name, &app_name_nice, &landscape);
|
2012-11-21 14:30:43 +00:00
|
|
|
|
2012-11-27 15:38:24 +00:00
|
|
|
// Change these to temporarily test other resolutions.
|
|
|
|
aspect43 = false;
|
2012-11-21 14:30:43 +00:00
|
|
|
tablet = false;
|
2012-11-27 15:38:24 +00:00
|
|
|
float density = 1.0f;
|
2012-12-01 09:35:55 +00:00
|
|
|
//zoom = 1.5f;
|
2012-11-27 15:38:24 +00:00
|
|
|
|
2012-10-31 11:12:24 +00:00
|
|
|
if (landscape) {
|
|
|
|
if (tablet) {
|
|
|
|
pixel_xres = 1280 * zoom;
|
|
|
|
pixel_yres = 800 * zoom;
|
2012-11-27 15:38:24 +00:00
|
|
|
} else if (aspect43) {
|
|
|
|
pixel_xres = 1024 * zoom;
|
|
|
|
pixel_yres = 768 * zoom;
|
2012-10-31 11:12:24 +00:00
|
|
|
} else {
|
|
|
|
pixel_xres = 800 * zoom;
|
|
|
|
pixel_yres = 480 * zoom;
|
|
|
|
}
|
2012-04-10 13:44:58 +00:00
|
|
|
} else {
|
2012-10-31 11:12:24 +00:00
|
|
|
// PC development hack for more space
|
2012-07-15 15:04:27 +00:00
|
|
|
//pixel_xres = 1580 * zoom;
|
|
|
|
//pixel_yres = 1000 * zoom;
|
2012-10-31 11:12:24 +00:00
|
|
|
if (tablet) {
|
|
|
|
pixel_xres = 800 * zoom;
|
|
|
|
pixel_yres = 1280 * zoom;
|
2012-11-27 15:38:24 +00:00
|
|
|
} else if (aspect43) {
|
|
|
|
pixel_xres = 768 * zoom;
|
|
|
|
pixel_yres = 1024 * zoom;
|
2012-11-20 22:35:40 +00:00
|
|
|
} else {
|
|
|
|
pixel_xres = 480 * zoom;
|
|
|
|
pixel_yres = 800 * zoom;
|
2012-10-31 11:12:24 +00:00
|
|
|
}
|
2012-04-10 13:44:58 +00:00
|
|
|
}
|
2012-04-10 09:59:57 +00:00
|
|
|
|
2012-07-06 20:32:32 +00:00
|
|
|
net::Init();
|
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...)
|
|
|
|
// Requires SDL 2.0 (which is even more sad, as that hasn't been released yet)
|
|
|
|
//SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3);
|
|
|
|
//SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 2);
|
|
|
|
#endif
|
2012-06-03 17:01:08 +00:00
|
|
|
|
2012-04-10 09:59:57 +00:00
|
|
|
if (SDL_Init(SDL_INIT_VIDEO) < 0) {
|
|
|
|
fprintf(stderr, "Unable to initialize SDL: %s\n", SDL_GetError());
|
|
|
|
return 1;
|
|
|
|
}
|
2013-03-22 15:14:18 +00:00
|
|
|
#ifdef 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
|
|
|
|
|
|
|
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_DOUBLEBUFFER, 1);
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_STENCIL_SIZE, 8);
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_SWAP_CONTROL, 1);
|
|
|
|
|
2013-01-12 15:38:37 +00:00
|
|
|
if (SDL_SetVideoMode(pixel_xres, pixel_yres, 0,
|
|
|
|
#ifdef USING_GLES2
|
|
|
|
SDL_SWSURFACE | SDL_FULLSCREEN
|
|
|
|
#else
|
|
|
|
SDL_OPENGL
|
|
|
|
#endif
|
|
|
|
) == NULL) {
|
2012-04-10 09:59:57 +00:00
|
|
|
fprintf(stderr, "SDL SetVideoMode failed: Unable to create OpenGL screen: %s\n", SDL_GetError());
|
|
|
|
SDL_Quit();
|
|
|
|
return(2);
|
|
|
|
}
|
2013-03-22 15:14:18 +00:00
|
|
|
#ifdef EGL
|
2013-01-12 15:38:37 +00:00
|
|
|
EGL_Init();
|
|
|
|
#endif
|
2012-11-07 17:29:35 +00:00
|
|
|
|
2012-04-10 09:59:57 +00:00
|
|
|
SDL_WM_SetCaption(app_name_nice.c_str(), NULL);
|
2013-03-25 18:45:39 +00:00
|
|
|
#ifdef MAEMO
|
|
|
|
SDL_ShowCursor(SDL_DISABLE);
|
|
|
|
#endif
|
|
|
|
|
2012-04-10 09:59:57 +00:00
|
|
|
|
2013-01-12 15:38:37 +00:00
|
|
|
#ifndef USING_GLES2
|
2012-04-10 09:59:57 +00:00
|
|
|
if (GLEW_OK != glewInit()) {
|
|
|
|
printf("Failed to initialize glew!\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2012-10-31 11:12:24 +00:00
|
|
|
char path[512];
|
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
|
2012-10-31 11:12:24 +00:00
|
|
|
NativeInit(argc, (const char **)argv, path, "D:\\", "BADCOFFEE");
|
2012-09-28 08:01:01 +00:00
|
|
|
#else
|
2012-08-31 11:11:40 +00:00
|
|
|
NativeInit(argc, (const char **)argv, path, "/tmp", "BADCOFFEE");
|
2012-09-28 08:01:01 +00:00
|
|
|
#endif
|
2012-07-15 15:04:27 +00:00
|
|
|
|
2012-10-31 11:12:24 +00:00
|
|
|
dp_xres = (float)pixel_xres * density / zoom;
|
|
|
|
dp_yres = (float)pixel_yres * density / zoom;
|
2012-11-21 14:30:43 +00:00
|
|
|
pixel_in_dps = (float)pixel_xres / dp_xres;
|
2012-07-15 15:04:27 +00:00
|
|
|
|
2012-07-06 20:32:32 +00:00
|
|
|
NativeInitGraphics();
|
2013-01-11 18:02:56 +00:00
|
|
|
glstate.viewport.set(0, 0, pixel_xres, pixel_yres);
|
2012-07-06 20:32:32 +00:00
|
|
|
|
2012-10-31 11:12:24 +00:00
|
|
|
float dp_xscale = (float)dp_xres / pixel_xres;
|
|
|
|
float dp_yscale = (float)dp_yres / pixel_yres;
|
2012-07-15 15:04:27 +00:00
|
|
|
|
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);
|
2012-07-15 15:04:27 +00:00
|
|
|
|
2012-07-06 20:32:32 +00:00
|
|
|
SDL_AudioSpec fmt;
|
|
|
|
fmt.freq = 44100;
|
|
|
|
fmt.format = AUDIO_S16;
|
|
|
|
fmt.channels = 2;
|
|
|
|
fmt.samples = 1024;
|
|
|
|
fmt.callback = &mixaudio;
|
|
|
|
fmt.userdata = (void *)0;
|
|
|
|
|
|
|
|
if (SDL_OpenAudio(&fmt, NULL) < 0) {
|
|
|
|
ELOG("Failed to open audio: %s", SDL_GetError());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Audio must be unpaused _after_ NativeInit()
|
|
|
|
SDL_PauseAudio(0);
|
2013-01-14 11:32:39 +00:00
|
|
|
#ifdef PANDORA
|
|
|
|
// Joysticks init, we the nubs if setup as Joystick
|
|
|
|
int numjoys = SDL_NumJoysticks();
|
|
|
|
if (numjoys>0)
|
|
|
|
for (int i=0; i<numjoys; i++)
|
|
|
|
{
|
|
|
|
if (strncmp(SDL_JoystickName(i), "nub0", 4) == 0)
|
|
|
|
ljoy=SDL_JoystickOpen(i);
|
|
|
|
if (strncmp(SDL_JoystickName(i), "nub1", 4) == 0)
|
|
|
|
rjoy=SDL_JoystickOpen(i);
|
|
|
|
}
|
|
|
|
#endif
|
2012-07-06 20:32:32 +00:00
|
|
|
|
|
|
|
int framecount = 0;
|
2012-05-06 21:21:26 +00:00
|
|
|
bool nextFrameMD = 0;
|
2013-01-26 01:24:50 +00:00
|
|
|
float t = 0, lastT = 0;
|
2012-04-10 09:59:57 +00:00
|
|
|
while (true) {
|
2012-07-06 20:32:32 +00:00
|
|
|
input_state.accelerometer_valid = false;
|
|
|
|
input_state.mouse_valid = true;
|
2012-07-15 15:04:27 +00:00
|
|
|
int quitRequested = 0;
|
2012-10-31 11:12:24 +00:00
|
|
|
|
|
|
|
SDL_Event event;
|
2012-04-10 09:59:57 +00:00
|
|
|
while (SDL_PollEvent(&event)) {
|
2012-10-31 11:12:24 +00:00
|
|
|
float mx = event.motion.x * dp_xscale;
|
|
|
|
float my = event.motion.y * dp_yscale;
|
2012-07-15 15:04:27 +00:00
|
|
|
|
2012-04-10 09:59:57 +00:00
|
|
|
if (event.type == SDL_QUIT) {
|
2012-07-15 15:04:27 +00:00
|
|
|
quitRequested = 1;
|
2012-04-10 09:59:57 +00:00
|
|
|
} else if (event.type == SDL_KEYDOWN) {
|
|
|
|
if (event.key.keysym.sym == SDLK_ESCAPE) {
|
2012-07-15 15:04:27 +00:00
|
|
|
quitRequested = 1;
|
2012-04-10 09:59:57 +00:00
|
|
|
}
|
|
|
|
} else if (event.type == SDL_MOUSEMOTION) {
|
2012-07-26 15:24:47 +00:00
|
|
|
input_state.pointer_x[0] = mx;
|
|
|
|
input_state.pointer_y[0] = my;
|
2012-10-31 11:12:24 +00:00
|
|
|
NativeTouch(0, mx, my, 0, TOUCH_MOVE);
|
2012-04-10 09:59:57 +00:00
|
|
|
} else if (event.type == SDL_MOUSEBUTTONDOWN) {
|
|
|
|
if (event.button.button == SDL_BUTTON_LEFT) {
|
2012-07-06 20:32:32 +00:00
|
|
|
//input_state.mouse_buttons_down = 1;
|
2012-07-26 15:24:47 +00:00
|
|
|
input_state.pointer_down[0] = true;
|
2012-05-06 21:21:26 +00:00
|
|
|
nextFrameMD = true;
|
2012-10-31 11:12:24 +00:00
|
|
|
NativeTouch(0, mx, my, 0, TOUCH_DOWN);
|
2012-04-10 09:59:57 +00:00
|
|
|
}
|
|
|
|
} else if (event.type == SDL_MOUSEBUTTONUP) {
|
|
|
|
if (event.button.button == SDL_BUTTON_LEFT) {
|
2012-07-26 15:24:47 +00:00
|
|
|
input_state.pointer_down[0] = false;
|
2012-07-06 20:32:32 +00:00
|
|
|
nextFrameMD = false;
|
|
|
|
//input_state.mouse_buttons_up = 1;
|
2012-10-31 11:12:24 +00:00
|
|
|
NativeTouch(0, mx, my, 0, TOUCH_UP);
|
2012-07-06 20:32:32 +00:00
|
|
|
}
|
2012-04-10 09:59:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-15 15:04:27 +00:00
|
|
|
if (quitRequested)
|
2012-07-06 20:32:32 +00:00
|
|
|
break;
|
2012-05-06 21:21:26 +00:00
|
|
|
|
2012-07-15 15:04:27 +00:00
|
|
|
const uint8 *keys = (const uint8 *)SDL_GetKeyState(NULL);
|
2012-07-06 20:32:32 +00:00
|
|
|
if (keys[SDLK_ESCAPE])
|
|
|
|
break;
|
2012-04-10 09:59:57 +00:00
|
|
|
SimulateGamepad(keys, &input_state);
|
2012-07-06 20:32:32 +00:00
|
|
|
UpdateInputState(&input_state);
|
|
|
|
NativeUpdate(input_state);
|
|
|
|
NativeRender();
|
2012-10-26 16:42:17 +00:00
|
|
|
|
2012-10-31 11:12:24 +00:00
|
|
|
EndInputState(&input_state);
|
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
|
|
|
|
2013-03-22 15:14:18 +00:00
|
|
|
#ifdef EGL
|
2013-01-12 15:38:37 +00:00
|
|
|
eglSwapBuffers(g_eglDisplay, g_eglSurface);
|
|
|
|
#else
|
2013-01-26 01:24:50 +00:00
|
|
|
if (!keys[SDLK_TAB] || t - lastT >= 1.0/60.0)
|
|
|
|
{
|
|
|
|
SDL_GL_SwapBuffers();
|
|
|
|
lastT = t;
|
|
|
|
}
|
2013-01-12 15:38:37 +00:00
|
|
|
#endif
|
2012-04-10 09:59:57 +00:00
|
|
|
|
2012-07-15 23:10:03 +00:00
|
|
|
// Simple frame rate limiting
|
2013-01-10 10:11:32 +00:00
|
|
|
// while (time_now() < t + 1.0f/60.0f) {
|
|
|
|
// sleep_ms(0);
|
|
|
|
// time_update();
|
|
|
|
// }
|
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
|
|
|
}
|
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
|
2012-11-27 15:38:24 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
exit(0);
|
|
|
|
#endif
|
2012-07-06 20:32:32 +00:00
|
|
|
NativeShutdownGraphics();
|
|
|
|
SDL_PauseAudio(1);
|
|
|
|
SDL_CloseAudio();
|
2012-11-21 14:30:43 +00:00
|
|
|
NativeShutdown();
|
2013-03-22 15:14:18 +00:00
|
|
|
#ifdef EGL
|
2013-01-12 15:38:37 +00:00
|
|
|
EGL_Close();
|
|
|
|
#endif
|
2012-04-10 09:59:57 +00:00
|
|
|
SDL_Quit();
|
2012-10-31 11:12:24 +00:00
|
|
|
net::Shutdown();
|
|
|
|
exit(0);
|
2012-04-10 09:59:57 +00:00
|
|
|
return 0;
|
|
|
|
}
|