From 7127f6c844ee24e3629f292a8301395111266a7e Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Thu, 31 May 2007 23:16:23 +0000 Subject: Initial joystick support. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 887 --- src/Makefile.am | 1 + src/i_joystick.c | 166 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/i_joystick.h | 41 ++++++++++++++ src/i_main.c | 2 +- src/i_system.c | 2 + src/m_misc.c | 7 +++ 6 files changed, 218 insertions(+), 1 deletion(-) create mode 100644 src/i_joystick.c create mode 100644 src/i_joystick.h (limited to 'src') diff --git a/src/Makefile.am b/src/Makefile.am index db446819..da9a35f8 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -48,6 +48,7 @@ hu_lib.c hu_lib.h \ hu_stuff.c hu_stuff.h \ i_main.c \ info.c info.h \ +i_joystick.c i_joystick.h \ i_scale.c i_scale.h \ i_swap.h \ i_system.c i_system.h \ diff --git a/src/i_joystick.c b/src/i_joystick.c new file mode 100644 index 00000000..4d73a3af --- /dev/null +++ b/src/i_joystick.c @@ -0,0 +1,166 @@ +// Emacs style mode select -*- C++ -*- +//----------------------------------------------------------------------------- +// +// Copyright(C) 2007 Simon Howard +// +// This program is free software; you can redistribute it and/or +// modify it under the terms of the GNU General Public License +// as published by the Free Software Foundation; either version 2 +// of the License, or (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +// 02111-1307, USA. +// +// DESCRIPTION: +// SDL Joystick code. +// +//----------------------------------------------------------------------------- + + +#include "SDL.h" +#include "SDL_joystick.h" + +#include +#include +#include + +#include "doomdef.h" +#include "doomtype.h" +#include "d_event.h" +#include "d_main.h" +#include "i_joystick.h" + +static SDL_Joystick *joystick = NULL; + +// Configuration variables: + +// Standard default.cfg Joystick enable/disable + +extern int usejoystick; + +// Joystick to use, as an SDL joystick index: + +int joystick_index = -1; + +// Which joystick axis to use for horizontal movement, and whether to +// invert the direction: + +int joystick_x_axis = 0; +int joystick_x_invert = 0; + +// Which joystick axis to use for vertical movement, and whether to +// invert the direction: + +int joystick_y_axis = 1; +int joystick_y_invert = 0; + +void I_InitJoystick(void) +{ + int num_axes; + + if (!usejoystick) + { + return; + } + + if (SDL_Init(SDL_INIT_JOYSTICK) < 0) + { + return; + } + + // Open the joystick + + joystick = SDL_JoystickOpen(joystick_index); + + if (joystick == NULL) + { + printf("I_InitJoystick: Failed to open joystick #%i\n", + joystick_index); + SDL_QuitSubSystem(SDL_INIT_JOYSTICK); + return; + } + + num_axes = SDL_JoystickNumAxes(joystick); + + if (joystick_x_axis < 0 || joystick_x_axis >= num_axes + || joystick_y_axis < 0 || joystick_y_axis >= num_axes) + { + printf("I_InitJoystick: Invalid joystick axis for joystick #%i " + "(run joystick setup again)\n", + joystick_index); + + SDL_JoystickClose(joystick); + joystick = NULL; + SDL_QuitSubSystem(SDL_INIT_JOYSTICK); + } + + // Initialised okay! + + printf("I_InitJoystick: %s\n", SDL_JoystickName(joystick_index)); +} + +void I_ShutdownJoystick(void) +{ + if (joystick != NULL) + { + SDL_JoystickClose(joystick); + joystick = NULL; + SDL_QuitSubSystem(SDL_INIT_JOYSTICK); + } +} + +// Get a bitmask of all currently-pressed buttons + +static int GetButtonState(void) +{ + int i; + int result; + + result = 0; + + for (i=0; i