2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2016-08-18 21:42:15 +00:00
|
|
|
// GLFW 3.3 - www.glfw.org
|
2010-09-07 15:34:51 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Copyright (c) 2002-2006 Marcus Geelnard
|
2016-11-21 15:23:59 +00:00
|
|
|
// Copyright (c) 2006-2016 Camilla Löwy <elmindreda@glfw.org>
|
2010-09-07 15:34:51 +00:00
|
|
|
//
|
|
|
|
// 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-09-08 15:01:39 +00:00
|
|
|
#include <string.h>
|
2010-09-16 02:11:06 +00:00
|
|
|
#include <stdlib.h>
|
2012-08-26 16:49:39 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
2010-09-16 02:11:06 +00:00
|
|
|
|
|
|
|
|
2017-02-06 14:58:15 +00:00
|
|
|
// The global variables below comprise all global data in GLFW.
|
2015-06-16 20:26:30 +00:00
|
|
|
// Any other global variable is a bug.
|
2014-06-09 10:34:42 +00:00
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
// Global state shared between compilation units of GLFW
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2017-02-06 14:58:15 +00:00
|
|
|
_GLFWlibrary _glfw = { GLFW_FALSE };
|
2012-08-26 16:42:15 +00:00
|
|
|
|
2017-02-14 14:43:31 +00:00
|
|
|
// These are outside of _glfw so they can be used before initialization and
|
|
|
|
// after termination
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2017-02-14 14:43:31 +00:00
|
|
|
static GLFWerrorfun _glfwErrorCallback;
|
|
|
|
static _GLFWinitconfig _glfwInitHints =
|
|
|
|
{
|
2017-03-01 22:27:20 +00:00
|
|
|
GLFW_TRUE, // hat buttons
|
2017-02-14 14:43:31 +00:00
|
|
|
{
|
|
|
|
GLFW_TRUE, // menubar
|
|
|
|
GLFW_TRUE // chdir
|
|
|
|
}
|
|
|
|
};
|
2012-08-26 16:49:39 +00:00
|
|
|
|
2012-12-30 00:42:14 +00:00
|
|
|
// Returns a generic string representation of the specified error
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2012-12-30 00:42:14 +00:00
|
|
|
static const char* getErrorString(int error)
|
|
|
|
{
|
|
|
|
switch (error)
|
|
|
|
{
|
|
|
|
case GLFW_NOT_INITIALIZED:
|
|
|
|
return "The GLFW library is not initialized";
|
|
|
|
case GLFW_NO_CURRENT_CONTEXT:
|
|
|
|
return "There is no current context";
|
|
|
|
case GLFW_INVALID_ENUM:
|
|
|
|
return "Invalid argument for enum parameter";
|
|
|
|
case GLFW_INVALID_VALUE:
|
|
|
|
return "Invalid value for parameter";
|
|
|
|
case GLFW_OUT_OF_MEMORY:
|
|
|
|
return "Out of memory";
|
|
|
|
case GLFW_API_UNAVAILABLE:
|
2016-08-01 18:47:29 +00:00
|
|
|
return "The requested API is unavailable";
|
2012-12-30 00:42:14 +00:00
|
|
|
case GLFW_VERSION_UNAVAILABLE:
|
2016-08-01 18:47:29 +00:00
|
|
|
return "The requested API version is unavailable";
|
2012-12-30 00:42:14 +00:00
|
|
|
case GLFW_PLATFORM_ERROR:
|
2017-02-18 18:59:27 +00:00
|
|
|
return "An undocumented platform-specific error occurred";
|
2012-12-30 00:42:14 +00:00
|
|
|
case GLFW_FORMAT_UNAVAILABLE:
|
|
|
|
return "The requested format is unavailable";
|
2015-06-18 12:03:02 +00:00
|
|
|
case GLFW_NO_WINDOW_CONTEXT:
|
|
|
|
return "The specified window has no context";
|
2016-02-17 20:30:17 +00:00
|
|
|
default:
|
|
|
|
return "ERROR: UNKNOWN GLFW ERROR";
|
2012-12-30 00:42:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-06 15:03:49 +00:00
|
|
|
// Terminate the library
|
|
|
|
//
|
|
|
|
static void terminate(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
memset(&_glfw.callbacks, 0, sizeof(_glfw.callbacks));
|
|
|
|
|
|
|
|
while (_glfw.windowListHead)
|
|
|
|
glfwDestroyWindow((GLFWwindow*) _glfw.windowListHead);
|
|
|
|
|
|
|
|
while (_glfw.cursorListHead)
|
|
|
|
glfwDestroyCursor((GLFWcursor*) _glfw.cursorListHead);
|
|
|
|
|
|
|
|
for (i = 0; i < _glfw.monitorCount; i++)
|
|
|
|
{
|
|
|
|
_GLFWmonitor* monitor = _glfw.monitors[i];
|
|
|
|
if (monitor->originalRamp.size)
|
|
|
|
_glfwPlatformSetGammaRamp(monitor, &monitor->originalRamp);
|
|
|
|
_glfwFreeMonitor(monitor);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(_glfw.monitors);
|
|
|
|
_glfw.monitors = NULL;
|
|
|
|
_glfw.monitorCount = 0;
|
|
|
|
|
|
|
|
_glfwTerminateVulkan();
|
|
|
|
_glfwPlatformTerminate();
|
|
|
|
|
2017-03-08 12:58:09 +00:00
|
|
|
_glfwPlatformDestroyTls(&_glfw.context);
|
|
|
|
|
2017-02-06 15:03:49 +00:00
|
|
|
memset(&_glfw, 0, sizeof(_glfw));
|
|
|
|
}
|
|
|
|
|
2012-12-30 00:42:14 +00:00
|
|
|
|
2012-08-26 18:11:32 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2013-01-23 18:47:05 +00:00
|
|
|
////// GLFW event API //////
|
2012-08-26 18:11:32 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2012-12-31 20:05:28 +00:00
|
|
|
void _glfwInputError(int error, const char* format, ...)
|
2012-08-26 16:49:39 +00:00
|
|
|
{
|
|
|
|
if (_glfwErrorCallback)
|
|
|
|
{
|
2015-04-07 15:42:45 +00:00
|
|
|
char buffer[8192];
|
2012-08-26 16:49:39 +00:00
|
|
|
const char* description;
|
|
|
|
|
|
|
|
if (format)
|
|
|
|
{
|
|
|
|
int count;
|
|
|
|
va_list vl;
|
|
|
|
|
|
|
|
va_start(vl, format);
|
|
|
|
count = vsnprintf(buffer, sizeof(buffer), format, vl);
|
|
|
|
va_end(vl);
|
|
|
|
|
|
|
|
if (count < 0)
|
|
|
|
buffer[sizeof(buffer) - 1] = '\0';
|
|
|
|
|
|
|
|
description = buffer;
|
|
|
|
}
|
|
|
|
else
|
2012-12-30 00:42:14 +00:00
|
|
|
description = getErrorString(error);
|
2012-08-26 16:49:39 +00:00
|
|
|
|
|
|
|
_glfwErrorCallback(error, description);
|
|
|
|
}
|
|
|
|
}
|
2010-09-16 02:11:06 +00:00
|
|
|
|
|
|
|
|
2010-09-09 18:59:50 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW public API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-02-07 13:58:58 +00:00
|
|
|
GLFWAPI int glfwInit(void)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2017-02-06 14:58:15 +00:00
|
|
|
if (_glfw.initialized)
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_TRUE;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-01-02 00:40:42 +00:00
|
|
|
memset(&_glfw, 0, sizeof(_glfw));
|
2017-02-14 14:43:31 +00:00
|
|
|
_glfw.hints.init = _glfwInitHints;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2017-03-08 12:58:09 +00:00
|
|
|
if (!_glfwPlatformCreateTls(&_glfw.context))
|
|
|
|
return GLFW_FALSE;
|
|
|
|
|
2010-09-08 12:45:52 +00:00
|
|
|
if (!_glfwPlatformInit())
|
2010-09-13 20:24:47 +00:00
|
|
|
{
|
2017-02-06 15:03:49 +00:00
|
|
|
terminate();
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_FALSE;
|
2010-09-13 20:24:47 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2017-02-06 14:58:15 +00:00
|
|
|
_glfw.initialized = GLFW_TRUE;
|
2017-03-18 22:09:34 +00:00
|
|
|
_glfw.timer.offset = _glfwPlatformGetTimerValue();
|
2016-03-06 10:38:55 +00:00
|
|
|
|
2012-10-22 00:59:05 +00:00
|
|
|
// Not all window hints have zero as their default value
|
|
|
|
glfwDefaultWindowHints();
|
|
|
|
|
2015-08-23 17:30:04 +00:00
|
|
|
return GLFW_TRUE;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2010-09-08 12:45:52 +00:00
|
|
|
GLFWAPI void glfwTerminate(void)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2017-02-06 14:58:15 +00:00
|
|
|
if (!_glfw.initialized)
|
2010-09-07 15:34:51 +00:00
|
|
|
return;
|
2013-07-30 15:06:06 +00:00
|
|
|
|
2017-02-06 15:03:49 +00:00
|
|
|
terminate();
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2017-02-14 14:43:31 +00:00
|
|
|
GLFWAPI void glfwInitHint(int hint, int value)
|
|
|
|
{
|
|
|
|
switch (hint)
|
|
|
|
{
|
2017-03-01 22:27:20 +00:00
|
|
|
case GLFW_JOYSTICK_HAT_BUTTONS:
|
|
|
|
_glfwInitHints.hatButtons = value;
|
|
|
|
return;
|
2017-02-14 14:43:31 +00:00
|
|
|
case GLFW_COCOA_CHDIR_RESOURCES:
|
|
|
|
_glfwInitHints.ns.chdir = value;
|
|
|
|
return;
|
|
|
|
case GLFW_COCOA_MENUBAR:
|
|
|
|
_glfwInitHints.ns.menubar = value;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid init hint %i", hint);
|
|
|
|
}
|
|
|
|
|
2010-09-08 13:58:43 +00:00
|
|
|
GLFWAPI void glfwGetVersion(int* major, int* minor, int* rev)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-08 12:45:52 +00:00
|
|
|
if (major != NULL)
|
2010-09-07 23:57:24 +00:00
|
|
|
*major = GLFW_VERSION_MAJOR;
|
2010-09-08 12:45:52 +00:00
|
|
|
if (minor != NULL)
|
2010-09-07 23:57:24 +00:00
|
|
|
*minor = GLFW_VERSION_MINOR;
|
2010-09-08 12:45:52 +00:00
|
|
|
if (rev != NULL)
|
2010-09-07 23:57:24 +00:00
|
|
|
*rev = GLFW_VERSION_REVISION;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2010-09-13 16:05:59 +00:00
|
|
|
GLFWAPI const char* glfwGetVersionString(void)
|
|
|
|
{
|
|
|
|
return _glfwPlatformGetVersionString();
|
|
|
|
}
|
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
GLFWAPI GLFWerrorfun glfwSetErrorCallback(GLFWerrorfun cbfun)
|
2012-08-26 16:49:39 +00:00
|
|
|
{
|
2013-07-30 12:43:01 +00:00
|
|
|
_GLFW_SWAP_POINTERS(_glfwErrorCallback, cbfun);
|
|
|
|
return cbfun;
|
2012-08-26 16:49:39 +00:00
|
|
|
}
|
|
|
|
|