mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 06:55:05 +01:00
43 lines
920 B
C
43 lines
920 B
C
/****************************************************************************
|
|
* FCE Ultra 0.98.12
|
|
* Nintendo Wii/Gamecube Port
|
|
*
|
|
* michniewski August 2008
|
|
* Tantric 2008-2009
|
|
*
|
|
* button_mapping.h
|
|
*
|
|
* Controller button mapping
|
|
****************************************************************************/
|
|
|
|
#ifndef BTN_MAP_H
|
|
#define BTN_MAP_H
|
|
|
|
enum {
|
|
CTRLR_NONE = -1,
|
|
CTRLR_GCPAD,
|
|
CTRLR_WIIMOTE,
|
|
CTRLR_NUNCHUK,
|
|
CTRLR_CLASSIC
|
|
};
|
|
|
|
const char ctrlrName[4][20] =
|
|
{ "GameCube Controller", "Wiimote", "Nunchuk + Wiimote", "Classic Controller" };
|
|
|
|
typedef struct _btn_map {
|
|
u32 btn; // button 'id'
|
|
char* name; // button name
|
|
} BtnMap;
|
|
|
|
typedef struct _ctrlr_map {
|
|
u16 type; // controller type
|
|
int num_btns; // number of buttons on the controller
|
|
BtnMap map[15]; // controller button map
|
|
} CtrlrMap;
|
|
|
|
// externs:
|
|
|
|
extern CtrlrMap ctrlr_def[4];
|
|
|
|
#endif
|