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-16 06:16:20 +01:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
TRIGGER_SIMPLE,
|
|
|
|
TRIGGER_BUTTON_ONLY,
|
|
|
|
TRIGGER_BUTTON_ONLY_IN_FOCUS
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _paddata {
|
|
|
|
u16 btns_d;
|
|
|
|
u16 btns_u;
|
|
|
|
u16 btns_h;
|
|
|
|
s8 stickX;
|
|
|
|
s8 stickY;
|
|
|
|
s8 substickX;
|
|
|
|
s8 substickY;
|
|
|
|
u8 triggerL;
|
|
|
|
u8 triggerR;
|
|
|
|
} PADData;
|
|
|
|
|
|
|
|
class GuiTrigger
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GuiTrigger();
|
|
|
|
~GuiTrigger();
|
|
|
|
void SetSimpleTrigger(s32 ch, u32 wiibtns, u16 gcbtns);
|
|
|
|
void SetButtonOnlyTrigger(s32 ch, u32 wiibtns, u16 gcbtns);
|
|
|
|
void SetButtonOnlyInFocusTrigger(s32 ch, u32 wiibtns, u16 gcbtns);
|
|
|
|
s8 WPAD_Stick(u8 right, int axis);
|
|
|
|
bool Left();
|
|
|
|
bool Right();
|
|
|
|
bool Up();
|
|
|
|
bool Down();
|
|
|
|
|
|
|
|
u8 type;
|
|
|
|
s32 chan;
|
|
|
|
WPADData wpad;
|
|
|
|
PADData pad;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern GuiTrigger userInput[4];
|
2009-03-11 18:28:37 +01:00
|
|
|
extern int rumbleRequest[4];
|
|
|
|
extern u32 btnmap[4][4][12];
|
2008-08-20 06:07:38 +02:00
|
|
|
|
2008-12-19 23:00:20 +01:00
|
|
|
void ResetControls();
|
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 ();
|
|
|
|
|
|
|
|
#endif
|