1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-11-23 10:48:51 -05:00
glfw/src/joystick.c

91 lines
2.6 KiB
C
Raw Normal View History

2010-09-07 11:34:51 -04:00
//========================================================================
// GLFW 3.1 - www.glfw.org
2010-09-07 11:34:51 -04: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"
2010-09-09 14:59:50 -04:00
//////////////////////////////////////////////////////////////////////////
////// GLFW public API //////
//////////////////////////////////////////////////////////////////////////
2010-09-07 11:34:51 -04:00
2013-04-24 13:25:42 -04:00
GLFWAPI int glfwJoystickPresent(int joy)
2010-09-07 11:34:51 -04:00
{
_GLFW_REQUIRE_INIT_OR_RETURN(0);
2010-09-07 11:34:51 -04:00
if (joy < 0 || joy > GLFW_JOYSTICK_LAST)
{
_glfwInputError(GLFW_INVALID_ENUM, NULL);
return 0;
}
2013-04-24 13:25:42 -04:00
return _glfwPlatformJoystickPresent(joy);
2010-09-07 11:34:51 -04:00
}
2013-06-04 12:20:38 -04:00
GLFWAPI const float* glfwGetJoystickAxes(int joy, int* count)
2010-09-07 11:34:51 -04:00
{
2013-04-24 13:25:42 -04:00
*count = 0;
2010-09-07 11:34:51 -04:00
2013-04-24 13:25:42 -04:00
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
2010-09-07 11:34:51 -04:00
if (joy < 0 || joy > GLFW_JOYSTICK_LAST)
{
_glfwInputError(GLFW_INVALID_ENUM, NULL);
2013-04-24 13:25:42 -04:00
return NULL;
}
2013-04-24 13:25:42 -04:00
return _glfwPlatformGetJoystickAxes(joy, count);
2010-09-07 11:34:51 -04:00
}
2013-06-04 12:20:38 -04:00
GLFWAPI const unsigned char* glfwGetJoystickButtons(int joy, int* count)
2010-09-07 11:34:51 -04:00
{
2013-04-24 13:25:42 -04:00
*count = 0;
2010-09-07 11:34:51 -04:00
2013-04-24 13:25:42 -04:00
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
2010-09-07 11:34:51 -04:00
if (joy < 0 || joy > GLFW_JOYSTICK_LAST)
{
_glfwInputError(GLFW_INVALID_ENUM, NULL);
2013-04-24 13:25:42 -04:00
return NULL;
}
2013-04-24 13:25:42 -04:00
return _glfwPlatformGetJoystickButtons(joy, count);
2010-09-07 11:34:51 -04:00
}
GLFWAPI const char* glfwGetJoystickName(int joy)
{
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
if (joy < 0 || joy > GLFW_JOYSTICK_LAST)
{
_glfwInputError(GLFW_INVALID_ENUM, NULL);
2012-12-02 10:53:28 -05:00
return NULL;
}
return _glfwPlatformGetJoystickName(joy);
}