vbagx/source/ngc/input.h

47 lines
1.1 KiB
C
Raw Normal View History

/****************************************************************************
2008-09-17 04:27:55 +02:00
* Visual Boy Advance GX
*
* Tantric 2008-2009
*
* 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>
#define PI 3.14159265f
#define PADCAL 50
#define MAXJP 10 // # of mappable controller buttons
#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];
void ResetControls();
void ShutoffRumble();
void DoRumble(int i);
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);
#endif