2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
// GLFW - An OpenGL framework
|
|
|
|
// Platform: Win32/WGL
|
2010-09-07 15:41:26 +00:00
|
|
|
// API version: 3.0
|
2010-09-07 15:34:51 +00:00
|
|
|
// WWW: http://www.glfw.org/
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// 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"
|
|
|
|
|
|
|
|
// With the Borland C++ compiler, we want to disable FPU exceptions
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#include <float.h>
|
|
|
|
#endif // __BORLANDC__
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
2010-09-07 15:50:43 +00:00
|
|
|
// Load necessary libraries (DLLs)
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2010-09-10 20:03:36 +00:00
|
|
|
static GLboolean initLibraries(void)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// gdi32.dll (OpenGL pixel format functions & SwapBuffers)
|
|
|
|
#ifndef _GLFW_NO_DLOAD_GDI32
|
2010-09-12 14:26:00 +00:00
|
|
|
_glfwLibrary.Win32.libs.gdi32 = LoadLibrary("gdi32.dll");
|
|
|
|
if (_glfwLibrary.Win32.libs.gdi32 != NULL)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-12 14:26:00 +00:00
|
|
|
_glfwLibrary.Win32.libs.ChoosePixelFormat = (CHOOSEPIXELFORMAT_T)
|
|
|
|
GetProcAddress(_glfwLibrary.Win32.libs.gdi32, "ChoosePixelFormat");
|
|
|
|
_glfwLibrary.Win32.libs.DescribePixelFormat = (DESCRIBEPIXELFORMAT_T)
|
|
|
|
GetProcAddress(_glfwLibrary.Win32.libs.gdi32, "DescribePixelFormat");
|
|
|
|
_glfwLibrary.Win32.libs.GetPixelFormat = (GETPIXELFORMAT_T)
|
|
|
|
GetProcAddress(_glfwLibrary.Win32.libs.gdi32, "GetPixelFormat");
|
|
|
|
_glfwLibrary.Win32.libs.SetPixelFormat = (SETPIXELFORMAT_T)
|
|
|
|
GetProcAddress(_glfwLibrary.Win32.libs.gdi32, "SetPixelFormat");
|
|
|
|
_glfwLibrary.Win32.libs.SwapBuffers = (SWAPBUFFERS_T)
|
|
|
|
GetProcAddress(_glfwLibrary.Win32.libs.gdi32, "SwapBuffers");
|
|
|
|
|
|
|
|
if (_glfwLibrary.Win32.libs.ChoosePixelFormat &&
|
|
|
|
_glfwLibrary.Win32.libs.DescribePixelFormat &&
|
|
|
|
_glfwLibrary.Win32.libs.GetPixelFormat &&
|
|
|
|
_glfwLibrary.Win32.libs.SetPixelFormat &&
|
|
|
|
_glfwLibrary.Win32.libs.SwapBuffers)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-12 14:26:00 +00:00
|
|
|
FreeLibrary(_glfwLibrary.Win32.libs.gdi32);
|
|
|
|
_glfwLibrary.Win32.libs.gdi32 = NULL;
|
2010-09-07 15:34:51 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return GL_FALSE;
|
|
|
|
#endif // _GLFW_NO_DLOAD_GDI32
|
|
|
|
|
|
|
|
// winmm.dll (for joystick and timer support)
|
|
|
|
#ifndef _GLFW_NO_DLOAD_WINMM
|
2010-09-12 14:26:00 +00:00
|
|
|
_glfwLibrary.Win32.libs.winmm = LoadLibrary("winmm.dll");
|
|
|
|
if (_glfwLibrary.Win32.libs.winmm != NULL)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-12 14:26:00 +00:00
|
|
|
_glfwLibrary.Win32.libs.joyGetDevCapsA = (JOYGETDEVCAPSA_T)
|
|
|
|
GetProcAddress(_glfwLibrary.Win32.libs.winmm, "joyGetDevCapsA");
|
|
|
|
_glfwLibrary.Win32.libs.joyGetPos = (JOYGETPOS_T)
|
|
|
|
GetProcAddress(_glfwLibrary.Win32.libs.winmm, "joyGetPos");
|
|
|
|
_glfwLibrary.Win32.libs.joyGetPosEx = (JOYGETPOSEX_T)
|
|
|
|
GetProcAddress(_glfwLibrary.Win32.libs.winmm, "joyGetPosEx");
|
|
|
|
_glfwLibrary.Win32.libs.timeGetTime = (TIMEGETTIME_T)
|
|
|
|
GetProcAddress(_glfwLibrary.Win32.libs.winmm, "timeGetTime");
|
|
|
|
|
|
|
|
if (_glfwLibrary.Win32.libs.joyGetDevCapsA &&
|
|
|
|
_glfwLibrary.Win32.libs.joyGetPos &&
|
|
|
|
_glfwLibrary.Win32.libs.joyGetPosEx &&
|
|
|
|
_glfwLibrary.Win32.libs.timeGetTime)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-12 14:26:00 +00:00
|
|
|
FreeLibrary(_glfwLibrary.Win32.libs.winmm);
|
|
|
|
_glfwLibrary.Win32.libs.winmm = NULL;
|
2010-09-07 15:34:51 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return GL_FALSE;
|
|
|
|
#endif // _GLFW_NO_DLOAD_WINMM
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
2010-09-07 15:50:43 +00:00
|
|
|
// Unload used libraries (DLLs)
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2010-09-10 20:03:36 +00:00
|
|
|
static void freeLibraries(void)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// gdi32.dll
|
|
|
|
#ifndef _GLFW_NO_DLOAD_GDI32
|
2010-09-12 14:26:00 +00:00
|
|
|
if (_glfwLibrary.Win32.libs.gdi32 != NULL)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-12 14:26:00 +00:00
|
|
|
FreeLibrary(_glfwLibrary.Win32.libs.gdi32);
|
|
|
|
_glfwLibrary.Win32.libs.gdi32 = NULL;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
#endif // _GLFW_NO_DLOAD_GDI32
|
|
|
|
|
|
|
|
// winmm.dll
|
|
|
|
#ifndef _GLFW_NO_DLOAD_WINMM
|
2010-09-12 14:26:00 +00:00
|
|
|
if (_glfwLibrary.Win32.libs.winmm != NULL)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-12 14:26:00 +00:00
|
|
|
FreeLibrary(_glfwLibrary.Win32.libs.winmm);
|
|
|
|
_glfwLibrary.Win32.libs.winmm = NULL;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
#endif // _GLFW_NO_DLOAD_WINMM
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
2010-09-07 15:50:43 +00:00
|
|
|
// Terminate GLFW when exiting application
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2010-09-10 20:03:36 +00:00
|
|
|
static void glfw_atexit(void)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
glfwTerminate();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-10 20:03:36 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW platform API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
//========================================================================
|
2010-09-07 15:50:43 +00:00
|
|
|
// Initialize various GLFW state
|
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
|
|
|
{
|
|
|
|
OSVERSIONINFO osi;
|
|
|
|
|
|
|
|
// To make SetForegroundWindow() work as we want, we need to fiddle
|
|
|
|
// with the FOREGROUNDLOCKTIMEOUT system setting (we do this as early
|
|
|
|
// as possible in the hope of still being the foreground process)
|
2010-09-10 20:03:36 +00:00
|
|
|
SystemParametersInfo(SPI_GETFOREGROUNDLOCKTIMEOUT, 0,
|
2010-09-12 14:26:00 +00:00
|
|
|
&_glfwLibrary.Win32.foregroundLockTimeout, 0);
|
2010-09-10 20:03:36 +00:00
|
|
|
SystemParametersInfo(SPI_SETFOREGROUNDLOCKTIMEOUT, 0, (LPVOID) 0,
|
|
|
|
SPIF_SENDCHANGE);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Check which OS version we are running
|
2010-09-10 20:03:36 +00:00
|
|
|
osi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
|
|
|
|
GetVersionEx(&osi);
|
|
|
|
|
2010-09-12 14:26:00 +00:00
|
|
|
_glfwLibrary.Win32.sys.winVer = _GLFW_WIN_UNKNOWN;
|
2010-09-10 20:03:36 +00:00
|
|
|
|
|
|
|
if (osi.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-10 20:03:36 +00:00
|
|
|
if (osi.dwMajorVersion == 4 && osi.dwMinorVersion < 10)
|
2010-09-12 14:26:00 +00:00
|
|
|
_glfwLibrary.Win32.sys.winVer = _GLFW_WIN_95;
|
2010-09-10 20:03:36 +00:00
|
|
|
else if (osi.dwMajorVersion == 4 && osi.dwMinorVersion < 90)
|
2010-09-12 14:26:00 +00:00
|
|
|
_glfwLibrary.Win32.sys.winVer = _GLFW_WIN_98;
|
2010-09-10 20:03:36 +00:00
|
|
|
else if (osi.dwMajorVersion == 4 && osi.dwMinorVersion == 90)
|
2010-09-12 14:26:00 +00:00
|
|
|
_glfwLibrary.Win32.sys.winVer = _GLFW_WIN_ME;
|
2010-09-10 20:03:36 +00:00
|
|
|
else if (osi.dwMajorVersion >= 4)
|
2010-09-12 14:26:00 +00:00
|
|
|
_glfwLibrary.Win32.sys.winVer = _GLFW_WIN_UNKNOWN_9x;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
2010-09-10 20:03:36 +00:00
|
|
|
else if (osi.dwPlatformId == VER_PLATFORM_WIN32_NT)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-10 20:03:36 +00:00
|
|
|
if (osi.dwMajorVersion == 4 && osi.dwMinorVersion == 0)
|
2010-09-12 14:26:00 +00:00
|
|
|
_glfwLibrary.Win32.sys.winVer = _GLFW_WIN_NT4;
|
2010-09-10 20:03:36 +00:00
|
|
|
else if (osi.dwMajorVersion == 5 && osi.dwMinorVersion == 0)
|
2010-09-12 14:26:00 +00:00
|
|
|
_glfwLibrary.Win32.sys.winVer = _GLFW_WIN_2K;
|
2010-09-10 20:03:36 +00:00
|
|
|
else if (osi.dwMajorVersion == 5 && osi.dwMinorVersion == 1)
|
2010-09-12 14:26:00 +00:00
|
|
|
_glfwLibrary.Win32.sys.winVer = _GLFW_WIN_XP;
|
2010-09-10 20:03:36 +00:00
|
|
|
else if (osi.dwMajorVersion == 5 && osi.dwMinorVersion == 2)
|
2010-09-12 14:26:00 +00:00
|
|
|
_glfwLibrary.Win32.sys.winVer = _GLFW_WIN_NET_SERVER;
|
2010-09-10 20:03:36 +00:00
|
|
|
else if (osi.dwMajorVersion >= 5)
|
2010-09-12 14:26:00 +00:00
|
|
|
_glfwLibrary.Win32.sys.winVer = _GLFW_WIN_UNKNOWN_NT;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Load libraries (DLLs)
|
2010-09-10 20:03:36 +00:00
|
|
|
if (!_glfwInitLibraries())
|
2010-09-07 15:34:51 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
|
|
|
|
// With the Borland C++ compiler, we want to disable FPU exceptions
|
|
|
|
// (this is recommended for OpenGL applications under Windows)
|
|
|
|
#ifdef __BORLANDC__
|
2010-09-10 20:03:36 +00:00
|
|
|
_control87(MCW_EM, MCW_EM);
|
2010-09-07 15:34:51 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Retrieve GLFW instance handle
|
2010-09-12 14:26:00 +00:00
|
|
|
_glfwLibrary.Win32.instance = GetModuleHandle(NULL);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// System keys are not disabled
|
2010-09-12 14:26:00 +00:00
|
|
|
_glfwLibrary.Win32.keyboardHook = NULL;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Install atexit() routine
|
2010-09-10 20:03:36 +00:00
|
|
|
atexit(glfw_atexit);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Start the timer
|
|
|
|
_glfwInitTimer();
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Close window and shut down library
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-10 20:03:36 +00:00
|
|
|
int _glfwPlatformTerminate(void)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// Close OpenGL window
|
|
|
|
glfwCloseWindow();
|
|
|
|
|
|
|
|
// Enable system keys again (if they were disabled)
|
2010-09-10 20:03:36 +00:00
|
|
|
glfwEnable(GLFW_SYSTEM_KEYS);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Unload libraries (DLLs)
|
|
|
|
_glfwFreeLibraries();
|
|
|
|
|
|
|
|
// Restore FOREGROUNDLOCKTIMEOUT system setting
|
2010-09-10 20:03:36 +00:00
|
|
|
SystemParametersInfo(SPI_SETFOREGROUNDLOCKTIMEOUT, 0,
|
2010-09-12 14:26:00 +00:00
|
|
|
(LPVOID) _glfwLibrary.Win32.foregroundLockTimeout,
|
2010-09-10 20:03:36 +00:00
|
|
|
SPIF_SENDCHANGE);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|