mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 06:55:05 +01:00
41 lines
824 B
C
41 lines
824 B
C
/****************************************************************************
|
|
* FCE Ultra
|
|
* Nintendo Wii/Gamecube Port
|
|
*
|
|
* Tantric 2008-2021
|
|
*
|
|
* pad.h
|
|
*
|
|
* Controller input
|
|
****************************************************************************/
|
|
|
|
#ifndef _PAD_H_
|
|
#define _PAD_H_
|
|
|
|
#include <gctypes.h>
|
|
#include <wiiuse/wpad.h>
|
|
|
|
#include "utils/wiidrc.h"
|
|
|
|
#define PI 3.14159265f
|
|
#define PADCAL 50
|
|
#define WIIDRCCAL 20
|
|
#define MAXJP 11
|
|
#define RAPID_A 256
|
|
#define RAPID_B 512
|
|
|
|
extern int rumbleRequest[4];
|
|
extern int playerMapping[4];
|
|
extern u32 btnmap[2][6][12];
|
|
|
|
void SetControllers();
|
|
void ResetControls(int cc = -1, int wc = -1);
|
|
void ShutoffRumble();
|
|
void DoRumble(int i);
|
|
void GetJoy();
|
|
bool MenuRequested();
|
|
void SetupPads();
|
|
void UpdatePads();
|
|
|
|
#endif
|