2011-02-22 10:33:14 +00:00
|
|
|
/*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
2005-01-23 01:36:29 +00:00
|
|
|
*
|
|
|
|
* 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
|
2008-04-16 22:40:48 +00:00
|
|
|
* of the License, or (at your option) any later version.
|
2005-01-23 01:36:29 +00:00
|
|
|
*
|
|
|
|
* 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,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2005-01-23 01:36:29 +00:00
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* The Original Code is: all of this file.
|
|
|
|
*
|
|
|
|
* Contributor(s): snailrose.
|
|
|
|
*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
2005-01-23 01:36:29 +00:00
|
|
|
*/
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2011-02-22 10:33:14 +00:00
|
|
|
/** \file SCA_Joystick.h
|
|
|
|
* \ingroup gamelogic
|
|
|
|
*/
|
|
|
|
|
2005-01-23 01:36:29 +00:00
|
|
|
#ifndef _SCA_JOYSTICK_H_
|
|
|
|
#define _SCA_JOYSTICK_H_
|
|
|
|
|
|
|
|
#include "SCA_JoystickDefines.h"
|
2011-10-20 00:19:21 +00:00
|
|
|
#ifdef WITH_SDL
|
|
|
|
# include "SDL.h"
|
2008-10-07 05:09:24 +00:00
|
|
|
#endif
|
2005-01-23 01:36:29 +00:00
|
|
|
|
2011-02-22 10:33:14 +00:00
|
|
|
/**
|
2005-01-23 01:36:29 +00:00
|
|
|
* Basic Joystick class
|
2008-04-04 20:39:31 +00:00
|
|
|
* I will make this class a singleton because there should be only one joystick
|
|
|
|
* even if there are more than one scene using it and count how many scene are using it.
|
|
|
|
* The underlying joystick should only be removed when the last scene is removed
|
2005-01-23 01:36:29 +00:00
|
|
|
*/
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2005-01-23 01:36:29 +00:00
|
|
|
class SCA_Joystick
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2005-01-23 01:36:29 +00:00
|
|
|
{
|
2008-08-31 18:42:58 +00:00
|
|
|
static SCA_Joystick *m_instance[JOYINDEX_MAX];
|
2009-05-28 13:44:32 +00:00
|
|
|
static int m_joynum;
|
2008-04-04 20:39:31 +00:00
|
|
|
static int m_refCount;
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2005-01-23 01:36:29 +00:00
|
|
|
class PrivateData;
|
2011-10-20 00:19:21 +00:00
|
|
|
#ifdef WITH_SDL
|
2005-01-23 01:36:29 +00:00
|
|
|
PrivateData *m_private;
|
2008-09-21 05:38:28 +00:00
|
|
|
#endif
|
2005-01-23 01:36:29 +00:00
|
|
|
int m_joyindex;
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2011-02-22 10:33:14 +00:00
|
|
|
/**
|
2009-05-25 06:24:23 +00:00
|
|
|
*support for JOYAXIS_MAX axes (in pairs)
|
2005-01-23 01:36:29 +00:00
|
|
|
*/
|
2009-04-07 06:23:45 +00:00
|
|
|
int m_axis_array[JOYAXIS_MAX];
|
2009-05-25 06:24:23 +00:00
|
|
|
|
2011-02-22 10:33:14 +00:00
|
|
|
/**
|
2009-05-25 06:24:23 +00:00
|
|
|
*support for JOYHAT_MAX hats (each is a direction)
|
|
|
|
*/
|
|
|
|
int m_hat_array[JOYHAT_MAX];
|
2009-04-07 06:23:45 +00:00
|
|
|
|
2011-02-22 10:33:14 +00:00
|
|
|
/**
|
2005-01-23 01:36:29 +00:00
|
|
|
* Precision or range of the axes
|
|
|
|
*/
|
|
|
|
int m_prec;
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2011-02-22 10:33:14 +00:00
|
|
|
/**
|
2005-01-23 01:36:29 +00:00
|
|
|
* max # of buttons avail
|
|
|
|
*/
|
2008-10-07 05:09:24 +00:00
|
|
|
|
|
|
|
int m_axismax;
|
2005-01-23 01:36:29 +00:00
|
|
|
int m_buttonmax;
|
2008-10-07 05:09:24 +00:00
|
|
|
int m_hatmax;
|
|
|
|
|
2011-02-22 10:33:14 +00:00
|
|
|
/** is the joystick initialized ?*/
|
2005-01-23 01:36:29 +00:00
|
|
|
bool m_isinit;
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2005-01-23 01:36:29 +00:00
|
|
|
|
2011-02-22 10:33:14 +00:00
|
|
|
/** is triggered for each event type */
|
2008-10-08 03:16:19 +00:00
|
|
|
bool m_istrig_axis;
|
|
|
|
bool m_istrig_button;
|
|
|
|
bool m_istrig_hat;
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2011-10-20 00:19:21 +00:00
|
|
|
#ifdef WITH_SDL
|
2011-02-22 10:33:14 +00:00
|
|
|
/**
|
2008-09-02 06:12:19 +00:00
|
|
|
* event callbacks
|
|
|
|
*/
|
|
|
|
void OnAxisMotion(SDL_Event *sdl_event);
|
|
|
|
void OnHatMotion(SDL_Event *sdl_event);
|
|
|
|
void OnButtonUp(SDL_Event *sdl_event);
|
|
|
|
void OnButtonDown(SDL_Event *sdl_event);
|
|
|
|
void OnNothing(SDL_Event *sdl_event);
|
2009-04-07 06:23:45 +00:00
|
|
|
#if 0 /* not used yet */
|
2008-09-02 06:12:19 +00:00
|
|
|
void OnBallMotion(SDL_Event *sdl_event){}
|
2009-04-07 06:23:45 +00:00
|
|
|
#endif
|
|
|
|
|
2011-10-20 00:19:21 +00:00
|
|
|
#endif /* WITH_SDL */
|
2011-02-22 10:33:14 +00:00
|
|
|
/**
|
2005-01-23 01:36:29 +00:00
|
|
|
* Open the joystick
|
|
|
|
*/
|
2008-08-31 18:42:58 +00:00
|
|
|
bool CreateJoystickDevice(void);
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2011-02-22 10:33:14 +00:00
|
|
|
/**
|
2005-01-23 01:36:29 +00:00
|
|
|
* Close the joystick
|
|
|
|
*/
|
2008-08-31 18:42:58 +00:00
|
|
|
void DestroyJoystickDevice(void);
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2011-02-22 10:33:14 +00:00
|
|
|
/**
|
2005-01-23 01:36:29 +00:00
|
|
|
* fills the axis mnember values
|
|
|
|
*/
|
|
|
|
void pFillButtons(void);
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2011-02-22 10:33:14 +00:00
|
|
|
/**
|
2009-04-07 06:23:45 +00:00
|
|
|
* returns m_axis_array
|
2005-01-23 01:36:29 +00:00
|
|
|
*/
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2008-10-07 05:09:24 +00:00
|
|
|
int pAxisTest(int axisnum);
|
2011-02-22 10:33:14 +00:00
|
|
|
/**
|
2009-04-07 06:23:45 +00:00
|
|
|
* returns m_axis_array
|
2005-01-23 01:36:29 +00:00
|
|
|
*/
|
2008-10-07 05:09:24 +00:00
|
|
|
int pGetAxis(int axisnum, int udlr);
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2008-08-31 18:42:58 +00:00
|
|
|
SCA_Joystick(short int index);
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2005-01-23 01:36:29 +00:00
|
|
|
~SCA_Joystick();
|
|
|
|
|
2008-04-04 20:39:31 +00:00
|
|
|
public:
|
|
|
|
|
2008-08-31 18:42:58 +00:00
|
|
|
static SCA_Joystick *GetInstance( short int joyindex );
|
2008-09-02 06:12:19 +00:00
|
|
|
static void HandleEvents( void );
|
2008-04-04 20:39:31 +00:00
|
|
|
void ReleaseInstance();
|
|
|
|
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2005-01-23 01:36:29 +00:00
|
|
|
/*
|
|
|
|
*/
|
2009-04-07 06:23:45 +00:00
|
|
|
bool aAxisPairIsPositive(int axis);
|
|
|
|
bool aAxisPairDirectionIsPositive(int axis, int dir); /* function assumes joysticks are in axis pairs */
|
|
|
|
bool aAxisIsPositive(int axis_single); /* check a single axis only */
|
2008-10-07 05:09:24 +00:00
|
|
|
|
|
|
|
bool aAnyButtonPressIsPositive(void);
|
2005-01-23 01:36:29 +00:00
|
|
|
bool aButtonPressIsPositive(int button);
|
|
|
|
bool aButtonReleaseIsPositive(int button);
|
2009-05-25 06:24:23 +00:00
|
|
|
bool aHatIsPositive(int hatnum, int dir);
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2011-02-22 10:33:14 +00:00
|
|
|
/**
|
2005-01-23 01:36:29 +00:00
|
|
|
* precision is default '3200' which is overridden by input
|
|
|
|
*/
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2005-01-23 01:36:29 +00:00
|
|
|
void cSetPrecision(int val);
|
|
|
|
|
2009-04-07 06:23:45 +00:00
|
|
|
int GetAxisPosition(int index){
|
|
|
|
return m_axis_array[index];
|
2005-01-23 01:36:29 +00:00
|
|
|
}
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2009-05-25 06:24:23 +00:00
|
|
|
int GetHat(int index){
|
|
|
|
return m_hat_array[index];
|
2005-01-23 01:36:29 +00:00
|
|
|
}
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2005-01-23 01:36:29 +00:00
|
|
|
int GetThreshold(void){
|
|
|
|
return m_prec;
|
|
|
|
}
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2008-10-08 03:16:19 +00:00
|
|
|
bool IsTrigAxis(void){
|
|
|
|
return m_istrig_axis;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsTrigButton(void){
|
|
|
|
return m_istrig_button;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsTrigHat(void){
|
|
|
|
return m_istrig_hat;
|
2005-01-23 01:36:29 +00:00
|
|
|
}
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2011-02-22 10:33:14 +00:00
|
|
|
/**
|
2005-01-23 01:36:29 +00:00
|
|
|
* returns the # of...
|
|
|
|
*/
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2005-01-23 01:36:29 +00:00
|
|
|
int GetNumberOfAxes(void);
|
|
|
|
int GetNumberOfButtons(void);
|
|
|
|
int GetNumberOfHats(void);
|
|
|
|
|
2011-02-22 10:33:14 +00:00
|
|
|
/**
|
2008-09-01 06:25:13 +00:00
|
|
|
* Test if the joystick is connected
|
|
|
|
*/
|
|
|
|
int Connected(void);
|
2005-01-23 01:36:29 +00:00
|
|
|
};
|
2011-10-20 00:19:21 +00:00
|
|
|
#ifdef WITH_SDL
|
2008-09-02 06:12:19 +00:00
|
|
|
void Joystick_HandleEvents( void );
|
2008-09-21 05:38:28 +00:00
|
|
|
#endif
|
2005-01-30 15:41:59 +00:00
|
|
|
|
2005-01-23 01:36:29 +00:00
|
|
|
#endif
|
2005-01-30 15:41:59 +00:00
|
|
|
|