From 402bf1269c59db4b3a78077ab095a84181181808 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Thu, 28 Jul 2022 20:31:28 +0200 Subject: Remove dependency on libevdev (mostly complete) + minor fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- test-input.c | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) (limited to 'test-input.c') diff --git a/test-input.c b/test-input.c index d74e684..9e2dc37 100644 --- a/test-input.c +++ b/test-input.c @@ -3,6 +3,7 @@ #include #include +#include #include #include @@ -31,7 +32,7 @@ int main(int argc, char *argv[]) { struct libgamepad_input_event event; - int r; + ssize_t r; if (argc != 2) { fprintf(stderr, "Please provide the path to the subdevice as the only command line argument\n"); @@ -54,7 +55,7 @@ main(int argc, char *argv[]) } for (;;) { - r = libgamepad_next_event(&gamepad, &event); + r = libgamepad_next_event(&gamepad, &event, 1); if (r <= 0) { if (!r || errno == EINTR) continue; @@ -62,16 +63,17 @@ main(int argc, char *argv[]) return 1; } printf("[%lli.%06li] ", (long long int)event.time.tv_sec, event.time.tv_usec); - if (event.sync_event) - printf("[sync] "); - if (event.type == LIBGAMEPAD_BUTTON) { - printf("%s ", libgamepad_get_button_name(NULL, event.code)); - } else if (event.type == LIBGAMEPAD_ABSOLUTE_AXIS) { - printf("%s ", libgamepad_get_absolute_axis_name(NULL, event.code)); - } else { - assert(event.type == LIBGAMEPAD_RELATIVE_AXIS); - printf("%s ", libgamepad_get_relative_axis_name(NULL, event.code)); - } - printf("%lli\n", (long long int)event.value); + if (event.type == LIBGAMEPAD_BUTTON) + printf("%s %ji\n", libgamepad_get_button_name(NULL, event.code), (intmax_t)event.value); + else if (event.type == LIBGAMEPAD_ABSOLUTE_AXIS) + printf("%s %ji\n", libgamepad_get_absolute_axis_name(NULL, event.code), (intmax_t)event.value); + else if (event.type == LIBGAMEPAD_RELATIVE_AXIS) + printf("%s %ji\n", libgamepad_get_relative_axis_name(NULL, event.code), (intmax_t)event.value); + else if (event.type == LIBGAMEPAD_EVENT_DROP) + printf("event drop\n"); + else if (event.type == LIBGAMEPAD_EVENT_END) + printf("event conclusion\n"); + else + printf("unknown event\n"); } } -- cgit v1.2.3-70-g09d2