2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2011-03-06 00:46:39 +00:00
|
|
|
// GLFW - An OpenGL library
|
2010-09-07 15:34:51 +00:00
|
|
|
// Platform: Any
|
2010-09-07 15:41:26 +00:00
|
|
|
// API version: 3.0
|
2010-09-07 15:34:51 +00:00
|
|
|
// 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"
|
|
|
|
|
|
|
|
|
2010-09-09 18:59:50 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW public API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
//========================================================================
|
2010-09-07 15:50:43 +00:00
|
|
|
// Determine joystick capabilities
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2010-09-08 12:45:52 +00:00
|
|
|
GLFWAPI int glfwGetJoystickParam(int joy, int param)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
2010-09-08 12:45:52 +00:00
|
|
|
if (!_glfwInitialized)
|
2010-09-09 19:34:42 +00:00
|
|
|
{
|
2010-11-23 16:45:23 +00:00
|
|
|
_glfwSetError(GLFW_NOT_INITIALIZED, NULL);
|
2010-09-07 15:34:51 +00:00
|
|
|
return 0;
|
2010-09-09 19:34:42 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-08-26 16:28:30 +00:00
|
|
|
if (joy < 0 || joy > GLFW_JOYSTICK_LAST)
|
|
|
|
{
|
|
|
|
_glfwSetError(GLFW_INVALID_ENUM, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-09-08 12:45:52 +00:00
|
|
|
return _glfwPlatformGetJoystickParam(joy, param);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
2010-09-07 15:50:43 +00:00
|
|
|
// Get joystick axis positions
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2010-09-08 13:58:43 +00:00
|
|
|
GLFWAPI int glfwGetJoystickPos(int joy, float* pos, int numaxes)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2010-09-08 12:45:52 +00:00
|
|
|
if (!_glfwInitialized)
|
2010-09-09 19:34:42 +00:00
|
|
|
{
|
2010-11-23 16:45:23 +00:00
|
|
|
_glfwSetError(GLFW_NOT_INITIALIZED, NULL);
|
2010-09-07 15:34:51 +00:00
|
|
|
return 0;
|
2010-09-09 19:34:42 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-08-26 16:28:30 +00:00
|
|
|
if (joy < 0 || joy > GLFW_JOYSTICK_LAST)
|
|
|
|
{
|
|
|
|
_glfwSetError(GLFW_INVALID_ENUM, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pos == NULL || numaxes < 0)
|
|
|
|
{
|
|
|
|
_glfwSetError(GLFW_INVALID_VALUE, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
// Clear positions
|
2010-09-08 12:45:52 +00:00
|
|
|
for (i = 0; i < numaxes; i++)
|
|
|
|
pos[i] = 0.0f;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-08 12:45:52 +00:00
|
|
|
return _glfwPlatformGetJoystickPos(joy, pos, numaxes);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
2010-09-07 15:50:43 +00:00
|
|
|
// Get joystick button states
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2010-09-08 12:45:52 +00:00
|
|
|
GLFWAPI int glfwGetJoystickButtons(int joy,
|
2010-09-08 13:58:43 +00:00
|
|
|
unsigned char* buttons,
|
2010-09-08 12:45:52 +00:00
|
|
|
int numbuttons)
|
2010-09-07 15:34:51 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2010-09-08 12:45:52 +00:00
|
|
|
if (!_glfwInitialized)
|
2010-09-09 19:34:42 +00:00
|
|
|
{
|
2010-11-23 16:45:23 +00:00
|
|
|
_glfwSetError(GLFW_NOT_INITIALIZED, NULL);
|
2010-09-07 15:34:51 +00:00
|
|
|
return 0;
|
2010-09-09 19:34:42 +00:00
|
|
|
}
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-08-26 16:28:30 +00:00
|
|
|
if (joy < 0 || joy > GLFW_JOYSTICK_LAST)
|
|
|
|
{
|
|
|
|
_glfwSetError(GLFW_INVALID_ENUM, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buttons == NULL || numbuttons < 0)
|
|
|
|
{
|
|
|
|
_glfwSetError(GLFW_INVALID_VALUE, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
// Clear button states
|
2010-09-08 12:45:52 +00:00
|
|
|
for (i = 0; i < numbuttons; i++)
|
|
|
|
buttons[i] = GLFW_RELEASE;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-08 12:45:52 +00:00
|
|
|
return _glfwPlatformGetJoystickButtons(joy, buttons, numbuttons);
|
2010-09-07 15:34:51 +00:00
|
|
|
}
|
|
|
|
|