2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2014-01-22 00:32:00 +00:00
|
|
|
// GLFW 3.1 Win32 - www.glfw.org
|
2010-09-07 15:34:51 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Copyright (c) 2002-2006 Marcus Geelnard
|
|
|
|
// Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
|
|
|
|
//
|
|
|
|
// This software is provided 'as-is', without any express or implied
|
|
|
|
// warranty. In no event will the authors be held liable for any damages
|
|
|
|
// arising from the use of this software.
|
|
|
|
//
|
|
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
|
|
// including commercial applications, and to alter it and redistribute it
|
|
|
|
// freely, subject to the following restrictions:
|
|
|
|
//
|
|
|
|
// 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
// claim that you wrote the original software. If you use this software
|
|
|
|
// in a product, an acknowledgment in the product documentation would
|
|
|
|
// be appreciated but is not required.
|
|
|
|
//
|
|
|
|
// 2. Altered source versions must be plainly marked as such, and must not
|
|
|
|
// be misrepresented as being the original software.
|
|
|
|
//
|
|
|
|
// 3. This notice may not be removed or altered from any source
|
|
|
|
// distribution.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
|
2010-10-13 02:04:43 +00:00
|
|
|
#include <stdlib.h>
|
2012-08-14 11:51:39 +00:00
|
|
|
#include <malloc.h>
|
2010-10-13 02:04:43 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
#ifdef __BORLANDC__
|
2010-09-13 21:50:04 +00:00
|
|
|
// With the Borland C++ compiler, we want to disable FPU exceptions
|
2010-09-07 15:34:51 +00:00
|
|
|
#include <float.h>
|
|
|
|
#endif // __BORLANDC__
|
|
|
|
|
|
|
|
|
2013-08-07 16:07:33 +00:00
|
|
|
#if defined(_GLFW_USE_OPTIMUS_HPG)
|
|
|
|
|
|
|
|
// Applications exporting this symbol with this value will be automatically
|
|
|
|
// directed to the high-performance GPU on nVidia Optimus systems
|
|
|
|
//
|
|
|
|
GLFWAPI DWORD NvOptimusEnablement = 0x00000001;
|
|
|
|
|
|
|
|
#endif // _GLFW_USE_OPTIMUS_HPG
|
|
|
|
|
2012-09-12 19:23:04 +00:00
|
|
|
#if defined(_GLFW_BUILD_DLL)
|
2013-02-04 12:22:10 +00:00
|
|
|
|
|
|
|
// GLFW DLL entry point
|
|
|
|
//
|
2012-09-12 19:23:04 +00:00
|
|
|
BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-02-04 12:22:10 +00:00
|
|
|
#endif // _GLFW_BUILD_DLL
|
2012-09-12 19:23:04 +00:00
|
|
|
|
2010-09-07 15:50:43 +00:00
|
|
|
// Load necessary libraries (DLLs)
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2010-09-10 20:03:36 +00:00
|
|
|
static GLboolean initLibraries(void)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2014-03-06 17:30:14 +00:00
|
|
|
_glfw.win32.winmm.instance = LoadLibraryW(L"winmm.dll");
|
2013-01-02 00:40:42 +00:00
|
|
|
if (!_glfw.win32.winmm.instance)
|
2014-01-29 14:14:49 +00:00
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Win32: Failed to load winmm.dll");
|
2010-09-14 02:27:02 +00:00
|
|
|
return GL_FALSE;
|
2014-01-29 14:14:49 +00:00
|
|
|
}
|
2010-09-14 02:27:02 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
_glfw.win32.winmm.joyGetDevCaps = (JOYGETDEVCAPS_T)
|
|
|
|
GetProcAddress(_glfw.win32.winmm.instance, "joyGetDevCapsW");
|
|
|
|
_glfw.win32.winmm.joyGetPos = (JOYGETPOS_T)
|
|
|
|
GetProcAddress(_glfw.win32.winmm.instance, "joyGetPos");
|
|
|
|
_glfw.win32.winmm.joyGetPosEx = (JOYGETPOSEX_T)
|
|
|
|
GetProcAddress(_glfw.win32.winmm.instance, "joyGetPosEx");
|
|
|
|
_glfw.win32.winmm.timeGetTime = (TIMEGETTIME_T)
|
|
|
|
GetProcAddress(_glfw.win32.winmm.instance, "timeGetTime");
|
|
|
|
|
|
|
|
if (!_glfw.win32.winmm.joyGetDevCaps ||
|
|
|
|
!_glfw.win32.winmm.joyGetPos ||
|
|
|
|
!_glfw.win32.winmm.joyGetPosEx ||
|
|
|
|
!_glfw.win32.winmm.timeGetTime)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2014-01-29 14:14:49 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Win32: Failed to load winmm functions");
|
2010-09-07 15:34:51 +00:00
|
|
|
return GL_FALSE;
|
2010-09-14 02:27:02 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-03-06 17:30:14 +00:00
|
|
|
_glfw.win32.user32.instance = LoadLibraryW(L"user32.dll");
|
2013-03-10 18:23:42 +00:00
|
|
|
if (_glfw.win32.user32.instance)
|
|
|
|
{
|
|
|
|
_glfw.win32.user32.SetProcessDPIAware = (SETPROCESSDPIAWARE_T)
|
|
|
|
GetProcAddress(_glfw.win32.user32.instance, "SetProcessDPIAware");
|
2014-02-10 14:03:23 +00:00
|
|
|
_glfw.win32.user32.ChangeWindowMessageFilterEx = (CHANGEWINDOWMESSAGEFILTEREX_T)
|
|
|
|
GetProcAddress(_glfw.win32.user32.instance, "ChangeWindowMessageFilterEx");
|
2013-03-10 18:23:42 +00:00
|
|
|
}
|
|
|
|
|
2014-03-06 17:30:14 +00:00
|
|
|
_glfw.win32.dwmapi.instance = LoadLibraryW(L"dwmapi.dll");
|
2013-03-11 19:54:32 +00:00
|
|
|
if (_glfw.win32.dwmapi.instance)
|
|
|
|
{
|
|
|
|
_glfw.win32.dwmapi.DwmIsCompositionEnabled = (DWMISCOMPOSITIONENABLED_T)
|
|
|
|
GetProcAddress(_glfw.win32.dwmapi.instance, "DwmIsCompositionEnabled");
|
|
|
|
}
|
2013-12-22 15:38:56 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
2010-09-07 15:50:43 +00:00
|
|
|
// Unload used libraries (DLLs)
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2013-06-24 12:38:00 +00:00
|
|
|
static void terminateLibraries(void)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2014-08-15 12:50:41 +00:00
|
|
|
if (_glfw.win32.winmm.instance)
|
2013-01-02 00:40:42 +00:00
|
|
|
FreeLibrary(_glfw.win32.winmm.instance);
|
2013-06-26 12:04:07 +00:00
|
|
|
|
|
|
|
if (_glfw.win32.user32.instance)
|
|
|
|
FreeLibrary(_glfw.win32.user32.instance);
|
|
|
|
|
|
|
|
if (_glfw.win32.dwmapi.instance)
|
|
|
|
FreeLibrary(_glfw.win32.dwmapi.instance);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-05 01:07:50 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW internal API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-03-11 19:54:32 +00:00
|
|
|
// Returns whether desktop compositing is enabled
|
|
|
|
//
|
|
|
|
BOOL _glfwIsCompositionEnabled(void)
|
|
|
|
{
|
|
|
|
BOOL enabled;
|
|
|
|
|
|
|
|
if (!_glfw_DwmIsCompositionEnabled)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (_glfw_DwmIsCompositionEnabled(&enabled) != S_OK)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return enabled;
|
|
|
|
}
|
|
|
|
|
2012-02-05 01:07:50 +00:00
|
|
|
// Returns a wide string version of the specified UTF-8 string
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2012-02-05 01:07:50 +00:00
|
|
|
WCHAR* _glfwCreateWideStringFromUTF8(const char* source)
|
|
|
|
{
|
|
|
|
WCHAR* target;
|
|
|
|
int length;
|
|
|
|
|
|
|
|
length = MultiByteToWideChar(CP_UTF8, 0, source, -1, NULL, 0);
|
|
|
|
if (!length)
|
|
|
|
return NULL;
|
|
|
|
|
2013-07-04 12:54:07 +00:00
|
|
|
target = calloc(length + 1, sizeof(WCHAR));
|
2012-02-05 01:07:50 +00:00
|
|
|
|
|
|
|
if (!MultiByteToWideChar(CP_UTF8, 0, source, -1, target, length + 1))
|
|
|
|
{
|
2012-02-07 14:40:47 +00:00
|
|
|
free(target);
|
2012-02-05 01:07:50 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return target;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns a UTF-8 string version of the specified wide string
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2012-02-05 01:07:50 +00:00
|
|
|
char* _glfwCreateUTF8FromWideString(const WCHAR* source)
|
|
|
|
{
|
|
|
|
char* target;
|
|
|
|
int length;
|
|
|
|
|
|
|
|
length = WideCharToMultiByte(CP_UTF8, 0, source, -1, NULL, 0, NULL, NULL);
|
|
|
|
if (!length)
|
|
|
|
return NULL;
|
|
|
|
|
2013-07-04 12:54:07 +00:00
|
|
|
target = calloc(length + 1, sizeof(char));
|
2012-02-05 01:07:50 +00:00
|
|
|
|
|
|
|
if (!WideCharToMultiByte(CP_UTF8, 0, source, -1, target, length + 1, NULL, NULL))
|
|
|
|
{
|
2012-02-07 14:40:47 +00:00
|
|
|
free(target);
|
2012-02-05 01:07:50 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return target;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-10 20:03:36 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW platform API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-10 20:03:36 +00:00
|
|
|
int _glfwPlatformInit(void)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-13 21:50:04 +00:00
|
|
|
// To make SetForegroundWindow work as we want, we need to fiddle
|
2010-09-07 15:34:51 +00:00
|
|
|
// with the FOREGROUNDLOCKTIMEOUT system setting (we do this as early
|
|
|
|
// as possible in the hope of still being the foreground process)
|
2014-03-06 17:30:14 +00:00
|
|
|
SystemParametersInfoW(SPI_GETFOREGROUNDLOCKTIMEOUT, 0,
|
|
|
|
&_glfw.win32.foregroundLockTimeout, 0);
|
|
|
|
SystemParametersInfoW(SPI_SETFOREGROUNDLOCKTIMEOUT, 0, UIntToPtr(0),
|
|
|
|
SPIF_SENDCHANGE);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-13 23:05:03 +00:00
|
|
|
if (!initLibraries())
|
2010-09-07 15:34:51 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
|
2013-03-10 18:23:42 +00:00
|
|
|
if (_glfw_SetProcessDPIAware)
|
|
|
|
_glfw_SetProcessDPIAware();
|
|
|
|
|
2010-09-13 21:50:04 +00:00
|
|
|
#ifdef __BORLANDC__
|
2010-09-07 15:34:51 +00:00
|
|
|
// With the Borland C++ compiler, we want to disable FPU exceptions
|
|
|
|
// (this is recommended for OpenGL applications under Windows)
|
2010-09-10 20:03:36 +00:00
|
|
|
_control87(MCW_EM, MCW_EM);
|
2010-09-07 15:34:51 +00:00
|
|
|
#endif
|
|
|
|
|
2013-02-04 07:26:17 +00:00
|
|
|
if (!_glfwInitContextAPI())
|
2013-01-16 19:10:17 +00:00
|
|
|
return GL_FALSE;
|
2013-12-22 15:38:56 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
_glfwInitTimer();
|
2013-01-02 00:52:28 +00:00
|
|
|
_glfwInitJoysticks();
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
2012-12-30 00:15:48 +00:00
|
|
|
void _glfwPlatformTerminate(void)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2013-01-02 00:40:42 +00:00
|
|
|
if (_glfw.win32.classAtom)
|
2010-09-14 00:17:18 +00:00
|
|
|
{
|
2014-03-06 17:30:14 +00:00
|
|
|
UnregisterClassW(_GLFW_WNDCLASSNAME, GetModuleHandleW(NULL));
|
2013-01-02 00:40:42 +00:00
|
|
|
_glfw.win32.classAtom = 0;
|
2010-09-14 00:17:18 +00:00
|
|
|
}
|
|
|
|
|
2013-06-24 12:38:00 +00:00
|
|
|
// Restore previous foreground lock timeout system setting
|
2014-03-06 17:30:14 +00:00
|
|
|
SystemParametersInfoW(SPI_SETFOREGROUNDLOCKTIMEOUT, 0,
|
|
|
|
UIntToPtr(_glfw.win32.foregroundLockTimeout),
|
|
|
|
SPIF_SENDCHANGE);
|
2013-06-24 12:38:00 +00:00
|
|
|
|
|
|
|
free(_glfw.win32.clipboardString);
|
|
|
|
|
|
|
|
_glfwTerminateJoysticks();
|
|
|
|
_glfwTerminateContextAPI();
|
|
|
|
terminateLibraries();
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2010-09-13 23:05:03 +00:00
|
|
|
const char* _glfwPlatformGetVersionString(void)
|
|
|
|
{
|
2013-11-20 12:58:57 +00:00
|
|
|
const char* version = _GLFW_VERSION_NUMBER " Win32"
|
2012-11-27 14:02:26 +00:00
|
|
|
#if defined(_GLFW_WGL)
|
|
|
|
" WGL"
|
|
|
|
#elif defined(_GLFW_EGL)
|
|
|
|
" EGL"
|
|
|
|
#endif
|
2010-09-13 23:05:03 +00:00
|
|
|
#if defined(__MINGW32__)
|
|
|
|
" MinGW"
|
|
|
|
#elif defined(_MSC_VER)
|
2013-12-23 23:48:28 +00:00
|
|
|
" VisualC"
|
2010-09-13 23:05:03 +00:00
|
|
|
#elif defined(__BORLANDC__)
|
2013-02-14 12:13:07 +00:00
|
|
|
" BorlandC"
|
|
|
|
#endif
|
2012-03-25 15:40:30 +00:00
|
|
|
#if defined(_GLFW_BUILD_DLL)
|
2010-09-13 23:05:03 +00:00
|
|
|
" DLL"
|
|
|
|
#endif
|
|
|
|
;
|
|
|
|
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|