2008-09-02 03:57:21 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* FCE Ultra 0.98.12
|
|
|
|
* Nintendo Wii/Gamecube Port
|
|
|
|
*
|
|
|
|
* Tantric September 2008
|
|
|
|
*
|
|
|
|
* pad.h
|
|
|
|
*
|
|
|
|
* Controller input
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _PAD_H_
|
|
|
|
#define _PAD_H_
|
|
|
|
|
|
|
|
#include <gccore.h>
|
2009-03-28 18:23:08 +01:00
|
|
|
#include <wiiuse/wpad.h>
|
2008-09-02 03:57:21 +02:00
|
|
|
|
|
|
|
#define PI 3.14159265f
|
|
|
|
#define PADCAL 50
|
2008-11-04 09:28:52 +01:00
|
|
|
#define MAXJP 11
|
|
|
|
#define RAPID_A 256
|
|
|
|
#define RAPID_B 512
|
2008-09-02 03:57:21 +02:00
|
|
|
|
2009-03-28 18:23:08 +01:00
|
|
|
extern int rumbleRequest[4];
|
|
|
|
extern u32 btnmap[2][4][12];
|
2008-09-02 03:57:21 +02:00
|
|
|
|
2009-04-01 10:02:59 +02:00
|
|
|
void SetControllers();
|
2008-12-19 23:04:55 +01:00
|
|
|
void ResetControls();
|
2009-03-28 18:23:08 +01:00
|
|
|
void ShutoffRumble();
|
|
|
|
void DoRumble(int i);
|
2008-09-02 03:57:21 +02:00
|
|
|
s8 WPAD_StickX(u8 chan,u8 right);
|
|
|
|
s8 WPAD_StickY(u8 chan, u8 right);
|
|
|
|
void GetJoy();
|
2008-09-04 04:46:04 +02:00
|
|
|
void DrawCursor();
|
2009-05-28 06:16:11 +02:00
|
|
|
bool MenuRequested();
|
2008-09-02 03:57:21 +02:00
|
|
|
|
|
|
|
#endif
|