blob: 0cb22411df23fbf9053165fce2e4dbd4714af7c6 [file] [log] [blame]
bellard0f0b7262003-08-09 18:26:36 +00001/*
2 * QEMU SDL display driver
3 *
4 * Copyright (c) 2003 Fabrice Bellard
5 *
6 * 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 */
bellard67b915a2004-03-31 23:37:16 +000024#include "vl.h"
bellard0f0b7262003-08-09 18:26:36 +000025
26#include <SDL.h>
27
bellard67b915a2004-03-31 23:37:16 +000028#ifndef _WIN32
29#include <signal.h>
30#endif
bellard0f0b7262003-08-09 18:26:36 +000031
32static SDL_Surface *screen;
33static int gui_grab; /* if true, all keyboard/mouse events are grabbed */
bellard8a7ddc32004-03-31 19:00:16 +000034static int last_vm_running;
bellard8e9c4af2004-04-28 19:33:40 +000035static int gui_saved_grab;
36static int gui_fullscreen;
ths43523e92007-02-18 18:19:32 +000037static int gui_noframe;
bellard8e9c4af2004-04-28 19:33:40 +000038static int gui_key_modifier_pressed;
39static int gui_keysym;
bellardd63d3072004-10-03 13:29:03 +000040static int gui_fullscreen_initial_grab;
bellard32ff25b2004-10-03 14:33:54 +000041static int gui_grab_code = KMOD_LALT | KMOD_LCTRL;
42static uint8_t modifiers_state[256];
bellard09b26c52006-04-12 21:09:08 +000043static int width, height;
44static SDL_Cursor *sdl_cursor_normal;
45static SDL_Cursor *sdl_cursor_hidden;
46static int absolute_enabled = 0;
bellard0f0b7262003-08-09 18:26:36 +000047
48static void sdl_update(DisplayState *ds, int x, int y, int w, int h)
49{
bellard898712a2004-02-06 19:56:42 +000050 // printf("updating x=%d y=%d w=%d h=%d\n", x, y, w, h);
bellard0f0b7262003-08-09 18:26:36 +000051 SDL_UpdateRect(screen, x, y, w, h);
52}
53
54static void sdl_resize(DisplayState *ds, int w, int h)
55{
56 int flags;
57
58 // printf("resizing to %d %d\n", w, h);
59
60 flags = SDL_HWSURFACE|SDL_ASYNCBLIT|SDL_HWACCEL;
bellard8e9c4af2004-04-28 19:33:40 +000061 if (gui_fullscreen)
62 flags |= SDL_FULLSCREEN;
ths43523e92007-02-18 18:19:32 +000063 if (gui_noframe)
64 flags |= SDL_NOFRAME;
bellard9903da22005-10-30 23:19:10 +000065
bellard09b26c52006-04-12 21:09:08 +000066 width = w;
67 height = h;
68
bellard9903da22005-10-30 23:19:10 +000069 again:
bellard0f0b7262003-08-09 18:26:36 +000070 screen = SDL_SetVideoMode(w, h, 0, flags);
71 if (!screen) {
72 fprintf(stderr, "Could not open SDL display\n");
73 exit(1);
74 }
bellard9903da22005-10-30 23:19:10 +000075 if (!screen->pixels && (flags & SDL_HWSURFACE) && (flags & SDL_FULLSCREEN)) {
76 flags &= ~SDL_HWSURFACE;
77 goto again;
78 }
79
80 if (!screen->pixels) {
81 fprintf(stderr, "Could not open SDL display\n");
82 exit(1);
83 }
bellard0f0b7262003-08-09 18:26:36 +000084 ds->data = screen->pixels;
85 ds->linesize = screen->pitch;
86 ds->depth = screen->format->BitsPerPixel;
bellardd3079cd2006-05-10 22:17:36 +000087 if (ds->depth == 32 && screen->format->Rshift == 0) {
88 ds->bgr = 1;
89 } else {
90 ds->bgr = 0;
91 }
bellard457831f2004-07-14 17:22:33 +000092 ds->width = w;
93 ds->height = h;
bellard0f0b7262003-08-09 18:26:36 +000094}
95
bellard3d11d0e2004-12-12 16:56:30 +000096/* generic keyboard conversion */
bellarde58d12e2004-07-05 22:13:07 +000097
bellard3d11d0e2004-12-12 16:56:30 +000098#include "sdl_keysym.h"
99#include "keymaps.c"
bellarde58d12e2004-07-05 22:13:07 +0000100
bellard3d11d0e2004-12-12 16:56:30 +0000101static kbd_layout_t *kbd_layout = NULL;
bellarde58d12e2004-07-05 22:13:07 +0000102
bellard3d11d0e2004-12-12 16:56:30 +0000103static uint8_t sdl_keyevent_to_keycode_generic(const SDL_KeyboardEvent *ev)
bellarde58d12e2004-07-05 22:13:07 +0000104{
bellard3d11d0e2004-12-12 16:56:30 +0000105 int keysym;
106 /* workaround for X11+SDL bug with AltGR */
107 keysym = ev->keysym.sym;
108 if (keysym == 0 && ev->keysym.scancode == 113)
109 keysym = SDLK_MODE;
bellard60659e32006-08-19 14:27:31 +0000110 /* For Japanese key '\' and '|' */
111 if (keysym == 92 && ev->keysym.scancode == 133) {
112 keysym = 0xa5;
113 }
bellard3d11d0e2004-12-12 16:56:30 +0000114 return keysym2scancode(kbd_layout, keysym);
bellarde58d12e2004-07-05 22:13:07 +0000115}
116
bellard3d11d0e2004-12-12 16:56:30 +0000117/* specific keyboard conversions from scan codes */
118
119#if defined(_WIN32)
bellarde58d12e2004-07-05 22:13:07 +0000120
121static uint8_t sdl_keyevent_to_keycode(const SDL_KeyboardEvent *ev)
122{
123 return ev->keysym.scancode;
124}
125
126#else
127
bellarde58d12e2004-07-05 22:13:07 +0000128static uint8_t sdl_keyevent_to_keycode(const SDL_KeyboardEvent *ev)
129{
130 int keycode;
131
132 keycode = ev->keysym.scancode;
133
134 if (keycode < 9) {
135 keycode = 0;
136 } else if (keycode < 97) {
137 keycode -= 8; /* just an offset */
bellard60659e32006-08-19 14:27:31 +0000138 } else if (keycode < 212) {
bellarde58d12e2004-07-05 22:13:07 +0000139 /* use conversion table */
ths6070dd02007-01-24 21:40:21 +0000140 keycode = _translate_keycode(keycode - 97);
bellarde58d12e2004-07-05 22:13:07 +0000141 } else {
142 keycode = 0;
143 }
144 return keycode;
145}
146
147#endif
148
bellard32ff25b2004-10-03 14:33:54 +0000149static void reset_keys(void)
150{
151 int i;
152 for(i = 0; i < 256; i++) {
153 if (modifiers_state[i]) {
154 if (i & 0x80)
155 kbd_put_keycode(0xe0);
156 kbd_put_keycode(i | 0x80);
157 modifiers_state[i] = 0;
158 }
159 }
160}
161
bellard0f0b7262003-08-09 18:26:36 +0000162static void sdl_process_key(SDL_KeyboardEvent *ev)
163{
bellard32ff25b2004-10-03 14:33:54 +0000164 int keycode, v;
bellardde2200d2004-06-04 13:15:06 +0000165
166 if (ev->keysym.sym == SDLK_PAUSE) {
167 /* specific case */
168 v = 0;
169 if (ev->type == SDL_KEYUP)
170 v |= 0x80;
171 kbd_put_keycode(0xe1);
172 kbd_put_keycode(0x1d | v);
173 kbd_put_keycode(0x45 | v);
174 return;
175 }
176
bellard3d11d0e2004-12-12 16:56:30 +0000177 if (kbd_layout) {
178 keycode = sdl_keyevent_to_keycode_generic(ev);
179 } else {
180 keycode = sdl_keyevent_to_keycode(ev);
181 }
bellardde2200d2004-06-04 13:15:06 +0000182
183 switch(keycode) {
184 case 0x00:
185 /* sent when leaving window: reset the modifiers state */
bellard32ff25b2004-10-03 14:33:54 +0000186 reset_keys();
bellardde2200d2004-06-04 13:15:06 +0000187 return;
188 case 0x2a: /* Left Shift */
189 case 0x36: /* Right Shift */
190 case 0x1d: /* Left CTRL */
191 case 0x9d: /* Right CTRL */
192 case 0x38: /* Left ALT */
193 case 0xb8: /* Right ALT */
bellard0f0b7262003-08-09 18:26:36 +0000194 if (ev->type == SDL_KEYUP)
bellardde2200d2004-06-04 13:15:06 +0000195 modifiers_state[keycode] = 0;
196 else
197 modifiers_state[keycode] = 1;
198 break;
199 case 0x45: /* num lock */
200 case 0x3a: /* caps lock */
201 /* SDL does not send the key up event, so we generate it */
202 kbd_put_keycode(keycode);
203 kbd_put_keycode(keycode | 0x80);
204 return;
bellard0f0b7262003-08-09 18:26:36 +0000205 }
bellardde2200d2004-06-04 13:15:06 +0000206
207 /* now send the key code */
208 if (keycode & 0x80)
209 kbd_put_keycode(0xe0);
210 if (ev->type == SDL_KEYUP)
211 kbd_put_keycode(keycode | 0x80);
212 else
213 kbd_put_keycode(keycode & 0x7f);
bellard0f0b7262003-08-09 18:26:36 +0000214}
215
bellard8a7ddc32004-03-31 19:00:16 +0000216static void sdl_update_caption(void)
217{
218 char buf[1024];
219 strcpy(buf, "QEMU");
220 if (!vm_running) {
221 strcat(buf, " [Stopped]");
222 }
223 if (gui_grab) {
bellard32ff25b2004-10-03 14:33:54 +0000224 strcat(buf, " - Press Ctrl-Alt to exit grab");
bellard8a7ddc32004-03-31 19:00:16 +0000225 }
226 SDL_WM_SetCaption(buf, "QEMU");
227}
228
bellard09b26c52006-04-12 21:09:08 +0000229static void sdl_hide_cursor(void)
230{
bellard8785a8d2006-06-13 10:49:12 +0000231 if (kbd_mouse_is_absolute()) {
232 SDL_ShowCursor(1);
233 SDL_SetCursor(sdl_cursor_hidden);
234 } else {
235 SDL_ShowCursor(0);
236 }
bellard09b26c52006-04-12 21:09:08 +0000237}
238
239static void sdl_show_cursor(void)
240{
241 if (!kbd_mouse_is_absolute()) {
bellard8785a8d2006-06-13 10:49:12 +0000242 SDL_ShowCursor(1);
ths455204e2007-01-05 16:42:13 +0000243 SDL_SetCursor(sdl_cursor_normal);
bellard09b26c52006-04-12 21:09:08 +0000244 }
245}
246
bellard0f0b7262003-08-09 18:26:36 +0000247static void sdl_grab_start(void)
248{
bellard09b26c52006-04-12 21:09:08 +0000249 sdl_hide_cursor();
bellard0f0b7262003-08-09 18:26:36 +0000250 SDL_WM_GrabInput(SDL_GRAB_ON);
251 /* dummy read to avoid moving the mouse */
252 SDL_GetRelativeMouseState(NULL, NULL);
253 gui_grab = 1;
bellard8a7ddc32004-03-31 19:00:16 +0000254 sdl_update_caption();
bellard0f0b7262003-08-09 18:26:36 +0000255}
256
257static void sdl_grab_end(void)
258{
bellard0f0b7262003-08-09 18:26:36 +0000259 SDL_WM_GrabInput(SDL_GRAB_OFF);
bellard09b26c52006-04-12 21:09:08 +0000260 sdl_show_cursor();
bellard0f0b7262003-08-09 18:26:36 +0000261 gui_grab = 0;
bellard8a7ddc32004-03-31 19:00:16 +0000262 sdl_update_caption();
bellard0f0b7262003-08-09 18:26:36 +0000263}
264
bellard18a6d282005-01-17 22:32:23 +0000265static void sdl_send_mouse_event(int dz)
bellard0f0b7262003-08-09 18:26:36 +0000266{
bellard18a6d282005-01-17 22:32:23 +0000267 int dx, dy, state, buttons;
bellard0f0b7262003-08-09 18:26:36 +0000268 state = SDL_GetRelativeMouseState(&dx, &dy);
269 buttons = 0;
270 if (state & SDL_BUTTON(SDL_BUTTON_LEFT))
271 buttons |= MOUSE_EVENT_LBUTTON;
272 if (state & SDL_BUTTON(SDL_BUTTON_RIGHT))
273 buttons |= MOUSE_EVENT_RBUTTON;
274 if (state & SDL_BUTTON(SDL_BUTTON_MIDDLE))
275 buttons |= MOUSE_EVENT_MBUTTON;
bellard09b26c52006-04-12 21:09:08 +0000276
277 if (kbd_mouse_is_absolute()) {
278 if (!absolute_enabled) {
279 sdl_hide_cursor();
280 if (gui_grab) {
281 sdl_grab_end();
282 }
283 absolute_enabled = 1;
284 }
285
286 SDL_GetMouseState(&dx, &dy);
287 dx = dx * 0x7FFF / width;
288 dy = dy * 0x7FFF / height;
ths455204e2007-01-05 16:42:13 +0000289 } else if (absolute_enabled) {
290 sdl_show_cursor();
291 absolute_enabled = 0;
bellard09b26c52006-04-12 21:09:08 +0000292 }
293
bellard0f0b7262003-08-09 18:26:36 +0000294 kbd_mouse_event(dx, dy, dz, buttons);
295}
296
bellard8e9c4af2004-04-28 19:33:40 +0000297static void toggle_full_screen(DisplayState *ds)
298{
299 gui_fullscreen = !gui_fullscreen;
300 sdl_resize(ds, screen->w, screen->h);
301 if (gui_fullscreen) {
302 gui_saved_grab = gui_grab;
303 sdl_grab_start();
304 } else {
305 if (!gui_saved_grab)
306 sdl_grab_end();
307 }
pbrook95219892006-04-09 01:06:34 +0000308 vga_hw_invalidate();
309 vga_hw_update();
bellard8e9c4af2004-04-28 19:33:40 +0000310}
311
bellard0f0b7262003-08-09 18:26:36 +0000312static void sdl_refresh(DisplayState *ds)
313{
314 SDL_Event ev1, *ev = &ev1;
bellard8e9c4af2004-04-28 19:33:40 +0000315 int mod_state;
316
bellard8a7ddc32004-03-31 19:00:16 +0000317 if (last_vm_running != vm_running) {
318 last_vm_running = vm_running;
319 sdl_update_caption();
320 }
321
pbrook95219892006-04-09 01:06:34 +0000322 vga_hw_update();
bellard457831f2004-07-14 17:22:33 +0000323
bellard0f0b7262003-08-09 18:26:36 +0000324 while (SDL_PollEvent(ev)) {
325 switch (ev->type) {
326 case SDL_VIDEOEXPOSE:
327 sdl_update(ds, 0, 0, screen->w, screen->h);
328 break;
329 case SDL_KEYDOWN:
330 case SDL_KEYUP:
331 if (ev->type == SDL_KEYDOWN) {
bellard32ff25b2004-10-03 14:33:54 +0000332 mod_state = (SDL_GetModState() & gui_grab_code) ==
333 gui_grab_code;
bellard8e9c4af2004-04-28 19:33:40 +0000334 gui_key_modifier_pressed = mod_state;
bellard457831f2004-07-14 17:22:33 +0000335 if (gui_key_modifier_pressed) {
bellard32ff25b2004-10-03 14:33:54 +0000336 int keycode;
337 keycode = sdl_keyevent_to_keycode(&ev->key);
338 switch(keycode) {
339 case 0x21: /* 'f' key on US keyboard */
bellard457831f2004-07-14 17:22:33 +0000340 toggle_full_screen(ds);
341 gui_keysym = 1;
342 break;
bellard32ff25b2004-10-03 14:33:54 +0000343 case 0x02 ... 0x0a: /* '1' to '9' keys */
bellarddfd92d32006-08-17 10:42:46 +0000344 /* Reset the modifiers sent to the current console */
345 reset_keys();
bellard32ff25b2004-10-03 14:33:54 +0000346 console_select(keycode - 0x02);
pbrook95219892006-04-09 01:06:34 +0000347 if (!is_graphic_console()) {
bellard457831f2004-07-14 17:22:33 +0000348 /* display grab if going to a text console */
349 if (gui_grab)
350 sdl_grab_end();
351 }
352 gui_keysym = 1;
353 break;
354 default:
355 break;
356 }
pbrook95219892006-04-09 01:06:34 +0000357 } else if (!is_graphic_console()) {
bellard457831f2004-07-14 17:22:33 +0000358 int keysym;
359 keysym = 0;
360 if (ev->key.keysym.mod & (KMOD_LCTRL | KMOD_RCTRL)) {
361 switch(ev->key.keysym.sym) {
362 case SDLK_UP: keysym = QEMU_KEY_CTRL_UP; break;
363 case SDLK_DOWN: keysym = QEMU_KEY_CTRL_DOWN; break;
364 case SDLK_LEFT: keysym = QEMU_KEY_CTRL_LEFT; break;
365 case SDLK_RIGHT: keysym = QEMU_KEY_CTRL_RIGHT; break;
366 case SDLK_HOME: keysym = QEMU_KEY_CTRL_HOME; break;
367 case SDLK_END: keysym = QEMU_KEY_CTRL_END; break;
368 case SDLK_PAGEUP: keysym = QEMU_KEY_CTRL_PAGEUP; break;
369 case SDLK_PAGEDOWN: keysym = QEMU_KEY_CTRL_PAGEDOWN; break;
370 default: break;
371 }
372 } else {
373 switch(ev->key.keysym.sym) {
374 case SDLK_UP: keysym = QEMU_KEY_UP; break;
375 case SDLK_DOWN: keysym = QEMU_KEY_DOWN; break;
376 case SDLK_LEFT: keysym = QEMU_KEY_LEFT; break;
377 case SDLK_RIGHT: keysym = QEMU_KEY_RIGHT; break;
378 case SDLK_HOME: keysym = QEMU_KEY_HOME; break;
379 case SDLK_END: keysym = QEMU_KEY_END; break;
380 case SDLK_PAGEUP: keysym = QEMU_KEY_PAGEUP; break;
381 case SDLK_PAGEDOWN: keysym = QEMU_KEY_PAGEDOWN; break;
382 case SDLK_BACKSPACE: keysym = QEMU_KEY_BACKSPACE; break; case SDLK_DELETE: keysym = QEMU_KEY_DELETE; break;
383 default: break;
384 }
385 }
386 if (keysym) {
387 kbd_put_keysym(keysym);
388 } else if (ev->key.keysym.unicode != 0) {
389 kbd_put_keysym(ev->key.keysym.unicode);
390 }
bellard8e9c4af2004-04-28 19:33:40 +0000391 }
392 } else if (ev->type == SDL_KEYUP) {
bellardbf2b84e2004-11-14 19:46:35 +0000393 mod_state = (ev->key.keysym.mod & gui_grab_code);
bellard8e9c4af2004-04-28 19:33:40 +0000394 if (!mod_state) {
395 if (gui_key_modifier_pressed) {
pbrook5b311872006-03-11 20:07:45 +0000396 gui_key_modifier_pressed = 0;
bellard457831f2004-07-14 17:22:33 +0000397 if (gui_keysym == 0) {
bellard32ff25b2004-10-03 14:33:54 +0000398 /* exit/enter grab if pressing Ctrl-Alt */
bellardc66b0d42006-06-13 12:03:53 +0000399 if (!gui_grab) {
400 /* if the application is not active,
401 do not try to enter grab state. It
402 prevents
403 'SDL_WM_GrabInput(SDL_GRAB_ON)'
404 from blocking all the application
405 (SDL bug). */
406 if (SDL_GetAppState() & SDL_APPACTIVE)
407 sdl_grab_start();
408 } else {
bellard8e9c4af2004-04-28 19:33:40 +0000409 sdl_grab_end();
bellardc66b0d42006-06-13 12:03:53 +0000410 }
bellard32ff25b2004-10-03 14:33:54 +0000411 /* SDL does not send back all the
412 modifiers key, so we must correct it */
413 reset_keys();
bellard8e9c4af2004-04-28 19:33:40 +0000414 break;
415 }
bellard8e9c4af2004-04-28 19:33:40 +0000416 gui_keysym = 0;
417 }
bellard0f0b7262003-08-09 18:26:36 +0000418 }
419 }
bellarddfd92d32006-08-17 10:42:46 +0000420 if (is_graphic_console() && !gui_keysym)
bellard457831f2004-07-14 17:22:33 +0000421 sdl_process_key(&ev->key);
bellard0f0b7262003-08-09 18:26:36 +0000422 break;
423 case SDL_QUIT:
ths667acca2006-12-11 02:08:05 +0000424 if (!no_quit) {
425 qemu_system_shutdown_request();
426 }
bellard0f0b7262003-08-09 18:26:36 +0000427 break;
428 case SDL_MOUSEMOTION:
ths455204e2007-01-05 16:42:13 +0000429 if (gui_grab || kbd_mouse_is_absolute() ||
430 absolute_enabled) {
bellard18a6d282005-01-17 22:32:23 +0000431 sdl_send_mouse_event(0);
bellard0f0b7262003-08-09 18:26:36 +0000432 }
433 break;
434 case SDL_MOUSEBUTTONDOWN:
435 case SDL_MOUSEBUTTONUP:
436 {
437 SDL_MouseButtonEvent *bev = &ev->button;
bellard09b26c52006-04-12 21:09:08 +0000438 if (!gui_grab && !kbd_mouse_is_absolute()) {
bellard0f0b7262003-08-09 18:26:36 +0000439 if (ev->type == SDL_MOUSEBUTTONDOWN &&
440 (bev->state & SDL_BUTTON_LMASK)) {
441 /* start grabbing all events */
442 sdl_grab_start();
443 }
444 } else {
bellard18a6d282005-01-17 22:32:23 +0000445 int dz;
446 dz = 0;
447#ifdef SDL_BUTTON_WHEELUP
bellard09b26c52006-04-12 21:09:08 +0000448 if (bev->button == SDL_BUTTON_WHEELUP && ev->type == SDL_MOUSEBUTTONDOWN) {
bellard18a6d282005-01-17 22:32:23 +0000449 dz = -1;
bellard09b26c52006-04-12 21:09:08 +0000450 } else if (bev->button == SDL_BUTTON_WHEELDOWN && ev->type == SDL_MOUSEBUTTONDOWN) {
bellard18a6d282005-01-17 22:32:23 +0000451 dz = 1;
452 }
453#endif
454 sdl_send_mouse_event(dz);
bellard0f0b7262003-08-09 18:26:36 +0000455 }
456 }
457 break;
bellard0294ffb2004-04-29 22:15:15 +0000458 case SDL_ACTIVEEVENT:
pbrook5b311872006-03-11 20:07:45 +0000459 if (gui_grab && ev->active.state == SDL_APPINPUTFOCUS &&
460 !ev->active.gain && !gui_fullscreen_initial_grab) {
bellard0294ffb2004-04-29 22:15:15 +0000461 sdl_grab_end();
462 }
463 break;
bellard0f0b7262003-08-09 18:26:36 +0000464 default:
465 break;
466 }
467 }
468}
469
bellard898712a2004-02-06 19:56:42 +0000470static void sdl_cleanup(void)
471{
472 SDL_Quit();
473}
474
ths43523e92007-02-18 18:19:32 +0000475void sdl_display_init(DisplayState *ds, int full_screen, int no_frame)
bellard0f0b7262003-08-09 18:26:36 +0000476{
477 int flags;
bellard09b26c52006-04-12 21:09:08 +0000478 uint8_t data = 0;
bellard0f0b7262003-08-09 18:26:36 +0000479
bellard3d11d0e2004-12-12 16:56:30 +0000480#if defined(__APPLE__)
481 /* always use generic keymaps */
482 if (!keyboard_layout)
483 keyboard_layout = "en-us";
484#endif
485 if(keyboard_layout) {
486 kbd_layout = init_keyboard_layout(keyboard_layout);
487 if (!kbd_layout)
488 exit(1);
489 }
490
ths43523e92007-02-18 18:19:32 +0000491 if (no_frame)
492 gui_noframe = 1;
493
bellard0f0b7262003-08-09 18:26:36 +0000494 flags = SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE;
495 if (SDL_Init (flags)) {
496 fprintf(stderr, "Could not initialize SDL - exiting\n");
497 exit(1);
498 }
bellard67b915a2004-03-31 23:37:16 +0000499#ifndef _WIN32
bellard0ae04d72003-09-30 21:09:16 +0000500 /* NOTE: we still want Ctrl-C to work, so we undo the SDL redirections */
501 signal(SIGINT, SIG_DFL);
502 signal(SIGQUIT, SIG_DFL);
bellard67b915a2004-03-31 23:37:16 +0000503#endif
bellard0ae04d72003-09-30 21:09:16 +0000504
bellard0f0b7262003-08-09 18:26:36 +0000505 ds->dpy_update = sdl_update;
506 ds->dpy_resize = sdl_resize;
507 ds->dpy_refresh = sdl_refresh;
508
509 sdl_resize(ds, 640, 400);
bellard8a7ddc32004-03-31 19:00:16 +0000510 sdl_update_caption();
bellard0f0b7262003-08-09 18:26:36 +0000511 SDL_EnableKeyRepeat(250, 50);
bellard457831f2004-07-14 17:22:33 +0000512 SDL_EnableUNICODE(1);
bellard0f0b7262003-08-09 18:26:36 +0000513 gui_grab = 0;
bellard898712a2004-02-06 19:56:42 +0000514
bellard09b26c52006-04-12 21:09:08 +0000515 sdl_cursor_hidden = SDL_CreateCursor(&data, &data, 8, 1, 0, 0);
516 sdl_cursor_normal = SDL_GetCursor();
517
bellard898712a2004-02-06 19:56:42 +0000518 atexit(sdl_cleanup);
bellardd63d3072004-10-03 13:29:03 +0000519 if (full_screen) {
520 gui_fullscreen = 1;
521 gui_fullscreen_initial_grab = 1;
522 sdl_grab_start();
523 }
bellard0f0b7262003-08-09 18:26:36 +0000524}