2008-09-02 01:57:21 +00: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 17:23:08 +00:00
|
|
|
#include <wiiuse/wpad.h>
|
2008-09-02 01:57:21 +00:00
|
|
|
|
|
|
|
#define PI 3.14159265f
|
|
|
|
#define PADCAL 50
|
2008-11-04 08:28:52 +00:00
|
|
|
#define MAXJP 11
|
|
|
|
#define RAPID_A 256
|
|
|
|
#define RAPID_B 512
|
2008-09-02 01:57:21 +00:00
|
|
|
|
2009-03-28 17:23:08 +00:00
|
|
|
extern int rumbleRequest[4];
|
|
|
|
extern u32 btnmap[2][4][12];
|
2008-09-02 01:57:21 +00:00
|
|
|
|
2009-04-01 08:02:59 +00:00
|
|
|
void SetControllers();
|
2008-12-19 22:04:55 +00:00
|
|
|
void ResetControls();
|
2009-03-28 17:23:08 +00:00
|
|
|
void ShutoffRumble();
|
|
|
|
void DoRumble(int i);
|
2008-09-02 01:57:21 +00:00
|
|
|
s8 WPAD_StickX(u8 chan,u8 right);
|
|
|
|
s8 WPAD_StickY(u8 chan, u8 right);
|
|
|
|
void GetJoy();
|
2008-09-04 02:46:04 +00:00
|
|
|
void DrawCursor();
|
2008-09-02 01:57:21 +00:00
|
|
|
|
|
|
|
#endif
|