mirror of https://github.com/bsnes-emu/bsnes.git
141 lines
3.3 KiB
C++
Executable File
141 lines
3.3 KiB
C++
Executable File
#include "opengl/opengl.hpp"
|
|
|
|
namespace ruby {
|
|
|
|
struct pVideoWGL : OpenGL {
|
|
BOOL (APIENTRY* glSwapInterval)(int);
|
|
|
|
HDC display;
|
|
HGLRC wglcontext;
|
|
HWND window;
|
|
HINSTANCE glwindow;
|
|
|
|
struct {
|
|
HWND handle;
|
|
bool synchronize;
|
|
unsigned filter;
|
|
string shader;
|
|
} settings;
|
|
|
|
bool cap(const string& name) {
|
|
if(name == Video::Handle) return true;
|
|
if(name == Video::Synchronize) return true;
|
|
if(name == Video::Filter) return true;
|
|
if(name == Video::Shader) return true;
|
|
return false;
|
|
}
|
|
|
|
any get(const string& name) {
|
|
if(name == Video::Handle) return (uintptr_t)settings.handle;
|
|
if(name == Video::Synchronize) return settings.synchronize;
|
|
if(name == Video::Filter) return settings.filter;
|
|
return false;
|
|
}
|
|
|
|
bool set(const string& name, const any& value) {
|
|
if(name == Video::Handle) {
|
|
settings.handle = (HWND)any_cast<uintptr_t>(value);
|
|
return true;
|
|
}
|
|
|
|
if(name == Video::Synchronize) {
|
|
if(settings.synchronize != any_cast<bool>(value)) {
|
|
settings.synchronize = any_cast<bool>(value);
|
|
if(wglcontext) {
|
|
init();
|
|
OpenGL::shader(settings.shader);
|
|
if(settings.shader.empty()) OpenGL::filter = settings.filter ? GL_LINEAR : GL_NEAREST;
|
|
}
|
|
}
|
|
}
|
|
|
|
if(name == Video::Filter) {
|
|
settings.filter = any_cast<unsigned>(value);
|
|
if(settings.shader.empty()) OpenGL::filter = settings.filter ? GL_LINEAR : GL_NEAREST;
|
|
return true;
|
|
}
|
|
|
|
if(name == Video::Shader) {
|
|
settings.shader = any_cast<const char*>(value);
|
|
OpenGL::shader(settings.shader);
|
|
if(settings.shader.empty()) OpenGL::filter = settings.filter ? GL_LINEAR : GL_NEAREST;
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool lock(uint32_t*& data, unsigned& pitch, unsigned width, unsigned height) {
|
|
OpenGL::size(width, height);
|
|
return OpenGL::lock(data, pitch);
|
|
}
|
|
|
|
void unlock() {
|
|
}
|
|
|
|
void clear() {
|
|
OpenGL::clear();
|
|
SwapBuffers(display);
|
|
}
|
|
|
|
void refresh() {
|
|
RECT rc;
|
|
GetClientRect(settings.handle, &rc);
|
|
outputWidth = rc.right - rc.left, outputHeight = rc.bottom - rc.top;
|
|
OpenGL::refresh();
|
|
SwapBuffers(display);
|
|
}
|
|
|
|
bool init() {
|
|
term();
|
|
|
|
GLuint pixel_format;
|
|
PIXELFORMATDESCRIPTOR pfd;
|
|
memset(&pfd, 0, sizeof(PIXELFORMATDESCRIPTOR));
|
|
pfd.nSize = sizeof(PIXELFORMATDESCRIPTOR);
|
|
pfd.nVersion = 1;
|
|
pfd.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER;
|
|
pfd.iPixelType = PFD_TYPE_RGBA;
|
|
|
|
display = GetDC(settings.handle);
|
|
pixel_format = ChoosePixelFormat(display, &pfd);
|
|
SetPixelFormat(display, pixel_format, &pfd);
|
|
|
|
wglcontext = wglCreateContext(display);
|
|
wglMakeCurrent(display, wglcontext);
|
|
|
|
OpenGL::init();
|
|
|
|
//vertical synchronization
|
|
if(!glSwapInterval) glSwapInterval = (BOOL (APIENTRY*)(int))glGetProcAddress("wglSwapIntervalEXT");
|
|
if( glSwapInterval) glSwapInterval(settings.synchronize);
|
|
|
|
return true;
|
|
}
|
|
|
|
void term() {
|
|
OpenGL::term();
|
|
|
|
if(wglcontext) {
|
|
wglDeleteContext(wglcontext);
|
|
wglcontext = 0;
|
|
}
|
|
}
|
|
|
|
pVideoWGL() : glSwapInterval(0) {
|
|
settings.handle = 0;
|
|
settings.synchronize = false;
|
|
settings.filter = 0;
|
|
|
|
window = 0;
|
|
wglcontext = 0;
|
|
glwindow = 0;
|
|
}
|
|
|
|
~pVideoWGL() { term(); }
|
|
};
|
|
|
|
DeclareVideo(WGL)
|
|
|
|
};
|