2012-09-10 18:48:00 +00:00
|
|
|
#include "Renderer.h"
|
|
|
|
#include <iostream>
|
|
|
|
#include "platform.h"
|
|
|
|
#include GLHEADER
|
2013-10-08 21:31:29 +00:00
|
|
|
#include "resources/Font.h"
|
2013-05-13 19:53:28 +00:00
|
|
|
#include <SDL.h>
|
2013-01-04 23:31:51 +00:00
|
|
|
#include "Log.h"
|
2013-05-16 19:26:19 +00:00
|
|
|
#include "ImageIO.h"
|
|
|
|
#include "../data/Resources.h"
|
2013-06-17 19:01:03 +00:00
|
|
|
#include "Settings.h"
|
2013-05-13 19:53:28 +00:00
|
|
|
|
2013-09-28 01:17:41 +00:00
|
|
|
#ifdef USE_OPENGL_ES
|
|
|
|
#define glOrtho glOrthof
|
|
|
|
#endif
|
|
|
|
|
2012-09-10 18:48:00 +00:00
|
|
|
namespace Renderer
|
|
|
|
{
|
2013-05-24 13:08:53 +00:00
|
|
|
static bool initialCursorState;
|
|
|
|
|
2012-09-16 19:18:11 +00:00
|
|
|
unsigned int display_width = 0;
|
|
|
|
unsigned int display_height = 0;
|
|
|
|
|
|
|
|
unsigned int getScreenWidth() { return display_width; }
|
|
|
|
unsigned int getScreenHeight() { return display_height; }
|
2012-09-10 18:48:00 +00:00
|
|
|
|
2013-08-18 17:17:24 +00:00
|
|
|
SDL_Window* sdlWindow = NULL;
|
|
|
|
SDL_GLContext sdlContext = NULL;
|
2012-09-10 18:48:00 +00:00
|
|
|
|
2013-08-18 17:17:24 +00:00
|
|
|
bool createSurface()
|
2012-09-10 18:48:00 +00:00
|
|
|
{
|
2013-01-04 23:31:51 +00:00
|
|
|
LOG(LogInfo) << "Creating surface...";
|
2012-09-10 18:48:00 +00:00
|
|
|
|
2013-06-20 14:14:10 +00:00
|
|
|
if(SDL_Init(SDL_INIT_VIDEO) != 0)
|
2012-09-10 18:48:00 +00:00
|
|
|
{
|
2013-01-04 23:31:51 +00:00
|
|
|
LOG(LogError) << "Error initializing SDL!\n " << SDL_GetError();
|
2012-09-10 18:48:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
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, 16);
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
|
2013-10-24 16:43:54 +00:00
|
|
|
|
2014-03-19 20:03:23 +00:00
|
|
|
// multisample anti-aliasing
|
|
|
|
//SDL_GL_SetAttribute(SDL_GL_MULTISAMPLEBUFFERS, 1);
|
|
|
|
//SDL_GL_SetAttribute(SDL_GL_MULTISAMPLESAMPLES, 2);
|
|
|
|
|
2013-10-24 16:47:09 +00:00
|
|
|
#ifdef USE_OPENGL_ES
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 1);
|
|
|
|
#endif
|
2013-08-18 17:17:24 +00:00
|
|
|
//SDL_GL_SetSwapInterval(1); //0 for immediate updates, 1 for updates synchronized with the vertical retrace, -1 for late swap tearing
|
|
|
|
|
2013-08-21 20:59:11 +00:00
|
|
|
SDL_DisplayMode dispMode;
|
2013-09-28 01:17:41 +00:00
|
|
|
SDL_GetDesktopDisplayMode(0, &dispMode);
|
2013-08-21 20:59:11 +00:00
|
|
|
if(display_width == 0)
|
|
|
|
display_width = dispMode.w;
|
|
|
|
if(display_height == 0)
|
|
|
|
display_height = dispMode.h;
|
|
|
|
|
2013-08-18 17:17:24 +00:00
|
|
|
sdlWindow = SDL_CreateWindow("EmulationStation",
|
|
|
|
SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED,
|
|
|
|
display_width, display_height,
|
2014-03-08 19:00:18 +00:00
|
|
|
SDL_WINDOW_OPENGL | (Settings::getInstance()->getBool("Windowed") ? 0 : SDL_WINDOW_FULLSCREEN));
|
2012-09-10 18:48:00 +00:00
|
|
|
|
2013-08-18 17:17:24 +00:00
|
|
|
if(sdlWindow == NULL)
|
2012-09-10 18:48:00 +00:00
|
|
|
{
|
2014-06-10 17:36:03 +00:00
|
|
|
LOG(LogError) << "Error creating SDL window!\n\t" << SDL_GetError();
|
2012-09-10 18:48:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-08-18 17:17:24 +00:00
|
|
|
LOG(LogInfo) << "Created window successfully.";
|
|
|
|
|
|
|
|
//set an icon for the window
|
|
|
|
size_t width = 0;
|
|
|
|
size_t height = 0;
|
2014-05-28 21:43:23 +00:00
|
|
|
std::vector<unsigned char> rawData = ImageIO::loadFromMemoryRGBA32(window_icon_256_png_data, window_icon_256_png_size, width, height);
|
2013-08-18 17:17:24 +00:00
|
|
|
if (!rawData.empty())
|
|
|
|
{
|
2014-05-28 21:43:23 +00:00
|
|
|
ImageIO::flipPixelsVert(rawData.data(), width, height);
|
|
|
|
|
2013-08-18 17:17:24 +00:00
|
|
|
//SDL interprets each pixel as a 32-bit number, so our masks must depend on the endianness (byte order) of the machine
|
|
|
|
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
|
|
|
|
Uint32 rmask = 0xff000000; Uint32 gmask = 0x00ff0000; Uint32 bmask = 0x0000ff00; Uint32 amask = 0x000000ff;
|
|
|
|
#else
|
|
|
|
Uint32 rmask = 0x000000ff; Uint32 gmask = 0x0000ff00; Uint32 bmask = 0x00ff0000; Uint32 amask = 0xff000000;
|
|
|
|
#endif
|
|
|
|
//try creating SDL surface from logo data
|
|
|
|
SDL_Surface * logoSurface = SDL_CreateRGBSurfaceFrom((void *)rawData.data(), width, height, 32, width * 4, rmask, gmask, bmask, amask);
|
|
|
|
if (logoSurface != NULL)
|
|
|
|
{
|
|
|
|
SDL_SetWindowIcon(sdlWindow, logoSurface);
|
|
|
|
SDL_FreeSurface(logoSurface);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sdlContext = SDL_GL_CreateContext(sdlWindow);
|
|
|
|
|
2013-05-24 13:08:53 +00:00
|
|
|
//hide mouse cursor
|
2013-06-02 19:34:50 +00:00
|
|
|
initialCursorState = SDL_ShowCursor(0) == 1;
|
2013-05-24 13:08:53 +00:00
|
|
|
|
2012-09-10 18:48:00 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void swapBuffers()
|
|
|
|
{
|
2013-08-18 17:17:24 +00:00
|
|
|
SDL_GL_SwapWindow(sdlWindow);
|
2012-09-10 18:48:00 +00:00
|
|
|
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
|
|
|
}
|
|
|
|
|
|
|
|
void destroySurface()
|
|
|
|
{
|
2013-08-18 17:17:24 +00:00
|
|
|
SDL_GL_DeleteContext(sdlContext);
|
|
|
|
sdlContext = NULL;
|
|
|
|
|
|
|
|
SDL_DestroyWindow(sdlWindow);
|
|
|
|
sdlWindow = NULL;
|
2013-05-24 13:08:53 +00:00
|
|
|
|
|
|
|
//show mouse cursor
|
|
|
|
SDL_ShowCursor(initialCursorState);
|
|
|
|
|
2012-09-10 18:48:00 +00:00
|
|
|
SDL_Quit();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool init(int w, int h)
|
|
|
|
{
|
|
|
|
if(w)
|
|
|
|
display_width = w;
|
|
|
|
if(h)
|
|
|
|
display_height = h;
|
|
|
|
|
|
|
|
bool createdSurface = createSurface();
|
|
|
|
|
|
|
|
if(!createdSurface)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
glViewport(0, 0, display_width, display_height);
|
2013-07-10 11:29:43 +00:00
|
|
|
|
|
|
|
glMatrixMode(GL_PROJECTION);
|
2012-09-10 18:48:00 +00:00
|
|
|
glOrtho(0, display_width, display_height, 0, -1.0, 1.0);
|
2013-07-10 11:29:43 +00:00
|
|
|
glMatrixMode(GL_MODELVIEW);
|
2012-09-10 18:48:00 +00:00
|
|
|
glClearColor(1.0f, 1.0f, 1.0f, 1.0f);
|
|
|
|
|
2013-04-12 02:59:19 +00:00
|
|
|
onInit();
|
2013-04-10 17:29:07 +00:00
|
|
|
|
2012-09-10 18:48:00 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void deinit()
|
|
|
|
{
|
2013-04-12 02:59:19 +00:00
|
|
|
onDeinit();
|
2013-04-10 17:29:07 +00:00
|
|
|
|
2012-09-10 18:48:00 +00:00
|
|
|
destroySurface();
|
|
|
|
}
|
|
|
|
};
|