X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Flibgame%2Fjoystick.h;h=e43844edd8b8e63b8d9a10752205162e463b8cd5;hp=f3be29545672d5e2b636ba5b2ec17ab4d3f1c7db;hb=b641818c787e48bbf03ce2a0cd5b542c4c21e523;hpb=cad3c0cde6926a8a379725b1ffc6fc657272a76d diff --git a/src/libgame/joystick.h b/src/libgame/joystick.h index f3be2954..e43844ed 100644 --- a/src/libgame/joystick.h +++ b/src/libgame/joystick.h @@ -4,7 +4,7 @@ // (c) 1995-2014 by Artsoft Entertainment // Holger Schemel // info@artsoft.org -// http://www.artsoft.org/ +// https://www.artsoft.org/ // ---------------------------------------------------------------------------- // joystick.h // ============================================================================ @@ -17,8 +17,12 @@ #define JOYSTICK_NOT_AVAILABLE 0 #define JOYSTICK_AVAILABLE (1 << 0) #define JOYSTICK_ACTIVE (1 << 1) +#define JOYSTICK_CONFIGURED (1 << 2) +#define JOYSTICK_NOT_CONFIGURED (1 << 3) #define JOYSTICK_ACTIVATED (JOYSTICK_AVAILABLE | JOYSTICK_ACTIVE) +#define MAX_JOYSTICK_NAME_LEN 40 + #if defined(PLATFORM_FREEBSD) #define DEV_JOYSTICK_0 "/dev/joy0" #define DEV_JOYSTICK_1 "/dev/joy1" @@ -31,8 +35,8 @@ #define DEV_JOYSTICK_3 "/dev/js3" #endif -/* get these values from the program 'js' from the joystick package, */ -/* set JOYSTICK_PERCENT to a threshold appropriate for your joystick */ +// get these values from the program 'js' from the joystick package, +// set JOYSTICK_PERCENT to a threshold appropriate for your joystick #define JOYSTICK_MAX_AXIS_POS 32767 @@ -67,6 +71,7 @@ char *getJoyNameFromJoySymbol(int); int getJoySymbolFromJoyName(char *); int getJoystickNrFromDeviceName(char *); char *getDeviceNameFromJoystickNr(int); +char *getFormattedJoystickName(const char *); void CheckJoystickData(void); int Joystick(int); @@ -75,7 +80,7 @@ int JoystickButton(int); int AnyJoystick(void); int AnyJoystickButton(void); -void DeactivateJoystick(); -void ActivateJoystick(); +void DeactivateJoystick(void); +void ActivateJoystick(void); -#endif /* JOYSTICK_H */ +#endif // JOYSTICK_H