mirror of
https://github.com/glfw/glfw.git
synced 2024-11-14 02:31:46 +00:00
Win32 port work dump.
This commit is contained in:
parent
1bac99625d
commit
f3fbbb4311
@ -234,11 +234,11 @@ typedef DWORD (WINAPI * TIMEGETTIME_T) (void);
|
|||||||
|
|
||||||
// gdi32.dll shortcuts
|
// gdi32.dll shortcuts
|
||||||
#ifndef _GLFW_NO_DLOAD_GDI32
|
#ifndef _GLFW_NO_DLOAD_GDI32
|
||||||
#define _glfw_ChoosePixelFormat _glfwLibrary.Libs.ChoosePixelFormat
|
#define _glfw_ChoosePixelFormat _glfwLibrary.Win32.libs.ChoosePixelFormat
|
||||||
#define _glfw_DescribePixelFormat _glfwLibrary.Libs.DescribePixelFormat
|
#define _glfw_DescribePixelFormat _glfwLibrary.Win32.libs.DescribePixelFormat
|
||||||
#define _glfw_GetPixelFormat _glfwLibrary.Libs.GetPixelFormat
|
#define _glfw_GetPixelFormat _glfwLibrary.Win32.libs.GetPixelFormat
|
||||||
#define _glfw_SetPixelFormat _glfwLibrary.Libs.SetPixelFormat
|
#define _glfw_SetPixelFormat _glfwLibrary.Win32.libs.SetPixelFormat
|
||||||
#define _glfw_SwapBuffers _glfwLibrary.Libs.SwapBuffers
|
#define _glfw_SwapBuffers _glfwLibrary.Win32.libs.SwapBuffers
|
||||||
#else
|
#else
|
||||||
#define _glfw_ChoosePixelFormat ChoosePixelFormat
|
#define _glfw_ChoosePixelFormat ChoosePixelFormat
|
||||||
#define _glfw_DescribePixelFormat DescribePixelFormat
|
#define _glfw_DescribePixelFormat DescribePixelFormat
|
||||||
@ -249,10 +249,10 @@ typedef DWORD (WINAPI * TIMEGETTIME_T) (void);
|
|||||||
|
|
||||||
// winmm.dll shortcuts
|
// winmm.dll shortcuts
|
||||||
#ifndef _GLFW_NO_DLOAD_WINMM
|
#ifndef _GLFW_NO_DLOAD_WINMM
|
||||||
#define _glfw_joyGetDevCaps _glfwLibrary.Libs.joyGetDevCapsA
|
#define _glfw_joyGetDevCaps _glfwLibrary.Win32.libs.joyGetDevCapsA
|
||||||
#define _glfw_joyGetPos _glfwLibrary.Libs.joyGetPos
|
#define _glfw_joyGetPos _glfwLibrary.Win32.libs.joyGetPos
|
||||||
#define _glfw_joyGetPosEx _glfwLibrary.Libs.joyGetPosEx
|
#define _glfw_joyGetPosEx _glfwLibrary.Win32.libs.joyGetPosEx
|
||||||
#define _glfw_timeGetTime _glfwLibrary.Libs.timeGetTime
|
#define _glfw_timeGetTime _glfwLibrary.Win32.libs.timeGetTime
|
||||||
#else
|
#else
|
||||||
#define _glfw_joyGetDevCaps joyGetDevCapsA
|
#define _glfw_joyGetDevCaps joyGetDevCapsA
|
||||||
#define _glfw_joyGetPos joyGetPos
|
#define _glfw_joyGetPos joyGetPos
|
||||||
@ -306,7 +306,6 @@ typedef struct _GLFWwindowWin32
|
|||||||
// Platform specific window resources
|
// Platform specific window resources
|
||||||
HWND handle; // Window handle
|
HWND handle; // Window handle
|
||||||
ATOM classAtom; // Window class atom
|
ATOM classAtom; // Window class atom
|
||||||
int modeID; // Mode ID for fullscreen mode
|
|
||||||
DWORD dwStyle; // Window styles used for window creation
|
DWORD dwStyle; // Window styles used for window creation
|
||||||
DWORD dwExStyle; // --"--
|
DWORD dwExStyle; // --"--
|
||||||
|
|
||||||
@ -393,10 +392,10 @@ typedef struct _GLFWlibraryWin32
|
|||||||
void _glfwInitTimer(void);
|
void _glfwInitTimer(void);
|
||||||
|
|
||||||
// Fullscreen support
|
// Fullscreen support
|
||||||
int _glfwGetClosestVideoModeBPP(int* w, int* h, int* bpp, int* refresh);
|
void _glfwSetVideoMode(int* width, int* height,
|
||||||
int _glfwGetClosestVideoMode(int* w, int* h, int* r, int* g, int* b, int* refresh);
|
int* bpp, int* refreshRate,
|
||||||
void _glfwSetVideoModeMODE(int mode);
|
GLboolean exactBPP);
|
||||||
void _glfwSetVideoMode(int* w, int* h, int r, int g, int b, int refresh);
|
void _glfwRestoreVideoMode(void);
|
||||||
|
|
||||||
|
|
||||||
#endif // _platform_h_
|
#endif // _platform_h_
|
||||||
|
@ -30,6 +30,9 @@
|
|||||||
|
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <limits.h>
|
||||||
|
|
||||||
|
|
||||||
//========================================================================
|
//========================================================================
|
||||||
// Convert BPP to RGB bits based on "best guess"
|
// Convert BPP to RGB bits based on "best guess"
|
||||||
@ -56,29 +59,76 @@ static void bpp2rgb(int bpp, int* r, int* g, int* b)
|
|||||||
|
|
||||||
|
|
||||||
//========================================================================
|
//========================================================================
|
||||||
// Return closest video mode by dimensions, refresh rate and channel sizes
|
// Return closest video mode by dimensions, refresh rate and bits per pixel
|
||||||
//========================================================================
|
//========================================================================
|
||||||
|
|
||||||
static int getClosestVideoMode(int* w, int* h,
|
static GLboolean getClosestVideoMode(int* width, int* height,
|
||||||
int* r, int* g, int* b,
|
int* bpp, int* refreshRate,
|
||||||
int* refresh)
|
GLboolean exactBPP)
|
||||||
{
|
{
|
||||||
int bpp, bestmode;
|
int mode, bestWidth, bestHeight, bestBPP, bestRate;
|
||||||
|
unsigned int sizeDiff, rateDiff, leastSizeDiff, leastRateDiff;
|
||||||
|
GLboolean foundMode = GL_FALSE;
|
||||||
|
DEVMODE dm;
|
||||||
|
|
||||||
// Colorbits = sum of red/green/blue bits
|
leastSizeDiff = leastRateDiff = UINT_MAX;
|
||||||
bpp = *r + *g + *b;
|
|
||||||
|
|
||||||
// If colorbits < 15 (e.g. 0) or >= 24, default to 32 bpp
|
for (mode = 0; ; mode++)
|
||||||
if (bpp < 15 || bpp >= 24)
|
{
|
||||||
bpp = 32;
|
dm.dmSize = sizeof(DEVMODE);
|
||||||
|
if (!EnumDisplaySettings(NULL, mode, &dm))
|
||||||
|
break;
|
||||||
|
|
||||||
// Find best match
|
if (exactBPP && dm.dmBitsPerPel != *bpp)
|
||||||
bestmode = _glfwGetClosestVideoModeBPP(w, h, &bpp, refresh);
|
continue;
|
||||||
|
|
||||||
// Convert "bits per pixel" to red, green & blue sizes
|
sizeDiff = (abs(dm.dmBitsPerPel - *bpp) << 25) |
|
||||||
bpp2rgb(bpp, r, g, b);
|
((dm.dmPelsWidth - *width) *
|
||||||
|
(dm.dmPelsWidth - *width) +
|
||||||
|
(dm.dmPelsHeight - *height) *
|
||||||
|
(dm.dmPelsHeight - *height));
|
||||||
|
|
||||||
return bestmode;
|
if (*refreshRate > 0)
|
||||||
|
{
|
||||||
|
rateDiff = (dm.dmDisplayFrequency - *refreshRate) *
|
||||||
|
(dm.dmDisplayFrequency - *refreshRate);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// If no refresh rate was specified, then they're all the same
|
||||||
|
rateDiff = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// We match first BPP, then screen area and last refresh rate
|
||||||
|
|
||||||
|
if ((sizeDiff < leastSizeDiff) ||
|
||||||
|
(sizeDiff == leastSizeDiff && (rateDiff < leastRateDiff)))
|
||||||
|
{
|
||||||
|
bestWidth = dm.dmPelsWidth;
|
||||||
|
bestHeight = dm.dmPelsHeight;
|
||||||
|
bestBPP = dm.dmBitsPerPel;
|
||||||
|
bestRate = dm.dmDisplayFrequency;
|
||||||
|
|
||||||
|
leastSizeDiff = sizeDiff;
|
||||||
|
leastRateDiff = rateDiff;
|
||||||
|
|
||||||
|
foundMode = GL_TRUE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!foundMode)
|
||||||
|
return GL_FALSE;
|
||||||
|
|
||||||
|
*width = bestWidth;
|
||||||
|
*height = bestHeight;
|
||||||
|
*bpp = bestBPP;
|
||||||
|
|
||||||
|
// Only save the found refresh rate if the client requested a specific
|
||||||
|
// rate; otherwise keep it at zero to let Windows select the best rate
|
||||||
|
if (*refreshRate > 0)
|
||||||
|
*refreshRate = bestRate;
|
||||||
|
|
||||||
|
return GL_TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -86,132 +136,65 @@ static int getClosestVideoMode(int* w, int* h,
|
|||||||
////// GLFW internal API //////
|
////// GLFW internal API //////
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
//========================================================================
|
|
||||||
// Return closest video mode by dimensions, refresh rate and bits per pixel
|
|
||||||
//========================================================================
|
|
||||||
|
|
||||||
int _glfwGetClosestVideoModeBPP(int* w, int* h, int* bpp, int* refresh)
|
|
||||||
{
|
|
||||||
int mode, bestmode, match, bestmatch, rr, bestrr, success;
|
|
||||||
DEVMODE dm;
|
|
||||||
|
|
||||||
// Find best match
|
|
||||||
bestmatch = 0x7fffffff;
|
|
||||||
bestrr = 0x7fffffff;
|
|
||||||
mode = bestmode = 0;
|
|
||||||
|
|
||||||
do
|
|
||||||
{
|
|
||||||
dm.dmSize = sizeof(DEVMODE);
|
|
||||||
success = EnumDisplaySettings(NULL, mode, &dm);
|
|
||||||
if (success)
|
|
||||||
{
|
|
||||||
match = dm.dmBitsPerPel - *bpp;
|
|
||||||
if (match < 0)
|
|
||||||
match = -match;
|
|
||||||
|
|
||||||
match = (match << 25) |
|
|
||||||
((dm.dmPelsWidth - *w) *
|
|
||||||
(dm.dmPelsWidth - *w) +
|
|
||||||
(dm.dmPelsHeight - *h) *
|
|
||||||
(dm.dmPelsHeight - *h));
|
|
||||||
if (match < bestmatch)
|
|
||||||
{
|
|
||||||
bestmatch = match;
|
|
||||||
bestmode = mode;
|
|
||||||
bestrr = (dm.dmDisplayFrequency - *refresh) *
|
|
||||||
(dm.dmDisplayFrequency - *refresh);
|
|
||||||
}
|
|
||||||
else if (match == bestmatch && *refresh > 0)
|
|
||||||
{
|
|
||||||
rr = (dm.dmDisplayFrequency - *refresh) *
|
|
||||||
(dm.dmDisplayFrequency - *refresh);
|
|
||||||
if (rr < bestrr)
|
|
||||||
{
|
|
||||||
bestmatch = match;
|
|
||||||
bestmode = mode;
|
|
||||||
bestrr = rr;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
mode++;
|
|
||||||
}
|
|
||||||
while (success);
|
|
||||||
|
|
||||||
// Get the parameters for the best matching display mode
|
|
||||||
dm.dmSize = sizeof(DEVMODE);
|
|
||||||
EnumDisplaySettings(NULL, bestmode, &dm);
|
|
||||||
|
|
||||||
// Fill out actual width and height
|
|
||||||
*w = dm.dmPelsWidth;
|
|
||||||
*h = dm.dmPelsHeight;
|
|
||||||
|
|
||||||
// Return bits per pixel
|
|
||||||
*bpp = dm.dmBitsPerPel;
|
|
||||||
|
|
||||||
// Return vertical refresh rate
|
|
||||||
*refresh = dm.dmDisplayFrequency;
|
|
||||||
|
|
||||||
return bestmode;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
//========================================================================
|
//========================================================================
|
||||||
// Change the current video mode
|
// Change the current video mode
|
||||||
//========================================================================
|
//========================================================================
|
||||||
|
|
||||||
void _glfwSetVideoModeMODE(int mode)
|
void _glfwSetVideoMode(int* width, int* height,
|
||||||
|
int* bpp, int* refreshRate,
|
||||||
|
GLboolean exactBPP)
|
||||||
{
|
{
|
||||||
DEVMODE dm;
|
DEVMODE dm;
|
||||||
int success;
|
int closestWidth, closestHeight, closestBPP, closestRate;
|
||||||
|
|
||||||
// Get the parameters for the best matching display mode
|
closestWidth = *width;
|
||||||
dm.dmSize = sizeof(DEVMODE);
|
closestHeight = *height;
|
||||||
EnumDisplaySettings(NULL, mode, &dm);
|
closestBPP = *bpp;
|
||||||
|
closestRate = *refreshRate;
|
||||||
|
|
||||||
// Set which fields we want to specify
|
if (getClosestVideoMode(&closestWidth, &closestHeight,
|
||||||
dm.dmFields = DM_PELSWIDTH | DM_PELSHEIGHT | DM_BITSPERPEL;
|
&closestBPP, &closestRate, GL_FALSE))
|
||||||
|
|
||||||
// Do we have a prefered refresh rate?
|
|
||||||
if (_glfwWin.desiredRefreshRate > 0)
|
|
||||||
{
|
{
|
||||||
dm.dmFields = dm.dmFields | DM_DISPLAYFREQUENCY;
|
dm.dmSize = sizeof(DEVMODE);
|
||||||
dm.dmDisplayFrequency = _glfwWin.desiredRefreshRate;
|
dm.dmFields = DM_PELSWIDTH | DM_PELSHEIGHT | DM_BITSPERPEL;
|
||||||
|
dm.dmPelsWidth = closestWidth;
|
||||||
|
dm.dmPelsHeight = closestHeight;
|
||||||
|
dm.dmBitsPerPel = closestBPP;
|
||||||
|
|
||||||
|
if (*refreshRate > 0)
|
||||||
|
{
|
||||||
|
dm.dmFields |= DM_DISPLAYFREQUENCY;
|
||||||
|
dm.dmDisplayFrequency = closestRate;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Change display setting
|
if (ChangeDisplaySettings(&dm, CDS_FULLSCREEN) == DISP_CHANGE_SUCCESSFUL)
|
||||||
dm.dmSize = sizeof(DEVMODE);
|
{
|
||||||
success = ChangeDisplaySettings(&dm, CDS_FULLSCREEN);
|
*width = closestWidth;
|
||||||
|
*height = closestHeight;
|
||||||
// If the mode change was not possible, query the current display
|
*bpp = closestBPP;
|
||||||
// settings (we'll use the desktop resolution for fullscreen mode)
|
*refreshRate = closestRate;
|
||||||
if (success == DISP_CHANGE_SUCCESSFUL)
|
}
|
||||||
_glfwWin.modeID = mode;
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
_glfwWin.modeID = ENUM_REGISTRY_SETTINGS;
|
dm.dmSize = sizeof(DEVMODE);
|
||||||
EnumDisplaySettings(NULL, ENUM_REGISTRY_SETTINGS, &dm);
|
EnumDisplaySettings(NULL, ENUM_REGISTRY_SETTINGS, &dm);
|
||||||
}
|
|
||||||
|
|
||||||
// Set the window size to that of the display mode
|
*width = dm.dmPelsWidth;
|
||||||
_glfwWin.width = dm.dmPelsWidth;
|
*height = dm.dmPelsHeight;
|
||||||
_glfwWin.height = dm.dmPelsHeight;
|
*bpp = dm.dmBitsPerPel;
|
||||||
|
*refreshRate = dm.dmDisplayFrequency;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//========================================================================
|
//========================================================================
|
||||||
// Change the current video mode
|
// Restore the previously saved (original) video mode
|
||||||
//========================================================================
|
//========================================================================
|
||||||
|
|
||||||
void _glfwSetVideoMode(int* w, int* h, int r, int g, int b, int refresh)
|
void _glfwRestoreVideoMode(void)
|
||||||
{
|
{
|
||||||
int bestmode;
|
ChangeDisplaySettings(NULL, CDS_FULLSCREEN);
|
||||||
|
|
||||||
// Find a best match mode
|
|
||||||
bestmode = getClosestVideoMode(w, h, &r, &g, &b, &refresh);
|
|
||||||
|
|
||||||
// Change mode
|
|
||||||
_glfwSetVideoModeMODE(bestmode);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -30,8 +30,8 @@
|
|||||||
|
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
|
|
||||||
// With the Borland C++ compiler, we want to disable FPU exceptions
|
|
||||||
#ifdef __BORLANDC__
|
#ifdef __BORLANDC__
|
||||||
|
// With the Borland C++ compiler, we want to disable FPU exceptions
|
||||||
#include <float.h>
|
#include <float.h>
|
||||||
#endif // __BORLANDC__
|
#endif // __BORLANDC__
|
||||||
|
|
||||||
@ -42,8 +42,9 @@
|
|||||||
|
|
||||||
static GLboolean initLibraries(void)
|
static GLboolean initLibraries(void)
|
||||||
{
|
{
|
||||||
// gdi32.dll (OpenGL pixel format functions & SwapBuffers)
|
|
||||||
#ifndef _GLFW_NO_DLOAD_GDI32
|
#ifndef _GLFW_NO_DLOAD_GDI32
|
||||||
|
// gdi32.dll (OpenGL pixel format functions & SwapBuffers)
|
||||||
|
|
||||||
_glfwLibrary.Win32.libs.gdi32 = LoadLibrary("gdi32.dll");
|
_glfwLibrary.Win32.libs.gdi32 = LoadLibrary("gdi32.dll");
|
||||||
if (_glfwLibrary.Win32.libs.gdi32 != NULL)
|
if (_glfwLibrary.Win32.libs.gdi32 != NULL)
|
||||||
{
|
{
|
||||||
@ -73,8 +74,9 @@ static GLboolean initLibraries(void)
|
|||||||
return GL_FALSE;
|
return GL_FALSE;
|
||||||
#endif // _GLFW_NO_DLOAD_GDI32
|
#endif // _GLFW_NO_DLOAD_GDI32
|
||||||
|
|
||||||
// winmm.dll (for joystick and timer support)
|
|
||||||
#ifndef _GLFW_NO_DLOAD_WINMM
|
#ifndef _GLFW_NO_DLOAD_WINMM
|
||||||
|
// winmm.dll (for joystick and timer support)
|
||||||
|
|
||||||
_glfwLibrary.Win32.libs.winmm = LoadLibrary("winmm.dll");
|
_glfwLibrary.Win32.libs.winmm = LoadLibrary("winmm.dll");
|
||||||
if (_glfwLibrary.Win32.libs.winmm != NULL)
|
if (_glfwLibrary.Win32.libs.winmm != NULL)
|
||||||
{
|
{
|
||||||
@ -153,7 +155,7 @@ int _glfwPlatformInit(void)
|
|||||||
{
|
{
|
||||||
OSVERSIONINFO osi;
|
OSVERSIONINFO osi;
|
||||||
|
|
||||||
// To make SetForegroundWindow() work as we want, we need to fiddle
|
// To make SetForegroundWindow work as we want, we need to fiddle
|
||||||
// with the FOREGROUNDLOCKTIMEOUT system setting (we do this as early
|
// with the FOREGROUNDLOCKTIMEOUT system setting (we do this as early
|
||||||
// as possible in the hope of still being the foreground process)
|
// as possible in the hope of still being the foreground process)
|
||||||
SystemParametersInfo(SPI_GETFOREGROUNDLOCKTIMEOUT, 0,
|
SystemParametersInfo(SPI_GETFOREGROUNDLOCKTIMEOUT, 0,
|
||||||
@ -192,26 +194,19 @@ int _glfwPlatformInit(void)
|
|||||||
_glfwLibrary.Win32.sys.winVer = _GLFW_WIN_UNKNOWN_NT;
|
_glfwLibrary.Win32.sys.winVer = _GLFW_WIN_UNKNOWN_NT;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Load libraries (DLLs)
|
|
||||||
if (!_glfwInitLibraries())
|
if (!_glfwInitLibraries())
|
||||||
return GL_FALSE;
|
return GL_FALSE;
|
||||||
|
|
||||||
|
#ifdef __BORLANDC__
|
||||||
// With the Borland C++ compiler, we want to disable FPU exceptions
|
// With the Borland C++ compiler, we want to disable FPU exceptions
|
||||||
// (this is recommended for OpenGL applications under Windows)
|
// (this is recommended for OpenGL applications under Windows)
|
||||||
#ifdef __BORLANDC__
|
|
||||||
_control87(MCW_EM, MCW_EM);
|
_control87(MCW_EM, MCW_EM);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Retrieve GLFW instance handle
|
|
||||||
_glfwLibrary.Win32.instance = GetModuleHandle(NULL);
|
_glfwLibrary.Win32.instance = GetModuleHandle(NULL);
|
||||||
|
|
||||||
// System keys are not disabled
|
|
||||||
_glfwLibrary.Win32.keyboardHook = NULL;
|
|
||||||
|
|
||||||
// Install atexit() routine
|
|
||||||
atexit(glfw_atexit);
|
atexit(glfw_atexit);
|
||||||
|
|
||||||
// Start the timer
|
|
||||||
_glfwInitTimer();
|
_glfwInitTimer();
|
||||||
|
|
||||||
return GL_TRUE;
|
return GL_TRUE;
|
||||||
@ -224,16 +219,14 @@ int _glfwPlatformInit(void)
|
|||||||
|
|
||||||
int _glfwPlatformTerminate(void)
|
int _glfwPlatformTerminate(void)
|
||||||
{
|
{
|
||||||
// Close OpenGL window
|
while (_glfwLibrary.windowListHead)
|
||||||
glfwCloseWindow();
|
glfwCloseWindow(_glfwLibrary.windowListHead);
|
||||||
|
|
||||||
// Enable system keys again (if they were disabled)
|
// TODO: Remove keyboard hook
|
||||||
glfwEnable(GLFW_SYSTEM_KEYS);
|
|
||||||
|
|
||||||
// Unload libraries (DLLs)
|
|
||||||
_glfwFreeLibraries();
|
_glfwFreeLibraries();
|
||||||
|
|
||||||
// Restore FOREGROUNDLOCKTIMEOUT system setting
|
// Restore previous FOREGROUNDLOCKTIMEOUT system setting
|
||||||
SystemParametersInfo(SPI_SETFOREGROUNDLOCKTIMEOUT, 0,
|
SystemParametersInfo(SPI_SETFOREGROUNDLOCKTIMEOUT, 0,
|
||||||
(LPVOID) _glfwLibrary.Win32.foregroundLockTimeout,
|
(LPVOID) _glfwLibrary.Win32.foregroundLockTimeout,
|
||||||
SPIF_SENDCHANGE);
|
SPIF_SENDCHANGE);
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
//========================================================================
|
//========================================================================
|
||||||
// Return GL_TRUE if joystick is present, else return GL_FALSE.
|
// Return GL_TRUE if joystick is present, otherwise GL_FALSE
|
||||||
//========================================================================
|
//========================================================================
|
||||||
|
|
||||||
static GLboolean isJoystickPresent(int joy)
|
static GLboolean isJoystickPresent(int joy)
|
||||||
@ -56,7 +56,7 @@ static GLboolean isJoystickPresent(int joy)
|
|||||||
|
|
||||||
|
|
||||||
//========================================================================
|
//========================================================================
|
||||||
// Calculate joystick position
|
// Calculate normalized joystick position
|
||||||
//========================================================================
|
//========================================================================
|
||||||
|
|
||||||
static float calcJoystickPos(DWORD pos, DWORD min, DWORD max)
|
static float calcJoystickPos(DWORD pos, DWORD min, DWORD max)
|
||||||
|
@ -30,12 +30,38 @@
|
|||||||
|
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
|
||||||
// We use versioned window class names in order not to cause conflicts
|
// We use versioned window class names in order not to cause conflicts
|
||||||
// between applications using different versions of GLFW
|
// between applications using different versions of GLFW
|
||||||
#define _GLFW_WNDCLASSNAME "GLFW30"
|
#define _GLFW_WNDCLASSNAME "GLFW30"
|
||||||
|
|
||||||
|
|
||||||
|
//========================================================================
|
||||||
|
// Convert BPP to RGB bits based on "best guess"
|
||||||
|
//========================================================================
|
||||||
|
|
||||||
|
static void bpp2rgb(int bpp, int* r, int* g, int* b)
|
||||||
|
{
|
||||||
|
int delta;
|
||||||
|
|
||||||
|
// We assume that by 32 they really meant 24
|
||||||
|
if (bpp == 32)
|
||||||
|
bpp = 24;
|
||||||
|
|
||||||
|
// Convert "bits per pixel" to red, green & blue sizes
|
||||||
|
|
||||||
|
*r = *g = *b = bpp / 3;
|
||||||
|
delta = bpp - (*r * 3);
|
||||||
|
if (delta >= 1)
|
||||||
|
*g = *g + 1;
|
||||||
|
|
||||||
|
if (delta == 2)
|
||||||
|
*r = *r + 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//========================================================================
|
//========================================================================
|
||||||
// Enable/disable minimize/restore animations
|
// Enable/disable minimize/restore animations
|
||||||
//========================================================================
|
//========================================================================
|
||||||
@ -156,20 +182,20 @@ static _GLFWfbconfig* getFBConfigs(_GLFWwindow* window, unsigned int* found)
|
|||||||
*found = 0;
|
*found = 0;
|
||||||
|
|
||||||
if (window->WGL.has_WGL_ARB_pixel_format)
|
if (window->WGL.has_WGL_ARB_pixel_format)
|
||||||
count = getPixelFormatAttrib(1, WGL_NUMBER_PIXEL_FORMATS_ARB);
|
count = getPixelFormatAttrib(window, 1, WGL_NUMBER_PIXEL_FORMATS_ARB);
|
||||||
else
|
else
|
||||||
count = _glfw_DescribePixelFormat(window->WGL.DC, 1, sizeof(PIXELFORMATDESCRIPTOR), NULL);
|
count = _glfw_DescribePixelFormat(window->WGL.DC, 1, sizeof(PIXELFORMATDESCRIPTOR), NULL);
|
||||||
|
|
||||||
if (!count)
|
if (!count)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "No Win32 pixel formats available\n");
|
_glfwSetError(GLFW_NO_PIXEL_FORMAT);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
result = (_GLFWfbconfig*) malloc(sizeof(_GLFWfbconfig) * count);
|
result = (_GLFWfbconfig*) malloc(sizeof(_GLFWfbconfig) * count);
|
||||||
if (!result)
|
if (!result)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Out of memory\n");
|
_glfwSetError(GLFW_OUT_OF_MEMORY);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -180,35 +206,53 @@ static _GLFWfbconfig* getFBConfigs(_GLFWwindow* window, unsigned int* found)
|
|||||||
// Get pixel format attributes through WGL_ARB_pixel_format
|
// Get pixel format attributes through WGL_ARB_pixel_format
|
||||||
|
|
||||||
// Only consider doublebuffered OpenGL pixel formats for windows
|
// Only consider doublebuffered OpenGL pixel formats for windows
|
||||||
if (!getPixelFormatAttrib(i, WGL_SUPPORT_OPENGL_ARB) ||
|
if (!getPixelFormatAttrib(window, i, WGL_SUPPORT_OPENGL_ARB) ||
|
||||||
!getPixelFormatAttrib(i, WGL_DRAW_TO_WINDOW_ARB) ||
|
!getPixelFormatAttrib(window, i, WGL_DRAW_TO_WINDOW_ARB) ||
|
||||||
!getPixelFormatAttrib(i, WGL_DOUBLE_BUFFER_ARB))
|
!getPixelFormatAttrib(window, i, WGL_DOUBLE_BUFFER_ARB))
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Only consider RGBA pixel formats
|
// Only consider RGBA pixel formats
|
||||||
if (getPixelFormatAttrib(i, WGL_PIXEL_TYPE_ARB) != WGL_TYPE_RGBA_ARB)
|
if (getPixelFormatAttrib(window, i, WGL_PIXEL_TYPE_ARB) !=
|
||||||
|
WGL_TYPE_RGBA_ARB)
|
||||||
|
{
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
result[*found].redBits = getPixelFormatAttrib(i, WGL_RED_BITS_ARB);
|
result[*found].redBits =
|
||||||
result[*found].greenBits = getPixelFormatAttrib(i, WGL_GREEN_BITS_ARB);
|
getPixelFormatAttrib(window, i, WGL_RED_BITS_ARB);
|
||||||
result[*found].blueBits = getPixelFormatAttrib(i, WGL_BLUE_BITS_ARB);
|
result[*found].greenBits =
|
||||||
result[*found].alphaBits = getPixelFormatAttrib(i, WGL_ALPHA_BITS_ARB);
|
getPixelFormatAttrib(window, i, WGL_GREEN_BITS_ARB);
|
||||||
|
result[*found].blueBits =
|
||||||
|
getPixelFormatAttrib(window, i, WGL_BLUE_BITS_ARB);
|
||||||
|
result[*found].alphaBits =
|
||||||
|
getPixelFormatAttrib(window, i, WGL_ALPHA_BITS_ARB);
|
||||||
|
|
||||||
result[*found].depthBits = getPixelFormatAttrib(i, WGL_DEPTH_BITS_ARB);
|
result[*found].depthBits =
|
||||||
result[*found].stencilBits = getPixelFormatAttrib(i, WGL_STENCIL_BITS_ARB);
|
getPixelFormatAttrib(window, i, WGL_DEPTH_BITS_ARB);
|
||||||
|
result[*found].stencilBits =
|
||||||
|
getPixelFormatAttrib(window, i, WGL_STENCIL_BITS_ARB);
|
||||||
|
|
||||||
result[*found].accumRedBits = getPixelFormatAttrib(i, WGL_ACCUM_RED_BITS_ARB);
|
result[*found].accumRedBits =
|
||||||
result[*found].accumGreenBits = getPixelFormatAttrib(i, WGL_ACCUM_GREEN_BITS_ARB);
|
getPixelFormatAttrib(window, i, WGL_ACCUM_RED_BITS_ARB);
|
||||||
result[*found].accumBlueBits = getPixelFormatAttrib(i, WGL_ACCUM_BLUE_BITS_ARB);
|
result[*found].accumGreenBits =
|
||||||
result[*found].accumAlphaBits = getPixelFormatAttrib(i, WGL_ACCUM_ALPHA_BITS_ARB);
|
getPixelFormatAttrib(window, i, WGL_ACCUM_GREEN_BITS_ARB);
|
||||||
|
result[*found].accumBlueBits =
|
||||||
|
getPixelFormatAttrib(window, i, WGL_ACCUM_BLUE_BITS_ARB);
|
||||||
|
result[*found].accumAlphaBits =
|
||||||
|
getPixelFormatAttrib(window, i, WGL_ACCUM_ALPHA_BITS_ARB);
|
||||||
|
|
||||||
result[*found].auxBuffers = getPixelFormatAttrib(i, WGL_AUX_BUFFERS_ARB);
|
result[*found].auxBuffers =
|
||||||
result[*found].stereo = getPixelFormatAttrib(i, WGL_STEREO_ARB);
|
getPixelFormatAttrib(window, i, WGL_AUX_BUFFERS_ARB);
|
||||||
|
result[*found].stereo =
|
||||||
|
getPixelFormatAttrib(window, i, WGL_STEREO_ARB);
|
||||||
|
|
||||||
if (window->WGL.has_WGL_ARB_multisample)
|
if (window->WGL.has_WGL_ARB_multisample)
|
||||||
result[*found].samples = getPixelFormatAttrib(i, WGL_SAMPLES_ARB);
|
{
|
||||||
|
result[*found].samples =
|
||||||
|
getPixelFormatAttrib(window, i, WGL_SAMPLES_ARB);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
result[*found].samples = 0;
|
result[*found].samples = 0;
|
||||||
}
|
}
|
||||||
@ -227,6 +271,7 @@ static _GLFWfbconfig* getFBConfigs(_GLFWwindow* window, unsigned int* found)
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Only consider "hardware-accelerated" pixel formats
|
||||||
if (!(pfd.dwFlags & PFD_GENERIC_ACCELERATED) &&
|
if (!(pfd.dwFlags & PFD_GENERIC_ACCELERATED) &&
|
||||||
(pfd.dwFlags & PFD_GENERIC_FORMAT))
|
(pfd.dwFlags & PFD_GENERIC_FORMAT))
|
||||||
{
|
{
|
||||||
@ -270,15 +315,17 @@ static _GLFWfbconfig* getFBConfigs(_GLFWwindow* window, unsigned int* found)
|
|||||||
// Creates an OpenGL context on the specified device context
|
// Creates an OpenGL context on the specified device context
|
||||||
//========================================================================
|
//========================================================================
|
||||||
|
|
||||||
static HGLRC createContext(_GLFWwindow* window, const _GLFWwndconfig* wndconfig, int pixelFormat)
|
static HGLRC createContext(_GLFWwindow* window,
|
||||||
|
const _GLFWwndconfig* wndconfig,
|
||||||
|
int pixelFormat)
|
||||||
{
|
{
|
||||||
PIXELFORMATDESCRIPTOR pfd;
|
PIXELFORMATDESCRIPTOR pfd;
|
||||||
int flags, i = 0, attribs[7];
|
int flags, i = 0, attribs[7];
|
||||||
|
|
||||||
if (!_glfw_DescribePixelFormat(dc, pixelFormat, sizeof(pfd), &pfd))
|
if (!_glfw_DescribePixelFormat(window->WGL.DC, pixelFormat, sizeof(pfd), &pfd))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (!_glfw_SetPixelFormat(dc, pixelFormat, &pfd))
|
if (!_glfw_SetPixelFormat(window->WGL.DC, pixelFormat, &pfd))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (window->WGL.has_WGL_ARB_create_context)
|
if (window->WGL.has_WGL_ARB_create_context)
|
||||||
@ -322,10 +369,10 @@ static HGLRC createContext(_GLFWwindow* window, const _GLFWwndconfig* wndconfig,
|
|||||||
|
|
||||||
attribs[i++] = 0;
|
attribs[i++] = 0;
|
||||||
|
|
||||||
return window->WGL.CreateContextAttribsARB(dc, NULL, attribs);
|
return window->WGL.CreateContextAttribsARB(window->WGL.DC, NULL, attribs);
|
||||||
}
|
}
|
||||||
|
|
||||||
return wglCreateContext(dc);
|
return wglCreateContext(window->WGL.DC);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -505,10 +552,7 @@ static int translateKey(WPARAM wParam, LPARAM lParam)
|
|||||||
wParam = MapVirtualKey((UINT) wParam, 2) & 0x0000FFFF;
|
wParam = MapVirtualKey((UINT) wParam, 2) & 0x0000FFFF;
|
||||||
|
|
||||||
// Make sure that the character is uppercase
|
// Make sure that the character is uppercase
|
||||||
if (_glfwLibrary.Sys.hasUnicode)
|
|
||||||
wParam = (WPARAM) CharUpperW((LPWSTR) wParam);
|
wParam = (WPARAM) CharUpperW((LPWSTR) wParam);
|
||||||
else
|
|
||||||
wParam = (WPARAM) CharUpperA((LPSTR) wParam);
|
|
||||||
|
|
||||||
// Valid ISO-8859-1 character?
|
// Valid ISO-8859-1 character?
|
||||||
if ((wParam >= 32 && wParam <= 126) ||
|
if ((wParam >= 32 && wParam <= 126) ||
|
||||||
@ -527,25 +571,18 @@ static int translateKey(WPARAM wParam, LPARAM lParam)
|
|||||||
// Translates a Windows key to Unicode
|
// Translates a Windows key to Unicode
|
||||||
//========================================================================
|
//========================================================================
|
||||||
|
|
||||||
static void translateChar(DWORD wParam, DWORD lParam, int action)
|
static void translateChar(_GLFWwindow* window, DWORD wParam, DWORD lParam)
|
||||||
{
|
{
|
||||||
BYTE keyboard_state[256];
|
BYTE keyboard_state[256];
|
||||||
UCHAR char_buf[10];
|
|
||||||
WCHAR unicode_buf[10];
|
WCHAR unicode_buf[10];
|
||||||
UINT scan_code;
|
UINT scan_code;
|
||||||
int i, num_chars, unicode;
|
int i, num_chars;
|
||||||
|
|
||||||
GetKeyboardState(keyboard_state);
|
GetKeyboardState(keyboard_state);
|
||||||
|
|
||||||
// Derive scan code from lParam and action
|
// Derive scan code from lParam and action
|
||||||
scan_code = (lParam & 0x01ff0000) >> 16;
|
scan_code = (lParam & 0x01ff0000) >> 16;
|
||||||
if (action == GLFW_RELEASE)
|
|
||||||
{
|
|
||||||
scan_code |= 0x8000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (_glfwLibrary.Sys.hasUnicode)
|
|
||||||
{
|
|
||||||
num_chars = ToUnicode(
|
num_chars = ToUnicode(
|
||||||
wParam, // virtual-key code
|
wParam, // virtual-key code
|
||||||
scan_code, // scan code
|
scan_code, // scan code
|
||||||
@ -554,30 +591,10 @@ static void translateChar(DWORD wParam, DWORD lParam, int action)
|
|||||||
10, // size of translated key buffer
|
10, // size of translated key buffer
|
||||||
0 // active-menu flag
|
0 // active-menu flag
|
||||||
);
|
);
|
||||||
unicode = 1;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// Convert to ISO-8859-1
|
|
||||||
num_chars = ToAscii(
|
|
||||||
wParam, // virtual-key code
|
|
||||||
scan_code, // scan code
|
|
||||||
keyboard_state, // key-state array
|
|
||||||
(LPWORD) char_buf, // buffer for translated key
|
|
||||||
0 // active-menu flag
|
|
||||||
);
|
|
||||||
unicode = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Report characters
|
// Report characters
|
||||||
for (i = 0; i < num_chars; i++)
|
for (i = 0; i < num_chars; i++)
|
||||||
{
|
_glfwInputChar(window, (int) unicode_buf[i]);
|
||||||
// Get next character from buffer
|
|
||||||
if (unicode)
|
|
||||||
_glfwInputChar((int) unicode_buf[i], action);
|
|
||||||
else
|
|
||||||
_glfwInputChar((int) char_buf[i], action);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -605,7 +622,7 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
|||||||
// Were we deactivated/iconified?
|
// Were we deactivated/iconified?
|
||||||
if ((window != _glfwLibrary.activeWindow || iconified) && !window->iconified)
|
if ((window != _glfwLibrary.activeWindow || iconified) && !window->iconified)
|
||||||
{
|
{
|
||||||
_glfwInputDeactivation();
|
_glfwInputDeactivation(window);
|
||||||
|
|
||||||
// If we are in fullscreen mode we need to iconify
|
// If we are in fullscreen mode we need to iconify
|
||||||
if (window->mode == GLFW_FULLSCREEN)
|
if (window->mode == GLFW_FULLSCREEN)
|
||||||
@ -623,12 +640,12 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Unlock mouse if locked
|
// Unlock mouse if locked
|
||||||
if (!window->Win32.oldMouseLockValid)
|
//if (!window->Win32.oldMouseLockValid)
|
||||||
{
|
//{
|
||||||
window->Win32.oldMouseLock = window->mouseLock;
|
//window->Win32.oldMouseLock = window->mouseLock;
|
||||||
window->Win32.oldMouseLockValid = GL_TRUE;
|
//window->Win32.oldMouseLockValid = GL_TRUE;
|
||||||
glfwEnable(GLFW_MOUSE_CURSOR);
|
//glfwEnable(GLFW_MOUSE_CURSOR);
|
||||||
}
|
//}
|
||||||
}
|
}
|
||||||
else if (window == _glfwLibrary.activeWindow || !iconified)
|
else if (window == _glfwLibrary.activeWindow || !iconified)
|
||||||
{
|
{
|
||||||
@ -636,7 +653,7 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
|||||||
if (window->mode == GLFW_FULLSCREEN && window->iconified)
|
if (window->mode == GLFW_FULLSCREEN && window->iconified)
|
||||||
{
|
{
|
||||||
// Change display settings to the user selected mode
|
// Change display settings to the user selected mode
|
||||||
_glfwSetVideoModeMODE(window->Win32.modeID);
|
//_glfwSetVideoModeMODE(window->Win32.modeID);
|
||||||
|
|
||||||
// Do we need to manually restore window?
|
// Do we need to manually restore window?
|
||||||
if (iconified)
|
if (iconified)
|
||||||
@ -653,10 +670,10 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Lock mouse, if necessary
|
// Lock mouse, if necessary
|
||||||
if (window->Win32.oldMouseLockValid && window->Win32.oldMouseLock)
|
//if (window->Win32.oldMouseLockValid && window->Win32.oldMouseLock)
|
||||||
glfwDisable(GLFW_MOUSE_CURSOR);
|
//glfwDisable(GLFW_MOUSE_CURSOR);
|
||||||
|
|
||||||
window->Win32.oldMouseLockValid = GL_FALSE;
|
//window->Win32.oldMouseLockValid = GL_FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
window->iconified = iconified;
|
window->iconified = iconified;
|
||||||
@ -698,10 +715,10 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
|||||||
case WM_KEYDOWN:
|
case WM_KEYDOWN:
|
||||||
case WM_SYSKEYDOWN:
|
case WM_SYSKEYDOWN:
|
||||||
{
|
{
|
||||||
_glfwInputKey(translateKey(wParam, lParam), GLFW_PRESS);
|
_glfwInputKey(window, translateKey(wParam, lParam), GLFW_PRESS);
|
||||||
|
|
||||||
if (window->charCallback)
|
if (window->charCallback)
|
||||||
translateChar((DWORD) wParam, (DWORD) lParam, GLFW_PRESS);
|
translateChar(window, (DWORD) wParam, (DWORD) lParam);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -712,14 +729,11 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
|||||||
// Special trick: release both shift keys on SHIFT up event
|
// Special trick: release both shift keys on SHIFT up event
|
||||||
if (wParam == VK_SHIFT)
|
if (wParam == VK_SHIFT)
|
||||||
{
|
{
|
||||||
_glfwInputKey(GLFW_KEY_LSHIFT, GLFW_RELEASE);
|
_glfwInputKey(window, GLFW_KEY_LSHIFT, GLFW_RELEASE);
|
||||||
_glfwInputKey(GLFW_KEY_RSHIFT, GLFW_RELEASE);
|
_glfwInputKey(window, GLFW_KEY_RSHIFT, GLFW_RELEASE);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
_glfwInputKey(translateKey(wParam, lParam), GLFW_RELEASE);
|
_glfwInputKey(window, translateKey(wParam, lParam), GLFW_RELEASE);
|
||||||
|
|
||||||
if (window->charCallback)
|
|
||||||
translateChar((DWORD) wParam, (DWORD) lParam, GLFW_RELEASE);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -727,21 +741,21 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
|||||||
case WM_LBUTTONDOWN:
|
case WM_LBUTTONDOWN:
|
||||||
{
|
{
|
||||||
SetCapture(hWnd);
|
SetCapture(hWnd);
|
||||||
_glfwInputMouseClick(GLFW_MOUSE_BUTTON_LEFT, GLFW_PRESS);
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_LEFT, GLFW_PRESS);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
case WM_RBUTTONDOWN:
|
case WM_RBUTTONDOWN:
|
||||||
{
|
{
|
||||||
SetCapture(hWnd);
|
SetCapture(hWnd);
|
||||||
_glfwInputMouseClick(GLFW_MOUSE_BUTTON_RIGHT, GLFW_PRESS);
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_RIGHT, GLFW_PRESS);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
case WM_MBUTTONDOWN:
|
case WM_MBUTTONDOWN:
|
||||||
{
|
{
|
||||||
SetCapture(hWnd);
|
SetCapture(hWnd);
|
||||||
_glfwInputMouseClick(GLFW_MOUSE_BUTTON_MIDDLE, GLFW_PRESS);
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_MIDDLE, GLFW_PRESS);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -750,12 +764,12 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
|||||||
if (HIWORD(wParam) == XBUTTON1)
|
if (HIWORD(wParam) == XBUTTON1)
|
||||||
{
|
{
|
||||||
SetCapture(hWnd);
|
SetCapture(hWnd);
|
||||||
_glfwInputMouseClick(GLFW_MOUSE_BUTTON_4, GLFW_PRESS);
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_4, GLFW_PRESS);
|
||||||
}
|
}
|
||||||
else if (HIWORD(wParam) == XBUTTON2)
|
else if (HIWORD(wParam) == XBUTTON2)
|
||||||
{
|
{
|
||||||
SetCapture(hWnd);
|
SetCapture(hWnd);
|
||||||
_glfwInputMouseClick(GLFW_MOUSE_BUTTON_5, GLFW_PRESS);
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_5, GLFW_PRESS);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
@ -764,21 +778,21 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
|||||||
case WM_LBUTTONUP:
|
case WM_LBUTTONUP:
|
||||||
{
|
{
|
||||||
ReleaseCapture();
|
ReleaseCapture();
|
||||||
_glfwInputMouseClick(GLFW_MOUSE_BUTTON_LEFT, GLFW_RELEASE);
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_LEFT, GLFW_RELEASE);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
case WM_RBUTTONUP:
|
case WM_RBUTTONUP:
|
||||||
{
|
{
|
||||||
ReleaseCapture();
|
ReleaseCapture();
|
||||||
_glfwInputMouseClick(GLFW_MOUSE_BUTTON_RIGHT, GLFW_RELEASE);
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_RIGHT, GLFW_RELEASE);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
case WM_MBUTTONUP:
|
case WM_MBUTTONUP:
|
||||||
{
|
{
|
||||||
ReleaseCapture();
|
ReleaseCapture();
|
||||||
_glfwInputMouseClick(GLFW_MOUSE_BUTTON_MIDDLE, GLFW_RELEASE);
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_MIDDLE, GLFW_RELEASE);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -787,12 +801,12 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
|||||||
if (HIWORD(wParam) == XBUTTON1)
|
if (HIWORD(wParam) == XBUTTON1)
|
||||||
{
|
{
|
||||||
ReleaseCapture();
|
ReleaseCapture();
|
||||||
_glfwInputMouseClick(GLFW_MOUSE_BUTTON_4, GLFW_RELEASE);
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_4, GLFW_RELEASE);
|
||||||
}
|
}
|
||||||
else if (HIWORD(wParam) == XBUTTON2)
|
else if (HIWORD(wParam) == XBUTTON2)
|
||||||
{
|
{
|
||||||
ReleaseCapture();
|
ReleaseCapture();
|
||||||
_glfwInputMouseClick(GLFW_MOUSE_BUTTON_5, GLFW_RELEASE);
|
_glfwInputMouseClick(window, GLFW_MOUSE_BUTTON_5, GLFW_RELEASE);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
@ -806,15 +820,15 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
|||||||
newMouseX = (int)((short)LOWORD(lParam));
|
newMouseX = (int)((short)LOWORD(lParam));
|
||||||
newMouseY = (int)((short)HIWORD(lParam));
|
newMouseY = (int)((short)HIWORD(lParam));
|
||||||
|
|
||||||
if (newMouseX != window->oldMouseX ||
|
if (newMouseX != window->Win32.oldMouseX ||
|
||||||
newMouseY != window->oldMouseY)
|
newMouseY != window->Win32.oldMouseY)
|
||||||
{
|
{
|
||||||
if (window == _glfwLibrary.cursorLockWindow)
|
if (window == _glfwLibrary.cursorLockWindow)
|
||||||
{
|
{
|
||||||
window->mousePosX += newMouseX -
|
window->mousePosX += newMouseX -
|
||||||
window->oldMouseX;
|
window->Win32.oldMouseX;
|
||||||
window->mousePosY += newMouseY -
|
window->mousePosY += newMouseY -
|
||||||
window->oldMouseY;
|
window->Win32.oldMouseY;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -822,13 +836,14 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
|||||||
window->mousePosY = newMouseY;
|
window->mousePosY = newMouseY;
|
||||||
}
|
}
|
||||||
|
|
||||||
window->oldMouseX = newMouseX;
|
window->Win32.oldMouseX = newMouseX;
|
||||||
window->oldMouseY = newMouseY;
|
window->Win32.oldMouseY = newMouseY;
|
||||||
window->mouseMoved = GL_TRUE;
|
window->Win32.mouseMoved = GL_TRUE;
|
||||||
|
|
||||||
if (window->mousePosCallback)
|
if (window->mousePosCallback)
|
||||||
{
|
{
|
||||||
window->mousePosCallback(window->mousePosX,
|
window->mousePosCallback(window,
|
||||||
|
window->mousePosX,
|
||||||
window->mousePosY);
|
window->mousePosY);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -842,7 +857,7 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
|||||||
window->wheelPos += wheelDelta;
|
window->wheelPos += wheelDelta;
|
||||||
|
|
||||||
if (window->mouseWheelCallback)
|
if (window->mouseWheelCallback)
|
||||||
window->mouseWheelCallback(window->wheelPos);
|
window->mouseWheelCallback(window, window->wheelPos);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -853,7 +868,7 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
|||||||
window->height = HIWORD(lParam);
|
window->height = HIWORD(lParam);
|
||||||
|
|
||||||
// If the mouse is locked, update the clipping rect
|
// If the mouse is locked, update the clipping rect
|
||||||
if (_glfwWin.mouseLock)
|
if (window == _glfwLibrary.cursorLockWindow)
|
||||||
{
|
{
|
||||||
RECT ClipWindowRect;
|
RECT ClipWindowRect;
|
||||||
if (GetWindowRect(window->Win32.handle, &ClipWindowRect))
|
if (GetWindowRect(window->Win32.handle, &ClipWindowRect))
|
||||||
@ -861,7 +876,7 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (window->windowSizeCallback)
|
if (window->windowSizeCallback)
|
||||||
window->windowSizeCallback(LOWORD(lParam), HIWORD(lParam));
|
window->windowSizeCallback(window, window->width, window->height);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -869,7 +884,7 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
|||||||
case WM_MOVE:
|
case WM_MOVE:
|
||||||
{
|
{
|
||||||
// If the mouse is locked, update the clipping rect
|
// If the mouse is locked, update the clipping rect
|
||||||
if (_glfwWin.mouseLock)
|
if (window == _glfwLibrary.cursorLockWindow)
|
||||||
{
|
{
|
||||||
RECT ClipWindowRect;
|
RECT ClipWindowRect;
|
||||||
if (GetWindowRect(window->Win32.handle, &ClipWindowRect))
|
if (GetWindowRect(window->Win32.handle, &ClipWindowRect))
|
||||||
@ -881,8 +896,8 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
|||||||
// Was the window contents damaged?
|
// Was the window contents damaged?
|
||||||
case WM_PAINT:
|
case WM_PAINT:
|
||||||
{
|
{
|
||||||
if (window->Win32.handleRefreshCallback)
|
if (window->windowRefreshCallback)
|
||||||
window->Win32.handleRefreshCallback();
|
window->windowRefreshCallback(window);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -1026,24 +1041,20 @@ static ATOM registerWindowClass(void)
|
|||||||
// Returns the closest matching pixel format, or zero on error
|
// Returns the closest matching pixel format, or zero on error
|
||||||
//========================================================================
|
//========================================================================
|
||||||
|
|
||||||
static int choosePixelFormat(const _GLFWfbconfig* fbconfig)
|
static int choosePixelFormat(_GLFWwindow* window, const _GLFWfbconfig* fbconfig)
|
||||||
{
|
{
|
||||||
unsigned int fbcount;
|
unsigned int fbcount;
|
||||||
int pixelFormat;
|
int pixelFormat;
|
||||||
_GLFWfbconfig* fbconfigs;
|
_GLFWfbconfig* fbconfigs;
|
||||||
const _GLFWfbconfig* closest;
|
const _GLFWfbconfig* closest;
|
||||||
|
|
||||||
fbconfigs = getFBConfigs(&fbcount);
|
fbconfigs = getFBConfigs(window, &fbcount);
|
||||||
if (!fbconfigs)
|
if (!fbconfigs)
|
||||||
{
|
|
||||||
fprintf(stderr, "Failed to find any usable GLFWFBConfigs\n");
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
|
||||||
|
|
||||||
closest = _glfwChooseFBConfig(fbconfig, fbconfigs, fbcount);
|
closest = _glfwChooseFBConfig(fbconfig, fbconfigs, fbcount);
|
||||||
if (!closest)
|
if (!closest)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Failed to select a GLFWFBConfig from the alternatives\n");
|
|
||||||
free(fbconfigs);
|
free(fbconfigs);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -1112,7 +1123,7 @@ static int createWindow(_GLFWwindow* window,
|
|||||||
window->Win32.dwExStyle = dwExStyle;
|
window->Win32.dwExStyle = dwExStyle;
|
||||||
|
|
||||||
// Adjust window size for frame and title bar
|
// Adjust window size for frame and title bar
|
||||||
getFullWindowSize(window->width, window->height, &fullWidth, &fullHeight);
|
getFullWindowSize(window, window->width, window->height, &fullWidth, &fullHeight);
|
||||||
|
|
||||||
// Adjust window position to working area (e.g. if the task bar is at
|
// Adjust window position to working area (e.g. if the task bar is at
|
||||||
// the top of the display). Fullscreen windows are always opened in
|
// the top of the display). Fullscreen windows are always opened in
|
||||||
@ -1136,44 +1147,38 @@ static int createWindow(_GLFWwindow* window,
|
|||||||
|
|
||||||
if (!window->Win32.handle)
|
if (!window->Win32.handle)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Unable to create Win32 window\n");
|
_glfwSetError(GLFW_INTERNAL_ERROR);
|
||||||
return GL_FALSE;
|
return GL_FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
window->WGL.DC = GetDC(window->Win32.handle);
|
window->WGL.DC = GetDC(window->Win32.handle);
|
||||||
if (!window->WGL.DC)
|
if (!window->WGL.DC)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Unable to retrieve GLFW window DC\n");
|
_glfwSetError(GLFW_INTERNAL_ERROR);
|
||||||
return GL_FALSE;
|
return GL_FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
pixelFormat = choosePixelFormat(fbconfig);
|
pixelFormat = choosePixelFormat(window, fbconfig);
|
||||||
if (!pixelFormat)
|
if (!pixelFormat)
|
||||||
{
|
|
||||||
fprintf(stderr, "Unable to find a usable pixel format\n");
|
|
||||||
return GL_FALSE;
|
return GL_FALSE;
|
||||||
}
|
|
||||||
|
|
||||||
window->WGL.context = createContext(window->WGL.DC, wndconfig, pixelFormat);
|
window->WGL.context = createContext(window, wndconfig, pixelFormat);
|
||||||
if (!window->WGL.context)
|
if (!window->WGL.context)
|
||||||
{
|
|
||||||
fprintf(stderr, "Unable to create OpenGL context\n");
|
|
||||||
return GL_FALSE;
|
return GL_FALSE;
|
||||||
}
|
|
||||||
|
|
||||||
if (!wglMakeCurrent(window->WGL.DC, window->WGL.context))
|
if (!wglMakeCurrent(window->WGL.DC, window->WGL.context))
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Unable to make OpenGL context current\n");
|
_glfwSetError(GLFW_INTERNAL_ERROR);
|
||||||
return GL_FALSE;
|
return GL_FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
initWGLExtensions();
|
initWGLExtensions(window);
|
||||||
|
|
||||||
// Initialize mouse position data
|
// Initialize mouse position data
|
||||||
GetCursorPos(&pos);
|
GetCursorPos(&pos);
|
||||||
ScreenToClient(window->Win32.handle, &pos);
|
ScreenToClient(window->Win32.handle, &pos);
|
||||||
window->oldMouseX = window->mousePosX = pos.x;
|
window->Win32.oldMouseX = window->mousePosX = pos.x;
|
||||||
window->oldMouseY = window->mousePosY = pos.y;
|
window->Win32.oldMouseY = window->mousePosY = pos.y;
|
||||||
|
|
||||||
return GL_TRUE;
|
return GL_TRUE;
|
||||||
}
|
}
|
||||||
@ -1183,11 +1188,10 @@ static int createWindow(_GLFWwindow* window,
|
|||||||
// Destroys the GLFW window and rendering context
|
// Destroys the GLFW window and rendering context
|
||||||
//========================================================================
|
//========================================================================
|
||||||
|
|
||||||
static void destroyWindow(void)
|
static void destroyWindow(_GLFWwindow* window)
|
||||||
{
|
{
|
||||||
if (window->WGL.context)
|
if (window->WGL.context)
|
||||||
{
|
{
|
||||||
wglMakeCurrent(NULL, NULL);
|
|
||||||
wglDeleteContext(window->WGL.context);
|
wglDeleteContext(window->WGL.context);
|
||||||
window->WGL.context = NULL;
|
window->WGL.context = NULL;
|
||||||
}
|
}
|
||||||
@ -1229,12 +1233,18 @@ int _glfwPlatformOpenWindow(_GLFWwindow* window,
|
|||||||
|
|
||||||
if (window->mode == GLFW_FULLSCREEN)
|
if (window->mode == GLFW_FULLSCREEN)
|
||||||
{
|
{
|
||||||
|
int refreshRate = wndconfig->refreshRate;
|
||||||
|
|
||||||
|
int bpp = fbconfig->redBits + fbconfig->greenBits + fbconfig->blueBits;
|
||||||
|
if (bpp < 15 || bpp >= 24)
|
||||||
|
bpp = 32;
|
||||||
|
|
||||||
_glfwSetVideoMode(&window->width, &window->height,
|
_glfwSetVideoMode(&window->width, &window->height,
|
||||||
fbconfig->redBits, fbconfig->greenBits, fbconfig->blueBits,
|
&bpp, &refreshRate, GL_FALSE);
|
||||||
wndconfig->refreshRate);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
initWGLExtensions();
|
// This call only clears the WGL extension member variables
|
||||||
|
initWGLExtensions(window);
|
||||||
|
|
||||||
if (!createWindow(window, wndconfig, fbconfig))
|
if (!createWindow(window, wndconfig, fbconfig))
|
||||||
return GL_FALSE;
|
return GL_FALSE;
|
||||||
@ -1279,7 +1289,7 @@ int _glfwPlatformOpenWindow(_GLFWwindow* window,
|
|||||||
// we're just creating an OpenGL 3.0+ context with the same pixel
|
// we're just creating an OpenGL 3.0+ context with the same pixel
|
||||||
// format, but it's not worth the potential compatibility problems
|
// format, but it's not worth the potential compatibility problems
|
||||||
|
|
||||||
destroyWindow();
|
destroyWindow(window);
|
||||||
|
|
||||||
if (!createWindow(window, wndconfig, fbconfig))
|
if (!createWindow(window, wndconfig, fbconfig))
|
||||||
return GL_FALSE;
|
return GL_FALSE;
|
||||||
@ -1299,13 +1309,26 @@ int _glfwPlatformOpenWindow(_GLFWwindow* window,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//========================================================================
|
||||||
|
// Make the OpenGL context associated with the specified window current
|
||||||
|
//========================================================================
|
||||||
|
|
||||||
|
void _glfwPlatformMakeWindowCurrent(_GLFWwindow* window)
|
||||||
|
{
|
||||||
|
if (window)
|
||||||
|
wglMakeCurrent(window->WGL.DC, window->WGL.context);
|
||||||
|
else
|
||||||
|
wglMakeCurrent(NULL, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//========================================================================
|
//========================================================================
|
||||||
// Properly kill the window / video display
|
// Properly kill the window / video display
|
||||||
//========================================================================
|
//========================================================================
|
||||||
|
|
||||||
void _glfwPlatformCloseWindow(_GLFWwindow* window)
|
void _glfwPlatformCloseWindow(_GLFWwindow* window)
|
||||||
{
|
{
|
||||||
destroyWindow();
|
destroyWindow(window);
|
||||||
|
|
||||||
if (window->Win32.classAtom)
|
if (window->Win32.classAtom)
|
||||||
{
|
{
|
||||||
@ -1337,10 +1360,8 @@ void _glfwPlatformSetWindowTitle(_GLFWwindow* window, const char* title)
|
|||||||
|
|
||||||
void _glfwPlatformSetWindowSize(_GLFWwindow* window, int width, int height)
|
void _glfwPlatformSetWindowSize(_GLFWwindow* window, int width, int height)
|
||||||
{
|
{
|
||||||
int bpp, mode = 0, refresh;
|
int bpp, newMode = 0, refresh;
|
||||||
int sizechanged = GL_FALSE;
|
GLboolean sizeChanged = GL_FALSE;
|
||||||
GLint drawbuffer;
|
|
||||||
GLfloat clearcolor[4];
|
|
||||||
|
|
||||||
if (window->mode == GLFW_FULLSCREEN)
|
if (window->mode == GLFW_FULLSCREEN)
|
||||||
{
|
{
|
||||||
@ -1348,41 +1369,42 @@ void _glfwPlatformSetWindowSize(_GLFWwindow* window, int width, int height)
|
|||||||
|
|
||||||
DEVMODE dm;
|
DEVMODE dm;
|
||||||
|
|
||||||
// Get current BPP settings
|
|
||||||
dm.dmSize = sizeof(DEVMODE);
|
dm.dmSize = sizeof(DEVMODE);
|
||||||
if (EnumDisplaySettings(NULL, _glfwWin.modeID, &dm))
|
//if (EnumDisplaySettings(NULL, window->Win32.modeID, &dm))
|
||||||
{
|
//{
|
||||||
// Get bpp
|
// We need to keep BPP the same for the OpenGL context to keep working
|
||||||
bpp = dm.dmBitsPerPel;
|
//bpp = dm.dmBitsPerPel;
|
||||||
|
|
||||||
// Get closest match for target video mode
|
// Get closest match for target video mode
|
||||||
refresh = window->Win32.desiredRefreshRate;
|
//refresh = window->Win32.desiredRefreshRate;
|
||||||
mode = _glfwGetClosestVideoModeBPP(&width, &height, &bpp, &refresh);
|
//newMode = _glfwGetClosestVideoModeBPP(&width, &height, &bpp, &refresh);
|
||||||
|
//}
|
||||||
|
//else
|
||||||
|
//newMode = window->Win32.modeID;
|
||||||
|
|
||||||
|
if (width > window->width || height > window->height)
|
||||||
|
{
|
||||||
|
// The new video mode is larger than the current one, so we resize
|
||||||
|
// the window before switch modes to avoid exposing whatever is
|
||||||
|
// underneath
|
||||||
|
|
||||||
|
SetWindowPos(window->Win32.handle, HWND_TOP, 0, 0, width, height,
|
||||||
|
SWP_NOOWNERZORDER | SWP_NOMOVE | SWP_NOZORDER);
|
||||||
|
sizeChanged = GL_TRUE;
|
||||||
}
|
}
|
||||||
else
|
|
||||||
mode = window->Win32.modeID;
|
//if (newMode != window->Win32.modeID)
|
||||||
|
//_glfwSetVideoModeMODE(newMode);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// If we are in windowed mode, adjust the window size to
|
// If we are in windowed mode, adjust the window size to
|
||||||
// compensate for window decorations
|
// compensate for window decorations
|
||||||
getFullWindowSize(width, height, &width, &height);
|
getFullWindowSize(window, width, height, &width, &height);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Change window size before changing fullscreen mode?
|
// Set window size (if we haven't already)
|
||||||
if (window->mode == GLFW_FULLSCREEN && (width > window->width))
|
if (!sizeChanged)
|
||||||
{
|
|
||||||
SetWindowPos(window->Win32.handle, HWND_TOP, 0, 0, width, height,
|
|
||||||
SWP_NOOWNERZORDER | SWP_NOMOVE | SWP_NOZORDER);
|
|
||||||
sizechanged = GL_TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Change fullscreen video mode?
|
|
||||||
if (window->mode == GLFW_FULLSCREEN && mode != window->Win32.modeID)
|
|
||||||
_glfwSetVideoModeMODE(mode);
|
|
||||||
|
|
||||||
// Set window size (if not already changed)
|
|
||||||
if (!sizechanged)
|
|
||||||
{
|
{
|
||||||
SetWindowPos(window->Win32.handle, HWND_TOP, 0, 0, width, height,
|
SetWindowPos(window->Win32.handle, HWND_TOP, 0, 0, width, height,
|
||||||
SWP_NOOWNERZORDER | SWP_NOMOVE | SWP_NOZORDER);
|
SWP_NOOWNERZORDER | SWP_NOMOVE | SWP_NOZORDER);
|
||||||
@ -1419,12 +1441,12 @@ void _glfwPlatformIconifyWindow(_GLFWwindow* window)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Unlock mouse
|
// Unlock mouse
|
||||||
if (!window->Win32.oldMouseLockValid)
|
//if (!window->Win32.oldMouseLockValid)
|
||||||
{
|
//{
|
||||||
window->Win32.oldMouseLock = _glfwWin.mouseLock;
|
//window->Win32.oldMouseLock = _glfwWin.mouseLock;
|
||||||
window->Win32.oldMouseLockValid = GL_TRUE;
|
//window->Win32.oldMouseLockValid = GL_TRUE;
|
||||||
glfwEnable(GLFW_MOUSE_CURSOR);
|
//glfwEnable(window, GLFW_MOUSE_CURSOR);
|
||||||
}
|
//}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -1437,7 +1459,7 @@ void _glfwPlatformRestoreWindow(_GLFWwindow* window)
|
|||||||
if (window->mode == GLFW_FULLSCREEN)
|
if (window->mode == GLFW_FULLSCREEN)
|
||||||
{
|
{
|
||||||
// Change display settings to the user selected mode
|
// Change display settings to the user selected mode
|
||||||
_glfwSetVideoModeMODE(window->Win32.modeID);
|
//_glfwSetVideoModeMODE(window->Win32.modeID);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Un-iconify window
|
// Un-iconify window
|
||||||
@ -1452,8 +1474,8 @@ void _glfwPlatformRestoreWindow(_GLFWwindow* window)
|
|||||||
window->iconified = GL_FALSE;
|
window->iconified = GL_FALSE;
|
||||||
|
|
||||||
// Lock mouse, if necessary
|
// Lock mouse, if necessary
|
||||||
if (window->Win32.oldMouseLockValid && window->Win32.oldMouseLock)
|
//if (window->Win32.oldMouseLockValid && window->Win32.oldMouseLock)
|
||||||
glfwDisable(GLFW_MOUSE_CURSOR);
|
//glfwDisable(GLFW_MOUSE_CURSOR);
|
||||||
|
|
||||||
window->Win32.oldMouseLockValid = GL_FALSE;
|
window->Win32.oldMouseLockValid = GL_FALSE;
|
||||||
}
|
}
|
||||||
@ -1501,7 +1523,7 @@ void _glfwPlatformRefreshWindowParams(void)
|
|||||||
|
|
||||||
if (window->WGL.has_WGL_ARB_pixel_format)
|
if (window->WGL.has_WGL_ARB_pixel_format)
|
||||||
{
|
{
|
||||||
if (getPixelFormatAttrib(pixelFormat, WGL_ACCELERATION_ARB) !=
|
if (getPixelFormatAttrib(window, pixelFormat, WGL_ACCELERATION_ARB) !=
|
||||||
WGL_NO_ACCELERATION_ARB)
|
WGL_NO_ACCELERATION_ARB)
|
||||||
{
|
{
|
||||||
window->accelerated = GL_TRUE;
|
window->accelerated = GL_TRUE;
|
||||||
@ -1509,25 +1531,37 @@ void _glfwPlatformRefreshWindowParams(void)
|
|||||||
else
|
else
|
||||||
window->accelerated = GL_FALSE;
|
window->accelerated = GL_FALSE;
|
||||||
|
|
||||||
window->redBits = getPixelFormatAttrib(pixelFormat, WGL_RED_BITS_ARB);
|
window->redBits =
|
||||||
window->greenBits = getPixelFormatAttrib(pixelFormat, WGL_GREEN_BITS_ARB);
|
getPixelFormatAttrib(window, pixelFormat, WGL_RED_BITS_ARB);
|
||||||
window->blueBits = getPixelFormatAttrib(pixelFormat, WGL_BLUE_BITS_ARB);
|
window->greenBits =
|
||||||
|
getPixelFormatAttrib(window, pixelFormat, WGL_GREEN_BITS_ARB);
|
||||||
|
window->blueBits =
|
||||||
|
getPixelFormatAttrib(window, pixelFormat, WGL_BLUE_BITS_ARB);
|
||||||
|
|
||||||
window->alphaBits = getPixelFormatAttrib(pixelFormat, WGL_ALPHA_BITS_ARB);
|
window->alphaBits =
|
||||||
window->depthBits = getPixelFormatAttrib(pixelFormat, WGL_DEPTH_BITS_ARB);
|
getPixelFormatAttrib(window, pixelFormat, WGL_ALPHA_BITS_ARB);
|
||||||
window->stencilBits = getPixelFormatAttrib(pixelFormat, WGL_STENCIL_BITS_ARB);
|
window->depthBits =
|
||||||
|
getPixelFormatAttrib(window, pixelFormat, WGL_DEPTH_BITS_ARB);
|
||||||
|
window->stencilBits =
|
||||||
|
getPixelFormatAttrib(window, pixelFormat, WGL_STENCIL_BITS_ARB);
|
||||||
|
|
||||||
window->accumRedBits = getPixelFormatAttrib(pixelFormat, WGL_ACCUM_RED_BITS_ARB);
|
window->accumRedBits =
|
||||||
window->accumGreenBits = getPixelFormatAttrib(pixelFormat, WGL_ACCUM_GREEN_BITS_ARB);
|
getPixelFormatAttrib(window, pixelFormat, WGL_ACCUM_RED_BITS_ARB);
|
||||||
window->accumBlueBits = getPixelFormatAttrib(pixelFormat, WGL_ACCUM_BLUE_BITS_ARB);
|
window->accumGreenBits =
|
||||||
window->accumAlphaBits = getPixelFormatAttrib(pixelFormat, WGL_ACCUM_ALPHA_BITS_ARB);
|
getPixelFormatAttrib(window, pixelFormat, WGL_ACCUM_GREEN_BITS_ARB);
|
||||||
|
window->accumBlueBits =
|
||||||
|
getPixelFormatAttrib(window, pixelFormat, WGL_ACCUM_BLUE_BITS_ARB);
|
||||||
|
window->accumAlphaBits =
|
||||||
|
getPixelFormatAttrib(window, pixelFormat, WGL_ACCUM_ALPHA_BITS_ARB);
|
||||||
|
|
||||||
window->auxBuffers = getPixelFormatAttrib(pixelFormat, WGL_AUX_BUFFERS_ARB);
|
window->auxBuffers =
|
||||||
window->stereo = getPixelFormatAttrib(pixelFormat, WGL_STEREO_ARB) ? GL_TRUE : GL_FALSE;
|
getPixelFormatAttrib(window, pixelFormat, WGL_AUX_BUFFERS_ARB);
|
||||||
|
window->stereo =
|
||||||
|
getPixelFormatAttrib(window, pixelFormat, WGL_STEREO_ARB) ? GL_TRUE : GL_FALSE;
|
||||||
|
|
||||||
if (window->WGL.has_WGL_ARB_multisample)
|
if (window->WGL.has_WGL_ARB_multisample)
|
||||||
{
|
{
|
||||||
window->samples = getPixelFormatAttrib(pixelFormat, WGL_SAMPLES_ARB);
|
window->samples = getPixelFormatAttrib(window, pixelFormat, WGL_SAMPLES_ARB);
|
||||||
// Should we force 1 to 0 here for consistency, or keep 1 for transparency?
|
// Should we force 1 to 0 here for consistency, or keep 1 for transparency?
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -1561,11 +1595,9 @@ void _glfwPlatformRefreshWindowParams(void)
|
|||||||
window->samples = 0;
|
window->samples = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get refresh rate
|
|
||||||
mode = (window->mode == GLFW_FULLSCREEN) ? window->Win32.modeID : ENUM_CURRENT_SETTINGS;
|
|
||||||
dm.dmSize = sizeof(DEVMODE);
|
dm.dmSize = sizeof(DEVMODE);
|
||||||
|
|
||||||
if (EnumDisplaySettings(NULL, mode, &dm))
|
if (EnumDisplaySettings(NULL, ENUM_CURRENT_SETTINGS, &dm))
|
||||||
{
|
{
|
||||||
window->refreshRate = dm.dmDisplayFrequency;
|
window->refreshRate = dm.dmDisplayFrequency;
|
||||||
if (window->refreshRate <= 1)
|
if (window->refreshRate <= 1)
|
||||||
@ -1583,35 +1615,39 @@ void _glfwPlatformRefreshWindowParams(void)
|
|||||||
void _glfwPlatformPollEvents(void)
|
void _glfwPlatformPollEvents(void)
|
||||||
{
|
{
|
||||||
MSG msg;
|
MSG msg;
|
||||||
int winclosed = GL_FALSE;
|
_GLFWwindow* window;
|
||||||
|
|
||||||
// Flag: mouse was not moved (will be changed by _glfwGetNextEvent if
|
window = _glfwLibrary.cursorLockWindow;
|
||||||
// there was a mouse move event)
|
if (window)
|
||||||
window->mouseMoved = GL_FALSE;
|
|
||||||
if (_glfwWin.mouseLock)
|
|
||||||
{
|
{
|
||||||
window->oldMouseX = _glfwWin.width/2;
|
window->Win32.mouseMoved = GL_FALSE;
|
||||||
window->oldMouseY = _glfwWin.height/2;
|
window->Win32.oldMouseX = window->width / 2;
|
||||||
|
window->Win32.oldMouseY = window->height / 2;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
window->oldMouseX = window->mousePosX;
|
//window->Win32.oldMouseX = window->mousePosX;
|
||||||
window->oldMouseY = window->mousePosY;
|
//window->Win32.oldMouseY = window->mousePosY;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check for new window messages
|
|
||||||
while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
|
while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
|
||||||
{
|
{
|
||||||
switch (msg.message)
|
switch (msg.message)
|
||||||
{
|
{
|
||||||
// QUIT-message (from close window)?
|
|
||||||
case WM_QUIT:
|
case WM_QUIT:
|
||||||
{
|
{
|
||||||
winclosed = GL_TRUE;
|
// Treat WM_QUIT as a close on all windows
|
||||||
|
|
||||||
|
window = _glfwLibrary.windowListHead;
|
||||||
|
while (window)
|
||||||
|
{
|
||||||
|
window->closed = GL_TRUE;
|
||||||
|
window = window->next;
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ok, send it to the window message handler
|
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
DispatchMessage(&msg);
|
DispatchMessage(&msg);
|
||||||
@ -1623,8 +1659,8 @@ void _glfwPlatformPollEvents(void)
|
|||||||
// LSHIFT/RSHIFT fixup (keys tend to "stick" without this fix)
|
// LSHIFT/RSHIFT fixup (keys tend to "stick" without this fix)
|
||||||
// This is the only async event handling in GLFW, but it solves some
|
// This is the only async event handling in GLFW, but it solves some
|
||||||
// nasty problems.
|
// nasty problems.
|
||||||
// Caveat: Does not work under Win 9x/ME.
|
window = _glfwLibrary.activeWindow;
|
||||||
if (_glfwLibrary.Sys.winVer >= _GLFW_WIN_NT4)
|
if (window)
|
||||||
{
|
{
|
||||||
int lshift_down, rshift_down;
|
int lshift_down, rshift_down;
|
||||||
|
|
||||||
@ -1635,27 +1671,20 @@ void _glfwPlatformPollEvents(void)
|
|||||||
// See if this differs from our belief of what has happened
|
// See if this differs from our belief of what has happened
|
||||||
// (we only have to check for lost key up events)
|
// (we only have to check for lost key up events)
|
||||||
if (!lshift_down && window->key[GLFW_KEY_LSHIFT] == 1)
|
if (!lshift_down && window->key[GLFW_KEY_LSHIFT] == 1)
|
||||||
_glfwInputKey(GLFW_KEY_LSHIFT, GLFW_RELEASE);
|
_glfwInputKey(window, GLFW_KEY_LSHIFT, GLFW_RELEASE);
|
||||||
|
|
||||||
if (!rshift_down && window->key[GLFW_KEY_RSHIFT] == 1)
|
if (!rshift_down && window->key[GLFW_KEY_RSHIFT] == 1)
|
||||||
_glfwInputKey(GLFW_KEY_RSHIFT, GLFW_RELEASE);
|
_glfwInputKey(window, GLFW_KEY_RSHIFT, GLFW_RELEASE);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Did we have mouse movement in locked cursor mode?
|
// Did we have mouse movement in locked cursor mode?
|
||||||
if (window->mouseMoved && _glfwWin.mouseLock)
|
window = _glfwLibrary.cursorLockWindow;
|
||||||
|
if (window && window->Win32.mouseMoved)
|
||||||
{
|
{
|
||||||
_glfwPlatformSetMouseCursorPos(window->width / 2,
|
_glfwPlatformSetMouseCursorPos(window,
|
||||||
|
window->width / 2,
|
||||||
window->height / 2);
|
window->height / 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Was there a window close request?
|
|
||||||
if (winclosed && window->closeCallback)
|
|
||||||
{
|
|
||||||
// Check if the program wants us to close the window
|
|
||||||
winclosed = window->closeCallback();
|
|
||||||
}
|
|
||||||
if (winclosed)
|
|
||||||
glfwCloseWindow();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user