mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 08:25:18 +01:00
6892e8152e
- added: classic and nunchuk support - added: all controllers can now be configured - added: GC version (untested) - changed: mappings are no longer stored in SRAM, but in config file. This means no per-game configurations, but one global config per controller. - one makefile to make all versions. (thanks to snes9x143 SVN)
29 lines
541 B
C
29 lines
541 B
C
#ifndef BTN_MAP_H
|
|
#define BTN_MAP_H
|
|
|
|
enum {
|
|
CTRLR_NONE = -1,
|
|
CTRLR_NUNCHUK,
|
|
CTRLR_CLASSIC,
|
|
CTRLR_GCPAD,
|
|
CTRLR_WIIMOTE,
|
|
CTRLR_SNES = 7 // give some other value for the snes padmap
|
|
};
|
|
|
|
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
|