aboutsummaryrefslogtreecommitdiffstats
path: root/libgamepad_get_button_name.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-07-26 16:01:13 +0200
committerMattias Andrée <maandree@kth.se>2022-07-26 16:02:05 +0200
commit9de0de4d3d32ab97226fa9868de1fa2290120429 (patch)
tree292473831841529716f97565391303fb9b071c15 /libgamepad_get_button_name.c
parentUpdate information about Sixaxis (diff)
downloadlibgamepad-9de0de4d3d32ab97226fa9868de1fa2290120429.tar.gz
libgamepad-9de0de4d3d32ab97226fa9868de1fa2290120429.tar.bz2
libgamepad-9de0de4d3d32ab97226fa9868de1fa2290120429.tar.xz
Do not relay on libevdev for button/axis names, an prepare for device specific names, and add reverse lookup functions
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libgamepad_get_button_name.c')
-rw-r--r--libgamepad_get_button_name.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/libgamepad_get_button_name.c b/libgamepad_get_button_name.c
index 8e7a07f..031e528 100644
--- a/libgamepad_get_button_name.c
+++ b/libgamepad_get_button_name.c
@@ -2,4 +2,12 @@
#include "common.h"
-extern inline const char *libgamepad_get_button_name(uint16_t);
+const char *
+libgamepad_get_button_name(const struct libgamepad_device *device, uint16_t code) /* will not be pure */
+{
+ if (device)
+ return NULL;
+ if ((size_t)code > ELEMSOF(libgamepad_button_names__))
+ return NULL;
+ return libgamepad_button_names__[code];
+}