10 #include "../stdafx.h"
11 #include "../openttd.h"
12 #include "../gfx_func.h"
13 #include "../os/windows/win32.h"
15 #include "../blitter/factory.hpp"
16 #include "../core/geometry_func.hpp"
17 #include "../core/math_func.hpp"
18 #include "../core/random_func.hpp"
19 #include "../texteff.hpp"
20 #include "../thread.h"
21 #include "../progress.h"
22 #include "../window_gui.h"
23 #include "../window_func.h"
24 #include "../framerate_type.h"
28 #include <versionhelpers.h>
30 #include "../safeguards.h"
33 #ifndef MAPVK_VK_TO_CHAR
34 #define MAPVK_VK_TO_CHAR (2)
38 #define PM_QS_INPUT 0x20000
42 #define WM_DPICHANGED 0x02E0
45 bool _window_maximize;
51 bool VideoDriver_Win32Base::ClaimMousePointer()
53 MyShowCursor(
false,
true);
63 #define AS(x, z) {x, 0, z}
64 #define AM(x, y, z, w) {x, y - x, z}
68 AM(VK_PRIOR, VK_DOWN, WKC_PAGEUP, WKC_DOWN),
70 AM(
'A',
'Z',
'A',
'Z'),
71 AM(
'0',
'9',
'0',
'9'),
73 AS(VK_ESCAPE, WKC_ESC),
74 AS(VK_PAUSE, WKC_PAUSE),
75 AS(VK_BACK, WKC_BACKSPACE),
76 AM(VK_INSERT, VK_DELETE, WKC_INSERT, WKC_DELETE),
78 AS(VK_SPACE, WKC_SPACE),
79 AS(VK_RETURN, WKC_RETURN),
83 AM(VK_F1, VK_F12, WKC_F1, WKC_F12),
86 AM(VK_NUMPAD0, VK_NUMPAD9,
'0',
'9'),
87 AS(VK_DIVIDE, WKC_NUM_DIV),
88 AS(VK_MULTIPLY, WKC_NUM_MUL),
89 AS(VK_SUBTRACT, WKC_NUM_MINUS),
90 AS(VK_ADD, WKC_NUM_PLUS),
91 AS(VK_DECIMAL, WKC_NUM_DECIMAL),
107 static uint MapWindowsKey(uint sym)
112 for (map = _vk_mapping; map !=
endof(_vk_mapping); ++map) {
113 if ((uint)(sym - map->vk_from) <= map->vk_count) {
114 key = sym - map->vk_from + map->map_to;
119 if (GetAsyncKeyState(VK_SHIFT) < 0) key |= WKC_SHIFT;
120 if (GetAsyncKeyState(VK_CONTROL) < 0) key |= WKC_CTRL;
121 if (GetAsyncKeyState(VK_MENU) < 0) key |= WKC_ALT;
142 _fullscreen = full_screen;
164 if (settings.dmBitsPerPel == 8 && ChangeDisplaySettings(&
settings, CDS_FULLSCREEN | CDS_TEST) != DISP_CHANGE_SUCCESSFUL) {
169 if (ChangeDisplaySettings(&
settings, CDS_FULLSCREEN | CDS_TEST) != DISP_CHANGE_SUCCESSFUL) {
171 GetWindowRect(GetDesktopWindow(), &r);
174 if ((
int)
settings.dmPelsWidth != r.right - r.left || (
int)
settings.dmPelsHeight != r.bottom - r.top) {
179 if (ChangeDisplaySettings(&
settings, CDS_FULLSCREEN) != DISP_CHANGE_SUCCESSFUL) {
185 ChangeDisplaySettings(
nullptr, 0);
187 this->
width = _bck_resolution.width;
188 this->
height = _bck_resolution.height;
193 DWORD style, showstyle;
196 showstyle = SW_SHOWNORMAL;
202 style = WS_OVERLAPPEDWINDOW;
204 if (_window_maximize) showstyle = SW_SHOWMAXIMIZED;
208 AdjustWindowRect(&r, style, FALSE);
209 w = r.right - r.left;
210 h = r.bottom - r.top;
213 if (!_window_maximize && resize) SetWindowPos(this->
main_wnd, 0, 0, 0, w, h, SWP_NOACTIVATE | SWP_NOOWNERZORDER | SWP_NOZORDER | SWP_NOMOVE);
215 int x = (GetSystemMetrics(SM_CXSCREEN) - w) / 2;
216 int y = (GetSystemMetrics(SM_CYSCREEN) - h) / 2;
218 char window_title[64];
219 seprintf(window_title,
lastof(window_title),
"OpenTTD %s", _openttd_revision);
221 this->
main_wnd = CreateWindow(L
"OTTD",
OTTD2FS(window_title).c_str(), style, x, y, w, h, 0, 0, GetModuleHandle(
nullptr),
this);
223 ShowWindow(this->
main_wnd, showstyle);
236 static WChar prev_char = 0;
240 if (prev_char != 0)
Debug(driver, 1,
"Got two UTF-16 lead surrogates, dropping the first one");
241 prev_char = charcode;
246 if (prev_char != 0) {
250 Debug(driver, 1,
"Got an UTF-16 lead surrogate without a trail surrogate, dropping the lead surrogate");
263 return (_imm_props & IME_PROP_AT_CARET) && !(_imm_props & IME_PROP_SPECIAL_UI);
269 HIMC hIMC = ImmGetContext(hwnd);
272 cf.dwStyle = CFS_POINT;
277 cf.ptCurrentPos.x = _focused_window->
left + pt.x;
278 cf.ptCurrentPos.y = _focused_window->
top + pt.y;
280 cf.ptCurrentPos.x = 0;
281 cf.ptCurrentPos.y = 0;
283 ImmSetCompositionWindow(hIMC, &cf);
285 ImmReleaseContext(hwnd, hIMC);
291 HIMC hIMC = ImmGetContext(hwnd);
295 cf.dwStyle = CFS_EXCLUDE;
299 cf.ptCurrentPos.x = _focused_window->
left + pt.x;
300 cf.ptCurrentPos.y = _focused_window->
top + pt.y;
302 cf.rcArea.left = _focused_window->
left;
303 cf.rcArea.top = _focused_window->
top;
304 cf.rcArea.right = _focused_window->
left + _focused_window->
width;
305 cf.rcArea.bottom = _focused_window->
top + _focused_window->
height;
313 cf.ptCurrentPos.x = 0;
314 cf.ptCurrentPos.y = 0;
315 SetRectEmpty(&cf.rcArea);
317 ImmSetCandidateWindow(hIMC, &cf);
319 ImmReleaseContext(hwnd, hIMC);
325 HIMC hIMC = ImmGetContext(hwnd);
328 if (lParam & GCS_RESULTSTR) {
330 LONG len = ImmGetCompositionString(hIMC, GCS_RESULTSTR,
nullptr, 0);
331 wchar_t *str = (
wchar_t *)_alloca(len +
sizeof(
wchar_t));
332 len = ImmGetCompositionString(hIMC, GCS_RESULTSTR, str, len);
333 str[len /
sizeof(wchar_t)] =
'\0';
343 lParam &= ~(GCS_RESULTSTR | GCS_RESULTCLAUSE | GCS_RESULTREADCLAUSE | GCS_RESULTREADSTR);
348 LONG len = ImmGetCompositionString(hIMC, GCS_COMPSTR,
nullptr, 0);
349 wchar_t *str = (
wchar_t *)_alloca(len +
sizeof(
wchar_t));
350 len = ImmGetCompositionString(hIMC, GCS_COMPSTR, str, len);
351 str[len /
sizeof(wchar_t)] =
'\0';
354 static char utf8_buf[1024];
358 LONG caret_bytes = ImmGetCompositionString(hIMC, GCS_CURSORPOS,
nullptr, 0);
359 const char *caret = utf8_buf;
360 for (
const wchar_t *c = str; *c !=
'\0' && *caret !=
'\0' && caret_bytes > 0; c++, caret_bytes--) {
374 lParam &= ~(GCS_COMPSTR | GCS_COMPATTR | GCS_COMPCLAUSE | GCS_CURSORPOS | GCS_DELTASTART);
377 ImmReleaseContext(hwnd, hIMC);
379 return lParam != 0 ? DefWindowProc(hwnd, WM_IME_COMPOSITION, wParam, lParam) : 0;
385 HIMC hIMC = ImmGetContext(hwnd);
386 if (hIMC != NULL) ImmNotifyIME(hIMC, NI_COMPOSITIONSTR, CPS_CANCEL, 0);
387 ImmReleaseContext(hwnd, hIMC);
392 LRESULT CALLBACK WndProcGdi(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
394 static uint32 keycode = 0;
395 static bool console =
false;
401 SetWindowLongPtr(hwnd, GWLP_USERDATA, (LONG_PTR)((LPCREATESTRUCT)lParam)->lpCreateParams);
409 GetUpdateRect(hwnd, &r, FALSE);
410 video_driver->
MakeDirty(r.left, r.top, r.right - r.left, r.bottom - r.top);
412 ValidateRect(hwnd,
nullptr);
416 case WM_PALETTECHANGED:
417 if ((HWND)wParam == hwnd)
return 0;
420 case WM_QUERYNEWPALETTE:
425 HandleExitGameRequest();
466 int x = (int16)LOWORD(lParam);
467 int y = (int16)HIWORD(lParam);
475 tme.cbSize =
sizeof(tme);
476 tme.dwFlags = TME_LEAVE;
477 tme.hwndTrack = hwnd;
479 TrackMouseEvent(&tme);
486 while (PeekMessage(&m, hwnd, WM_MOUSEMOVE, WM_MOUSEMOVE, PM_REMOVE | PM_NOYIELD | PM_QS_INPUT)) {
487 x = (int16)LOWORD(m.lParam);
488 y = (int16)HIWORD(m.lParam);
494 pt.x = _cursor.
pos.x;
495 pt.y = _cursor.
pos.y;
496 ClientToScreen(hwnd, &pt);
497 SetCursorPos(pt.x, pt.y);
504 case WM_INPUTLANGCHANGE:
508 case WM_IME_SETCONTEXT:
513 case WM_IME_STARTCOMPOSITION:
518 case WM_IME_COMPOSITION:
521 case WM_IME_ENDCOMPOSITION:
532 console =
GB(lParam, 16, 8) == 41;
536 uint scancode =
GB(lParam, 16, 8);
537 uint charcode = wParam;
541 if (console && scancode == 41) {
548 uint cur_keycode = keycode;
556 uint scancode =
GB(lParam, 16, 8);
557 keycode = scancode == 41 ? (uint)WKC_BACKQUOTE : MapWindowsKey(wParam);
559 uint charcode = MapVirtualKey(wParam, MAPVK_VK_TO_CHAR);
570 if (
HasBit(charcode, 31) && !console) {
571 if (scancode == 41) {
580 uint cur_keycode = keycode;
610 if (wParam != SIZE_MINIMIZED) {
613 _window_maximize = (wParam == SIZE_MAXIMIZED || (_window_maximize && _fullscreen));
614 if (_window_maximize || _fullscreen) _bck_resolution =
_cur_resolution;
615 video_driver->ClientSizeChanged(LOWORD(lParam), HIWORD(lParam));
620 RECT *r = (RECT*)lParam;
624 SetRect(&r2, 0, 0, 0, 0);
625 AdjustWindowRect(&r2, GetWindowLong(hwnd, GWL_STYLE), FALSE);
627 w = r->right - r->left - (r2.right - r2.left);
628 h = r->bottom - r->top - (r2.bottom - r2.top);
631 SetRect(&r2, 0, 0, w, h);
633 AdjustWindowRect(&r2, GetWindowLong(hwnd, GWL_STYLE), FALSE);
634 w = r2.right - r2.left;
635 h = r2.bottom - r2.top;
639 r->bottom = r->top + h;
642 case WMSZ_BOTTOMLEFT:
643 r->bottom = r->top + h;
644 r->left = r->right - w;
647 case WMSZ_BOTTOMRIGHT:
648 r->bottom = r->top + h;
649 r->right = r->left + w;
653 r->left = r->right - w;
657 r->right = r->left + w;
661 r->top = r->bottom - h;
665 r->top = r->bottom - h;
666 r->left = r->right - w;
670 r->top = r->bottom - h;
671 r->right = r->left + w;
677 case WM_DPICHANGED: {
681 RECT *prcNewWindow = (RECT *)lParam;
686 prcNewWindow->right - prcNewWindow->left,
687 prcNewWindow->bottom - prcNewWindow->top,
688 SWP_NOZORDER | SWP_NOACTIVATE);
696 #if !defined(WM_MOUSEWHEEL)
697 # define WM_MOUSEWHEEL 0x020A
699 #if !defined(GET_WHEEL_DELTA_WPARAM)
700 # define GET_WHEEL_DELTA_WPARAM(wparam) ((short)HIWORD(wparam))
703 case WM_MOUSEWHEEL: {
704 int delta = GET_WHEEL_DELTA_WPARAM(wParam);
708 }
else if (delta > 0) {
726 if (_exit_game)
break;
728 bool active = (LOWORD(wParam) != WA_INACTIVE);
729 bool minimized = (HIWORD(wParam) != 0);
731 if (active && minimized) {
734 ShowWindow(hwnd, SW_RESTORE);
737 }
else if (!active && !minimized) {
739 ShowWindow(hwnd, SW_MINIMIZE);
740 ChangeDisplaySettings(
nullptr, 0);
747 return DefWindowProc(hwnd, msg, wParam, lParam);
750 static void RegisterWndClass()
752 static bool registered =
false;
754 if (registered)
return;
756 HINSTANCE hinst = GetModuleHandle(
nullptr);
763 LoadIcon(hinst, MAKEINTRESOURCE(100)),
764 LoadCursor(
nullptr, IDC_ARROW),
771 if (!RegisterClass(&wnd))
usererror(
"RegisterClass failed");
774 static const Dimension default_resolutions[] = {
788 static void FindResolutions(uint8 bpp)
793 for (uint i = 0; EnumDisplaySettings(
nullptr, i, &dm) != 0; i++) {
794 if (dm.dmBitsPerPel != bpp || dm.dmPelsWidth < 640 || dm.dmPelsHeight < 480)
continue;
796 _resolutions.emplace_back(dm.dmPelsWidth, dm.dmPelsHeight);
801 _resolutions.assign(std::begin(default_resolutions), std::end(default_resolutions));
807 void VideoDriver_Win32Base::Initialize()
825 if (this->
fullscreen) ChangeDisplaySettings(
nullptr, 0);
837 this->
MakeDirty(0, 0, _screen.width, _screen.height);
858 (GetAsyncKeyState(VK_LEFT) < 0 ? 1 : 0) +
859 (GetAsyncKeyState(VK_UP) < 0 ? 2 : 0) +
860 (GetAsyncKeyState(VK_RIGHT) < 0 ? 4 : 0) +
861 (GetAsyncKeyState(VK_DOWN) < 0 ? 8 : 0);
873 if (!PeekMessage(&mesg,
nullptr, 0, 0, PM_REMOVE))
return false;
877 DispatchMessage(&mesg);
887 if (_exit_game)
break;
896 void VideoDriver_Win32Base::ClientSizeChanged(
int w,
int h,
bool force)
910 if (_window_maximize) ShowWindow(this->
main_wnd, SW_SHOWNORMAL);
933 static BOOL CALLBACK MonitorEnumProc(HMONITOR hMonitor, HDC hDC, LPRECT rc, LPARAM data)
935 auto &list = *
reinterpret_cast<std::vector<int>*
>(data);
937 MONITORINFOEX monitorInfo = {};
938 monitorInfo.cbSize =
sizeof(MONITORINFOEX);
939 GetMonitorInfo(hMonitor, &monitorInfo);
941 DEVMODE devMode = {};
942 devMode.dmSize =
sizeof(DEVMODE);
943 devMode.dmDriverExtra = 0;
944 EnumDisplaySettings(monitorInfo.szDevice, ENUM_CURRENT_SETTINGS, &devMode);
946 if (devMode.dmDisplayFrequency != 0) list.push_back(devMode.dmDisplayFrequency);
952 std::vector<int> rates = {};
953 EnumDisplayMonitors(
nullptr,
nullptr, MonitorEnumProc,
reinterpret_cast<LPARAM
>(&rates));
959 return {
static_cast<uint
>(GetSystemMetrics(SM_CXSCREEN)),
static_cast<uint
>(GetSystemMetrics(SM_CYSCREEN)) };
964 typedef UINT (WINAPI *PFNGETDPIFORWINDOW)(HWND hwnd);
965 typedef UINT (WINAPI *PFNGETDPIFORSYSTEM)(VOID);
966 typedef HRESULT (WINAPI *PFNGETDPIFORMONITOR)(HMONITOR hMonitor,
int dpiType, UINT *dpiX, UINT *dpiY);
968 static PFNGETDPIFORWINDOW _GetDpiForWindow =
nullptr;
969 static PFNGETDPIFORSYSTEM _GetDpiForSystem =
nullptr;
970 static PFNGETDPIFORMONITOR _GetDpiForMonitor =
nullptr;
972 static bool init_done =
false;
977 _GetDpiForWindow = _user32.GetProcAddress(
"GetDpiForWindow");
978 _GetDpiForSystem = _user32.GetProcAddress(
"GetDpiForSystem");
979 _GetDpiForMonitor = _shcore.GetProcAddress(
"GetDpiForMonitor");
984 if (cur_dpi == 0 && _GetDpiForWindow !=
nullptr && this->
main_wnd !=
nullptr) {
986 cur_dpi = _GetDpiForWindow(this->
main_wnd);
988 if (cur_dpi == 0 && _GetDpiForMonitor !=
nullptr && this->
main_wnd !=
nullptr) {
991 if (SUCCEEDED(_GetDpiForMonitor(MonitorFromWindow(this->
main_wnd, MONITOR_DEFAULTTOPRIMARY), 0 , &dpiX, &dpiY))) {
995 if (cur_dpi == 0 && _GetDpiForSystem !=
nullptr) {
997 cur_dpi = _GetDpiForSystem();
1000 return cur_dpi > 0 ? cur_dpi / 96.0f : 1.0f;
1009 assert(_screen.dst_ptr !=
nullptr);
1016 assert(_screen.dst_ptr !=
nullptr);
1017 if (_screen.dst_ptr !=
nullptr) {
1020 _screen.dst_ptr =
nullptr;
1035 this->MakePalette();
1058 w = std::max(w, 64);
1059 h = std::max(h, 64);
1061 if (!force && w == _screen.width && h == _screen.height)
return false;
1063 BITMAPINFO *bi = (BITMAPINFO *)alloca(
sizeof(BITMAPINFOHEADER) +
sizeof(RGBQUAD) * 256);
1064 memset(bi, 0,
sizeof(BITMAPINFOHEADER) +
sizeof(RGBQUAD) * 256);
1065 bi->bmiHeader.biSize =
sizeof(BITMAPINFOHEADER);
1067 bi->bmiHeader.biWidth = this->
width = w;
1068 bi->bmiHeader.biHeight = -(this->
height = h);
1070 bi->bmiHeader.biPlanes = 1;
1071 bi->bmiHeader.biBitCount = bpp;
1072 bi->bmiHeader.biCompression = BI_RGB;
1077 this->
dib_sect = CreateDIBSection(dc, bi, DIB_RGB_COLORS, (VOID **)&this->
buffer_bits,
nullptr, 0);
1082 _screen.pitch = (bpp == 8) ?
Align(w, 4) : w;
1095 void VideoDriver_Win32GDI::MakePalette()
1099 LOGPALETTE *pal = (LOGPALETTE*)alloca(
sizeof(LOGPALETTE) + (256 - 1) *
sizeof(PALETTEENTRY));
1101 pal->palVersion = 0x300;
1102 pal->palNumEntries = 256;
1104 for (uint i = 0; i != 256; i++) {
1108 pal->palPalEntry[i].peFlags = 0;
1115 void VideoDriver_Win32GDI::UpdatePalette(HDC dc, uint start, uint count)
1119 for (uint i = 0; i != count; i++) {
1123 rgb[i].rgbReserved = 0;
1126 SetDIBColorTable(dc, start, count, rgb);
1131 HDC hDC = GetWindowDC(hWnd);
1132 HPALETTE hOldPalette = SelectPalette(hDC, this->
gdi_palette, FALSE);
1133 UINT nChanged = RealizePalette(hDC);
1135 SelectPalette(hDC, hOldPalette, TRUE);
1136 ReleaseDC(hWnd, hDC);
1137 if (nChanged != 0) this->
MakeDirty(0, 0, _screen.width, _screen.height);
1147 HDC dc2 = CreateCompatibleDC(dc);
1149 HBITMAP old_bmp = (HBITMAP)SelectObject(dc2, this->
dib_sect);
1150 HPALETTE old_palette = SelectPalette(dc, this->
gdi_palette, FALSE);
1174 BitBlt(dc, 0, 0, this->
width, this->
height, dc2, 0, 0, SRCCOPY);
1175 SelectPalette(dc, old_palette, TRUE);
1176 SelectObject(dc2, old_bmp);
1187 int VideoDriver_Win32GDI::RedrawScreenDebug()
1206 #include "../3rdparty/opengl/glext.h"
1207 #include "../3rdparty/opengl/wglext.h"
1210 #ifndef PFD_SUPPORT_COMPOSITION
1211 # define PFD_SUPPORT_COMPOSITION 0x00008000
1214 static PFNWGLCREATECONTEXTATTRIBSARBPROC _wglCreateContextAttribsARB =
nullptr;
1215 static PFNWGLSWAPINTERVALEXTPROC _wglSwapIntervalEXT =
nullptr;
1216 static bool _hasWGLARBCreateContextProfile =
false;
1221 OGLProc ret =
reinterpret_cast<OGLProc
>(wglGetProcAddress(proc));
1222 if (ret ==
nullptr) {
1224 ret =
reinterpret_cast<OGLProc
>(GetProcAddress(GetModuleHandle(L
"opengl32"), proc));
1235 static const char *SelectPixelFormat(HDC dc,
bool fullscreen)
1237 PIXELFORMATDESCRIPTOR pfd = {
1238 sizeof(PIXELFORMATDESCRIPTOR),
1240 PFD_DRAW_TO_WINDOW |
1241 PFD_SUPPORT_OPENGL |
1246 0, 0, 0, 0, 0, 0, 0, 0,
1254 if (IsWindowsVistaOrGreater()) pfd.dwFlags |= PFD_SUPPORT_COMPOSITION;
1257 int format = ChoosePixelFormat(dc, &pfd);
1258 if (format == 0)
return "No suitable pixel format found";
1259 if (!SetPixelFormat(dc, format, &pfd))
return "Can't set pixel format";
1265 static void LoadWGLExtensions()
1272 HWND wnd = CreateWindow(_T(
"STATIC"), _T(
"dummy"), WS_OVERLAPPEDWINDOW, 0, 0, 0, 0,
nullptr,
nullptr, GetModuleHandle(
nullptr),
nullptr);
1273 HDC dc = GetDC(wnd);
1276 if (SelectPixelFormat(dc,
false) ==
nullptr) {
1278 HGLRC rc = wglCreateContext(dc);
1279 if (rc !=
nullptr) {
1280 wglMakeCurrent(dc, rc);
1284 #pragma GCC diagnostic push
1285 #pragma GCC diagnostic ignored "-Wcast-function-type"
1289 PFNWGLGETEXTENSIONSSTRINGARBPROC wglGetExtensionsStringARB = (PFNWGLGETEXTENSIONSSTRINGARBPROC)wglGetProcAddress(
"wglGetExtensionsStringARB");
1290 if (wglGetExtensionsStringARB !=
nullptr) {
1291 const char *wgl_exts = wglGetExtensionsStringARB(dc);
1294 _wglCreateContextAttribsARB = (PFNWGLCREATECONTEXTATTRIBSARBPROC)wglGetProcAddress(
"wglCreateContextAttribsARB");
1298 _wglSwapIntervalEXT = (PFNWGLSWAPINTERVALEXTPROC)wglGetProcAddress(
"wglSwapIntervalEXT");
1303 #pragma GCC diagnostic pop
1305 wglMakeCurrent(
nullptr,
nullptr);
1306 wglDeleteContext(rc);
1314 static FVideoDriver_Win32OpenGL iFVideoDriver_Win32OpenGL;
1316 const char *VideoDriver_Win32OpenGL::Start(
const StringList ¶m)
1322 LoadWGLExtensions();
1325 this->MakeWindow(_fullscreen);
1328 const char *err = this->AllocateContext();
1329 if (err !=
nullptr) {
1335 this->driver_info = GetName();
1336 this->driver_info +=
" (";
1338 this->driver_info +=
")";
1340 this->ClientSizeChanged(this->width, this->height,
true);
1342 if (_screen.dst_ptr ==
nullptr) {
1345 return "Can't get pointer to screen buffer";
1348 this->ReleaseVideoPointer();
1357 void VideoDriver_Win32OpenGL::Stop()
1359 this->DestroyContext();
1363 void VideoDriver_Win32OpenGL::DestroyContext()
1367 wglMakeCurrent(
nullptr,
nullptr);
1368 if (this->gl_rc !=
nullptr) {
1369 wglDeleteContext(this->gl_rc);
1370 this->gl_rc =
nullptr;
1372 if (this->dc !=
nullptr) {
1373 ReleaseDC(this->main_wnd, this->dc);
1378 void VideoDriver_Win32OpenGL::ToggleVsync(
bool vsync)
1380 if (_wglSwapIntervalEXT !=
nullptr) {
1381 _wglSwapIntervalEXT(vsync);
1383 Debug(driver, 0,
"OpenGL: Vsync requested, but not supported by driver");
1387 const char *VideoDriver_Win32OpenGL::AllocateContext()
1389 this->dc = GetDC(this->main_wnd);
1391 const char *err = SelectPixelFormat(this->dc, this->fullscreen);
1392 if (err !=
nullptr)
return err;
1397 if (_wglCreateContextAttribsARB !=
nullptr) {
1400 WGL_CONTEXT_MAJOR_VERSION_ARB, 4,
1401 WGL_CONTEXT_MINOR_VERSION_ARB, 5,
1402 WGL_CONTEXT_FLAGS_ARB, _debug_driver_level >= 8 ? WGL_CONTEXT_DEBUG_BIT_ARB : 0,
1403 _hasWGLARBCreateContextProfile ? WGL_CONTEXT_PROFILE_MASK_ARB : 0, WGL_CONTEXT_CORE_PROFILE_BIT_ARB,
1406 rc = _wglCreateContextAttribsARB(this->dc,
nullptr, attribs);
1408 if (rc ==
nullptr) {
1412 rc = _wglCreateContextAttribsARB(this->dc,
nullptr, attribs);
1416 if (rc ==
nullptr) {
1418 rc = wglCreateContext(this->dc);
1419 if (rc ==
nullptr)
return "Can't create OpenGL context";
1421 if (!wglMakeCurrent(this->dc, rc))
return "Can't active GL context";
1429 bool VideoDriver_Win32OpenGL::ToggleFullscreen(
bool full_screen)
1431 if (_screen.dst_ptr !=
nullptr) this->ReleaseVideoPointer();
1432 this->DestroyContext();
1434 res &= this->AllocateContext() ==
nullptr;
1435 this->ClientSizeChanged(this->width, this->height,
true);
1439 bool VideoDriver_Win32OpenGL::AfterBlitterChange()
1442 this->ClientSizeChanged(this->width, this->height,
true);
1446 void VideoDriver_Win32OpenGL::PopulateSystemSprites()
1451 void VideoDriver_Win32OpenGL::ClearSystemSprites()
1456 bool VideoDriver_Win32OpenGL::AllocateBackingStore(
int w,
int h,
bool force)
1458 if (!force && w == _screen.width && h == _screen.height)
return false;
1460 this->width = w = std::max(w, 64);
1461 this->height = h = std::max(h, 64);
1463 if (this->gl_rc ==
nullptr)
return false;
1465 if (_screen.dst_ptr !=
nullptr) this->ReleaseVideoPointer();
1467 this->dirty_rect = {};
1469 SwapBuffers(this->dc);
1470 _screen.dst_ptr = this->GetVideoPointer();
1475 void *VideoDriver_Win32OpenGL::GetVideoPointer()
1483 void VideoDriver_Win32OpenGL::ReleaseVideoPointer()
1487 this->dirty_rect = {};
1488 _screen.dst_ptr =
nullptr;
1489 this->anim_buffer =
nullptr;
1492 void VideoDriver_Win32OpenGL::Paint()
1511 SwapBuffers(this->dc);