-
Notifications
You must be signed in to change notification settings - Fork 1
/
cairoio-fb.c
194 lines (165 loc) · 3.8 KB
/
cairoio-fb.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
#include <stdlib.h>
#include <unistd.h>
#include "vt.h"
#include "cairofb.h"
#include "cairoio.h"
/*
* structure for init data
*/
struct initdata {
};
/*
* create a cairo context
*/
int cairoinit_fb(struct cairodevice *cairodevice,
char *device, int doublebuffering,
int argn, char *argv[], char *allopts) {
struct cairofb *cairofb;
WINDOW *w;
(void) argn;
(void) argv;
(void) allopts;
if (device == NULL)
device = "/dev/fb0";
cairofb = cairofb_init(device, doublebuffering);
if (cairofb == NULL) {
printf("cannot open %s as a cairo surface\n", device);
return -1;
}
if (getenv("ESCDELAY") == NULL)
setenv("ESCDELAY", "200", 1);
w = initscr();
cbreak();
noecho();
keypad(w, TRUE);
curs_set(0);
ungetch(KEY_INIT);
getch();
timeout(0);
vt_setup(NULL, NULL);
cairodevice->cairoio = (struct cairoio *) cairofb;
return 0;
}
/*
* close a cairo context
*/
void cairofinish_fb(struct cairodevice *cairodevice) {
if (cairodevice != NULL && cairodevice->cairoio != NULL)
cairofb_finish((struct cairofb *) cairodevice->cairoio);
clear();
refresh();
endwin();
}
/*
* get the cairo context from a cairo envelope
*/
cairo_t *cairocontext_fb(struct cairodevice *cairodevice) {
return ((struct cairofb *) cairodevice->cairoio)->cr;
}
/*
* get the width from a cairo envelope
*/
double cairowidth_fb(struct cairodevice *cairodevice) {
return ((struct cairofb *) cairodevice->cairoio)->width;
}
/*
* get the heigth from a cairo envelope
*/
double cairoheight_fb(struct cairodevice *cairodevice) {
return ((struct cairofb *) cairodevice->cairoio)->height;
}
/*
* return whether double buffering is used
*/
int cairodoublebuffering_fb(struct cairodevice *cairodevice) {
return cairofb_doublebuffering((struct cairofb *) cairodevice->cairoio);
}
/*
* clear
*/
void cairoclear_fb(struct cairodevice *cairodevice) {
cairofb_clear((struct cairofb *) cairodevice->cairoio, 1.0, 1.0, 1.0);
}
/*
* blank
*/
void cairoblank_fb(struct cairodevice *cairodevice) {
cairofb_clear((struct cairofb *) cairodevice->cairoio, 0.0, 0.0, 0.0);
}
/*
* flush
*/
void cairoflush_fb(struct cairodevice *cairodevice) {
cairofb_flush((struct cairofb *) cairodevice->cairoio);
}
/*
* whether the output is currently active
*/
int cairoisactive_fb(struct cairodevice *cairodevice) {
(void) cairodevice;
return ! vt_suspend;
}
/*
* get a single input from a cairo envelope
*/
int cairoinput_fb(struct cairodevice *cairodevice, int timeout,
struct command *command) {
fd_set fds;
int max, ret;
struct timeval tv;
int c, l, r;
int different;
(void) cairodevice;
FD_ZERO(&fds);
FD_SET(STDIN_FILENO, &fds);
max = STDIN_FILENO;
if (command->fd != -1) {
FD_SET(command->fd, &fds);
max = max > command->fd ? max : command->fd;
}
tv.tv_sec = timeout / 1000;
tv.tv_usec = timeout % 1000;
ret = select(max + 1, &fds, NULL, NULL,
timeout != NO_TIMEOUT ? &tv : NULL);
if (ret != -1 && command->fd != -1 && FD_ISSET(command->fd, &fds)) {
fgets(command->command, command->max, command->stream);
return KEY_EXTERNAL;
}
if (vt_suspend && timeout != 0)
return KEY_SUSPEND;
if (vt_redraw) {
vt_redraw = FALSE;
return KEY_REDRAW;
}
if (ret == -1)
return KEY_SIGNAL;
if (FD_ISSET(STDIN_FILENO, &fds)) {
different = 0;
for (l = getch(), r = 0;
l != ERR && r < command->max - 1;
l = getch()) {
command->command[r++] = l;
if (c != l && r > 1)
different = 1;
c = l;
}
command->command[r] = '\0';
return r < 4 || ! different ? c : KEY_PASTE;
}
return KEY_TIMEOUT;
}
/*
* the cairo device for the framebuffer
*/
struct cairodevice cairodevicefb = {
"",
"",
NULL,
cairoinit_fb, cairofinish_fb,
cairocontext_fb,
cairowidth_fb, cairoheight_fb,
cairowidth_fb, cairoheight_fb,
cairodoublebuffering_fb,
cairoclear_fb, cairoblank_fb, cairoflush_fb,
cairoisactive_fb, cairoinput_fb
};