-
Notifications
You must be signed in to change notification settings - Fork 7
/
osk.c
351 lines (273 loc) · 7.85 KB
/
osk.c
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
/*
* osk.c : framebuffer on-screen keyboard
* Might be usefull at boot time for accessibility.
*
* Copyright (C) 2014 Rafael Ignacio Zurita <[email protected]>
*
* Based on : http://thiemonge.org/getting-started-with-uinput
* and www.cubieforums.com/index.php?topic=33.0
* and fb_drawimage() from https://svn.mcs.anl.gov/repos/ZeptoOS/trunk/BGP/packages/busybox/src/miscutils/fbsplash.c
*
* osk.c is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* You should have received a copy of the GNU Library General Public
* License along with this software (check COPYING); if not, write to the Free
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <fcntl.h>
#include <linux/fb.h>
#include <linux/input.h>
#include <linux/ioctl.h>
#include <linux/uinput.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/select.h>
#include <sys/time.h>
#include <termios.h>
#include <unistd.h>
/* key codes REFERENCE : from /usr/include/linux/input.h
#define KEY_Q 16
#define KEY_W 17
#define KEY_E 18
#define KEY_R 19
#define KEY_T 20
#define KEY_Y 21
#define KEY_U 22
#define KEY_I 23
#define KEY_O 24
#define KEY_P 25
#define KEY_LEFTBRACE 26
#define KEY_RIGHTBRACE 27
#define KEY_ENTER 28
#define KEY_LEFTCTRL 29
#define KEY_A 30
#define KEY_S 31
#define KEY_D 32
#define KEY_F 33
#define KEY_G 34
#define KEY_H 35
#define KEY_J 36
#define KEY_K 37
#define KEY_L 38
#define KEY_SEMICOLON 39
#define KEY_APOSTROPHE 40
#define KEY_GRAVE 41
#define KEY_LEFTSHIFT 42
#define KEY_BACKSLASH 43
#define KEY_Z 44
#define KEY_X 45
#define KEY_C 46
#define KEY_V 47
#define KEY_B 48
#define KEY_N 49
#define KEY_M 50
*/
unsigned char abc[] = {30, 48, 46, 32, 18, 33, 34, 35, 23, 36, 37, 38, 50, 49, 24, 25, 16, 19, 31, 20, 22, 47, 17, 45, 21, 44, 28};
/*
* Draw image from PPM file
*/
static void fb_drawimage(const char *filename, char *fbp, int xo, int yo, int bpp, int length)
{
char head[256];
char s[80];
FILE *theme_file;
unsigned char *pixline;
unsigned i, j, width, height, line_size;
memset(head, 0, sizeof(head));
theme_file = fopen(filename, "r");
/* parse ppm header */
while (1) {
if (fgets(s, sizeof(s), theme_file) == NULL) {
printf("bad PPM file '%s'", filename);
exit(1);
}
if (s[0] == '#')
continue;
if (strlen(head) + strlen(s) >= sizeof(head)) {
printf("bad PPM file '%s'", filename);
exit(1);
}
strcat(head, s);
if (head[0] != 'P' || head[1] != '6') {
printf("bad PPM file '%s'", filename);
exit(1);
}
/* width, height, max_color_val */
if (sscanf(head, "P6 %u %u %u", &width, &height, &i) == 3)
break;
/* TODO: i must be <= 255! */
}
line_size = width*3;
long int location = 0;
pixline = malloc(line_size);
for (j = 0; j < height; j++) {
unsigned char *pixel = pixline;
if (fread(pixline, 1, line_size, theme_file) != line_size) {
printf("bad PPM file '%s'", filename);
exit(1);
}
for (i = 0; i < width; i++) {
pixel += 3;
location = (i+xo) * (bpp/8) + (j+yo) * length;
*(fbp + location) = (((unsigned)pixel[0]));
*(fbp + location + 1) = (((unsigned)pixel[1]));
*(fbp + location + 2) = (((unsigned)pixel[2]));
*(fbp + location + 3) = 2; /* No transparency */
}
}
free(pixline);
fclose(theme_file);
}
int send_event(int fd, __u16 type, __u16 code, __s32 value)
{
struct input_event event;
memset(&event, 0, sizeof(event));
event.type = type;
event.code = code;
event.value = value;
if (write(fd, &event, sizeof(event)) != sizeof(event)) {
fprintf(stderr, "Error on send_event");
return -1;
}
return 0;
}
int main(void) {
int fbfd = 0;
struct fb_var_screeninfo vinfo;
struct fb_fix_screeninfo finfo;
long int screensize = 0;
char *fbp = 0;
int x = 0, y = 0;
long int location = 0;
/* uinput init */
int i,fd;
struct uinput_user_dev device;
memset(&device, 0, sizeof device);
fd=open("/dev/uinput",O_WRONLY);
strcpy(device.name,"test keyboard");
device.id.bustype=BUS_USB;
device.id.vendor=1;
device.id.product=1;
device.id.version=1;
if (write(fd,&device,sizeof(device)) != sizeof(device))
{
fprintf(stderr, "error setup\n");
}
if (ioctl(fd,UI_SET_EVBIT,EV_KEY) < 0)
fprintf(stderr, "error evbit key\n");
for (i=0;i<27;i++)
if (ioctl(fd,UI_SET_KEYBIT, abc[i]) < 0)
fprintf(stderr, "error evbit key\n");
if (ioctl(fd,UI_SET_EVBIT,EV_REL) < 0)
fprintf(stderr, "error evbit rel\n");
for(i=REL_X;i<REL_MAX;i++)
if (ioctl(fd,UI_SET_RELBIT,i) < 0)
fprintf(stderr, "error setrelbit %d\n", i);
if (ioctl(fd,UI_DEV_CREATE) < 0)
{
fprintf(stderr, "error create\n");
}
sleep(2);
/* end uinput init */
/* init framebuffer */
/* Open the file for reading and writing */
fbfd = open("/dev/fb0", O_RDWR);
if (fbfd == -1) {
perror("Error: cannot open framebuffer device");
exit(1);
}
printf("The framebuffer device was opened successfully.\n");
/* Get fixed screen information */
if (ioctl(fbfd, FBIOGET_FSCREENINFO, &finfo) == -1) {
perror("Error reading fixed information");
exit(2);
}
/* Get variable screen information */
if (ioctl(fbfd, FBIOGET_VSCREENINFO, &vinfo) == -1) {
perror("Error reading variable information");
exit(3);
}
printf("%dx%d, %dbpp\n", vinfo.xres, vinfo.yres, vinfo.bits_per_pixel);
/* Figure out the size of the screen in bytes */
screensize = vinfo.xres * vinfo.yres * vinfo.bits_per_pixel / 8;
/* Map the device to memory */
fbp = (char *)mmap(0, screensize, PROT_READ | PROT_WRITE, MAP_SHARED,
fbfd, 0);
if ((int)fbp == -1) {
perror("Error: failed to map framebuffer device to memory");
exit(4);
}
printf("The framebuffer device was mapped to memory successfully.\n");
/* end init framebuffer */
/* init event0 */
int fdkey;
fdkey = open("/dev/input/event0", O_RDONLY);
struct input_event evkey;
int flags = fcntl(fd, F_GETFL, 0);
int err;
fcntl(fdkey, F_SETFL, flags | O_NONBLOCK);
/* end init event0 */
int j, m=0,k;
while(1) {
m++;
if (m==29) m=0; /* 27 keys, and 2 extra seconds for exit */
fb_drawimage("image.ppm", fbp, vinfo.xoffset, vinfo.yoffset, vinfo.bits_per_pixel, finfo.line_length);
for (j=0;j<54;j=j+2) {
for (y = 20; y < 30; y++)
for (x = 12*j; x < 12*j+8; x++) {
location = (x+vinfo.xoffset) * (vinfo.bits_per_pixel/8) +
(y+vinfo.yoffset) * finfo.line_length;
if (vinfo.bits_per_pixel == 32) {
*(fbp + location) = 100; // Some blue
if ((j/2)==m) {
*(fbp + location + 1) = 200; // A little green
*(fbp + location + 2) = 100; // A lot of red
} else {
*(fbp + location + 1) = 100; // A little green
*(fbp + location + 2) = 200; // A lot of red
}
*(fbp + location + 3) = 100; // No transparency
} else { /* assume 16bpp */
int b = 10;
int g = (x-100)/6; // A little green
int r = 31-(y-100)/16; // A lot of red
unsigned short int t = r<<11 | g << 5 | b;
*((unsigned short int*)(fbp + location)) = t;
}
}
}
/* check for key */
k=0;
err=-1;
while ((err==-1) && (k<500)) {
err = read(fdkey, &evkey, sizeof(struct input_event));
k++;
usleep(1000);
}
if (err!=-1) {
if ((evkey.type==1) && (evkey.value==0)) {
if ((m==27) || (m==28)) break;
send_event(fd, EV_KEY, abc[m], 1);
send_event(fd, EV_SYN, SYN_REPORT, 0);
send_event(fd, EV_KEY, abc[m], 0);
send_event(fd, EV_SYN, SYN_REPORT, 0);
} else {
if (m==0)
m=27;
else
m--;
}
printf("%i",m);
}
}
close(fd);
munmap(fbp, screensize);
close(fbfd);
return 0;
}