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
|
|
|
*
|
2009-04-13 10:44:19 +02:00
|
|
|
* Tantric 2008-2009
|
2008-09-16 07:42:21 +02:00
|
|
|
*
|
|
|
|
* input.h
|
|
|
|
*
|
|
|
|
* Wii/Gamecube controller management
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _INPUT_H_
|
|
|
|
#define _INPUT_H_
|
|
|
|
|
|
|
|
#include <gccore.h>
|
2009-04-08 09:08:12 +02:00
|
|
|
#include <wiiuse/wpad.h>
|
2008-09-16 07:42:21 +02:00
|
|
|
|
2009-04-13 10:44:19 +02:00
|
|
|
#define PI 3.14159265f
|
|
|
|
#define PADCAL 50
|
|
|
|
#define MAXJP 10 // # of mappable controller buttons
|
2009-03-04 08:01:04 +01:00
|
|
|
|
|
|
|
#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
|
|
|
|
|
2009-04-08 09:08:12 +02:00
|
|
|
extern int rumbleRequest[4];
|
|
|
|
extern u32 btnmap[5][10];
|
2008-09-16 07:42:21 +02:00
|
|
|
|
2009-06-27 22:06:26 +02:00
|
|
|
void ResetControls(int wc = 0);
|
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);
|
2009-05-28 06:20:04 +02:00
|
|
|
bool MenuRequested();
|
2009-06-27 22:06:26 +02:00
|
|
|
void UpdatePads();
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
#endif
|