aboutsummaryrefslogtreecommitdiffstats
path: root/interactive-test.c
blob: cc41231f09704ea53931d59069318ac209e3a4de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/* See LICENSE file for copyright and license details. */
#include <stdio.h>
#include <string.h>
#include <termios.h>
#include <unistd.h>

#include "libterminput.h"


int
main(void)
{
	struct libterminput_state ctx;
	union libterminput_input input;
	struct termios stty, saved_stty;
	int r;

	memset(&ctx, 0, sizeof(ctx));

	if (tcgetattr(STDIN_FILENO, &stty)) {
		perror("tcgetattr STDIN_FILENO");
		return 1;
	}
	saved_stty = stty;
	stty.c_lflag &= (tcflag_t)~(ECHO | ICANON);
	if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &stty)) {
		perror("tcsetattr STDIN_FILENO TCSAFLUSH");
		return 1;
	}

	while ((r = libterminput_read(STDIN_FILENO, &input, &ctx)) > 0) {
		if (input.type == LIBTERMINPUT_NONE) {
			printf("none\n");
		} else if (input.type == LIBTERMINPUT_KEYPRESS) {
			printf("keypress:\n");
			switch (input.keypress.key) {
			case LIBTERMINPUT_SYMBOL:
				printf("\t%s: %s\n", "key: symbol", input.keypress.symbol);
				break;
			case LIBTERMINPUT_UP:           printf("\t%s: %s\n", "key", "up");           break;
			case LIBTERMINPUT_DOWN:         printf("\t%s: %s\n", "key", "down");         break;
			case LIBTERMINPUT_RIGHT:        printf("\t%s: %s\n", "key", "right");        break;
			case LIBTERMINPUT_BEGIN:        printf("\t%s: %s\n", "key", "begin");        break;
			case LIBTERMINPUT_PAUSE:        printf("\t%s: %s\n", "key", "pause");        break;
			case LIBTERMINPUT_TAB:          printf("\t%s: %s\n", "key", "tab");          break;
			case LIBTERMINPUT_F1:           printf("\t%s: %s\n", "key", "f1");           break;
			case LIBTERMINPUT_F2:           printf("\t%s: %s\n", "key", "f2");           break;
			case LIBTERMINPUT_F3:           printf("\t%s: %s\n", "key", "f3");           break;
			case LIBTERMINPUT_F4:           printf("\t%s: %s\n", "key", "f4");           break;
			case LIBTERMINPUT_F5:           printf("\t%s: %s\n", "key", "f5");           break;
			case LIBTERMINPUT_F6:           printf("\t%s: %s\n", "key", "f6");           break;
			case LIBTERMINPUT_F7:           printf("\t%s: %s\n", "key", "f7");           break;
			case LIBTERMINPUT_F8:           printf("\t%s: %s\n", "key", "f8");           break;
			case LIBTERMINPUT_F9:           printf("\t%s: %s\n", "key", "f9");           break;
			case LIBTERMINPUT_F10:          printf("\t%s: %s\n", "key", "f10");          break;
			case LIBTERMINPUT_F11:          printf("\t%s: %s\n", "key", "f11");          break;
			case LIBTERMINPUT_F12:          printf("\t%s: %s\n", "key", "f12");          break;
			case LIBTERMINPUT_HOME:         printf("\t%s: %s\n", "key", "home");         break;
			case LIBTERMINPUT_INS:          printf("\t%s: %s\n", "key", "ins");          break;
			case LIBTERMINPUT_DEL:          printf("\t%s: %s\n", "key", "del");          break;
			case LIBTERMINPUT_END:          printf("\t%s: %s\n", "key", "end");          break;
			case LIBTERMINPUT_PRIOR:        printf("\t%s: %s\n", "key", "prior");        break;
			case LIBTERMINPUT_NEXT:         printf("\t%s: %s\n", "key", "next");         break;
			case LIBTERMINPUT_ERASE:        printf("\t%s: %s\n", "key", "erase");        break;
			case LIBTERMINPUT_ENTER:        printf("\t%s: %s\n", "key", "enter");        break;
			case LIBTERMINPUT_ESC:          printf("\t%s: %s\n", "key", "esc");          break;
			case LIBTERMINPUT_KEYPAD_0:     printf("\t%s: %s\n", "key", "keypad 0");     break;
			case LIBTERMINPUT_KEYPAD_1:     printf("\t%s: %s\n", "key", "keypad 1");     break;
			case LIBTERMINPUT_KEYPAD_2:     printf("\t%s: %s\n", "key", "keypad 2");     break;
			case LIBTERMINPUT_KEYPAD_3:     printf("\t%s: %s\n", "key", "keypad 3");     break;
			case LIBTERMINPUT_KEYPAD_4:     printf("\t%s: %s\n", "key", "keypad 4");     break;
			case LIBTERMINPUT_KEYPAD_5:     printf("\t%s: %s\n", "key", "keypad 5");     break;
			case LIBTERMINPUT_KEYPAD_6:     printf("\t%s: %s\n", "key", "keypad 6");     break;
			case LIBTERMINPUT_KEYPAD_7:     printf("\t%s: %s\n", "key", "keypad 7");     break;
			case LIBTERMINPUT_KEYPAD_8:     printf("\t%s: %s\n", "key", "keypad 8");     break;
			case LIBTERMINPUT_KEYPAD_9:     printf("\t%s: %s\n", "key", "keypad 9");     break;
			case LIBTERMINPUT_KEYPAD_MINUS: printf("\t%s: %s\n", "key", "keypad minus"); break;
			case LIBTERMINPUT_KEYPAD_COMMA: printf("\t%s: %s\n", "key", "keypad comma"); break;
			case LIBTERMINPUT_KEYPAD_POINT: printf("\t%s: %s\n", "key", "keypad point"); break;
			case LIBTERMINPUT_KEYPAD_ENTER: printf("\t%s: %s\n", "key", "keypad enter"); break;
			default:
				printf("\t%s: %s\n", "key", "other");
				break;
			}
			printf("\t%s: %s\n", "shift", (input.keypress.mods & LIBTERMINPUT_SHIFT) ? "yes" : "no");
			printf("\t%s: %s\n", "meta",  (input.keypress.mods & LIBTERMINPUT_META)  ? "yes" : "no");
			printf("\t%s: %s\n", "ctrl",  (input.keypress.mods & LIBTERMINPUT_CTRL)  ? "yes" : "no");
			printf("\t%s: %s (%llu)\n", "will repeat", input.keypress.times > 1 ? "yes" : "no", input.keypress.times);
		} else {
			printf("other\n");
		}
	}

	if (r < 0)
		perror("libterminput_read STDIN_FILENO");

	tcsetattr(STDIN_FILENO, TCSAFLUSH, &saved_stty);
	return -r;
}