1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 15:17:25 -04:00
glfw/src/monitor.c

480 lines
13 KiB
C
Raw Normal View History

//========================================================================
// 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"
#include <string.h>
2012-09-12 13:35:52 -04:00
#include <stdlib.h>
2012-12-30 21:04:04 -05:00
#include <limits.h>
#if defined(_MSC_VER)
2012-09-12 15:04:24 -04:00
#include <malloc.h>
2012-09-12 18:05:54 -04:00
#define strdup _strdup
2012-09-12 15:04:24 -04:00
#endif
//========================================================================
// Lexical comparison function for GLFW video modes, used by qsort
//========================================================================
2012-09-12 17:03:07 -04:00
static int compareVideoModes(const void* firstPtr, const void* secondPtr)
2012-09-12 15:04:24 -04: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;
}
//////////////////////////////////////////////////////////////////////////
////// GLFW internal API //////
//////////////////////////////////////////////////////////////////////////
//========================================================================
2012-09-12 13:35:52 -04:00
// Create a monitor struct from the specified information
//========================================================================
2012-09-12 13:35:52 -04:00
_GLFWmonitor* _glfwCreateMonitor(const char* name,
2012-09-13 11:46:40 -04:00
GLboolean primary,
2012-09-12 13:35:52 -04:00
int physicalWidth, int physicalHeight,
int x, int y)
{
2012-09-12 13:35:52 -04:00
_GLFWmonitor* monitor = (_GLFWmonitor*) calloc(1, sizeof(_GLFWmonitor));
if (!monitor)
{
_glfwSetError(GLFW_OUT_OF_MEMORY, NULL);
return NULL;
}
monitor->name = strdup(name);
2012-09-13 11:46:40 -04:00
monitor->primary = primary;
2012-09-12 13:35:52 -04:00
monitor->physicalWidth = physicalWidth;
monitor->physicalHeight = physicalHeight;
monitor->positionX = x;
monitor->positionY = y;
2012-09-12 13:35:52 -04:00
return monitor;
}
//========================================================================
2012-09-12 13:35:52 -04:00
// Destroy the specified monitor
//========================================================================
2012-09-12 13:35:52 -04:00
void _glfwDestroyMonitor(_GLFWmonitor* monitor)
{
2012-09-12 13:35:52 -04:00
if (monitor == NULL)
return;
2012-09-12 13:35:52 -04:00
_glfwPlatformDestroyMonitor(monitor);
2012-09-12 13:35:52 -04:00
free(monitor->modes);
free(monitor->name);
free(monitor);
}
2012-09-12 13:35:52 -04:00
//========================================================================
// Enumerate monitors and notify user of changes
//========================================================================
2012-09-12 13:35:52 -04:00
void _glfwInputMonitorChange(void)
{
int i, j, monitorCount;
_GLFWmonitor** monitors;
2012-09-12 13:35:52 -04:00
monitors = _glfwPlatformGetMonitors(&monitorCount);
2012-09-12 13:35:52 -04:00
for (i = 0; i < monitorCount; i++)
{
for (j = 0; j < _glfwLibrary.monitorCount; j++)
{
2012-09-12 13:35:52 -04:00
if (_glfwLibrary.monitors[j] == NULL)
continue;
if (strcmp(monitors[i]->name, _glfwLibrary.monitors[j]->name) == 0)
{
2012-09-12 13:35:52 -04:00
// This monitor was connected before, so re-use the existing
// monitor object to preserve its address and user pointer
_glfwDestroyMonitor(monitors[i]);
monitors[i] = _glfwLibrary.monitors[j];
_glfwLibrary.monitors[j] = NULL;
break;
}
}
2012-09-12 13:35:52 -04:00
if (j == _glfwLibrary.monitorCount)
{
2012-09-12 13:35:52 -04:00
// This monitor was not connected before
2012-12-12 19:56:33 -05:00
_glfwLibrary.monitorCallback(monitors[i], GLFW_CONNECTED);
}
}
2012-09-12 13:35:52 -04:00
for (i = 0; i < _glfwLibrary.monitorCount; i++)
{
2012-09-27 15:37:36 -04:00
_GLFWwindow* window;
2012-09-12 13:35:52 -04:00
if (_glfwLibrary.monitors[i] == NULL)
continue;
// This monitor is no longer connected
2012-12-12 19:56:33 -05:00
_glfwLibrary.monitorCallback(_glfwLibrary.monitors[i], GLFW_DISCONNECTED);
2012-09-27 15:37:36 -04:00
for (window = _glfwLibrary.windowListHead; window; window = window->next)
{
if (window->monitor == _glfwLibrary.monitors[i])
window->monitor = NULL;
}
2012-09-12 13:35:52 -04:00
}
_glfwDestroyMonitors();
_glfwLibrary.monitors = monitors;
_glfwLibrary.monitorCount = monitorCount;
}
//========================================================================
2012-09-12 13:35:52 -04:00
// Destroy all monitors
//========================================================================
2012-09-12 13:35:52 -04:00
void _glfwDestroyMonitors(void)
{
2012-09-12 13:35:52 -04:00
int i;
for (i = 0; i < _glfwLibrary.monitorCount; i++)
_glfwDestroyMonitor(_glfwLibrary.monitors[i]);
free(_glfwLibrary.monitors);
_glfwLibrary.monitors = NULL;
_glfwLibrary.monitorCount = 0;
}
2012-12-30 21:04:04 -05:00
//========================================================================
// Returns the video mode closest to the desired one
//========================================================================
const GLFWvidmode* _glfwChooseVideoMode(const GLFWvidmode* desired,
const GLFWvidmode* alternatives,
unsigned int count)
{
unsigned int i;
unsigned int sizeDiff, leastSizeDiff = UINT_MAX;
unsigned int colorDiff, leastColorDiff = UINT_MAX;
const GLFWvidmode* current;
const GLFWvidmode* closest = NULL;
for (i = 0; i < count; i++)
{
current = alternatives + i;
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 15:04:24 -04:00
//========================================================================
// Lexical comparison of GLFW video modes
//========================================================================
int _glfwCompareVideoModes(const GLFWvidmode* first, const GLFWvidmode* second)
{
return compareVideoModes(first, second);
}
//========================================================================
// Convert BPP to RGB bits based on "best guess"
//========================================================================
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;
}
//////////////////////////////////////////////////////////////////////////
////// GLFW public API //////
//////////////////////////////////////////////////////////////////////////
//========================================================================
2012-09-12 13:35:52 -04:00
// Return the currently connected monitors
//========================================================================
GLFWAPI const GLFWmonitor* glfwGetMonitors(int* count)
{
if (!_glfwInitialized)
{
_glfwSetError(GLFW_NOT_INITIALIZED, NULL);
2012-08-14 10:55:48 -04:00
return NULL;
}
2012-09-12 13:35:52 -04:00
if (count == NULL)
{
_glfwSetError(GLFW_INVALID_VALUE, NULL);
return NULL;
}
*count = _glfwLibrary.monitorCount;
return (GLFWmonitor*) _glfwLibrary.monitors;
}
//========================================================================
// Get the primary monitor
//========================================================================
GLFWAPI GLFWmonitor glfwGetPrimaryMonitor(void)
{
2012-09-13 11:46:40 -04:00
int i;
GLFWmonitor handle = NULL;
2012-09-12 13:35:52 -04:00
if (!_glfwInitialized)
{
_glfwSetError(GLFW_NOT_INITIALIZED, NULL);
return NULL;
}
2012-09-13 11:46:40 -04:00
for (i = 0; i < _glfwLibrary.monitorCount; i++)
{
if (_glfwLibrary.monitors[i]->primary)
{
handle = _glfwLibrary.monitors[i];
break;
}
}
if (!handle)
{
_glfwSetError(GLFW_PLATFORM_ERROR, NULL);
return NULL;
}
return handle;
}
//========================================================================
// Get monitor parameter
//========================================================================
GLFWAPI int glfwGetMonitorParam(GLFWmonitor handle, int param)
{
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
if (!_glfwInitialized)
{
_glfwSetError(GLFW_NOT_INITIALIZED, NULL);
return 0;
}
if (monitor == NULL)
{
_glfwSetError(GLFW_INVALID_VALUE,
"glfwGetMonitorParam: Invalid monitor handle");
return 0;
}
switch (param)
{
2012-12-12 19:56:33 -05:00
case GLFW_MONITOR_WIDTH_MM:
return monitor->physicalWidth;
2012-12-12 19:56:33 -05:00
case GLFW_MONITOR_HEIGHT_MM:
return monitor->physicalHeight;
case GLFW_MONITOR_POS_X:
return monitor->positionX;
case GLFW_MONITOR_POS_Y:
return monitor->positionY;
}
_glfwSetError(GLFW_INVALID_ENUM,
"glfwGetMonitorParam: Invalid enum value for 'param' parameter");
return 0;
}
//========================================================================
// Get monitor string
//========================================================================
GLFWAPI const char* glfwGetMonitorName(GLFWmonitor handle)
{
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
if (!_glfwInitialized)
{
_glfwSetError(GLFW_NOT_INITIALIZED, NULL);
return NULL;
}
if (monitor == NULL)
{
_glfwSetError(GLFW_INVALID_VALUE,
"glfwGetMonitorString: Invalid monitor handle");
return NULL;
}
return monitor->name;
}
2012-07-06 08:36:29 -04:00
//========================================================================
// Set a callback function for monitor events
//========================================================================
GLFWAPI void glfwSetMonitorCallback(GLFWmonitorfun cbfun)
{
if (!_glfwInitialized)
{
_glfwSetError(GLFW_NOT_INITIALIZED, NULL);
return;
}
2012-12-27 13:29:09 -05:00
_glfwLibrary.monitorCallback = cbfun;
}
2012-09-12 15:04:24 -04:00
//========================================================================
// Get a list of available video modes
//========================================================================
GLFWAPI const GLFWvidmode* glfwGetVideoModes(GLFWmonitor handle, int* count)
2012-09-12 15:04:24 -04:00
{
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
if (!_glfwInitialized)
{
_glfwSetError(GLFW_NOT_INITIALIZED, NULL);
return NULL;
}
if (monitor == NULL)
{
_glfwSetError(GLFW_INVALID_VALUE,
"glfwGetVideoModes: Invalid monitor handle");
return 0;
}
if (count == NULL)
{
_glfwSetError(GLFW_INVALID_VALUE, NULL);
return NULL;
}
free(monitor->modes);
2012-12-27 12:37:55 -05:00
monitor->modes = _glfwPlatformGetVideoModes(monitor, &monitor->modeCount);
2012-09-12 15:04:24 -04:00
if (monitor->modes)
2012-12-27 12:37:55 -05:00
{
qsort(monitor->modes,
monitor->modeCount,
sizeof(GLFWvidmode),
compareVideoModes);
}
2012-09-12 15:04:24 -04:00
2012-12-27 12:37:55 -05:00
*count = monitor->modeCount;
2012-09-12 15:04:24 -04:00
return monitor->modes;
}
//========================================================================
// Get the current video mode for the specified monitor
//========================================================================
GLFWAPI void glfwGetVideoMode(GLFWmonitor handle, GLFWvidmode* mode)
{
_GLFWmonitor* monitor = (_GLFWmonitor*) handle;
if (!_glfwInitialized)
{
_glfwSetError(GLFW_NOT_INITIALIZED, NULL);
return;
}
if (mode == NULL)
{
_glfwSetError(GLFW_INVALID_VALUE, NULL);
return;
}
_glfwPlatformGetVideoMode(monitor, mode);
}