2008-09-12 07:28:40 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
|
|
|
*
|
|
|
|
* softdev July 2006
|
|
|
|
* crunchy2 May-June 2007
|
2008-09-23 06:13:33 +02:00
|
|
|
* Michniewski 2008
|
2009-03-16 06:16:20 +01:00
|
|
|
* Tantric 2008-2009
|
2008-09-12 07:28:40 +02:00
|
|
|
*
|
|
|
|
* input.h
|
|
|
|
*
|
|
|
|
* Wii/Gamecube controller management
|
|
|
|
***************************************************************************/
|
2008-08-20 06:07:38 +02:00
|
|
|
|
|
|
|
#ifndef _INPUT_H_
|
|
|
|
#define _INPUT_H_
|
|
|
|
|
|
|
|
#include <gccore.h>
|
2009-03-16 06:16:20 +01:00
|
|
|
#include <wiiuse/wpad.h>
|
2008-08-20 06:07:38 +02:00
|
|
|
|
|
|
|
#define PI 3.14159265f
|
|
|
|
#define PADCAL 50
|
2008-09-27 09:13:52 +02:00
|
|
|
#define MAXJP 12 // # of mappable controller buttons
|
2008-08-20 06:07:38 +02:00
|
|
|
|
2009-03-11 18:28:37 +01:00
|
|
|
extern u32 btnmap[4][4][12];
|
2009-04-13 10:43:50 +02:00
|
|
|
extern int rumbleRequest[4];
|
2008-08-20 06:07:38 +02:00
|
|
|
|
2009-06-22 21:58:18 +02:00
|
|
|
void ResetControls(int cc = 0, int wc = 0);
|
2009-03-11 18:28:37 +01:00
|
|
|
void ShutoffRumble();
|
|
|
|
void DoRumble(int i);
|
|
|
|
s8 WPAD_Stick(u8 chan, u8 right, int axis);
|
2008-08-20 06:07:38 +02:00
|
|
|
void UpdateCursorPosition (int pad, int &pos_x, int &pos_y);
|
|
|
|
void decodepad (int pad);
|
|
|
|
void NGCReportButtons ();
|
|
|
|
void SetControllers ();
|
|
|
|
void SetDefaultButtonMap ();
|
2009-05-28 06:16:41 +02:00
|
|
|
bool MenuRequested();
|
2009-06-27 22:03:15 +02:00
|
|
|
void UpdatePads();
|
2008-08-20 06:07:38 +02:00
|
|
|
|
|
|
|
#endif
|