mirror of https://github.com/LIJI32/SameBoy.git
41 lines
999 B
Objective-C
41 lines
999 B
Objective-C
typedef enum {
|
|
GBRight,
|
|
GBLeft,
|
|
GBUp,
|
|
GBDown,
|
|
GBA,
|
|
GBB,
|
|
GBSelect,
|
|
GBStart,
|
|
GBRapidA,
|
|
GBRapidB,
|
|
GBTurbo,
|
|
GBRewind,
|
|
GBUnderclock,
|
|
GBHotkey1,
|
|
GBHotkey2,
|
|
GBTotalButtonCount,
|
|
GBKeyboardButtonCount = GBUnderclock + 1,
|
|
GBPerPlayerButtonCount = GBRapidB + 1,
|
|
} GBButton;
|
|
|
|
#define GBJoyKitHotkey1 JOYButtonUsageGeneric0 + 0x100
|
|
#define GBJoyKitHotkey2 JOYButtonUsageGeneric0 + 0x101
|
|
#define GBJoyKitRapidA JOYButtonUsageGeneric0 + 0x102
|
|
#define GBJoyKitRapidB JOYButtonUsageGeneric0 + 0x103
|
|
|
|
extern NSString const *GBButtonNames[GBTotalButtonCount];
|
|
|
|
static inline NSString *n2s(uint64_t number)
|
|
{
|
|
return [NSString stringWithFormat:@"%llx", number];
|
|
}
|
|
|
|
static inline NSString *button_to_preference_name(GBButton button, unsigned player)
|
|
{
|
|
if (player) {
|
|
return [NSString stringWithFormat:@"GBPlayer%d%@", player + 1, GBButtonNames[button]];
|
|
}
|
|
return [NSString stringWithFormat:@"GB%@", GBButtonNames[button]];
|
|
}
|