2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2015-06-01 20:55:06 +00:00
|
|
|
// GLFW 3.2 - 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"
|
|
|
|
|
2016-01-31 16:56:36 +00:00
|
|
|
#include <assert.h>
|
2016-05-23 12:29:06 +00:00
|
|
|
#include <float.h>
|
2013-12-04 13:19:22 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2013-03-01 14:18:53 +00:00
|
|
|
// Internal key state used for sticky keys
|
|
|
|
#define _GLFW_STICK 3
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-02-03 23:51:35 +00:00
|
|
|
// Sets the cursor mode for the specified window
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2012-06-21 11:35:35 +00:00
|
|
|
static void setCursorMode(_GLFWwindow* window, int newMode)
|
2012-02-03 23:51:35 +00:00
|
|
|
{
|
2013-10-09 17:03:47 +00:00
|
|
|
const int oldMode = window->cursorMode;
|
2012-02-03 23:51:35 +00:00
|
|
|
|
2012-06-21 11:35:35 +00:00
|
|
|
if (newMode != GLFW_CURSOR_NORMAL &&
|
|
|
|
newMode != GLFW_CURSOR_HIDDEN &&
|
2013-04-26 15:20:31 +00:00
|
|
|
newMode != GLFW_CURSOR_DISABLED)
|
2012-02-03 23:51:35 +00:00
|
|
|
{
|
2016-03-29 08:49:34 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid cursor mode %i", newMode);
|
2012-02-03 23:51:35 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-06-21 11:35:35 +00:00
|
|
|
if (oldMode == newMode)
|
2012-02-03 23:51:35 +00:00
|
|
|
return;
|
|
|
|
|
2013-10-09 17:03:47 +00:00
|
|
|
window->cursorMode = newMode;
|
|
|
|
|
2015-06-17 09:59:39 +00:00
|
|
|
if (_glfw.cursorWindow == window)
|
2013-04-16 18:46:58 +00:00
|
|
|
{
|
2013-04-26 15:20:31 +00:00
|
|
|
if (oldMode == GLFW_CURSOR_DISABLED)
|
2013-07-07 20:05:29 +00:00
|
|
|
{
|
2014-02-11 17:24:01 +00:00
|
|
|
_glfwPlatformSetCursorPos(window,
|
2016-05-24 10:23:58 +00:00
|
|
|
_glfw.restoreCursorPosX,
|
|
|
|
_glfw.restoreCursorPosY);
|
2013-07-07 20:05:29 +00:00
|
|
|
}
|
2013-04-26 15:20:31 +00:00
|
|
|
else if (newMode == GLFW_CURSOR_DISABLED)
|
2013-04-18 22:19:48 +00:00
|
|
|
{
|
|
|
|
int width, height;
|
|
|
|
|
2014-02-11 17:24:01 +00:00
|
|
|
_glfwPlatformGetCursorPos(window,
|
2016-05-24 10:23:58 +00:00
|
|
|
&_glfw.restoreCursorPosX,
|
|
|
|
&_glfw.restoreCursorPosY);
|
2014-02-11 17:24:01 +00:00
|
|
|
|
2016-05-24 10:23:58 +00:00
|
|
|
window->virtualCursorPosX = _glfw.restoreCursorPosX;
|
|
|
|
window->virtualCursorPosY = _glfw.restoreCursorPosY;
|
2012-11-25 13:53:33 +00:00
|
|
|
|
2013-04-18 22:19:48 +00:00
|
|
|
_glfwPlatformGetWindowSize(window, &width, &height);
|
2014-02-11 17:24:01 +00:00
|
|
|
_glfwPlatformSetCursorPos(window, width / 2, height / 2);
|
2013-04-18 22:19:48 +00:00
|
|
|
}
|
2012-02-03 23:51:35 +00:00
|
|
|
|
2015-07-02 11:04:56 +00:00
|
|
|
_glfwPlatformSetCursorMode(window, window->cursorMode);
|
2013-04-16 18:46:58 +00:00
|
|
|
}
|
2012-02-03 23:51:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set sticky keys mode for the specified window
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2012-02-03 23:51:35 +00:00
|
|
|
static void setStickyKeys(_GLFWwindow* window, int enabled)
|
|
|
|
{
|
|
|
|
if (window->stickyKeys == enabled)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!enabled)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
// Release all sticky keys
|
|
|
|
for (i = 0; i <= GLFW_KEY_LAST; i++)
|
|
|
|
{
|
2014-05-18 19:28:11 +00:00
|
|
|
if (window->keys[i] == _GLFW_STICK)
|
|
|
|
window->keys[i] = GLFW_RELEASE;
|
2012-02-03 23:51:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
window->stickyKeys = enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set sticky mouse buttons mode for the specified window
|
2013-02-04 12:22:10 +00:00
|
|
|
//
|
2012-02-03 23:51:35 +00:00
|
|
|
static void setStickyMouseButtons(_GLFWwindow* window, int enabled)
|
|
|
|
{
|
|
|
|
if (window->stickyMouseButtons == enabled)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!enabled)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
// Release all sticky mouse buttons
|
|
|
|
for (i = 0; i <= GLFW_MOUSE_BUTTON_LAST; i++)
|
|
|
|
{
|
2014-05-18 19:28:11 +00:00
|
|
|
if (window->mouseButtons[i] == _GLFW_STICK)
|
|
|
|
window->mouseButtons[i] = GLFW_RELEASE;
|
2012-02-03 23:51:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
window->stickyMouseButtons = enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-09 15:13:58 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2013-01-23 18:47:05 +00:00
|
|
|
////// GLFW event API //////
|
2011-10-09 15:13:58 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-05-30 15:19:12 +00:00
|
|
|
void _glfwInputKey(_GLFWwindow* window, int key, int scancode, int action, int mods)
|
2011-10-09 15:13:58 +00:00
|
|
|
{
|
2013-05-30 15:19:12 +00:00
|
|
|
if (key >= 0 && key <= GLFW_KEY_LAST)
|
|
|
|
{
|
2015-08-23 17:30:04 +00:00
|
|
|
GLFWbool repeated = GLFW_FALSE;
|
2014-05-19 13:00:50 +00:00
|
|
|
|
2014-05-18 19:28:11 +00:00
|
|
|
if (action == GLFW_RELEASE && window->keys[key] == GLFW_RELEASE)
|
2014-05-18 11:41:40 +00:00
|
|
|
return;
|
2011-10-09 15:13:58 +00:00
|
|
|
|
2014-05-18 19:28:11 +00:00
|
|
|
if (action == GLFW_PRESS && window->keys[key] == GLFW_PRESS)
|
2015-08-23 17:30:04 +00:00
|
|
|
repeated = GLFW_TRUE;
|
2014-05-19 13:00:50 +00:00
|
|
|
|
2013-05-30 15:19:12 +00:00
|
|
|
if (action == GLFW_RELEASE && window->stickyKeys)
|
2014-05-18 19:28:11 +00:00
|
|
|
window->keys[key] = _GLFW_STICK;
|
2013-05-30 15:19:12 +00:00
|
|
|
else
|
2014-05-18 19:28:11 +00:00
|
|
|
window->keys[key] = (char) action;
|
2011-10-09 15:13:58 +00:00
|
|
|
|
2014-05-19 13:00:50 +00:00
|
|
|
if (repeated)
|
2014-05-18 11:41:40 +00:00
|
|
|
action = GLFW_REPEAT;
|
|
|
|
}
|
2013-01-12 16:06:35 +00:00
|
|
|
|
|
|
|
if (window->callbacks.key)
|
2013-05-30 15:19:12 +00:00
|
|
|
window->callbacks.key((GLFWwindow*) window, key, scancode, action, mods);
|
2011-10-09 15:13:58 +00:00
|
|
|
}
|
|
|
|
|
2015-11-05 07:58:40 +00:00
|
|
|
void _glfwInputChar(_GLFWwindow* window, unsigned int codepoint, int mods, GLFWbool plain)
|
2011-10-09 15:13:58 +00:00
|
|
|
{
|
2013-10-10 17:41:56 +00:00
|
|
|
if (codepoint < 32 || (codepoint > 126 && codepoint < 160))
|
2011-10-09 15:13:58 +00:00
|
|
|
return;
|
|
|
|
|
2014-06-12 21:04:20 +00:00
|
|
|
if (window->callbacks.charmods)
|
|
|
|
window->callbacks.charmods((GLFWwindow*) window, codepoint, mods);
|
|
|
|
|
|
|
|
if (plain)
|
|
|
|
{
|
|
|
|
if (window->callbacks.character)
|
|
|
|
window->callbacks.character((GLFWwindow*) window, codepoint);
|
|
|
|
}
|
2011-10-09 15:13:58 +00:00
|
|
|
}
|
|
|
|
|
2012-03-28 19:54:09 +00:00
|
|
|
void _glfwInputScroll(_GLFWwindow* window, double xoffset, double yoffset)
|
2011-10-09 15:13:58 +00:00
|
|
|
{
|
2013-01-15 20:34:26 +00:00
|
|
|
if (window->callbacks.scroll)
|
|
|
|
window->callbacks.scroll((GLFWwindow*) window, xoffset, yoffset);
|
2011-10-09 15:13:58 +00:00
|
|
|
}
|
|
|
|
|
2012-12-09 18:19:00 +00:00
|
|
|
void _glfwInputMouseClick(_GLFWwindow* window, int button, int action, int mods)
|
2011-10-09 15:13:58 +00:00
|
|
|
{
|
|
|
|
if (button < 0 || button > GLFW_MOUSE_BUTTON_LAST)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Register mouse button action
|
|
|
|
if (action == GLFW_RELEASE && window->stickyMouseButtons)
|
2014-05-18 19:28:11 +00:00
|
|
|
window->mouseButtons[button] = _GLFW_STICK;
|
2011-10-09 15:13:58 +00:00
|
|
|
else
|
2014-05-18 19:28:11 +00:00
|
|
|
window->mouseButtons[button] = (char) action;
|
2011-10-09 15:13:58 +00:00
|
|
|
|
2013-01-15 20:34:26 +00:00
|
|
|
if (window->callbacks.mouseButton)
|
2012-12-09 18:19:00 +00:00
|
|
|
window->callbacks.mouseButton((GLFWwindow*) window, button, action, mods);
|
2011-10-09 15:13:58 +00:00
|
|
|
}
|
|
|
|
|
2013-04-04 14:16:21 +00:00
|
|
|
void _glfwInputCursorMotion(_GLFWwindow* window, double x, double y)
|
2011-10-09 15:13:58 +00:00
|
|
|
{
|
2013-04-26 15:20:31 +00:00
|
|
|
if (window->cursorMode == GLFW_CURSOR_DISABLED)
|
2011-10-09 15:13:58 +00:00
|
|
|
{
|
2013-04-04 14:16:21 +00:00
|
|
|
if (x == 0.0 && y == 0.0)
|
2011-10-13 12:07:52 +00:00
|
|
|
return;
|
|
|
|
|
2016-05-24 10:23:58 +00:00
|
|
|
window->virtualCursorPosX += x;
|
|
|
|
window->virtualCursorPosY += y;
|
2011-10-13 12:07:52 +00:00
|
|
|
|
2016-05-24 10:23:58 +00:00
|
|
|
x = window->virtualCursorPosX;
|
|
|
|
y = window->virtualCursorPosY;
|
2011-10-09 15:13:58 +00:00
|
|
|
}
|
|
|
|
|
2013-01-15 20:34:26 +00:00
|
|
|
if (window->callbacks.cursorPos)
|
2014-02-11 17:24:01 +00:00
|
|
|
window->callbacks.cursorPos((GLFWwindow*) window, x, y);
|
2011-10-09 15:13:58 +00:00
|
|
|
}
|
|
|
|
|
2015-11-05 07:58:40 +00:00
|
|
|
void _glfwInputCursorEnter(_GLFWwindow* window, GLFWbool entered)
|
2012-01-30 21:30:40 +00:00
|
|
|
{
|
2013-01-15 20:34:26 +00:00
|
|
|
if (window->callbacks.cursorEnter)
|
|
|
|
window->callbacks.cursorEnter((GLFWwindow*) window, entered);
|
2012-01-30 21:30:40 +00:00
|
|
|
}
|
|
|
|
|
2015-01-27 22:04:22 +00:00
|
|
|
void _glfwInputDrop(_GLFWwindow* window, int count, const char** paths)
|
2013-12-22 15:38:56 +00:00
|
|
|
{
|
2013-07-10 09:42:14 +00:00
|
|
|
if (window->callbacks.drop)
|
2015-01-27 22:04:22 +00:00
|
|
|
window->callbacks.drop((GLFWwindow*) window, count, paths);
|
2013-07-10 09:42:14 +00:00
|
|
|
}
|
|
|
|
|
2015-12-13 16:38:50 +00:00
|
|
|
void _glfwInputJoystickChange(int joy, int event)
|
|
|
|
{
|
|
|
|
if (_glfw.callbacks.joystick)
|
|
|
|
_glfw.callbacks.joystick(joy, event);
|
|
|
|
}
|
|
|
|
|
2012-01-30 21:30:40 +00:00
|
|
|
|
2015-07-02 12:24:50 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW internal API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
GLFWbool _glfwIsPrintable(int key)
|
|
|
|
{
|
|
|
|
return (key >= GLFW_KEY_APOSTROPHE && key <= GLFW_KEY_WORLD_2) ||
|
|
|
|
(key >= GLFW_KEY_KP_0 && key <= GLFW_KEY_KP_ADD) ||
|
|
|
|
key == GLFW_KEY_KP_EQUAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-09 18:59:50 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW public API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-01-05 20:13:28 +00:00
|
|
|
GLFWAPI int glfwGetInputMode(GLFWwindow* handle, int mode)
|
2012-02-04 00:34:12 +00:00
|
|
|
{
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(window != NULL);
|
2012-02-04 00:34:12 +00:00
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(0);
|
2012-02-04 00:34:12 +00:00
|
|
|
|
|
|
|
switch (mode)
|
|
|
|
{
|
2013-04-26 12:29:55 +00:00
|
|
|
case GLFW_CURSOR:
|
2012-02-04 00:34:12 +00:00
|
|
|
return window->cursorMode;
|
|
|
|
case GLFW_STICKY_KEYS:
|
|
|
|
return window->stickyKeys;
|
|
|
|
case GLFW_STICKY_MOUSE_BUTTONS:
|
|
|
|
return window->stickyMouseButtons;
|
|
|
|
default:
|
2016-03-29 08:49:34 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid input mode %i", mode);
|
2012-02-04 00:34:12 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-05 20:13:28 +00:00
|
|
|
GLFWAPI void glfwSetInputMode(GLFWwindow* handle, int mode, int value)
|
2012-02-04 00:34:12 +00:00
|
|
|
{
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(window != NULL);
|
2012-02-04 00:34:12 +00:00
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT();
|
2012-02-04 00:34:12 +00:00
|
|
|
|
|
|
|
switch (mode)
|
|
|
|
{
|
2013-04-26 12:29:55 +00:00
|
|
|
case GLFW_CURSOR:
|
2012-02-04 00:34:12 +00:00
|
|
|
setCursorMode(window, value);
|
|
|
|
break;
|
|
|
|
case GLFW_STICKY_KEYS:
|
2015-08-23 17:30:04 +00:00
|
|
|
setStickyKeys(window, value ? GLFW_TRUE : GLFW_FALSE);
|
2012-02-04 00:34:12 +00:00
|
|
|
break;
|
|
|
|
case GLFW_STICKY_MOUSE_BUTTONS:
|
2015-08-23 17:30:04 +00:00
|
|
|
setStickyMouseButtons(window, value ? GLFW_TRUE : GLFW_FALSE);
|
2012-02-04 00:34:12 +00:00
|
|
|
break;
|
|
|
|
default:
|
2016-03-29 08:49:34 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid input mode %i", mode);
|
2012-02-04 00:34:12 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-02 12:24:50 +00:00
|
|
|
GLFWAPI const char* glfwGetKeyName(int key, int scancode)
|
|
|
|
{
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
return _glfwPlatformGetKeyName(key, scancode);
|
|
|
|
}
|
|
|
|
|
2013-01-05 20:13:28 +00:00
|
|
|
GLFWAPI int glfwGetKey(GLFWwindow* handle, int key)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-04-06 18:38:55 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(window != NULL);
|
2011-04-06 18:38:55 +00:00
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(GLFW_RELEASE);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2016-05-23 12:29:06 +00:00
|
|
|
if (key < GLFW_KEY_SPACE || key > GLFW_KEY_LAST)
|
2010-09-09 19:34:42 +00:00
|
|
|
{
|
2016-03-29 08:49:34 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid key %i", key);
|
2010-09-07 15:34:51 +00:00
|
|
|
return GLFW_RELEASE;
|
2010-09-09 19:34:42 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-05-18 19:28:11 +00:00
|
|
|
if (window->keys[key] == _GLFW_STICK)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// Sticky mode: release key now
|
2014-05-18 19:28:11 +00:00
|
|
|
window->keys[key] = GLFW_RELEASE;
|
2010-09-07 15:34:51 +00:00
|
|
|
return GLFW_PRESS;
|
|
|
|
}
|
|
|
|
|
2014-05-18 19:28:11 +00:00
|
|
|
return (int) window->keys[key];
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-01-05 20:13:28 +00:00
|
|
|
GLFWAPI int glfwGetMouseButton(GLFWwindow* handle, int button)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-04-06 18:38:55 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(window != NULL);
|
2011-04-06 18:38:55 +00:00
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(GLFW_RELEASE);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2016-05-23 12:29:06 +00:00
|
|
|
if (button < GLFW_MOUSE_BUTTON_1 || button > GLFW_MOUSE_BUTTON_LAST)
|
2010-09-09 19:34:42 +00:00
|
|
|
{
|
2016-03-29 08:49:34 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid mouse button %i", button);
|
2010-09-07 15:34:51 +00:00
|
|
|
return GLFW_RELEASE;
|
2010-09-09 19:34:42 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-05-18 19:28:11 +00:00
|
|
|
if (window->mouseButtons[button] == _GLFW_STICK)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
// Sticky mode: release mouse button now
|
2014-05-18 19:28:11 +00:00
|
|
|
window->mouseButtons[button] = GLFW_RELEASE;
|
2010-09-07 15:34:51 +00:00
|
|
|
return GLFW_PRESS;
|
|
|
|
}
|
|
|
|
|
2014-05-18 19:28:11 +00:00
|
|
|
return (int) window->mouseButtons[button];
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-04-04 14:16:21 +00:00
|
|
|
GLFWAPI void glfwGetCursorPos(GLFWwindow* handle, double* xpos, double* ypos)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-04-06 18:38:55 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(window != NULL);
|
2011-04-06 18:38:55 +00:00
|
|
|
|
2014-04-07 13:28:32 +00:00
|
|
|
if (xpos)
|
|
|
|
*xpos = 0;
|
|
|
|
if (ypos)
|
|
|
|
*ypos = 0;
|
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT();
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-02-11 17:24:01 +00:00
|
|
|
if (window->cursorMode == GLFW_CURSOR_DISABLED)
|
|
|
|
{
|
|
|
|
if (xpos)
|
2016-05-24 10:23:58 +00:00
|
|
|
*xpos = window->virtualCursorPosX;
|
2014-02-11 17:24:01 +00:00
|
|
|
if (ypos)
|
2016-05-24 10:23:58 +00:00
|
|
|
*ypos = window->virtualCursorPosY;
|
2014-02-11 17:24:01 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
_glfwPlatformGetCursorPos(window, xpos, ypos);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-04-04 14:16:21 +00:00
|
|
|
GLFWAPI void glfwSetCursorPos(GLFWwindow* handle, double xpos, double ypos)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2011-04-06 18:38:55 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(window != NULL);
|
2011-04-06 18:38:55 +00:00
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
_GLFW_REQUIRE_INIT();
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2016-05-23 12:29:06 +00:00
|
|
|
if (xpos != xpos || xpos < DBL_MIN || xpos > DBL_MAX ||
|
|
|
|
ypos != ypos || ypos < DBL_MIN || ypos > DBL_MAX)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_INVALID_VALUE,
|
|
|
|
"Invalid cursor position %fx%f",
|
|
|
|
xpos, ypos);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-06-17 09:59:39 +00:00
|
|
|
if (_glfw.cursorWindow != window)
|
2011-09-06 11:55:29 +00:00
|
|
|
return;
|
|
|
|
|
2013-04-26 15:20:31 +00:00
|
|
|
if (window->cursorMode == GLFW_CURSOR_DISABLED)
|
2014-02-11 17:24:01 +00:00
|
|
|
{
|
|
|
|
// Only update the accumulated position if the cursor is disabled
|
2016-05-24 10:23:58 +00:00
|
|
|
window->virtualCursorPosX = xpos;
|
|
|
|
window->virtualCursorPosY = ypos;
|
2014-02-11 17:24:01 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Update system cursor position
|
|
|
|
_glfwPlatformSetCursorPos(window, xpos, ypos);
|
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2014-02-23 15:43:17 +00:00
|
|
|
GLFWAPI GLFWcursor* glfwCreateCursor(const GLFWimage* image, int xhot, int yhot)
|
2013-12-04 13:19:22 +00:00
|
|
|
{
|
|
|
|
_GLFWcursor* cursor;
|
|
|
|
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(image != NULL);
|
2016-01-31 16:56:36 +00:00
|
|
|
|
2013-12-04 13:19:22 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
|
|
|
|
cursor = calloc(1, sizeof(_GLFWcursor));
|
2014-01-23 14:24:57 +00:00
|
|
|
cursor->next = _glfw.cursorListHead;
|
|
|
|
_glfw.cursorListHead = cursor;
|
2013-12-04 13:19:22 +00:00
|
|
|
|
2014-02-23 15:43:17 +00:00
|
|
|
if (!_glfwPlatformCreateCursor(cursor, image, xhot, yhot))
|
2013-12-04 13:19:22 +00:00
|
|
|
{
|
2014-01-23 14:24:57 +00:00
|
|
|
glfwDestroyCursor((GLFWcursor*) cursor);
|
2013-12-04 13:19:22 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-09-02 14:52:16 +00:00
|
|
|
return (GLFWcursor*) cursor;
|
|
|
|
}
|
|
|
|
|
|
|
|
GLFWAPI GLFWcursor* glfwCreateStandardCursor(int shape)
|
|
|
|
{
|
|
|
|
_GLFWcursor* cursor;
|
|
|
|
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
|
2015-03-10 18:51:14 +00:00
|
|
|
if (shape != GLFW_ARROW_CURSOR &&
|
|
|
|
shape != GLFW_IBEAM_CURSOR &&
|
|
|
|
shape != GLFW_CROSSHAIR_CURSOR &&
|
|
|
|
shape != GLFW_HAND_CURSOR &&
|
|
|
|
shape != GLFW_HRESIZE_CURSOR &&
|
|
|
|
shape != GLFW_VRESIZE_CURSOR)
|
|
|
|
{
|
2016-03-29 08:49:34 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid standard cursor %i", shape);
|
2015-03-10 18:51:14 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-09-02 14:52:16 +00:00
|
|
|
cursor = calloc(1, sizeof(_GLFWcursor));
|
|
|
|
cursor->next = _glfw.cursorListHead;
|
|
|
|
_glfw.cursorListHead = cursor;
|
|
|
|
|
|
|
|
if (!_glfwPlatformCreateStandardCursor(cursor, shape))
|
|
|
|
{
|
|
|
|
glfwDestroyCursor((GLFWcursor*) cursor);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-12-04 13:19:22 +00:00
|
|
|
return (GLFWcursor*) cursor;
|
|
|
|
}
|
|
|
|
|
|
|
|
GLFWAPI void glfwDestroyCursor(GLFWcursor* handle)
|
|
|
|
{
|
|
|
|
_GLFWcursor* cursor = (_GLFWcursor*) handle;
|
|
|
|
|
|
|
|
_GLFW_REQUIRE_INIT();
|
|
|
|
|
|
|
|
if (cursor == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Make sure the cursor is not being used by any window
|
|
|
|
{
|
2014-01-23 14:24:57 +00:00
|
|
|
_GLFWwindow* window;
|
2013-12-04 13:19:22 +00:00
|
|
|
|
2014-01-23 14:24:57 +00:00
|
|
|
for (window = _glfw.windowListHead; window; window = window->next)
|
2013-12-04 13:19:22 +00:00
|
|
|
{
|
|
|
|
if (window->cursor == cursor)
|
|
|
|
glfwSetCursor((GLFWwindow*) window, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_glfwPlatformDestroyCursor(cursor);
|
|
|
|
|
|
|
|
// Unlink cursor from global linked list
|
|
|
|
{
|
|
|
|
_GLFWcursor** prev = &_glfw.cursorListHead;
|
|
|
|
|
|
|
|
while (*prev != cursor)
|
|
|
|
prev = &((*prev)->next);
|
|
|
|
|
|
|
|
*prev = cursor->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(cursor);
|
|
|
|
}
|
|
|
|
|
|
|
|
GLFWAPI void glfwSetCursor(GLFWwindow* windowHandle, GLFWcursor* cursorHandle)
|
|
|
|
{
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) windowHandle;
|
|
|
|
_GLFWcursor* cursor = (_GLFWcursor*) cursorHandle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(window != NULL);
|
2013-12-04 13:19:22 +00:00
|
|
|
|
|
|
|
_GLFW_REQUIRE_INIT();
|
|
|
|
|
|
|
|
_glfwPlatformSetCursor(window, cursor);
|
|
|
|
|
|
|
|
window->cursor = cursor;
|
|
|
|
}
|
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
GLFWAPI GLFWkeyfun glfwSetKeyCallback(GLFWwindow* handle, GLFWkeyfun cbfun)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-10-28 12:45:11 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(window != NULL);
|
2016-01-31 16:56:36 +00:00
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-07-30 12:43:01 +00:00
|
|
|
_GLFW_SWAP_POINTERS(window->callbacks.key, cbfun);
|
|
|
|
return cbfun;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
GLFWAPI GLFWcharfun glfwSetCharCallback(GLFWwindow* handle, GLFWcharfun cbfun)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-10-28 12:45:11 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(window != NULL);
|
2016-01-31 16:56:36 +00:00
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-07-30 12:43:01 +00:00
|
|
|
_GLFW_SWAP_POINTERS(window->callbacks.character, cbfun);
|
|
|
|
return cbfun;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2014-06-12 21:04:20 +00:00
|
|
|
GLFWAPI GLFWcharmodsfun glfwSetCharModsCallback(GLFWwindow* handle, GLFWcharmodsfun cbfun)
|
|
|
|
{
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(window != NULL);
|
2016-01-31 16:56:36 +00:00
|
|
|
|
2014-06-12 21:04:20 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
_GLFW_SWAP_POINTERS(window->callbacks.charmods, cbfun);
|
|
|
|
return cbfun;
|
|
|
|
}
|
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
GLFWAPI GLFWmousebuttonfun glfwSetMouseButtonCallback(GLFWwindow* handle,
|
|
|
|
GLFWmousebuttonfun cbfun)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-10-28 12:45:11 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(window != NULL);
|
2016-01-31 16:56:36 +00:00
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-07-30 12:43:01 +00:00
|
|
|
_GLFW_SWAP_POINTERS(window->callbacks.mouseButton, cbfun);
|
|
|
|
return cbfun;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
GLFWAPI GLFWcursorposfun glfwSetCursorPosCallback(GLFWwindow* handle,
|
|
|
|
GLFWcursorposfun cbfun)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-10-28 12:45:11 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(window != NULL);
|
2016-01-31 16:56:36 +00:00
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-07-30 12:43:01 +00:00
|
|
|
_GLFW_SWAP_POINTERS(window->callbacks.cursorPos, cbfun);
|
|
|
|
return cbfun;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
GLFWAPI GLFWcursorenterfun glfwSetCursorEnterCallback(GLFWwindow* handle,
|
|
|
|
GLFWcursorenterfun cbfun)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2012-10-28 12:45:11 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(window != NULL);
|
2016-01-31 16:56:36 +00:00
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-07-30 12:43:01 +00:00
|
|
|
_GLFW_SWAP_POINTERS(window->callbacks.cursorEnter, cbfun);
|
|
|
|
return cbfun;
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
GLFWAPI GLFWscrollfun glfwSetScrollCallback(GLFWwindow* handle,
|
|
|
|
GLFWscrollfun cbfun)
|
2012-01-30 21:18:05 +00:00
|
|
|
{
|
2012-10-28 12:45:11 +00:00
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(window != NULL);
|
2016-01-31 16:56:36 +00:00
|
|
|
|
2013-04-08 19:21:21 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-07-30 12:43:01 +00:00
|
|
|
_GLFW_SWAP_POINTERS(window->callbacks.scroll, cbfun);
|
|
|
|
return cbfun;
|
2012-01-30 21:18:05 +00:00
|
|
|
}
|
|
|
|
|
2013-07-10 09:42:14 +00:00
|
|
|
GLFWAPI GLFWdropfun glfwSetDropCallback(GLFWwindow* handle, GLFWdropfun cbfun)
|
|
|
|
{
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(window != NULL);
|
2016-01-31 16:56:36 +00:00
|
|
|
|
2013-07-10 09:42:14 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2013-12-22 15:38:56 +00:00
|
|
|
_GLFW_SWAP_POINTERS(window->callbacks.drop, cbfun);
|
|
|
|
return cbfun;
|
2013-07-10 09:42:14 +00:00
|
|
|
}
|
2013-12-22 15:38:56 +00:00
|
|
|
|
2014-10-07 21:42:05 +00:00
|
|
|
GLFWAPI int glfwJoystickPresent(int joy)
|
|
|
|
{
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(0);
|
|
|
|
|
|
|
|
if (joy < 0 || joy > GLFW_JOYSTICK_LAST)
|
|
|
|
{
|
2016-03-29 08:49:34 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid joystick %i", joy);
|
2014-10-07 21:42:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return _glfwPlatformJoystickPresent(joy);
|
|
|
|
}
|
|
|
|
|
|
|
|
GLFWAPI const float* glfwGetJoystickAxes(int joy, int* count)
|
|
|
|
{
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(count != NULL);
|
2014-10-07 21:42:05 +00:00
|
|
|
*count = 0;
|
|
|
|
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
|
|
|
|
if (joy < 0 || joy > GLFW_JOYSTICK_LAST)
|
|
|
|
{
|
2016-03-29 08:49:34 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid joystick %i", joy);
|
2014-10-07 21:42:05 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return _glfwPlatformGetJoystickAxes(joy, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
GLFWAPI const unsigned char* glfwGetJoystickButtons(int joy, int* count)
|
|
|
|
{
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(count != NULL);
|
2014-10-07 21:42:05 +00:00
|
|
|
*count = 0;
|
|
|
|
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
|
|
|
|
if (joy < 0 || joy > GLFW_JOYSTICK_LAST)
|
|
|
|
{
|
2016-03-29 08:49:34 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid joystick %i", joy);
|
2014-10-07 21:42:05 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return _glfwPlatformGetJoystickButtons(joy, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
GLFWAPI const char* glfwGetJoystickName(int joy)
|
|
|
|
{
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
|
|
|
|
if (joy < 0 || joy > GLFW_JOYSTICK_LAST)
|
|
|
|
{
|
2016-03-29 08:49:34 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid joystick %i", joy);
|
2014-10-07 21:42:05 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return _glfwPlatformGetJoystickName(joy);
|
|
|
|
}
|
|
|
|
|
2015-12-13 16:38:50 +00:00
|
|
|
GLFWAPI GLFWjoystickfun glfwSetJoystickCallback(GLFWjoystickfun cbfun)
|
|
|
|
{
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
_GLFW_SWAP_POINTERS(_glfw.callbacks.joystick, cbfun);
|
|
|
|
return cbfun;
|
|
|
|
}
|
|
|
|
|
2014-09-09 14:26:57 +00:00
|
|
|
GLFWAPI void glfwSetClipboardString(GLFWwindow* handle, const char* string)
|
|
|
|
{
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(window != NULL);
|
|
|
|
assert(string != NULL);
|
2016-01-31 16:56:36 +00:00
|
|
|
|
2014-09-09 14:26:57 +00:00
|
|
|
_GLFW_REQUIRE_INIT();
|
|
|
|
_glfwPlatformSetClipboardString(window, string);
|
|
|
|
}
|
|
|
|
|
|
|
|
GLFWAPI const char* glfwGetClipboardString(GLFWwindow* handle)
|
|
|
|
{
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(window != NULL);
|
2016-01-31 16:56:36 +00:00
|
|
|
|
2014-09-09 14:26:57 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
return _glfwPlatformGetClipboardString(window);
|
|
|
|
}
|
|
|
|
|
2014-10-08 00:48:32 +00:00
|
|
|
GLFWAPI double glfwGetTime(void)
|
|
|
|
{
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(0.0);
|
2016-03-06 10:38:55 +00:00
|
|
|
return (double) (_glfwPlatformGetTimerValue() - _glfw.timerOffset) /
|
|
|
|
_glfwPlatformGetTimerFrequency();
|
2014-10-08 00:48:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GLFWAPI void glfwSetTime(double time)
|
|
|
|
{
|
|
|
|
_GLFW_REQUIRE_INIT();
|
2015-02-19 22:49:46 +00:00
|
|
|
|
2015-03-10 11:01:38 +00:00
|
|
|
if (time != time || time < 0.0 || time > 18446744073.0)
|
2015-02-19 22:49:46 +00:00
|
|
|
{
|
2016-03-29 08:49:34 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_VALUE, "Invalid time %f", time);
|
2015-02-19 22:49:46 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-03-06 10:38:55 +00:00
|
|
|
_glfw.timerOffset = _glfwPlatformGetTimerValue() -
|
2016-03-23 09:09:07 +00:00
|
|
|
(uint64_t) (time * _glfwPlatformGetTimerFrequency());
|
2016-03-06 10:38:55 +00:00
|
|
|
}
|
|
|
|
|
2016-03-23 09:09:07 +00:00
|
|
|
GLFWAPI uint64_t glfwGetTimerValue(void)
|
2016-03-06 10:38:55 +00:00
|
|
|
{
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(0);
|
|
|
|
return _glfwPlatformGetTimerValue();
|
|
|
|
}
|
|
|
|
|
2016-03-23 09:09:07 +00:00
|
|
|
GLFWAPI uint64_t glfwGetTimerFrequency(void)
|
2016-03-06 10:38:55 +00:00
|
|
|
{
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(0);
|
|
|
|
return _glfwPlatformGetTimerFrequency();
|
2014-10-08 00:48:32 +00:00
|
|
|
}
|
|
|
|
|