SameBoy/Cocoa/GBButtons.h

31 lines
618 B
Objective-C
Raw Normal View History

2016-04-13 19:43:16 +00:00
#ifndef GBButtons_h
#define GBButtons_h
typedef enum : NSUInteger {
GBRight,
GBLeft,
GBUp,
GBDown,
GBA,
GBB,
GBSelect,
GBStart,
GBTurbo,
GBRewind,
GBUnderclock,
GBButtonCount,
GBGameBoyButtonCount = GBStart + 1,
2016-04-13 19:43:16 +00:00
} GBButton;
extern NSString const *GBButtonNames[GBButtonCount];
static inline NSString *button_to_preference_name(GBButton button, unsigned player)
2016-04-13 19:43:16 +00:00
{
if (player) {
return [NSString stringWithFormat:@"GBPlayer%d%@", player + 1, GBButtonNames[button]];
}
2016-04-13 19:43:16 +00:00
return [NSString stringWithFormat:@"GB%@", GBButtonNames[button]];
}
#endif