2011-05-07 08:53:50 +00:00
|
|
|
//========================================================================
|
|
|
|
// GLFW - An OpenGL framework
|
|
|
|
// Platform: Any
|
|
|
|
// API version: 3.0
|
|
|
|
// 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"
|
|
|
|
|
2012-07-05 14:15:01 +00:00
|
|
|
#include <string.h>
|
2012-09-12 17:35:52 +00:00
|
|
|
#include <stdlib.h>
|
2012-12-31 02:04:04 +00:00
|
|
|
#include <limits.h>
|
|
|
|
|
2012-09-12 19:42:21 +00:00
|
|
|
#if defined(_MSC_VER)
|
2012-09-12 19:04:24 +00:00
|
|
|
#include <malloc.h>
|
2012-09-12 22:05:54 +00:00
|
|
|
#define strdup _strdup
|
2012-09-12 19:04:24 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
// Lexical comparison function for GLFW video modes, used by qsort
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2012-09-12 21:03:07 +00:00
|
|
|
static int compareVideoModes(const void* firstPtr, const void* secondPtr)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
|
|
|
int firstBPP, secondBPP, firstSize, secondSize;
|
|
|
|
GLFWvidmode* first = (GLFWvidmode*) firstPtr;
|
|
|
|
GLFWvidmode* second = (GLFWvidmode*) secondPtr;
|
|
|
|
|
|
|
|
// First sort on color bits per pixel
|
|
|
|
|
|
|
|
firstBPP = first->redBits +
|
|
|
|
first->greenBits +
|
|
|
|
first->blueBits;
|
|
|
|
secondBPP = second->redBits +
|
|
|
|
second->greenBits +
|
|
|
|
second->blueBits;
|
|
|
|
|
|
|
|
if (firstBPP != secondBPP)
|
|
|
|
return firstBPP - secondBPP;
|
|
|
|
|
|
|
|
// Then sort on screen area, in pixels
|
|
|
|
|
|
|
|
firstSize = first->width * first->height;
|
|
|
|
secondSize = second->width * second->height;
|
|
|
|
|
|
|
|
return firstSize - secondSize;
|
|
|
|
}
|
2012-07-05 14:15:01 +00:00
|
|
|
|
2013-01-02 16:29:24 +00:00
|
|
|
// Retrieves the available modes for the specified monitor
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2013-01-02 16:29:24 +00:00
|
|
|
static int refreshVideoModes(_GLFWmonitor* monitor)
|
|
|
|
{
|
|
|
|
int modeCount;
|
|
|
|
|
|
|
|
GLFWvidmode* modes = _glfwPlatformGetVideoModes(monitor, &modeCount);
|
|
|
|
if (!modes)
|
|
|
|
return GL_FALSE;
|
|
|
|
|
|
|
|
qsort(modes, modeCount, sizeof(GLFWvidmode), compareVideoModes);
|
|
|
|
|
|
|
|
free(monitor->modes);
|
|
|
|
monitor->modes = modes;
|
|
|
|
monitor->modeCount = modeCount;
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-14 19:47:09 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2013-01-23 18:52:52 +00:00
|
|
|
////// GLFW event API //////
|
2012-08-14 19:47:09 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2012-09-12 17:35:52 +00:00
|
|
|
void _glfwInputMonitorChange(void)
|
|
|
|
{
|
2013-05-24 13:05:01 +00:00
|
|
|
int i, j, monitorCount = _glfw.monitorCount;
|
|
|
|
_GLFWmonitor** monitors = _glfw.monitors;
|
2012-08-14 19:47:09 +00:00
|
|
|
|
2013-05-24 13:05:01 +00:00
|
|
|
_glfw.monitors = _glfwPlatformGetMonitors(&_glfw.monitorCount);
|
2012-08-14 19:47:09 +00:00
|
|
|
|
2013-05-24 13:05:01 +00:00
|
|
|
// Re-use still connected monitor objects
|
2013-05-13 23:11:28 +00:00
|
|
|
|
2013-05-24 13:05:01 +00:00
|
|
|
for (i = 0; i < _glfw.monitorCount; i++)
|
2012-09-12 17:35:52 +00:00
|
|
|
{
|
2013-05-24 13:05:01 +00:00
|
|
|
for (j = 0; j < monitorCount; j++)
|
2012-08-14 19:47:09 +00:00
|
|
|
{
|
2013-05-24 13:05:01 +00:00
|
|
|
if (_glfwPlatformIsSameMonitor(_glfw.monitors[i], monitors[j]))
|
2012-08-14 19:47:09 +00:00
|
|
|
{
|
2013-05-24 13:05:01 +00:00
|
|
|
_glfwDestroyMonitor(_glfw.monitors[i]);
|
|
|
|
_glfw.monitors[i] = monitors[j];
|
2012-09-12 17:35:52 +00:00
|
|
|
break;
|
2012-08-14 19:47:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-24 13:05:01 +00:00
|
|
|
// Find and report disconnected monitors (not in the new list)
|
2013-05-13 23:11:28 +00:00
|
|
|
|
2013-05-24 13:05:01 +00:00
|
|
|
for (i = 0; i < monitorCount; i++)
|
2012-09-12 17:35:52 +00:00
|
|
|
{
|
2012-09-27 19:37:36 +00:00
|
|
|
_GLFWwindow* window;
|
|
|
|
|
2013-05-24 13:05:01 +00:00
|
|
|
for (j = 0; j < _glfw.monitorCount; j++)
|
|
|
|
{
|
|
|
|
if (monitors[i] == _glfw.monitors[j])
|
|
|
|
break;
|
|
|
|
}
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2013-05-24 13:05:01 +00:00
|
|
|
if (j < _glfw.monitorCount)
|
|
|
|
continue;
|
2012-09-27 19:37:36 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
for (window = _glfw.windowListHead; window; window = window->next)
|
2012-09-27 19:37:36 +00:00
|
|
|
{
|
2013-05-24 13:05:01 +00:00
|
|
|
if (window->monitor == monitors[i])
|
2012-09-27 19:37:36 +00:00
|
|
|
window->monitor = NULL;
|
|
|
|
}
|
2013-05-24 13:05:01 +00:00
|
|
|
|
|
|
|
_glfw.monitorCallback((GLFWmonitor*) monitors[i], GLFW_DISCONNECTED);
|
2012-09-12 17:35:52 +00:00
|
|
|
}
|
|
|
|
|
2013-05-24 13:05:01 +00:00
|
|
|
// Find and report newly connected monitors (not in the old list)
|
|
|
|
// Re-used monitor objects are then removed from the old list to avoid
|
|
|
|
// having them destroyed at the end of this function
|
|
|
|
|
|
|
|
for (i = 0; i < _glfw.monitorCount; i++)
|
|
|
|
{
|
|
|
|
for (j = 0; j < monitorCount; j++)
|
|
|
|
{
|
|
|
|
if (_glfw.monitors[i] == monitors[j])
|
|
|
|
{
|
|
|
|
monitors[j] = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (j < monitorCount)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
_glfw.monitorCallback((GLFWmonitor*) _glfw.monitors[i], GLFW_CONNECTED);
|
|
|
|
}
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2013-05-24 13:05:01 +00:00
|
|
|
_glfwDestroyMonitors(monitors, monitorCount);
|
2012-08-14 19:47:09 +00:00
|
|
|
}
|
|
|
|
|
2013-01-23 18:52:52 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW internal API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-02-20 15:00:53 +00:00
|
|
|
_GLFWmonitor* _glfwCreateMonitor(const char* name, int widthMM, int heightMM)
|
2013-01-23 18:52:52 +00:00
|
|
|
{
|
|
|
|
_GLFWmonitor* monitor = (_GLFWmonitor*) calloc(1, sizeof(_GLFWmonitor));
|
|
|
|
monitor->name = strdup(name);
|
|
|
|
monitor->widthMM = widthMM;
|
|
|
|
monitor->heightMM = heightMM;
|
|
|
|
|
|
|
|
return monitor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwDestroyMonitor(_GLFWmonitor* monitor)
|
|
|
|
{
|
|
|
|
if (monitor == NULL)
|
|
|
|
return;
|
|
|
|
|
2013-05-19 13:46:44 +00:00
|
|
|
_glfwFreeGammaRamp(&monitor->originalRamp);
|
|
|
|
_glfwFreeGammaRamp(&monitor->currentRamp);
|
|
|
|
|
2013-01-23 18:52:52 +00:00
|
|
|
free(monitor->modes);
|
|
|
|
free(monitor->name);
|
|
|
|
free(monitor);
|
|
|
|
}
|
|
|
|
|
2013-04-17 21:07:44 +00:00
|
|
|
void _glfwDestroyMonitors(_GLFWmonitor** monitors, int count)
|
2012-08-14 19:47:09 +00:00
|
|
|
{
|
2012-09-12 17:35:52 +00:00
|
|
|
int i;
|
|
|
|
|
2013-04-17 21:07:44 +00:00
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
_glfwDestroyMonitor(monitors[i]);
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2013-04-17 21:07:44 +00:00
|
|
|
free(monitors);
|
2012-08-14 19:47:09 +00:00
|
|
|
}
|
|
|
|
|
2013-01-02 16:29:24 +00:00
|
|
|
const GLFWvidmode* _glfwChooseVideoMode(_GLFWmonitor* monitor,
|
|
|
|
const GLFWvidmode* desired)
|
2012-12-31 02:04:04 +00:00
|
|
|
{
|
2013-01-06 20:02:57 +00:00
|
|
|
int i;
|
2012-12-31 02:04:04 +00:00
|
|
|
unsigned int sizeDiff, leastSizeDiff = UINT_MAX;
|
|
|
|
unsigned int colorDiff, leastColorDiff = UINT_MAX;
|
|
|
|
const GLFWvidmode* current;
|
|
|
|
const GLFWvidmode* closest = NULL;
|
|
|
|
|
2013-01-02 16:29:24 +00:00
|
|
|
if (!refreshVideoModes(monitor))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for (i = 0; i < monitor->modeCount; i++)
|
2012-12-31 02:04:04 +00:00
|
|
|
{
|
2013-01-02 16:29:24 +00:00
|
|
|
current = monitor->modes + i;
|
2012-12-31 02:04:04 +00:00
|
|
|
|
|
|
|
colorDiff = abs((current->redBits + current->greenBits + current->blueBits) -
|
|
|
|
(desired->redBits + desired->greenBits + desired->blueBits));
|
|
|
|
|
|
|
|
sizeDiff = abs((current->width - desired->width) *
|
|
|
|
(current->width - desired->width) +
|
|
|
|
(current->height - desired->height) *
|
|
|
|
(current->height - desired->height));
|
|
|
|
|
|
|
|
if ((colorDiff < leastColorDiff) ||
|
|
|
|
(colorDiff == leastColorDiff && sizeDiff < leastSizeDiff))
|
|
|
|
{
|
|
|
|
closest = current;
|
|
|
|
leastSizeDiff = sizeDiff;
|
|
|
|
leastColorDiff = colorDiff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return closest;
|
|
|
|
}
|
|
|
|
|
2012-09-12 19:04:24 +00:00
|
|
|
int _glfwCompareVideoModes(const GLFWvidmode* first, const GLFWvidmode* second)
|
|
|
|
{
|
|
|
|
return compareVideoModes(first, second);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwSplitBPP(int bpp, int* red, int* green, int* blue)
|
|
|
|
{
|
|
|
|
int delta;
|
|
|
|
|
|
|
|
// We assume that by 32 the user really meant 24
|
|
|
|
if (bpp == 32)
|
|
|
|
bpp = 24;
|
|
|
|
|
|
|
|
// Convert "bits per pixel" to red, green & blue sizes
|
|
|
|
|
|
|
|
*red = *green = *blue = bpp / 3;
|
|
|
|
delta = bpp - (*red * 3);
|
|
|
|
if (delta >= 1)
|
|
|
|
*green = *green + 1;
|
|
|
|
|
|
|
|
if (delta == 2)
|
|
|
|
*red = *red + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-06 21:28:56 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW public API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-01-05 20:13:28 +00:00
|
|
|
GLFWAPI GLFWmonitor** glfwGetMonitors(int* count)
|
2011-05-07 08:53:50 +00:00
|
|
|
{
|
2013-05-13 23:06:31 +00:00
|
|
|
*count = 0;
|
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-05-13 23:06:31 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
*count = _glfw.monitorCount;
|
2013-01-05 20:13:28 +00:00
|
|
|
return (GLFWmonitor**) _glfw.monitors;
|
2012-09-12 17:35:52 +00:00
|
|
|
}
|
|
|
|
|
2013-01-05 20:13:28 +00:00
|
|
|
GLFWAPI GLFWmonitor* glfwGetPrimaryMonitor(void)
|
2012-09-12 17:35:52 +00:00
|
|
|
{
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-02-17 18:09:22 +00:00
|
|
|
return (GLFWmonitor*) _glfw.monitors[0];
|
2011-05-07 08:53:50 +00:00
|
|
|
}
|
|
|
|
|
2013-01-24 18:10:17 +00:00
|
|
|
GLFWAPI void glfwGetMonitorPos(GLFWmonitor* handle, int* xpos, int* ypos)
|
2011-05-07 08:53:50 +00:00
|
|
|
{
|
2011-10-06 21:28:56 +00:00
|
|
|
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT();
|
2013-02-20 15:00:53 +00:00
|
|
|
_glfwPlatformGetMonitorPos(monitor, xpos, ypos);
|
2013-01-24 18:10:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GLFWAPI void glfwGetMonitorPhysicalSize(GLFWmonitor* handle, int* width, int* height)
|
|
|
|
{
|
|
|
|
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
|
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT();
|
2011-10-06 21:28:56 +00:00
|
|
|
|
2013-01-24 18:10:17 +00:00
|
|
|
if (width)
|
|
|
|
*width = monitor->widthMM;
|
|
|
|
if (height)
|
|
|
|
*height = monitor->heightMM;
|
2011-05-07 08:53:50 +00:00
|
|
|
}
|
|
|
|
|
2013-01-05 20:13:28 +00:00
|
|
|
GLFWAPI const char* glfwGetMonitorName(GLFWmonitor* handle)
|
2011-05-07 08:53:50 +00:00
|
|
|
{
|
2011-10-06 21:28:56 +00:00
|
|
|
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2012-10-18 21:01:41 +00:00
|
|
|
return monitor->name;
|
2011-05-07 08:53:50 +00:00
|
|
|
}
|
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
GLFWAPI GLFWmonitorfun glfwSetMonitorCallback(GLFWmonitorfun cbfun)
|
2011-10-09 04:20:34 +00:00
|
|
|
{
|
2013-04-08 19:21:21 +00:00
|
|
|
GLFWmonitorfun previous;
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
|
|
|
|
previous = _glfw.monitorCallback;
|
2013-01-02 00:40:42 +00:00
|
|
|
_glfw.monitorCallback = cbfun;
|
2013-04-08 19:21:21 +00:00
|
|
|
return previous;
|
2011-10-09 04:20:34 +00:00
|
|
|
}
|
|
|
|
|
2013-01-05 20:13:28 +00:00
|
|
|
GLFWAPI const GLFWvidmode* glfwGetVideoModes(GLFWmonitor* handle, int* count)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
|
|
|
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
|
|
|
|
|
2013-05-13 23:06:31 +00:00
|
|
|
*count = 0;
|
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-01-02 16:29:24 +00:00
|
|
|
if (!refreshVideoModes(monitor))
|
|
|
|
return GL_FALSE;
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2012-12-27 17:37:55 +00:00
|
|
|
*count = monitor->modeCount;
|
2012-09-12 19:04:24 +00:00
|
|
|
return monitor->modes;
|
|
|
|
}
|
|
|
|
|
2013-05-22 20:16:43 +00:00
|
|
|
GLFWAPI const GLFWvidmode* glfwGetVideoMode(GLFWmonitor* handle)
|
2012-09-12 19:04:24 +00:00
|
|
|
{
|
|
|
|
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
|
|
|
|
|
2013-05-22 20:16:43 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2012-09-12 19:04:24 +00:00
|
|
|
|
2013-05-22 20:16:43 +00:00
|
|
|
_glfwPlatformGetVideoMode(monitor, &monitor->currentMode);
|
|
|
|
return &monitor->currentMode;
|
2012-09-12 19:04:24 +00:00
|
|
|
}
|
|
|
|
|