summaryrefslogtreecommitdiff
path: root/sys/src/cmd/aux/tablet.c
blob: 797f60b47446cba910adfcf29c43e40fbcc694a2 (plain)
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
#include <u.h>
#include <libc.h>
#include <bio.h>

Biobuf *tablet;
int mouseout;

int
main()
{
	mouseout = open("/dev/mousein", OWRITE);
	if(mouseout < 0) sysfatal("%r");
	tablet = Bopen("/dev/tablet", OREAD);
	if(tablet == nil) sysfatal("%r");
	while(1) {
		char *line, *p;
		int x, y, b;
		
		line = Brdline(tablet, 10);
		if(!line) sysfatal("%r");
		p = line;
		if(*p++ != 'm') continue;
		if(*p++ != ' ') continue;
		x = strtol(p, &p, 10);
		if(*p++ != ' ') continue;
		y = strtol(p, &p, 10);
		if(*p++ != ' ') continue;
		b = strtol(p, &p, 10);
		if(*p++ != ' ') continue;
		fprint(mouseout, "A %d %d %d\n", x, y, b);
	}
}