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"
|
|
|
|
|
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>
|
2017-01-05 18:44:15 +00:00
|
|
|
#include <string.h>
|
2013-12-04 13:19:22 +00:00
|
|
|
|
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
|
|
|
|
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;
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-05-25 12:43:51 +00:00
|
|
|
void _glfwInputCursorPos(_GLFWwindow* window, double xpos, double ypos)
|
2011-10-09 15:13:58 +00:00
|
|
|
{
|
2016-05-25 12:43:51 +00:00
|
|
|
if (window->virtualCursorPosX == xpos && window->virtualCursorPosY == ypos)
|
2016-05-25 12:06:02 +00:00
|
|
|
return;
|
2011-10-13 12:07:52 +00:00
|
|
|
|
2016-05-25 12:43:51 +00:00
|
|
|
window->virtualCursorPosX = xpos;
|
|
|
|
window->virtualCursorPosY = ypos;
|
2011-10-09 15:13:58 +00:00
|
|
|
|
2013-01-15 20:34:26 +00:00
|
|
|
if (window->callbacks.cursorPos)
|
2016-05-25 12:43:51 +00:00
|
|
|
window->callbacks.cursorPos((GLFWwindow*) window, xpos, ypos);
|
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
|
|
|
}
|
|
|
|
|
2017-01-05 18:44:15 +00:00
|
|
|
void _glfwInputJoystick(int jid, int event)
|
2015-12-13 16:38:50 +00:00
|
|
|
{
|
|
|
|
if (_glfw.callbacks.joystick)
|
2016-10-10 01:24:07 +00:00
|
|
|
_glfw.callbacks.joystick(jid, event);
|
2015-12-13 16:38:50 +00:00
|
|
|
}
|
|
|
|
|
2017-01-05 18:44:15 +00:00
|
|
|
void _glfwInputJoystickAxis(int jid, int axis, float value)
|
|
|
|
{
|
|
|
|
_glfw.joysticks[jid].axes[axis] = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwInputJoystickButton(int jid, int button, char value)
|
|
|
|
{
|
|
|
|
_glfw.joysticks[jid].buttons[button] = value;
|
|
|
|
}
|
|
|
|
|
2017-03-01 22:27:20 +00:00
|
|
|
void _glfwInputJoystickHat(int jid, int hat, char value)
|
|
|
|
{
|
|
|
|
_GLFWjoystick* js = _glfw.joysticks + jid;
|
|
|
|
const int base = js->buttonCount + hat * 4;
|
|
|
|
|
|
|
|
js->buttons[base + 0] = (value & 0x01) ? GLFW_PRESS : GLFW_RELEASE;
|
|
|
|
js->buttons[base + 1] = (value & 0x02) ? GLFW_PRESS : GLFW_RELEASE;
|
|
|
|
js->buttons[base + 2] = (value & 0x04) ? GLFW_PRESS : GLFW_RELEASE;
|
|
|
|
js->buttons[base + 3] = (value & 0x08) ? GLFW_PRESS : GLFW_RELEASE;
|
|
|
|
|
|
|
|
js->hats[hat] = value;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2017-03-01 22:27:20 +00:00
|
|
|
_GLFWjoystick* _glfwAllocJoystick(const char* name,
|
|
|
|
int axisCount,
|
|
|
|
int buttonCount,
|
|
|
|
int hatCount)
|
2017-01-05 18:44:15 +00:00
|
|
|
{
|
|
|
|
int jid;
|
|
|
|
_GLFWjoystick* js;
|
|
|
|
|
|
|
|
for (jid = 0; jid <= GLFW_JOYSTICK_LAST; jid++)
|
|
|
|
{
|
|
|
|
if (!_glfw.joysticks[jid].present)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (jid > GLFW_JOYSTICK_LAST)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
js = _glfw.joysticks + jid;
|
|
|
|
js->present = GLFW_TRUE;
|
|
|
|
js->name = strdup(name);
|
|
|
|
js->axes = calloc(axisCount, sizeof(float));
|
2017-03-01 22:27:20 +00:00
|
|
|
js->buttons = calloc(buttonCount + hatCount * 4, 1);
|
|
|
|
js->hats = calloc(hatCount, 1);
|
2017-01-05 18:44:15 +00:00
|
|
|
js->axisCount = axisCount;
|
|
|
|
js->buttonCount = buttonCount;
|
2017-03-01 22:27:20 +00:00
|
|
|
js->hatCount = hatCount;
|
2017-01-05 18:44:15 +00:00
|
|
|
|
|
|
|
return js;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwFreeJoystick(_GLFWjoystick* js)
|
|
|
|
{
|
|
|
|
free(js->name);
|
|
|
|
free(js->axes);
|
|
|
|
free(js->buttons);
|
2017-03-01 22:27:20 +00:00
|
|
|
free(js->hats);
|
2017-01-05 18:44:15 +00:00
|
|
|
memset(js, 0, sizeof(_GLFWjoystick));
|
|
|
|
}
|
|
|
|
|
2015-07-02 12:24:50 +00:00
|
|
|
|
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:
|
2017-06-27 14:35:18 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid input mode 0x%08X", 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:
|
2016-05-25 12:43:51 +00:00
|
|
|
{
|
|
|
|
if (value != GLFW_CURSOR_NORMAL &&
|
|
|
|
value != GLFW_CURSOR_HIDDEN &&
|
|
|
|
value != GLFW_CURSOR_DISABLED)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_INVALID_ENUM,
|
2017-06-27 14:35:18 +00:00
|
|
|
"Invalid cursor mode 0x%08X",
|
2016-05-25 12:43:51 +00:00
|
|
|
value);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window->cursorMode == value)
|
|
|
|
return;
|
|
|
|
|
2016-05-30 19:21:09 +00:00
|
|
|
window->cursorMode = value;
|
|
|
|
|
2016-05-25 12:43:51 +00:00
|
|
|
_glfwPlatformGetCursorPos(window,
|
|
|
|
&window->virtualCursorPosX,
|
|
|
|
&window->virtualCursorPosY);
|
|
|
|
|
2016-05-30 19:21:09 +00:00
|
|
|
if (_glfwPlatformWindowFocused(window))
|
2016-05-25 12:43:51 +00:00
|
|
|
_glfwPlatformSetCursorMode(window, value);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-02-04 00:34:12 +00:00
|
|
|
case GLFW_STICKY_KEYS:
|
2016-05-25 12:43:51 +00:00
|
|
|
{
|
|
|
|
if (window->stickyKeys == value)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!value)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
// Release all sticky keys
|
|
|
|
for (i = 0; i <= GLFW_KEY_LAST; i++)
|
|
|
|
{
|
|
|
|
if (window->keys[i] == _GLFW_STICK)
|
|
|
|
window->keys[i] = GLFW_RELEASE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
window->stickyKeys = value ? GLFW_TRUE : GLFW_FALSE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-02-04 00:34:12 +00:00
|
|
|
case GLFW_STICKY_MOUSE_BUTTONS:
|
2016-05-25 12:43:51 +00:00
|
|
|
{
|
|
|
|
if (window->stickyMouseButtons == value)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!value)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
// Release all sticky mouse buttons
|
|
|
|
for (i = 0; i <= GLFW_MOUSE_BUTTON_LAST; i++)
|
|
|
|
{
|
|
|
|
if (window->mouseButtons[i] == _GLFW_STICK)
|
|
|
|
window->mouseButtons[i] = GLFW_RELEASE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
window->stickyMouseButtons = value ? GLFW_TRUE : GLFW_FALSE;
|
|
|
|
return;
|
|
|
|
}
|
2012-02-04 00:34:12 +00:00
|
|
|
}
|
2016-05-25 12:43:51 +00:00
|
|
|
|
2017-06-27 14:35:18 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid input mode 0x%08X", mode);
|
2012-02-04 00:34:12 +00:00
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2016-09-06 13:40:31 +00:00
|
|
|
GLFWAPI int glfwGetKeyScancode(int key)
|
2016-08-11 17:11:40 +00:00
|
|
|
{
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(-1);
|
2016-09-06 13:40:31 +00:00
|
|
|
|
|
|
|
if (key < GLFW_KEY_SPACE || key > GLFW_KEY_LAST)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid key %i", key);
|
|
|
|
return GLFW_RELEASE;
|
|
|
|
}
|
|
|
|
|
2016-08-11 17:11:40 +00:00
|
|
|
return _glfwPlatformGetKeyScancode(key);
|
|
|
|
}
|
|
|
|
|
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-06-05 17:36:03 +00:00
|
|
|
if (xpos != xpos || xpos < -DBL_MAX || xpos > DBL_MAX ||
|
|
|
|
ypos != ypos || ypos < -DBL_MAX || ypos > DBL_MAX)
|
2016-05-23 12:29:06 +00:00
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_INVALID_VALUE,
|
2016-06-05 17:37:08 +00:00
|
|
|
"Invalid cursor position %f %f",
|
2016-05-23 12:29:06 +00:00
|
|
|
xpos, ypos);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-05-30 19:21:09 +00:00
|
|
|
if (!_glfwPlatformWindowFocused(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)
|
|
|
|
{
|
2017-06-27 14:35:18 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid standard cursor 0x%08X", 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();
|
|
|
|
|
|
|
|
window->cursor = cursor;
|
2016-05-25 12:06:02 +00:00
|
|
|
|
|
|
|
_glfwPlatformSetCursor(window, cursor);
|
2013-12-04 13:19:22 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2016-10-10 01:24:07 +00:00
|
|
|
GLFWAPI int glfwJoystickPresent(int jid)
|
2014-10-07 21:42:05 +00:00
|
|
|
{
|
2017-01-05 18:44:15 +00:00
|
|
|
assert(jid >= GLFW_JOYSTICK_1);
|
|
|
|
assert(jid <= GLFW_JOYSTICK_LAST);
|
|
|
|
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(GLFW_FALSE);
|
2014-10-07 21:42:05 +00:00
|
|
|
|
2016-10-10 01:24:07 +00:00
|
|
|
if (jid < 0 || jid > GLFW_JOYSTICK_LAST)
|
2014-10-07 21:42:05 +00:00
|
|
|
{
|
2017-05-17 18:41:33 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid joystick ID %i", jid);
|
2017-01-05 18:44:15 +00:00
|
|
|
return GLFW_FALSE;
|
2014-10-07 21:42:05 +00:00
|
|
|
}
|
|
|
|
|
2017-01-05 18:44:15 +00:00
|
|
|
if (!_glfw.joysticks[jid].present)
|
|
|
|
return GLFW_FALSE;
|
|
|
|
|
|
|
|
return _glfwPlatformPollJoystick(jid, _GLFW_POLL_PRESENCE);
|
2014-10-07 21:42:05 +00:00
|
|
|
}
|
|
|
|
|
2016-10-10 01:24:07 +00:00
|
|
|
GLFWAPI const float* glfwGetJoystickAxes(int jid, int* count)
|
2014-10-07 21:42:05 +00:00
|
|
|
{
|
2017-01-05 18:44:15 +00:00
|
|
|
assert(jid >= GLFW_JOYSTICK_1);
|
|
|
|
assert(jid <= GLFW_JOYSTICK_LAST);
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(count != NULL);
|
2017-01-05 18:44:15 +00:00
|
|
|
|
2014-10-07 21:42:05 +00:00
|
|
|
*count = 0;
|
|
|
|
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
|
2016-10-10 01:24:07 +00:00
|
|
|
if (jid < 0 || jid > GLFW_JOYSTICK_LAST)
|
2014-10-07 21:42:05 +00:00
|
|
|
{
|
2017-05-17 18:41:33 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid joystick ID %i", jid);
|
2014-10-07 21:42:05 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-01-05 18:44:15 +00:00
|
|
|
if (!_glfw.joysticks[jid].present)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!_glfwPlatformPollJoystick(jid, _GLFW_POLL_AXES))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
*count = _glfw.joysticks[jid].axisCount;
|
|
|
|
return _glfw.joysticks[jid].axes;
|
2014-10-07 21:42:05 +00:00
|
|
|
}
|
|
|
|
|
2016-10-10 01:24:07 +00:00
|
|
|
GLFWAPI const unsigned char* glfwGetJoystickButtons(int jid, int* count)
|
2014-10-07 21:42:05 +00:00
|
|
|
{
|
2017-01-05 18:44:15 +00:00
|
|
|
assert(jid >= GLFW_JOYSTICK_1);
|
|
|
|
assert(jid <= GLFW_JOYSTICK_LAST);
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(count != NULL);
|
2017-01-05 18:44:15 +00:00
|
|
|
|
2014-10-07 21:42:05 +00:00
|
|
|
*count = 0;
|
|
|
|
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
|
2016-10-10 01:24:07 +00:00
|
|
|
if (jid < 0 || jid > GLFW_JOYSTICK_LAST)
|
2014-10-07 21:42:05 +00:00
|
|
|
{
|
2017-05-17 18:41:33 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid joystick ID %i", jid);
|
2014-10-07 21:42:05 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-01-05 18:44:15 +00:00
|
|
|
if (!_glfw.joysticks[jid].present)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!_glfwPlatformPollJoystick(jid, _GLFW_POLL_BUTTONS))
|
|
|
|
return NULL;
|
|
|
|
|
2017-03-01 22:27:20 +00:00
|
|
|
if (_glfw.hints.init.hatButtons)
|
|
|
|
{
|
|
|
|
*count = _glfw.joysticks[jid].buttonCount +
|
|
|
|
_glfw.joysticks[jid].hatCount * 4;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*count = _glfw.joysticks[jid].buttonCount;
|
|
|
|
|
2017-01-05 18:44:15 +00:00
|
|
|
return _glfw.joysticks[jid].buttons;
|
2014-10-07 21:42:05 +00:00
|
|
|
}
|
|
|
|
|
2016-11-26 03:56:24 +00:00
|
|
|
GLFWAPI const unsigned char* glfwGetJoystickHats(int jid, int* count)
|
|
|
|
{
|
2017-03-01 22:27:20 +00:00
|
|
|
assert(jid >= GLFW_JOYSTICK_1);
|
|
|
|
assert(jid <= GLFW_JOYSTICK_LAST);
|
2016-11-26 03:56:24 +00:00
|
|
|
assert(count != NULL);
|
2017-03-01 22:27:20 +00:00
|
|
|
|
2016-11-26 03:56:24 +00:00
|
|
|
*count = 0;
|
|
|
|
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
|
|
|
|
if (jid < 0 || jid > GLFW_JOYSTICK_LAST)
|
|
|
|
{
|
2017-05-17 18:41:33 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid joystick ID %i", jid);
|
2016-11-26 03:56:24 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-03-01 22:27:20 +00:00
|
|
|
if (!_glfw.joysticks[jid].present)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!_glfwPlatformPollJoystick(jid, _GLFW_POLL_BUTTONS))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
*count = _glfw.joysticks[jid].hatCount;
|
|
|
|
return _glfw.joysticks[jid].hats;
|
2016-11-26 03:56:24 +00:00
|
|
|
}
|
|
|
|
|
2016-10-10 01:24:07 +00:00
|
|
|
GLFWAPI const char* glfwGetJoystickName(int jid)
|
2014-10-07 21:42:05 +00:00
|
|
|
{
|
2017-01-05 18:44:15 +00:00
|
|
|
assert(jid >= GLFW_JOYSTICK_1);
|
|
|
|
assert(jid <= GLFW_JOYSTICK_LAST);
|
|
|
|
|
2014-10-07 21:42:05 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
|
2016-10-10 01:24:07 +00:00
|
|
|
if (jid < 0 || jid > GLFW_JOYSTICK_LAST)
|
2014-10-07 21:42:05 +00:00
|
|
|
{
|
2017-05-17 18:41:33 +00:00
|
|
|
_glfwInputError(GLFW_INVALID_ENUM, "Invalid joystick ID %i", jid);
|
2014-10-07 21:42:05 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-01-05 18:44:15 +00:00
|
|
|
if (!_glfw.joysticks[jid].present)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!_glfwPlatformPollJoystick(jid, _GLFW_POLL_PRESENCE))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return _glfw.joysticks[jid].name;
|
2014-10-07 21:42:05 +00:00
|
|
|
}
|
|
|
|
|
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);
|
2017-03-18 22:09:34 +00:00
|
|
|
return (double) (_glfwPlatformGetTimerValue() - _glfw.timer.offset) /
|
2016-03-06 10:38:55 +00:00
|
|
|
_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;
|
|
|
|
}
|
|
|
|
|
2017-03-18 22:09:34 +00:00
|
|
|
_glfw.timer.offset = _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
|
|
|
}
|
|
|
|
|