X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Flibgame%2Fjoystick.h;fp=src%2Flibgame%2Fjoystick.h;h=a826efff8213b4bad23fd16568fcd5fbff29d39f;hp=b1fca495273fe601e76ed63becc45959c53ea780;hb=e0e2697df0d0da483a91b1248c120aef6b3caf9b;hpb=41e8d55b767c898f20c29a1b0b8d2ef8840be2f5 diff --git a/src/libgame/joystick.h b/src/libgame/joystick.h index b1fca495..a826efff 100644 --- a/src/libgame/joystick.h +++ b/src/libgame/joystick.h @@ -16,11 +16,9 @@ #include "system.h" -/* values for the joystick */ #define JOYSTICK_NOT_AVAILABLE 0 #define JOYSTICK_AVAILABLE (1 << 0) #define JOYSTICK_ACTIVE (1 << 1) - #define JOYSTICK_ACTIVATED (JOYSTICK_AVAILABLE | JOYSTICK_ACTIVE) #if defined(PLATFORM_FREEBSD) @@ -46,16 +44,17 @@ #define JOYSTICK_YMIDDLE 0 #define JOYSTICK_YLOWER 32767 #else -#define JOYSTICK_XLEFT 30 -#define JOYSTICK_XMIDDLE 530 -#define JOYSTICK_XRIGHT 1250 -#define JOYSTICK_YUPPER 40 -#define JOYSTICK_YMIDDLE 680 -#define JOYSTICK_YLOWER 1440 +#define JOYSTICK_XLEFT 1 +#define JOYSTICK_XMIDDLE 128 +#define JOYSTICK_XRIGHT 255 +#define JOYSTICK_YUPPER 1 +#define JOYSTICK_YMIDDLE 128 +#define JOYSTICK_YLOWER 255 #endif #define JOYSTICK_PERCENT 25 +#define JOY_NO_ACTION 0 #define JOY_LEFT MV_LEFT #define JOY_RIGHT MV_RIGHT #define JOY_UP MV_UP @@ -69,27 +68,16 @@ #define JOY_BUTTON_NEW_PRESSED 2 #define JOY_BUTTON_NEW_RELEASED 3 -#ifdef NO_JOYSTICK -#define JOYSTICK_STATUS JOYSTICK_NOT_AVAILABLE -#else -#define JOYSTICK_STATUS JOYSTICK_AVAILABLE +#if defined(PLATFORM_UNIX) +void UnixInitJoysticks(void); +boolean UnixReadJoystick(int, int *, int *, boolean *, boolean *); #endif - char *getJoyNameFromJoySymbol(int); int getJoySymbolFromJoyName(char *); int getJoystickNrFromDeviceName(char *); char *getDeviceNameFromJoystickNr(int); -#if defined(TARGET_SDL) -SDL_Joystick *Get_SDL_Joystick(int); -boolean Open_SDL_Joystick(int); -void Close_SDL_Joystick(int); -boolean Check_SDL_JoystickOpened(int); -void HandleJoystickEvent(Event *); -int Get_SDL_Joystick_Axis(int, int); -#endif - void CheckJoystickData(void); int Joystick(int); int JoystickButton(int);