2008-12-18 10:30:20 +00:00
|
|
|
#include "SDLWindow.h"
|
|
|
|
|
|
|
|
void SDLWindow::SwapBuffers() {
|
2009-01-29 23:35:31 +00:00
|
|
|
SDL_GL_SwapBuffers();
|
2008-12-18 10:30:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SDLWindow::SetWindowText(const char *text) {
|
2009-01-29 23:35:31 +00:00
|
|
|
SDL_WM_SetCaption(text, NULL);
|
2008-12-18 10:30:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SDLWindow::PeekMessages() {
|
2009-01-29 23:35:31 +00:00
|
|
|
// TODO implement
|
|
|
|
return false;
|
2008-12-18 10:30:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SDLWindow::Update() {
|
|
|
|
|
2009-01-29 23:35:31 +00:00
|
|
|
SDL_Surface *surface = SDL_GetVideoSurface();
|
|
|
|
if (!surface) {
|
|
|
|
PanicAlert("Can't get surface to update");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//SetSize(surface->w, surface->h);
|
|
|
|
updateDim();
|
|
|
|
|
2008-12-18 10:30:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SDLWindow::MakeCurrent() {
|
2009-01-29 23:35:31 +00:00
|
|
|
/* Note: The reason for having the call to SDL_SetVideoMode in here instead
|
|
|
|
of in OpenGL_Create() is that "make current" is part of the video
|
|
|
|
mode setting and is not available as a separate call in SDL. We
|
|
|
|
have to do "make current" here because this method runs in the CPU
|
|
|
|
thread while OpenGL_Create() runs in a diferent thread and "make
|
|
|
|
current" has to be done in the same thread that will be making
|
|
|
|
calls to OpenGL. */
|
|
|
|
|
|
|
|
// Fetch video info.
|
|
|
|
const SDL_VideoInfo *videoInfo = SDL_GetVideoInfo();
|
|
|
|
if (!videoInfo) {
|
|
|
|
PanicAlert("Couldn't get video info");
|
|
|
|
SDL_Quit();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// Compute video mode flags.
|
|
|
|
const int videoFlags = SDL_OPENGL
|
|
|
|
| ( videoInfo->hw_available ? SDL_HWSURFACE : SDL_SWSURFACE )
|
|
|
|
| ( g_Config.bFullscreen ? SDL_FULLSCREEN : 0);
|
|
|
|
// Set vide mode.
|
|
|
|
// TODO: Can we use this field or is a separate field needed?
|
|
|
|
SDL_Surface *screen = SDL_SetVideoMode(GetXwin(), GetYwin(),
|
|
|
|
0, videoFlags);
|
|
|
|
if (!screen) {
|
|
|
|
PanicAlert("Couldn't set video mode");
|
|
|
|
SDL_Quit();
|
|
|
|
return false;
|
|
|
|
}
|
2008-12-18 10:30:20 +00:00
|
|
|
|
2009-01-29 23:35:31 +00:00
|
|
|
return true;
|
2008-12-18 10:30:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SDLWindow::~SDLWindow() {
|
2009-01-29 23:35:31 +00:00
|
|
|
SDL_Quit();
|
2008-12-18 10:30:20 +00:00
|
|
|
}
|
|
|
|
|
2009-01-06 20:54:47 +00:00
|
|
|
SDLWindow::SDLWindow() : GLWindow() {
|
2008-12-18 10:30:20 +00:00
|
|
|
|
2009-01-29 23:35:31 +00:00
|
|
|
//init sdl video
|
|
|
|
if (SDL_Init(SDL_INIT_VIDEO) < 0) {
|
|
|
|
PanicAlert("Failed to init SDL: %s", SDL_GetError());
|
|
|
|
SDL_Quit();
|
|
|
|
//return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup ogl to use double buffering
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
|
2008-12-18 10:30:20 +00:00
|
|
|
}
|