2008-09-16 07:42:21 +02:00
|
|
|
/****************************************************************************
|
2008-09-17 04:27:55 +02:00
|
|
|
* Visual Boy Advance GX
|
2008-09-16 07:42:21 +02:00
|
|
|
*
|
|
|
|
* Tantric September 2008
|
|
|
|
*
|
|
|
|
* input.h
|
|
|
|
*
|
|
|
|
* Wii/Gamecube controller management
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _INPUT_H_
|
|
|
|
#define _INPUT_H_
|
|
|
|
|
|
|
|
#include <gccore.h>
|
|
|
|
|
2009-03-04 08:01:04 +01:00
|
|
|
#define PI 3.14159265f
|
|
|
|
#define PADCAL 50
|
|
|
|
#define MAXJP 10
|
|
|
|
|
|
|
|
#define VBA_BUTTON_A 1
|
|
|
|
#define VBA_BUTTON_B 2
|
|
|
|
#define VBA_BUTTON_SELECT 4
|
|
|
|
#define VBA_BUTTON_START 8
|
|
|
|
#define VBA_RIGHT 16
|
|
|
|
#define VBA_LEFT 32
|
|
|
|
#define VBA_UP 64
|
|
|
|
#define VBA_DOWN 128
|
|
|
|
#define VBA_BUTTON_R 256
|
|
|
|
#define VBA_BUTTON_L 512
|
|
|
|
#define VBA_SPEED 1024
|
|
|
|
#define VBA_CAPTURE 2048
|
|
|
|
|
|
|
|
extern int rumbleRequest[4];
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
extern unsigned int gcpadmap[];
|
|
|
|
extern unsigned int wmpadmap[];
|
|
|
|
extern unsigned int ccpadmap[];
|
|
|
|
extern unsigned int ncpadmap[];
|
2009-03-04 08:01:04 +01:00
|
|
|
extern unsigned int kbpadmap[];
|
2008-09-16 07:42:21 +02:00
|
|
|
|
2008-12-19 23:01:15 +01:00
|
|
|
void ResetControls();
|
2009-03-04 08:01:04 +01:00
|
|
|
void ShutoffRumble();
|
|
|
|
void DoRumble(int i);
|
Rumble for all GBC rumble games and Drill Dozer. Rumble should work on Gamecube controller too. The following games have native rumble support: WarioWare Twisted, Drill Dozer, 10 Pin Bowling, 3-D Ultra Pinball Thrillride, Disney's The Little Mermaid II: Pinball Frenzy, Hole in One Golf, Missile Command, NASCAR Challenge, Perfect Dark, Pokémon Pinball, Polaris SnoCross, Ready 2 Rumble Boxing, Star Wars Episode I: Racer, Test Drive Off-Road 3, Tonka Raceway, Top Gear Pocket\Top Gear Rally, Vigilante 8, Zebco Fishing, and maybe some other games.
Also, rumble and wii-control code has been cleaned up a bit.
2009-03-20 21:22:22 +01:00
|
|
|
void systemGameRumble(int RumbleForFrames);
|
|
|
|
void systemGameRumbleOnlyFor(int OnlyRumbleForFrames);
|
|
|
|
void updateRumbleFrame();
|
2008-10-09 08:48:46 +02:00
|
|
|
s8 WPAD_Stick(u8 chan,u8 right, int axis);
|
2008-10-18 22:40:48 +02:00
|
|
|
u32 GetJoy(int which);
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
#endif
|