blob: aecdf638ea6d823468f3c85c087ccdd02b05a77e [file] [log] [blame]
bellard0f0b7262003-08-09 18:26:36 +00001/*
2 * QEMU SDL display driver
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard0f0b7262003-08-09 18:26:36 +00004 * Copyright (c) 2003 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellard0f0b7262003-08-09 18:26:36 +00006 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
pbrook87ecb682007-11-17 17:14:51 +000024#include "qemu-common.h"
25#include "console.h"
26#include "sysemu.h"
bellard0f0b7262003-08-09 18:26:36 +000027
28#include <SDL.h>
29
bellard67b915a2004-03-31 23:37:16 +000030#ifndef _WIN32
31#include <signal.h>
32#endif
bellard0f0b7262003-08-09 18:26:36 +000033
aliguori7d957bd2009-01-15 22:14:11 +000034static DisplayChangeListener *dcl;
35static SDL_Surface *real_screen;
36static SDL_Surface *guest_screen = NULL;
bellard0f0b7262003-08-09 18:26:36 +000037static int gui_grab; /* if true, all keyboard/mouse events are grabbed */
bellard8a7ddc32004-03-31 19:00:16 +000038static int last_vm_running;
bellard8e9c4af2004-04-28 19:33:40 +000039static int gui_saved_grab;
40static int gui_fullscreen;
ths43523e92007-02-18 18:19:32 +000041static int gui_noframe;
bellard8e9c4af2004-04-28 19:33:40 +000042static int gui_key_modifier_pressed;
43static int gui_keysym;
bellardd63d3072004-10-03 13:29:03 +000044static int gui_fullscreen_initial_grab;
bellard32ff25b2004-10-03 14:33:54 +000045static int gui_grab_code = KMOD_LALT | KMOD_LCTRL;
46static uint8_t modifiers_state[256];
bellard09b26c52006-04-12 21:09:08 +000047static int width, height;
48static SDL_Cursor *sdl_cursor_normal;
49static SDL_Cursor *sdl_cursor_hidden;
50static int absolute_enabled = 0;
thsd34cab92007-04-02 01:10:46 +000051static int guest_cursor = 0;
52static int guest_x, guest_y;
53static SDL_Cursor *guest_sprite = 0;
bellard0f0b7262003-08-09 18:26:36 +000054
55static void sdl_update(DisplayState *ds, int x, int y, int w, int h)
56{
aliguori7d957bd2009-01-15 22:14:11 +000057 SDL_Rect rec;
58 rec.x = x;
59 rec.y = y;
60 rec.w = w;
61 rec.h = h;
bellard898712a2004-02-06 19:56:42 +000062 // printf("updating x=%d y=%d w=%d h=%d\n", x, y, w, h);
aliguori7d957bd2009-01-15 22:14:11 +000063
64 SDL_BlitSurface(guest_screen, &rec, real_screen, &rec);
pbrook6e600652009-01-21 01:50:17 +000065 SDL_UpdateRect(real_screen, x, y, w, h);
bellard0f0b7262003-08-09 18:26:36 +000066}
67
aliguori7d957bd2009-01-15 22:14:11 +000068static void sdl_setdata(DisplayState *ds)
69{
70 SDL_Rect rec;
71 rec.x = 0;
72 rec.y = 0;
73 rec.w = real_screen->w;
74 rec.h = real_screen->h;
75
76 if (guest_screen != NULL) SDL_FreeSurface(guest_screen);
77
78 guest_screen = SDL_CreateRGBSurfaceFrom(ds_get_data(ds), ds_get_width(ds), ds_get_height(ds),
79 ds_get_bits_per_pixel(ds), ds_get_linesize(ds),
80 ds->surface->pf.rmask, ds->surface->pf.gmask,
81 ds->surface->pf.bmask, ds->surface->pf.amask);
82}
83
84static void sdl_resize(DisplayState *ds)
bellard0f0b7262003-08-09 18:26:36 +000085{
86 int flags;
87
88 // printf("resizing to %d %d\n", w, h);
89
90 flags = SDL_HWSURFACE|SDL_ASYNCBLIT|SDL_HWACCEL;
bellard8e9c4af2004-04-28 19:33:40 +000091 if (gui_fullscreen)
92 flags |= SDL_FULLSCREEN;
ths43523e92007-02-18 18:19:32 +000093 if (gui_noframe)
94 flags |= SDL_NOFRAME;
bellard9903da22005-10-30 23:19:10 +000095
balrog8bf66d42009-01-29 23:19:20 +000096 width = ds_get_width(ds);
97 height = ds_get_height(ds);
98 real_screen = SDL_SetVideoMode(width, height, 0, flags);
aliguori7d957bd2009-01-15 22:14:11 +000099 if (!real_screen) {
bellard0f0b7262003-08-09 18:26:36 +0000100 fprintf(stderr, "Could not open SDL display\n");
101 exit(1);
102 }
blueswir1749ecd92008-07-24 11:25:30 +0000103
aliguori7d957bd2009-01-15 22:14:11 +0000104 sdl_setdata(ds);
bellard0f0b7262003-08-09 18:26:36 +0000105}
106
bellard3d11d0e2004-12-12 16:56:30 +0000107/* generic keyboard conversion */
bellarde58d12e2004-07-05 22:13:07 +0000108
bellard3d11d0e2004-12-12 16:56:30 +0000109#include "sdl_keysym.h"
110#include "keymaps.c"
bellarde58d12e2004-07-05 22:13:07 +0000111
bellard3d11d0e2004-12-12 16:56:30 +0000112static kbd_layout_t *kbd_layout = NULL;
bellarde58d12e2004-07-05 22:13:07 +0000113
bellard3d11d0e2004-12-12 16:56:30 +0000114static uint8_t sdl_keyevent_to_keycode_generic(const SDL_KeyboardEvent *ev)
bellarde58d12e2004-07-05 22:13:07 +0000115{
bellard3d11d0e2004-12-12 16:56:30 +0000116 int keysym;
117 /* workaround for X11+SDL bug with AltGR */
118 keysym = ev->keysym.sym;
119 if (keysym == 0 && ev->keysym.scancode == 113)
120 keysym = SDLK_MODE;
bellard60659e32006-08-19 14:27:31 +0000121 /* For Japanese key '\' and '|' */
122 if (keysym == 92 && ev->keysym.scancode == 133) {
123 keysym = 0xa5;
124 }
bellard3d11d0e2004-12-12 16:56:30 +0000125 return keysym2scancode(kbd_layout, keysym);
bellarde58d12e2004-07-05 22:13:07 +0000126}
127
bellard3d11d0e2004-12-12 16:56:30 +0000128/* specific keyboard conversions from scan codes */
129
130#if defined(_WIN32)
bellarde58d12e2004-07-05 22:13:07 +0000131
132static uint8_t sdl_keyevent_to_keycode(const SDL_KeyboardEvent *ev)
133{
134 return ev->keysym.scancode;
135}
136
137#else
138
bellarde58d12e2004-07-05 22:13:07 +0000139static uint8_t sdl_keyevent_to_keycode(const SDL_KeyboardEvent *ev)
140{
141 int keycode;
142
143 keycode = ev->keysym.scancode;
144
145 if (keycode < 9) {
146 keycode = 0;
147 } else if (keycode < 97) {
148 keycode -= 8; /* just an offset */
bellard60659e32006-08-19 14:27:31 +0000149 } else if (keycode < 212) {
bellarde58d12e2004-07-05 22:13:07 +0000150 /* use conversion table */
ths6070dd02007-01-24 21:40:21 +0000151 keycode = _translate_keycode(keycode - 97);
bellarde58d12e2004-07-05 22:13:07 +0000152 } else {
153 keycode = 0;
154 }
155 return keycode;
156}
157
158#endif
159
bellard32ff25b2004-10-03 14:33:54 +0000160static void reset_keys(void)
161{
162 int i;
163 for(i = 0; i < 256; i++) {
164 if (modifiers_state[i]) {
165 if (i & 0x80)
166 kbd_put_keycode(0xe0);
167 kbd_put_keycode(i | 0x80);
168 modifiers_state[i] = 0;
169 }
170 }
171}
172
bellard0f0b7262003-08-09 18:26:36 +0000173static void sdl_process_key(SDL_KeyboardEvent *ev)
174{
bellard32ff25b2004-10-03 14:33:54 +0000175 int keycode, v;
bellardde2200d2004-06-04 13:15:06 +0000176
177 if (ev->keysym.sym == SDLK_PAUSE) {
178 /* specific case */
179 v = 0;
180 if (ev->type == SDL_KEYUP)
181 v |= 0x80;
182 kbd_put_keycode(0xe1);
183 kbd_put_keycode(0x1d | v);
184 kbd_put_keycode(0x45 | v);
185 return;
186 }
187
bellard3d11d0e2004-12-12 16:56:30 +0000188 if (kbd_layout) {
189 keycode = sdl_keyevent_to_keycode_generic(ev);
190 } else {
191 keycode = sdl_keyevent_to_keycode(ev);
192 }
bellardde2200d2004-06-04 13:15:06 +0000193
194 switch(keycode) {
195 case 0x00:
196 /* sent when leaving window: reset the modifiers state */
bellard32ff25b2004-10-03 14:33:54 +0000197 reset_keys();
bellardde2200d2004-06-04 13:15:06 +0000198 return;
199 case 0x2a: /* Left Shift */
200 case 0x36: /* Right Shift */
201 case 0x1d: /* Left CTRL */
202 case 0x9d: /* Right CTRL */
203 case 0x38: /* Left ALT */
204 case 0xb8: /* Right ALT */
bellard0f0b7262003-08-09 18:26:36 +0000205 if (ev->type == SDL_KEYUP)
bellardde2200d2004-06-04 13:15:06 +0000206 modifiers_state[keycode] = 0;
207 else
208 modifiers_state[keycode] = 1;
209 break;
210 case 0x45: /* num lock */
211 case 0x3a: /* caps lock */
212 /* SDL does not send the key up event, so we generate it */
213 kbd_put_keycode(keycode);
214 kbd_put_keycode(keycode | 0x80);
215 return;
bellard0f0b7262003-08-09 18:26:36 +0000216 }
bellardde2200d2004-06-04 13:15:06 +0000217
218 /* now send the key code */
219 if (keycode & 0x80)
220 kbd_put_keycode(0xe0);
221 if (ev->type == SDL_KEYUP)
222 kbd_put_keycode(keycode | 0x80);
223 else
224 kbd_put_keycode(keycode & 0x7f);
bellard0f0b7262003-08-09 18:26:36 +0000225}
226
bellard8a7ddc32004-03-31 19:00:16 +0000227static void sdl_update_caption(void)
228{
229 char buf[1024];
thsc35734b2007-03-19 15:17:08 +0000230 const char *status = "";
231
232 if (!vm_running)
233 status = " [Stopped]";
ths3780e192007-06-21 21:08:02 +0000234 else if (gui_grab) {
235 if (!alt_grab)
236 status = " - Press Ctrl-Alt to exit grab";
237 else
238 status = " - Press Ctrl-Alt-Shift to exit grab";
239 }
thsc35734b2007-03-19 15:17:08 +0000240
241 if (qemu_name)
242 snprintf(buf, sizeof(buf), "QEMU (%s)%s", qemu_name, status);
243 else
244 snprintf(buf, sizeof(buf), "QEMU%s", status);
245
bellard8a7ddc32004-03-31 19:00:16 +0000246 SDL_WM_SetCaption(buf, "QEMU");
247}
248
bellard09b26c52006-04-12 21:09:08 +0000249static void sdl_hide_cursor(void)
250{
balrog9467cd42007-05-01 01:34:14 +0000251 if (!cursor_hide)
252 return;
253
bellard8785a8d2006-06-13 10:49:12 +0000254 if (kbd_mouse_is_absolute()) {
255 SDL_ShowCursor(1);
256 SDL_SetCursor(sdl_cursor_hidden);
257 } else {
258 SDL_ShowCursor(0);
259 }
bellard09b26c52006-04-12 21:09:08 +0000260}
261
262static void sdl_show_cursor(void)
263{
balrog9467cd42007-05-01 01:34:14 +0000264 if (!cursor_hide)
265 return;
266
bellard09b26c52006-04-12 21:09:08 +0000267 if (!kbd_mouse_is_absolute()) {
bellard8785a8d2006-06-13 10:49:12 +0000268 SDL_ShowCursor(1);
thsd34cab92007-04-02 01:10:46 +0000269 if (guest_cursor &&
270 (gui_grab || kbd_mouse_is_absolute() || absolute_enabled))
271 SDL_SetCursor(guest_sprite);
272 else
273 SDL_SetCursor(sdl_cursor_normal);
bellard09b26c52006-04-12 21:09:08 +0000274 }
275}
276
bellard0f0b7262003-08-09 18:26:36 +0000277static void sdl_grab_start(void)
278{
thsd34cab92007-04-02 01:10:46 +0000279 if (guest_cursor) {
280 SDL_SetCursor(guest_sprite);
281 SDL_WarpMouse(guest_x, guest_y);
282 } else
283 sdl_hide_cursor();
aliguori6bb81602009-01-15 20:47:45 +0000284
285 if (SDL_WM_GrabInput(SDL_GRAB_ON) == SDL_GRAB_ON) {
286 gui_grab = 1;
287 sdl_update_caption();
288 } else
289 sdl_show_cursor();
bellard0f0b7262003-08-09 18:26:36 +0000290}
291
292static void sdl_grab_end(void)
293{
bellard0f0b7262003-08-09 18:26:36 +0000294 SDL_WM_GrabInput(SDL_GRAB_OFF);
bellard0f0b7262003-08-09 18:26:36 +0000295 gui_grab = 0;
thsd34cab92007-04-02 01:10:46 +0000296 sdl_show_cursor();
bellard8a7ddc32004-03-31 19:00:16 +0000297 sdl_update_caption();
bellard0f0b7262003-08-09 18:26:36 +0000298}
299
aurel324c44bdc2008-03-13 19:20:18 +0000300static void sdl_send_mouse_event(int dx, int dy, int dz, int x, int y, int state)
bellard0f0b7262003-08-09 18:26:36 +0000301{
aurel324c44bdc2008-03-13 19:20:18 +0000302 int buttons;
bellard0f0b7262003-08-09 18:26:36 +0000303 buttons = 0;
304 if (state & SDL_BUTTON(SDL_BUTTON_LEFT))
305 buttons |= MOUSE_EVENT_LBUTTON;
306 if (state & SDL_BUTTON(SDL_BUTTON_RIGHT))
307 buttons |= MOUSE_EVENT_RBUTTON;
308 if (state & SDL_BUTTON(SDL_BUTTON_MIDDLE))
309 buttons |= MOUSE_EVENT_MBUTTON;
bellard09b26c52006-04-12 21:09:08 +0000310
311 if (kbd_mouse_is_absolute()) {
312 if (!absolute_enabled) {
313 sdl_hide_cursor();
314 if (gui_grab) {
315 sdl_grab_end();
316 }
317 absolute_enabled = 1;
318 }
319
aurel324c44bdc2008-03-13 19:20:18 +0000320 dx = x * 0x7FFF / (width - 1);
321 dy = y * 0x7FFF / (height - 1);
ths455204e2007-01-05 16:42:13 +0000322 } else if (absolute_enabled) {
323 sdl_show_cursor();
324 absolute_enabled = 0;
thsd34cab92007-04-02 01:10:46 +0000325 } else if (guest_cursor) {
aurel324c44bdc2008-03-13 19:20:18 +0000326 x -= guest_x;
327 y -= guest_y;
328 guest_x += x;
329 guest_y += y;
330 dx = x;
331 dy = y;
bellard09b26c52006-04-12 21:09:08 +0000332 }
333
bellard0f0b7262003-08-09 18:26:36 +0000334 kbd_mouse_event(dx, dy, dz, buttons);
335}
336
bellard8e9c4af2004-04-28 19:33:40 +0000337static void toggle_full_screen(DisplayState *ds)
338{
339 gui_fullscreen = !gui_fullscreen;
aliguori7d957bd2009-01-15 22:14:11 +0000340 sdl_resize(ds);
bellard8e9c4af2004-04-28 19:33:40 +0000341 if (gui_fullscreen) {
342 gui_saved_grab = gui_grab;
343 sdl_grab_start();
344 } else {
345 if (!gui_saved_grab)
346 sdl_grab_end();
347 }
pbrook95219892006-04-09 01:06:34 +0000348 vga_hw_invalidate();
349 vga_hw_update();
bellard8e9c4af2004-04-28 19:33:40 +0000350}
351
bellard0f0b7262003-08-09 18:26:36 +0000352static void sdl_refresh(DisplayState *ds)
353{
354 SDL_Event ev1, *ev = &ev1;
bellard8e9c4af2004-04-28 19:33:40 +0000355 int mod_state;
aurel324c44bdc2008-03-13 19:20:18 +0000356 int buttonstate = SDL_GetMouseState(NULL, NULL);
ths3b46e622007-09-17 08:09:54 +0000357
bellard8a7ddc32004-03-31 19:00:16 +0000358 if (last_vm_running != vm_running) {
359 last_vm_running = vm_running;
360 sdl_update_caption();
361 }
362
pbrook95219892006-04-09 01:06:34 +0000363 vga_hw_update();
aurel323bee8bd2008-04-13 16:08:37 +0000364 SDL_EnableUNICODE(!is_graphic_console());
bellard457831f2004-07-14 17:22:33 +0000365
bellard0f0b7262003-08-09 18:26:36 +0000366 while (SDL_PollEvent(ev)) {
367 switch (ev->type) {
368 case SDL_VIDEOEXPOSE:
aliguori7d957bd2009-01-15 22:14:11 +0000369 sdl_update(ds, 0, 0, real_screen->w, real_screen->h);
bellard0f0b7262003-08-09 18:26:36 +0000370 break;
371 case SDL_KEYDOWN:
372 case SDL_KEYUP:
373 if (ev->type == SDL_KEYDOWN) {
ths3780e192007-06-21 21:08:02 +0000374 if (!alt_grab) {
375 mod_state = (SDL_GetModState() & gui_grab_code) ==
376 gui_grab_code;
377 } else {
378 mod_state = (SDL_GetModState() & (gui_grab_code | KMOD_LSHIFT)) ==
379 (gui_grab_code | KMOD_LSHIFT);
380 }
bellard8e9c4af2004-04-28 19:33:40 +0000381 gui_key_modifier_pressed = mod_state;
bellard457831f2004-07-14 17:22:33 +0000382 if (gui_key_modifier_pressed) {
bellard32ff25b2004-10-03 14:33:54 +0000383 int keycode;
384 keycode = sdl_keyevent_to_keycode(&ev->key);
385 switch(keycode) {
386 case 0x21: /* 'f' key on US keyboard */
bellard457831f2004-07-14 17:22:33 +0000387 toggle_full_screen(ds);
388 gui_keysym = 1;
389 break;
ths5fafdf22007-09-16 21:08:06 +0000390 case 0x02 ... 0x0a: /* '1' to '9' keys */
bellarddfd92d32006-08-17 10:42:46 +0000391 /* Reset the modifiers sent to the current console */
392 reset_keys();
bellard32ff25b2004-10-03 14:33:54 +0000393 console_select(keycode - 0x02);
pbrook95219892006-04-09 01:06:34 +0000394 if (!is_graphic_console()) {
bellard457831f2004-07-14 17:22:33 +0000395 /* display grab if going to a text console */
396 if (gui_grab)
397 sdl_grab_end();
398 }
399 gui_keysym = 1;
400 break;
401 default:
402 break;
403 }
pbrook95219892006-04-09 01:06:34 +0000404 } else if (!is_graphic_console()) {
bellard457831f2004-07-14 17:22:33 +0000405 int keysym;
406 keysym = 0;
407 if (ev->key.keysym.mod & (KMOD_LCTRL | KMOD_RCTRL)) {
408 switch(ev->key.keysym.sym) {
409 case SDLK_UP: keysym = QEMU_KEY_CTRL_UP; break;
410 case SDLK_DOWN: keysym = QEMU_KEY_CTRL_DOWN; break;
411 case SDLK_LEFT: keysym = QEMU_KEY_CTRL_LEFT; break;
412 case SDLK_RIGHT: keysym = QEMU_KEY_CTRL_RIGHT; break;
413 case SDLK_HOME: keysym = QEMU_KEY_CTRL_HOME; break;
414 case SDLK_END: keysym = QEMU_KEY_CTRL_END; break;
415 case SDLK_PAGEUP: keysym = QEMU_KEY_CTRL_PAGEUP; break;
416 case SDLK_PAGEDOWN: keysym = QEMU_KEY_CTRL_PAGEDOWN; break;
417 default: break;
418 }
419 } else {
420 switch(ev->key.keysym.sym) {
421 case SDLK_UP: keysym = QEMU_KEY_UP; break;
422 case SDLK_DOWN: keysym = QEMU_KEY_DOWN; break;
423 case SDLK_LEFT: keysym = QEMU_KEY_LEFT; break;
424 case SDLK_RIGHT: keysym = QEMU_KEY_RIGHT; break;
425 case SDLK_HOME: keysym = QEMU_KEY_HOME; break;
426 case SDLK_END: keysym = QEMU_KEY_END; break;
427 case SDLK_PAGEUP: keysym = QEMU_KEY_PAGEUP; break;
428 case SDLK_PAGEDOWN: keysym = QEMU_KEY_PAGEDOWN; break;
thse91c8a72007-06-03 13:35:16 +0000429 case SDLK_BACKSPACE: keysym = QEMU_KEY_BACKSPACE; break;
430 case SDLK_DELETE: keysym = QEMU_KEY_DELETE; break;
bellard457831f2004-07-14 17:22:33 +0000431 default: break;
432 }
433 }
434 if (keysym) {
435 kbd_put_keysym(keysym);
436 } else if (ev->key.keysym.unicode != 0) {
437 kbd_put_keysym(ev->key.keysym.unicode);
438 }
bellard8e9c4af2004-04-28 19:33:40 +0000439 }
440 } else if (ev->type == SDL_KEYUP) {
ths3780e192007-06-21 21:08:02 +0000441 if (!alt_grab) {
442 mod_state = (ev->key.keysym.mod & gui_grab_code);
443 } else {
444 mod_state = (ev->key.keysym.mod &
445 (gui_grab_code | KMOD_LSHIFT));
446 }
bellard8e9c4af2004-04-28 19:33:40 +0000447 if (!mod_state) {
448 if (gui_key_modifier_pressed) {
pbrook5b311872006-03-11 20:07:45 +0000449 gui_key_modifier_pressed = 0;
bellard457831f2004-07-14 17:22:33 +0000450 if (gui_keysym == 0) {
bellard32ff25b2004-10-03 14:33:54 +0000451 /* exit/enter grab if pressing Ctrl-Alt */
bellardc66b0d42006-06-13 12:03:53 +0000452 if (!gui_grab) {
453 /* if the application is not active,
454 do not try to enter grab state. It
455 prevents
456 'SDL_WM_GrabInput(SDL_GRAB_ON)'
457 from blocking all the application
458 (SDL bug). */
459 if (SDL_GetAppState() & SDL_APPACTIVE)
460 sdl_grab_start();
461 } else {
bellard8e9c4af2004-04-28 19:33:40 +0000462 sdl_grab_end();
bellardc66b0d42006-06-13 12:03:53 +0000463 }
bellard32ff25b2004-10-03 14:33:54 +0000464 /* SDL does not send back all the
465 modifiers key, so we must correct it */
466 reset_keys();
bellard8e9c4af2004-04-28 19:33:40 +0000467 break;
468 }
bellard8e9c4af2004-04-28 19:33:40 +0000469 gui_keysym = 0;
470 }
bellard0f0b7262003-08-09 18:26:36 +0000471 }
472 }
ths5fafdf22007-09-16 21:08:06 +0000473 if (is_graphic_console() && !gui_keysym)
bellard457831f2004-07-14 17:22:33 +0000474 sdl_process_key(&ev->key);
bellard0f0b7262003-08-09 18:26:36 +0000475 break;
476 case SDL_QUIT:
aliguori5b08fc12008-08-21 20:08:03 +0000477 if (!no_quit)
balrog731345e2007-06-21 17:56:50 +0000478 qemu_system_shutdown_request();
bellard0f0b7262003-08-09 18:26:36 +0000479 break;
480 case SDL_MOUSEMOTION:
ths455204e2007-01-05 16:42:13 +0000481 if (gui_grab || kbd_mouse_is_absolute() ||
482 absolute_enabled) {
aurel324c44bdc2008-03-13 19:20:18 +0000483 sdl_send_mouse_event(ev->motion.xrel, ev->motion.yrel, 0,
484 ev->motion.x, ev->motion.y, ev->motion.state);
bellard0f0b7262003-08-09 18:26:36 +0000485 }
486 break;
487 case SDL_MOUSEBUTTONDOWN:
488 case SDL_MOUSEBUTTONUP:
489 {
490 SDL_MouseButtonEvent *bev = &ev->button;
bellard09b26c52006-04-12 21:09:08 +0000491 if (!gui_grab && !kbd_mouse_is_absolute()) {
bellard0f0b7262003-08-09 18:26:36 +0000492 if (ev->type == SDL_MOUSEBUTTONDOWN &&
aurel324c44bdc2008-03-13 19:20:18 +0000493 (bev->button == SDL_BUTTON_LEFT)) {
bellard0f0b7262003-08-09 18:26:36 +0000494 /* start grabbing all events */
495 sdl_grab_start();
496 }
497 } else {
bellard18a6d282005-01-17 22:32:23 +0000498 int dz;
499 dz = 0;
aurel324c44bdc2008-03-13 19:20:18 +0000500 if (ev->type == SDL_MOUSEBUTTONDOWN) {
501 buttonstate |= SDL_BUTTON(bev->button);
502 } else {
503 buttonstate &= ~SDL_BUTTON(bev->button);
504 }
bellard18a6d282005-01-17 22:32:23 +0000505#ifdef SDL_BUTTON_WHEELUP
bellard09b26c52006-04-12 21:09:08 +0000506 if (bev->button == SDL_BUTTON_WHEELUP && ev->type == SDL_MOUSEBUTTONDOWN) {
bellard18a6d282005-01-17 22:32:23 +0000507 dz = -1;
bellard09b26c52006-04-12 21:09:08 +0000508 } else if (bev->button == SDL_BUTTON_WHEELDOWN && ev->type == SDL_MOUSEBUTTONDOWN) {
bellard18a6d282005-01-17 22:32:23 +0000509 dz = 1;
510 }
ths3b46e622007-09-17 08:09:54 +0000511#endif
aurel324c44bdc2008-03-13 19:20:18 +0000512 sdl_send_mouse_event(0, 0, dz, bev->x, bev->y, buttonstate);
bellard0f0b7262003-08-09 18:26:36 +0000513 }
514 }
515 break;
bellard0294ffb2004-04-29 22:15:15 +0000516 case SDL_ACTIVEEVENT:
pbrook5b311872006-03-11 20:07:45 +0000517 if (gui_grab && ev->active.state == SDL_APPINPUTFOCUS &&
518 !ev->active.gain && !gui_fullscreen_initial_grab) {
bellard0294ffb2004-04-29 22:15:15 +0000519 sdl_grab_end();
520 }
aurel32f442e082008-03-13 19:20:33 +0000521 if (ev->active.state & SDL_APPACTIVE) {
522 if (ev->active.gain) {
523 /* Back to default interval */
aliguori7d957bd2009-01-15 22:14:11 +0000524 dcl->gui_timer_interval = 0;
525 dcl->idle = 0;
aurel32f442e082008-03-13 19:20:33 +0000526 } else {
527 /* Sleeping interval */
aliguori7d957bd2009-01-15 22:14:11 +0000528 dcl->gui_timer_interval = 500;
529 dcl->idle = 1;
aurel32f442e082008-03-13 19:20:33 +0000530 }
531 }
bellard0294ffb2004-04-29 22:15:15 +0000532 break;
bellard0f0b7262003-08-09 18:26:36 +0000533 default:
534 break;
535 }
536 }
537}
538
thsd34cab92007-04-02 01:10:46 +0000539static void sdl_fill(DisplayState *ds, int x, int y, int w, int h, uint32_t c)
540{
541 SDL_Rect dst = { x, y, w, h };
aliguori7d957bd2009-01-15 22:14:11 +0000542 SDL_FillRect(real_screen, &dst, c);
thsd34cab92007-04-02 01:10:46 +0000543}
544
545static void sdl_mouse_warp(int x, int y, int on)
546{
547 if (on) {
548 if (!guest_cursor)
549 sdl_show_cursor();
550 if (gui_grab || kbd_mouse_is_absolute() || absolute_enabled) {
551 SDL_SetCursor(guest_sprite);
552 SDL_WarpMouse(x, y);
553 }
554 } else if (gui_grab)
555 sdl_hide_cursor();
556 guest_cursor = on;
557 guest_x = x, guest_y = y;
558}
559
560static void sdl_mouse_define(int width, int height, int bpp,
561 int hot_x, int hot_y,
562 uint8_t *image, uint8_t *mask)
563{
564 uint8_t sprite[256], *line;
565 int x, y, dst, bypl, src = 0;
566 if (guest_sprite)
567 SDL_FreeCursor(guest_sprite);
568
569 memset(sprite, 0, 256);
570 bypl = ((width * bpp + 31) >> 5) << 2;
571 for (y = 0, dst = 0; y < height; y ++, image += bypl) {
572 line = image;
573 for (x = 0; x < width; x ++, dst ++) {
574 switch (bpp) {
575 case 24:
576 src = *(line ++); src |= *(line ++); src |= *(line ++);
577 break;
578 case 16:
579 case 15:
580 src = *(line ++); src |= *(line ++);
581 break;
582 case 8:
583 src = *(line ++);
584 break;
585 case 4:
586 src = 0xf & (line[x >> 1] >> ((x & 1)) << 2);
587 break;
588 case 2:
589 src = 3 & (line[x >> 2] >> ((x & 3)) << 1);
590 break;
591 case 1:
592 src = 1 & (line[x >> 3] >> (x & 7));
593 break;
594 }
595 if (!src)
596 sprite[dst >> 3] |= (1 << (~dst & 7)) & mask[dst >> 3];
597 }
598 }
599 guest_sprite = SDL_CreateCursor(sprite, mask, width, height, hot_x, hot_y);
600
601 if (guest_cursor &&
602 (gui_grab || kbd_mouse_is_absolute() || absolute_enabled))
603 SDL_SetCursor(guest_sprite);
604}
605
ths5fafdf22007-09-16 21:08:06 +0000606static void sdl_cleanup(void)
bellard898712a2004-02-06 19:56:42 +0000607{
thsd34cab92007-04-02 01:10:46 +0000608 if (guest_sprite)
609 SDL_FreeCursor(guest_sprite);
bellard898712a2004-02-06 19:56:42 +0000610 SDL_Quit();
611}
612
ths43523e92007-02-18 18:19:32 +0000613void sdl_display_init(DisplayState *ds, int full_screen, int no_frame)
bellard0f0b7262003-08-09 18:26:36 +0000614{
615 int flags;
bellard09b26c52006-04-12 21:09:08 +0000616 uint8_t data = 0;
bellard0f0b7262003-08-09 18:26:36 +0000617
bellard3d11d0e2004-12-12 16:56:30 +0000618#if defined(__APPLE__)
619 /* always use generic keymaps */
620 if (!keyboard_layout)
621 keyboard_layout = "en-us";
622#endif
623 if(keyboard_layout) {
624 kbd_layout = init_keyboard_layout(keyboard_layout);
625 if (!kbd_layout)
626 exit(1);
627 }
628
ths43523e92007-02-18 18:19:32 +0000629 if (no_frame)
630 gui_noframe = 1;
631
bellard0f0b7262003-08-09 18:26:36 +0000632 flags = SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE;
633 if (SDL_Init (flags)) {
634 fprintf(stderr, "Could not initialize SDL - exiting\n");
635 exit(1);
636 }
bellard0ae04d72003-09-30 21:09:16 +0000637
aliguori7d957bd2009-01-15 22:14:11 +0000638 dcl = qemu_mallocz(sizeof(DisplayChangeListener));
639 if (!dcl)
640 exit(1);
641 dcl->dpy_update = sdl_update;
642 dcl->dpy_resize = sdl_resize;
643 dcl->dpy_refresh = sdl_refresh;
644 dcl->dpy_setdata = sdl_setdata;
645 dcl->dpy_fill = sdl_fill;
thsd34cab92007-04-02 01:10:46 +0000646 ds->mouse_set = sdl_mouse_warp;
647 ds->cursor_define = sdl_mouse_define;
aliguori7d957bd2009-01-15 22:14:11 +0000648 register_displaychangelistener(ds, dcl);
bellard0f0b7262003-08-09 18:26:36 +0000649
bellard8a7ddc32004-03-31 19:00:16 +0000650 sdl_update_caption();
bellard0f0b7262003-08-09 18:26:36 +0000651 SDL_EnableKeyRepeat(250, 50);
652 gui_grab = 0;
bellard898712a2004-02-06 19:56:42 +0000653
bellard09b26c52006-04-12 21:09:08 +0000654 sdl_cursor_hidden = SDL_CreateCursor(&data, &data, 8, 1, 0, 0);
655 sdl_cursor_normal = SDL_GetCursor();
656
bellard898712a2004-02-06 19:56:42 +0000657 atexit(sdl_cleanup);
bellardd63d3072004-10-03 13:29:03 +0000658 if (full_screen) {
659 gui_fullscreen = 1;
660 gui_fullscreen_initial_grab = 1;
661 sdl_grab_start();
662 }
bellard0f0b7262003-08-09 18:26:36 +0000663}