update license in source code itself
[libpicofe.git] / linux / xenv.c
CommitLineData
392b07b2 1/*
c7b78b94 2 * (C) GraÅžvydas "notaz" Ignotas, 2009-2012
392b07b2 3 *
957a9eac 4 * This work is licensed under the terms of any of these licenses
5 * (at your option):
6 * - GNU GPL, version 2 or later.
7 * - GNU LGPL, version 2.1 or later.
f89d8471 8 * - MAME license.
392b07b2 9 * See the COPYING file in the top-level directory.
10 */
11
b2c5ee47 12#include <stdio.h>
13#include <string.h>
14#include <pthread.h>
f6eaae4f 15
b2c5ee47 16#include <dlfcn.h>
17#include <X11/Xlib.h>
18#include <X11/Xutil.h>
838a76d4 19#include <X11/XKBlib.h>
b2c5ee47 20
f6eaae4f 21#include <sys/types.h>
22#include <sys/stat.h>
23#include <fcntl.h>
24#include <unistd.h>
25#include <sys/ioctl.h>
26#include <termios.h>
27#include <linux/kd.h>
28
f620fa7a 29#include "xenv.h"
30
838a76d4 31#define PFX "xenv: "
f6eaae4f 32
b2c5ee47 33#define FPTR(f) typeof(f) * p##f
34#define FPTR_LINK(xf, dl, f) { \
35 xf.p##f = dlsym(dl, #f); \
36 if (xf.p##f == NULL) { \
37 fprintf(stderr, "missing symbol: %s\n", #f); \
38 goto fail; \
39 } \
40}
41
838a76d4 42struct xstuff {
43 Display *display;
477ba3f2 44 Window window;
838a76d4 45 FPTR(XCreateBitmapFromData);
46 FPTR(XCreatePixmapCursor);
47 FPTR(XFreePixmap);
48 FPTR(XOpenDisplay);
49 FPTR(XDisplayName);
50 FPTR(XCloseDisplay);
51 FPTR(XCreateSimpleWindow);
52 FPTR(XChangeWindowAttributes);
53 FPTR(XSelectInput);
54 FPTR(XMapWindow);
55 FPTR(XNextEvent);
56 FPTR(XCheckTypedEvent);
477ba3f2 57 FPTR(XWithdrawWindow);
838a76d4 58 FPTR(XGrabKeyboard);
59 FPTR(XPending);
60 FPTR(XLookupKeysym);
61 FPTR(XkbSetDetectableAutoRepeat);
477ba3f2 62 FPTR(XStoreName);
63 FPTR(XIconifyWindow);
64 FPTR(XMoveResizeWindow);
65 FPTR(XInternAtom);
66 FPTR(XSetWMHints);
67 FPTR(XSync);
b2c5ee47 68};
69
838a76d4 70static struct xstuff g_xstuff;
b2c5ee47 71
838a76d4 72static Cursor transparent_cursor(struct xstuff *xf, Display *display, Window win)
b2c5ee47 73{
74 Cursor cursor;
75 Pixmap pix;
76 XColor dummy;
77 char d = 0;
78
79 memset(&dummy, 0, sizeof(dummy));
80 pix = xf->pXCreateBitmapFromData(display, win, &d, 1, 1);
81 cursor = xf->pXCreatePixmapCursor(display, pix, pix,
82 &dummy, &dummy, 0, 0);
83 xf->pXFreePixmap(display, pix);
84 return cursor;
85}
86
f620fa7a 87static int x11h_init(int *xenv_flags, const char *window_title)
b2c5ee47 88{
b2c5ee47 89 unsigned int display_width, display_height;
838a76d4 90 Display *display;
b2c5ee47 91 XSetWindowAttributes attributes;
92 Window win;
b2c5ee47 93 Visual *visual;
f620fa7a 94 long evt_mask;
b2c5ee47 95 void *x11lib;
96 int screen;
97
838a76d4 98 memset(&g_xstuff, 0, sizeof(g_xstuff));
b2c5ee47 99 x11lib = dlopen("libX11.so.6", RTLD_LAZY);
100 if (x11lib == NULL) {
101 fprintf(stderr, "libX11.so load failed:\n%s\n", dlerror());
102 goto fail;
103 }
838a76d4 104 FPTR_LINK(g_xstuff, x11lib, XCreateBitmapFromData);
105 FPTR_LINK(g_xstuff, x11lib, XCreatePixmapCursor);
106 FPTR_LINK(g_xstuff, x11lib, XFreePixmap);
107 FPTR_LINK(g_xstuff, x11lib, XOpenDisplay);
108 FPTR_LINK(g_xstuff, x11lib, XDisplayName);
109 FPTR_LINK(g_xstuff, x11lib, XCloseDisplay);
110 FPTR_LINK(g_xstuff, x11lib, XCreateSimpleWindow);
111 FPTR_LINK(g_xstuff, x11lib, XChangeWindowAttributes);
112 FPTR_LINK(g_xstuff, x11lib, XSelectInput);
113 FPTR_LINK(g_xstuff, x11lib, XMapWindow);
114 FPTR_LINK(g_xstuff, x11lib, XNextEvent);
115 FPTR_LINK(g_xstuff, x11lib, XCheckTypedEvent);
477ba3f2 116 FPTR_LINK(g_xstuff, x11lib, XWithdrawWindow);
838a76d4 117 FPTR_LINK(g_xstuff, x11lib, XGrabKeyboard);
118 FPTR_LINK(g_xstuff, x11lib, XPending);
119 FPTR_LINK(g_xstuff, x11lib, XLookupKeysym);
120 FPTR_LINK(g_xstuff, x11lib, XkbSetDetectableAutoRepeat);
477ba3f2 121 FPTR_LINK(g_xstuff, x11lib, XStoreName);
122 FPTR_LINK(g_xstuff, x11lib, XIconifyWindow);
123 FPTR_LINK(g_xstuff, x11lib, XMoveResizeWindow);
124 FPTR_LINK(g_xstuff, x11lib, XInternAtom);
125 FPTR_LINK(g_xstuff, x11lib, XSetWMHints);
126 FPTR_LINK(g_xstuff, x11lib, XSync);
b2c5ee47 127
128 //XInitThreads();
129
838a76d4 130 g_xstuff.display = display = g_xstuff.pXOpenDisplay(NULL);
b2c5ee47 131 if (display == NULL)
132 {
133 fprintf(stderr, "cannot connect to X server %s, X handling disabled.\n",
838a76d4 134 g_xstuff.pXDisplayName(NULL));
b2c5ee47 135 goto fail2;
136 }
137
138 visual = DefaultVisual(display, 0);
139 if (visual->class != TrueColor)
f6eaae4f 140 fprintf(stderr, PFX "warning: non true color visual\n");
b2c5ee47 141
f6eaae4f 142 printf(PFX "X vendor: %s, rel: %d, display: %s, protocol ver: %d.%d\n", ServerVendor(display),
b2c5ee47 143 VendorRelease(display), DisplayString(display), ProtocolVersion(display),
144 ProtocolRevision(display));
145
146 screen = DefaultScreen(display);
147
148 display_width = DisplayWidth(display, screen);
149 display_height = DisplayHeight(display, screen);
f6eaae4f 150 printf(PFX "display is %dx%d\n", display_width, display_height);
b2c5ee47 151
477ba3f2 152 g_xstuff.window = win = g_xstuff.pXCreateSimpleWindow(display,
153 RootWindow(display, screen), 0, 0, display_width, display_height,
154 0, BlackPixel(display, screen), BlackPixel(display, screen));
b2c5ee47 155
156 attributes.override_redirect = True;
838a76d4 157 attributes.cursor = transparent_cursor(&g_xstuff, display, win);
158 g_xstuff.pXChangeWindowAttributes(display, win, CWOverrideRedirect | CWCursor, &attributes);
b2c5ee47 159
f620fa7a 160 if (window_title != NULL)
161 g_xstuff.pXStoreName(display, win, window_title);
162 evt_mask = ExposureMask | FocusChangeMask | PropertyChangeMask;
163 if (xenv_flags && (*xenv_flags & XENV_CAP_KEYS))
164 evt_mask |= KeyPressMask | KeyReleaseMask;
165 if (xenv_flags && (*xenv_flags & XENV_CAP_MOUSE))
166 evt_mask |= ButtonPressMask | ButtonReleaseMask | PointerMotionMask;
167 g_xstuff.pXSelectInput(display, win, evt_mask);
838a76d4 168 g_xstuff.pXMapWindow(display, win);
169 g_xstuff.pXGrabKeyboard(display, win, False, GrabModeAsync, GrabModeAsync, CurrentTime);
170 g_xstuff.pXkbSetDetectableAutoRepeat(display, 1, NULL);
b2c5ee47 171 // XSetIOErrorHandler
172
477ba3f2 173 // we don't know when event dispatch will be called, so sync now
174 g_xstuff.pXSync(display, False);
175
838a76d4 176 return 0;
177fail2:
178 dlclose(x11lib);
179fail:
180 g_xstuff.display = NULL;
181 fprintf(stderr, "x11 handling disabled.\n");
182 return -1;
183}
184
c7b78b94 185static void x11h_update(int (*key_cb)(void *cb_arg, int kc, int is_pressed),
186 int (*mouseb_cb)(void *cb_arg, int x, int y, int button, int is_pressed),
187 int (*mousem_cb)(void *cb_arg, int x, int y),
188 void *cb_arg)
838a76d4 189{
190 XEvent evt;
c7b78b94 191 int keysym;
838a76d4 192
193 while (g_xstuff.pXPending(g_xstuff.display))
b2c5ee47 194 {
838a76d4 195 g_xstuff.pXNextEvent(g_xstuff.display, &evt);
196 switch (evt.type)
b2c5ee47 197 {
c7b78b94 198 case Expose:
199 while (g_xstuff.pXCheckTypedEvent(g_xstuff.display, Expose, &evt))
200 ;
201 break;
202
203 case KeyPress:
204 keysym = g_xstuff.pXLookupKeysym(&evt.xkey, 0);
205 if (key_cb != NULL)
206 key_cb(cb_arg, keysym, 1);
207 break;
208
209 case KeyRelease:
210 keysym = g_xstuff.pXLookupKeysym(&evt.xkey, 0);
211 if (key_cb != NULL)
212 key_cb(cb_arg, keysym, 0);
213 break;
214
215 case ButtonPress:
216 if (mouseb_cb != NULL)
217 mouseb_cb(cb_arg, evt.xbutton.x, evt.xbutton.y,
218 evt.xbutton.button, 1);
219 break;
220
221 case ButtonRelease:
222 if (mouseb_cb != NULL)
223 mouseb_cb(cb_arg, evt.xbutton.x, evt.xbutton.y,
224 evt.xbutton.button, 0);
225 break;
226
227 case MotionNotify:
228 if (mousem_cb != NULL)
229 mousem_cb(cb_arg, evt.xmotion.x, evt.xmotion.y);
230 break;
b2c5ee47 231 }
232 }
b2c5ee47 233}
234
477ba3f2 235static void x11h_wait_vmstate(void)
236{
237 Atom wm_state = g_xstuff.pXInternAtom(g_xstuff.display, "WM_STATE", False);
238 XEvent evt;
239 int i;
240
241 usleep(20000);
242
243 for (i = 0; i < 20; i++) {
244 while (g_xstuff.pXPending(g_xstuff.display)) {
245 g_xstuff.pXNextEvent(g_xstuff.display, &evt);
246 // printf("w event %d\n", evt.type);
247 if (evt.type == PropertyNotify && evt.xproperty.atom == wm_state)
248 return;
249 }
250 usleep(200000);
251 }
252
253 fprintf(stderr, PFX "timeout waiting for wm_state change\n");
254}
255
256static int x11h_minimize(void)
257{
258 XSetWindowAttributes attributes;
259 Display *display = g_xstuff.display;
260 Window window = g_xstuff.window;
261 int screen = DefaultScreen(g_xstuff.display);
262 int display_width, display_height;
263 XWMHints wm_hints;
264 XEvent evt;
265
266 g_xstuff.pXWithdrawWindow(display, window, screen);
267
268 attributes.override_redirect = False;
269 g_xstuff.pXChangeWindowAttributes(display, window,
270 CWOverrideRedirect, &attributes);
271
272 wm_hints.flags = StateHint;
273 wm_hints.initial_state = IconicState;
274 g_xstuff.pXSetWMHints(display, window, &wm_hints);
275
276 g_xstuff.pXMapWindow(display, window);
277
278 while (g_xstuff.pXNextEvent(display, &evt) == 0)
279 {
280 // printf("m event %d\n", evt.type);
281 switch (evt.type)
282 {
283 case FocusIn:
284 goto out;
285 default:
286 break;
287 }
288 }
289
290out:
291 g_xstuff.pXWithdrawWindow(display, window, screen);
292
293 // must wait for some magic vmstate property change before setting override_redirect
294 x11h_wait_vmstate();
295
296 attributes.override_redirect = True;
297 g_xstuff.pXChangeWindowAttributes(display, window,
298 CWOverrideRedirect, &attributes);
299
300 // fixup window after resize on override_redirect loss
301 display_width = DisplayWidth(display, screen);
302 display_height = DisplayHeight(display, screen);
303 g_xstuff.pXMoveResizeWindow(display, window, 0, 0, display_width, display_height);
304
305 g_xstuff.pXMapWindow(display, window);
306 g_xstuff.pXGrabKeyboard(display, window, False, GrabModeAsync, GrabModeAsync, CurrentTime);
307 g_xstuff.pXkbSetDetectableAutoRepeat(display, 1, NULL);
308
309 // we don't know when event dispatch will be called, so sync now
310 g_xstuff.pXSync(display, False);
311
312 return 0;
313}
314
f6eaae4f 315static struct termios g_kbd_termios_saved;
3797b7de 316static int g_kbdfd = -1;
f6eaae4f 317
838a76d4 318static int tty_init(void)
f6eaae4f 319{
320 struct termios kbd_termios;
f6eaae4f 321 int mode;
322
323 g_kbdfd = open("/dev/tty", O_RDWR);
324 if (g_kbdfd == -1) {
325 perror(PFX "open /dev/tty");
838a76d4 326 return -1;
f6eaae4f 327 }
328
329 if (ioctl(g_kbdfd, KDGETMODE, &mode) == -1) {
330 perror(PFX "(not hiding FB): KDGETMODE");
331 goto fail;
332 }
333
334 if (tcgetattr(g_kbdfd, &kbd_termios) == -1) {
335 perror(PFX "tcgetattr");
336 goto fail;
337 }
338
209a7eff 339 g_kbd_termios_saved = kbd_termios;
f6eaae4f 340 kbd_termios.c_lflag &= ~(ICANON | ECHO); // | ISIG);
341 kbd_termios.c_iflag &= ~(ISTRIP | IGNCR | ICRNL | INLCR | IXOFF | IXON);
342 kbd_termios.c_cc[VMIN] = 0;
343 kbd_termios.c_cc[VTIME] = 0;
344
345 if (tcsetattr(g_kbdfd, TCSAFLUSH, &kbd_termios) == -1) {
346 perror(PFX "tcsetattr");
347 goto fail;
348 }
349
350 if (ioctl(g_kbdfd, KDSETMODE, KD_GRAPHICS) == -1) {
351 perror(PFX "KDSETMODE KD_GRAPHICS");
352 tcsetattr(g_kbdfd, TCSAFLUSH, &g_kbd_termios_saved);
353 goto fail;
354 }
355
838a76d4 356 return 0;
f6eaae4f 357
358fail:
359 close(g_kbdfd);
360 g_kbdfd = -1;
838a76d4 361 return -1;
f6eaae4f 362}
363
838a76d4 364static void tty_end(void)
f6eaae4f 365{
366 if (g_kbdfd < 0)
367 return;
368
369 if (ioctl(g_kbdfd, KDSETMODE, KD_TEXT) == -1)
370 perror(PFX "KDSETMODE KD_TEXT");
371
372 if (tcsetattr(g_kbdfd, TCSAFLUSH, &g_kbd_termios_saved) == -1)
373 perror(PFX "tcsetattr");
374
f6eaae4f 375 close(g_kbdfd);
376 g_kbdfd = -1;
377}
378
f620fa7a 379int xenv_init(int *xenv_flags, const char *window_title)
b2c5ee47 380{
b2c5ee47 381 int ret;
382
f620fa7a 383 ret = x11h_init(xenv_flags, window_title);
384 if (ret == 0)
c7b78b94 385 goto out;
b2c5ee47 386
f620fa7a 387 if (xenv_flags != NULL)
388 *xenv_flags &= ~(XENV_CAP_KEYS | XENV_CAP_MOUSE); /* TODO? */
838a76d4 389 ret = tty_init();
390 if (ret == 0)
c7b78b94 391 goto out;
f6eaae4f 392
838a76d4 393 fprintf(stderr, PFX "error: both x11h_init and tty_init failed\n");
c7b78b94 394 ret = -1;
395out:
c7b78b94 396 return ret;
b2c5ee47 397}
398
c7b78b94 399int xenv_update(int (*key_cb)(void *cb_arg, int kc, int is_pressed),
400 int (*mouseb_cb)(void *cb_arg, int x, int y, int button, int is_pressed),
401 int (*mousem_cb)(void *cb_arg, int x, int y),
402 void *cb_arg)
f6eaae4f 403{
c7b78b94 404 if (g_xstuff.display) {
405 x11h_update(key_cb, mouseb_cb, mousem_cb, cb_arg);
406 return 0;
407 }
f6eaae4f 408
838a76d4 409 // TODO: read tty?
410 return -1;
f6eaae4f 411}
412
477ba3f2 413/* blocking minimize until user maximizes again */
414int xenv_minimize(void)
415{
416 int ret;
417
418 if (g_xstuff.display) {
419 xenv_update(NULL, NULL, NULL, NULL);
420 ret = x11h_minimize();
421 xenv_update(NULL, NULL, NULL, NULL);
422 return ret;
423 }
424
425 return -1;
426}
427
838a76d4 428void xenv_finish(void)
b2c5ee47 429{
838a76d4 430 // TODO: cleanup X?
431 tty_end();
b2c5ee47 432}
477ba3f2 433
434#if 0
435int main()
436{
437 int i, r, d;
438
439 xenv_init("just a test");
440
441 for (i = 0; i < 5; i++) {
442 while ((r = xenv_update(&d)) > 0)
443 printf("%d %x %d\n", d, r, r);
444 sleep(1);
445
446 if (i == 1)
447 xenv_minimize();
448 printf("ll %d\n", i);
449 }
450
451 printf("xenv_finish..\n");
452 xenv_finish();
453
454 return 0;
455}
456#endif