#include <SFML/Window/Export.h>
Go to the source code of this file.
Enumerations | |
enum | { sfJoystickCount = 8, sfJoystickButtonCount = 32, sfJoystickAxisCount = 8 } |
Global joysticks capabilities. More... | |
enum | sfJoystickAxis { sfJoystickX, sfJoystickY, sfJoystickZ, sfJoystickR, sfJoystickU, sfJoystickV, sfJoystickPovX, sfJoystickPovY } |
Axes supported by SFML joysticks. More... | |
Functions | |
CSFML_WINDOW_API sfBool | sfJoystick_isConnected (unsigned int joystick) |
Check if a joystick is connected. | |
CSFML_WINDOW_API unsigned int | sfJoystick_getButtonCount (unsigned int joystick) |
Return the number of buttons supported by a joystick. | |
CSFML_WINDOW_API sfBool | sfJoystick_hasAxis (unsigned int joystick, sfJoystickAxis axis) |
Check if a joystick supports a given axis. | |
CSFML_WINDOW_API sfBool | sfJoystick_isButtonPressed (unsigned int joystick, unsigned int button) |
Check if a joystick button is pressed. | |
CSFML_WINDOW_API float | sfJoystick_getAxisPosition (unsigned int joystick, sfJoystickAxis axis) |
Get the current position of a joystick axis. | |
CSFML_WINDOW_API void | sfJoystick_update (void) |
Update the states of all joysticks. | |
anonymous enum |
Global joysticks capabilities.
sfJoystickCount |
Maximum number of supported joysticks. |
sfJoystickButtonCount |
Maximum number of supported buttons. |
sfJoystickAxisCount |
Maximum number of supported axes. |
Definition at line 37 of file Joystick.h.
enum sfJoystickAxis |
Axes supported by SFML joysticks.
Definition at line 49 of file Joystick.h.
CSFML_WINDOW_API float sfJoystick_getAxisPosition | ( | unsigned int | joystick, |
sfJoystickAxis | axis | ||
) |
Get the current position of a joystick axis.
If the joystick is not connected, this function returns 0.
joystick | Index of the joystick |
axis | Axis to check |
CSFML_WINDOW_API unsigned int sfJoystick_getButtonCount | ( | unsigned int | joystick | ) |
Return the number of buttons supported by a joystick.
If the joystick is not connected, this function returns 0.
joystick | Index of the joystick |
CSFML_WINDOW_API sfBool sfJoystick_hasAxis | ( | unsigned int | joystick, |
sfJoystickAxis | axis | ||
) |
Check if a joystick supports a given axis.
If the joystick is not connected, this function returns false.
joystick | Index of the joystick |
axis | Axis to check |
CSFML_WINDOW_API sfBool sfJoystick_isButtonPressed | ( | unsigned int | joystick, |
unsigned int | button | ||
) |
Check if a joystick button is pressed.
If the joystick is not connected, this function returns false.
joystick | Index of the joystick |
button | Button to check |
CSFML_WINDOW_API sfBool sfJoystick_isConnected | ( | unsigned int | joystick | ) |
Check if a joystick is connected.
joystick | Index of the joystick to check |
CSFML_WINDOW_API void sfJoystick_update | ( | void | ) |
Update the states of all joysticks.
This function is used internally by SFML, so you normally don't have to call it explicitely. However, you may need to call it if you have no window yet (or no window at all): in this case the joysticks states are not updated automatically.