blob: 20e45d93f049ec78357dbdb0fb4eff16286128e3 [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;
37static int gui_key_modifier_pressed;
38static int gui_keysym;
bellardd63d3072004-10-03 13:29:03 +000039static int gui_fullscreen_initial_grab;
bellard32ff25b2004-10-03 14:33:54 +000040static int gui_grab_code = KMOD_LALT | KMOD_LCTRL;
41static uint8_t modifiers_state[256];
bellard0f0b7262003-08-09 18:26:36 +000042
43static void sdl_update(DisplayState *ds, int x, int y, int w, int h)
44{
bellard898712a2004-02-06 19:56:42 +000045 // printf("updating x=%d y=%d w=%d h=%d\n", x, y, w, h);
bellard0f0b7262003-08-09 18:26:36 +000046 SDL_UpdateRect(screen, x, y, w, h);
47}
48
49static void sdl_resize(DisplayState *ds, int w, int h)
50{
51 int flags;
52
53 // printf("resizing to %d %d\n", w, h);
54
55 flags = SDL_HWSURFACE|SDL_ASYNCBLIT|SDL_HWACCEL;
56 flags |= SDL_RESIZABLE;
bellard8e9c4af2004-04-28 19:33:40 +000057 if (gui_fullscreen)
58 flags |= SDL_FULLSCREEN;
bellard0f0b7262003-08-09 18:26:36 +000059 screen = SDL_SetVideoMode(w, h, 0, flags);
60 if (!screen) {
61 fprintf(stderr, "Could not open SDL display\n");
62 exit(1);
63 }
64 ds->data = screen->pixels;
65 ds->linesize = screen->pitch;
66 ds->depth = screen->format->BitsPerPixel;
bellard457831f2004-07-14 17:22:33 +000067 ds->width = w;
68 ds->height = h;
bellard0f0b7262003-08-09 18:26:36 +000069}
70
bellard3d11d0e2004-12-12 16:56:30 +000071/* generic keyboard conversion */
bellarde58d12e2004-07-05 22:13:07 +000072
bellard3d11d0e2004-12-12 16:56:30 +000073#include "sdl_keysym.h"
74#include "keymaps.c"
bellarde58d12e2004-07-05 22:13:07 +000075
bellard3d11d0e2004-12-12 16:56:30 +000076static kbd_layout_t *kbd_layout = NULL;
bellarde58d12e2004-07-05 22:13:07 +000077
bellard3d11d0e2004-12-12 16:56:30 +000078static uint8_t sdl_keyevent_to_keycode_generic(const SDL_KeyboardEvent *ev)
bellarde58d12e2004-07-05 22:13:07 +000079{
bellard3d11d0e2004-12-12 16:56:30 +000080 int keysym;
81 /* workaround for X11+SDL bug with AltGR */
82 keysym = ev->keysym.sym;
83 if (keysym == 0 && ev->keysym.scancode == 113)
84 keysym = SDLK_MODE;
85 return keysym2scancode(kbd_layout, keysym);
bellarde58d12e2004-07-05 22:13:07 +000086}
87
bellard3d11d0e2004-12-12 16:56:30 +000088/* specific keyboard conversions from scan codes */
89
90#if defined(_WIN32)
bellarde58d12e2004-07-05 22:13:07 +000091
92static uint8_t sdl_keyevent_to_keycode(const SDL_KeyboardEvent *ev)
93{
94 return ev->keysym.scancode;
95}
96
97#else
98
bellardde2200d2004-06-04 13:15:06 +000099static const uint8_t x_keycode_to_pc_keycode[61] = {
100 0xc7, /* 97 Home */
101 0xc8, /* 98 Up */
102 0xc9, /* 99 PgUp */
103 0xcb, /* 100 Left */
bellard0f0b7262003-08-09 18:26:36 +0000104 0x4c, /* 101 KP-5 */
bellardde2200d2004-06-04 13:15:06 +0000105 0xcd, /* 102 Right */
106 0xcf, /* 103 End */
107 0xd0, /* 104 Down */
108 0xd1, /* 105 PgDn */
109 0xd2, /* 106 Ins */
110 0xd3, /* 107 Del */
111 0x9c, /* 108 Enter */
112 0x9d, /* 109 Ctrl-R */
bellard22a56b82004-06-05 08:32:36 +0000113 0x0, /* 110 Pause */
bellardde2200d2004-06-04 13:15:06 +0000114 0xb7, /* 111 Print */
115 0xb5, /* 112 Divide */
116 0xb8, /* 113 Alt-R */
117 0xc6, /* 114 Break */
bellard0f0b7262003-08-09 18:26:36 +0000118 0x0, /* 115 */
119 0x0, /* 116 */
120 0x0, /* 117 */
121 0x0, /* 118 */
122 0x0, /* 119 */
bellardb71e95f2004-05-20 13:08:06 +0000123 0x70, /* 120 Hiragana_Katakana */
bellard0f0b7262003-08-09 18:26:36 +0000124 0x0, /* 121 */
125 0x0, /* 122 */
bellardb71e95f2004-05-20 13:08:06 +0000126 0x73, /* 123 backslash */
bellard0f0b7262003-08-09 18:26:36 +0000127 0x0, /* 124 */
128 0x0, /* 125 */
129 0x0, /* 126 */
130 0x0, /* 127 */
131 0x0, /* 128 */
bellardb71e95f2004-05-20 13:08:06 +0000132 0x79, /* 129 Henkan */
bellard0f0b7262003-08-09 18:26:36 +0000133 0x0, /* 130 */
bellardb71e95f2004-05-20 13:08:06 +0000134 0x7b, /* 131 Muhenkan */
bellard0f0b7262003-08-09 18:26:36 +0000135 0x0, /* 132 */
bellardb71e95f2004-05-20 13:08:06 +0000136 0x7d, /* 133 Yen */
bellard0f0b7262003-08-09 18:26:36 +0000137 0x0, /* 134 */
138 0x0, /* 135 */
139 0x47, /* 136 KP_7 */
140 0x48, /* 137 KP_8 */
141 0x49, /* 138 KP_9 */
142 0x4b, /* 139 KP_4 */
143 0x4c, /* 140 KP_5 */
144 0x4d, /* 141 KP_6 */
145 0x4f, /* 142 KP_1 */
146 0x50, /* 143 KP_2 */
147 0x51, /* 144 KP_3 */
148 0x52, /* 145 KP_0 */
149 0x53, /* 146 KP_. */
150 0x47, /* 147 KP_HOME */
151 0x48, /* 148 KP_UP */
152 0x49, /* 149 KP_PgUp */
153 0x4b, /* 150 KP_Left */
154 0x4c, /* 151 KP_ */
155 0x4d, /* 152 KP_Right */
156 0x4f, /* 153 KP_End */
157 0x50, /* 154 KP_Down */
158 0x51, /* 155 KP_PgDn */
159 0x52, /* 156 KP_Ins */
160 0x53, /* 157 KP_Del */
161};
162
bellarde58d12e2004-07-05 22:13:07 +0000163static uint8_t sdl_keyevent_to_keycode(const SDL_KeyboardEvent *ev)
164{
165 int keycode;
166
167 keycode = ev->keysym.scancode;
168
169 if (keycode < 9) {
170 keycode = 0;
171 } else if (keycode < 97) {
172 keycode -= 8; /* just an offset */
173 } else if (keycode < 158) {
174 /* use conversion table */
175 keycode = x_keycode_to_pc_keycode[keycode - 97];
176 } else {
177 keycode = 0;
178 }
179 return keycode;
180}
181
182#endif
183
bellard32ff25b2004-10-03 14:33:54 +0000184static void reset_keys(void)
185{
186 int i;
187 for(i = 0; i < 256; i++) {
188 if (modifiers_state[i]) {
189 if (i & 0x80)
190 kbd_put_keycode(0xe0);
191 kbd_put_keycode(i | 0x80);
192 modifiers_state[i] = 0;
193 }
194 }
195}
196
bellard0f0b7262003-08-09 18:26:36 +0000197static void sdl_process_key(SDL_KeyboardEvent *ev)
198{
bellard32ff25b2004-10-03 14:33:54 +0000199 int keycode, v;
bellardde2200d2004-06-04 13:15:06 +0000200
201 if (ev->keysym.sym == SDLK_PAUSE) {
202 /* specific case */
203 v = 0;
204 if (ev->type == SDL_KEYUP)
205 v |= 0x80;
206 kbd_put_keycode(0xe1);
207 kbd_put_keycode(0x1d | v);
208 kbd_put_keycode(0x45 | v);
209 return;
210 }
211
bellard3d11d0e2004-12-12 16:56:30 +0000212 if (kbd_layout) {
213 keycode = sdl_keyevent_to_keycode_generic(ev);
214 } else {
215 keycode = sdl_keyevent_to_keycode(ev);
216 }
bellardde2200d2004-06-04 13:15:06 +0000217
218 switch(keycode) {
219 case 0x00:
220 /* sent when leaving window: reset the modifiers state */
bellard32ff25b2004-10-03 14:33:54 +0000221 reset_keys();
bellardde2200d2004-06-04 13:15:06 +0000222 return;
223 case 0x2a: /* Left Shift */
224 case 0x36: /* Right Shift */
225 case 0x1d: /* Left CTRL */
226 case 0x9d: /* Right CTRL */
227 case 0x38: /* Left ALT */
228 case 0xb8: /* Right ALT */
bellard0f0b7262003-08-09 18:26:36 +0000229 if (ev->type == SDL_KEYUP)
bellardde2200d2004-06-04 13:15:06 +0000230 modifiers_state[keycode] = 0;
231 else
232 modifiers_state[keycode] = 1;
233 break;
234 case 0x45: /* num lock */
235 case 0x3a: /* caps lock */
236 /* SDL does not send the key up event, so we generate it */
237 kbd_put_keycode(keycode);
238 kbd_put_keycode(keycode | 0x80);
239 return;
bellard0f0b7262003-08-09 18:26:36 +0000240 }
bellardde2200d2004-06-04 13:15:06 +0000241
242 /* now send the key code */
243 if (keycode & 0x80)
244 kbd_put_keycode(0xe0);
245 if (ev->type == SDL_KEYUP)
246 kbd_put_keycode(keycode | 0x80);
247 else
248 kbd_put_keycode(keycode & 0x7f);
bellard0f0b7262003-08-09 18:26:36 +0000249}
250
bellard8a7ddc32004-03-31 19:00:16 +0000251static void sdl_update_caption(void)
252{
253 char buf[1024];
254 strcpy(buf, "QEMU");
255 if (!vm_running) {
256 strcat(buf, " [Stopped]");
257 }
258 if (gui_grab) {
bellard32ff25b2004-10-03 14:33:54 +0000259 strcat(buf, " - Press Ctrl-Alt to exit grab");
bellard8a7ddc32004-03-31 19:00:16 +0000260 }
261 SDL_WM_SetCaption(buf, "QEMU");
262}
263
bellard0f0b7262003-08-09 18:26:36 +0000264static void sdl_grab_start(void)
265{
bellard0f0b7262003-08-09 18:26:36 +0000266 SDL_ShowCursor(0);
267 SDL_WM_GrabInput(SDL_GRAB_ON);
268 /* dummy read to avoid moving the mouse */
269 SDL_GetRelativeMouseState(NULL, NULL);
270 gui_grab = 1;
bellard8a7ddc32004-03-31 19:00:16 +0000271 sdl_update_caption();
bellard0f0b7262003-08-09 18:26:36 +0000272}
273
274static void sdl_grab_end(void)
275{
bellard0f0b7262003-08-09 18:26:36 +0000276 SDL_WM_GrabInput(SDL_GRAB_OFF);
277 SDL_ShowCursor(1);
278 gui_grab = 0;
bellard8a7ddc32004-03-31 19:00:16 +0000279 sdl_update_caption();
bellard0f0b7262003-08-09 18:26:36 +0000280}
281
bellard18a6d282005-01-17 22:32:23 +0000282static void sdl_send_mouse_event(int dz)
bellard0f0b7262003-08-09 18:26:36 +0000283{
bellard18a6d282005-01-17 22:32:23 +0000284 int dx, dy, state, buttons;
bellard0f0b7262003-08-09 18:26:36 +0000285 state = SDL_GetRelativeMouseState(&dx, &dy);
286 buttons = 0;
287 if (state & SDL_BUTTON(SDL_BUTTON_LEFT))
288 buttons |= MOUSE_EVENT_LBUTTON;
289 if (state & SDL_BUTTON(SDL_BUTTON_RIGHT))
290 buttons |= MOUSE_EVENT_RBUTTON;
291 if (state & SDL_BUTTON(SDL_BUTTON_MIDDLE))
292 buttons |= MOUSE_EVENT_MBUTTON;
bellard0f0b7262003-08-09 18:26:36 +0000293 kbd_mouse_event(dx, dy, dz, buttons);
294}
295
bellard8e9c4af2004-04-28 19:33:40 +0000296static void toggle_full_screen(DisplayState *ds)
297{
298 gui_fullscreen = !gui_fullscreen;
299 sdl_resize(ds, screen->w, screen->h);
300 if (gui_fullscreen) {
301 gui_saved_grab = gui_grab;
302 sdl_grab_start();
303 } else {
304 if (!gui_saved_grab)
305 sdl_grab_end();
306 }
bellardee38b4c2004-06-08 00:56:42 +0000307 vga_invalidate_display();
bellard8e9c4af2004-04-28 19:33:40 +0000308 vga_update_display();
bellard8e9c4af2004-04-28 19:33:40 +0000309}
310
bellard0f0b7262003-08-09 18:26:36 +0000311static void sdl_refresh(DisplayState *ds)
312{
313 SDL_Event ev1, *ev = &ev1;
bellard8e9c4af2004-04-28 19:33:40 +0000314 int mod_state;
315
bellard8a7ddc32004-03-31 19:00:16 +0000316 if (last_vm_running != vm_running) {
317 last_vm_running = vm_running;
318 sdl_update_caption();
319 }
320
bellard457831f2004-07-14 17:22:33 +0000321 if (is_active_console(vga_console))
322 vga_update_display();
323
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 */
344 console_select(keycode - 0x02);
bellard457831f2004-07-14 17:22:33 +0000345 if (is_active_console(vga_console)) {
346 /* tell the vga console to redisplay itself */
347 vga_invalidate_display();
348 } else {
349 /* display grab if going to a text console */
350 if (gui_grab)
351 sdl_grab_end();
352 }
353 gui_keysym = 1;
354 break;
355 default:
356 break;
357 }
bellard32ff25b2004-10-03 14:33:54 +0000358 } else if (!is_active_console(vga_console)) {
bellard457831f2004-07-14 17:22:33 +0000359 int keysym;
360 keysym = 0;
361 if (ev->key.keysym.mod & (KMOD_LCTRL | KMOD_RCTRL)) {
362 switch(ev->key.keysym.sym) {
363 case SDLK_UP: keysym = QEMU_KEY_CTRL_UP; break;
364 case SDLK_DOWN: keysym = QEMU_KEY_CTRL_DOWN; break;
365 case SDLK_LEFT: keysym = QEMU_KEY_CTRL_LEFT; break;
366 case SDLK_RIGHT: keysym = QEMU_KEY_CTRL_RIGHT; break;
367 case SDLK_HOME: keysym = QEMU_KEY_CTRL_HOME; break;
368 case SDLK_END: keysym = QEMU_KEY_CTRL_END; break;
369 case SDLK_PAGEUP: keysym = QEMU_KEY_CTRL_PAGEUP; break;
370 case SDLK_PAGEDOWN: keysym = QEMU_KEY_CTRL_PAGEDOWN; break;
371 default: break;
372 }
373 } else {
374 switch(ev->key.keysym.sym) {
375 case SDLK_UP: keysym = QEMU_KEY_UP; break;
376 case SDLK_DOWN: keysym = QEMU_KEY_DOWN; break;
377 case SDLK_LEFT: keysym = QEMU_KEY_LEFT; break;
378 case SDLK_RIGHT: keysym = QEMU_KEY_RIGHT; break;
379 case SDLK_HOME: keysym = QEMU_KEY_HOME; break;
380 case SDLK_END: keysym = QEMU_KEY_END; break;
381 case SDLK_PAGEUP: keysym = QEMU_KEY_PAGEUP; break;
382 case SDLK_PAGEDOWN: keysym = QEMU_KEY_PAGEDOWN; break;
383 case SDLK_BACKSPACE: keysym = QEMU_KEY_BACKSPACE; break; case SDLK_DELETE: keysym = QEMU_KEY_DELETE; break;
384 default: break;
385 }
386 }
387 if (keysym) {
388 kbd_put_keysym(keysym);
389 } else if (ev->key.keysym.unicode != 0) {
390 kbd_put_keysym(ev->key.keysym.unicode);
391 }
bellard8e9c4af2004-04-28 19:33:40 +0000392 }
393 } else if (ev->type == SDL_KEYUP) {
bellardbf2b84e2004-11-14 19:46:35 +0000394 mod_state = (ev->key.keysym.mod & gui_grab_code);
bellard8e9c4af2004-04-28 19:33:40 +0000395 if (!mod_state) {
396 if (gui_key_modifier_pressed) {
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 */
bellard8e9c4af2004-04-28 19:33:40 +0000399 if (!gui_grab)
400 sdl_grab_start();
401 else
402 sdl_grab_end();
bellard32ff25b2004-10-03 14:33:54 +0000403 /* SDL does not send back all the
404 modifiers key, so we must correct it */
405 reset_keys();
bellard8e9c4af2004-04-28 19:33:40 +0000406 break;
407 }
408 gui_key_modifier_pressed = 0;
409 gui_keysym = 0;
410 }
bellard0f0b7262003-08-09 18:26:36 +0000411 }
412 }
bellard457831f2004-07-14 17:22:33 +0000413 if (is_active_console(vga_console))
414 sdl_process_key(&ev->key);
bellard0f0b7262003-08-09 18:26:36 +0000415 break;
416 case SDL_QUIT:
bellard979a54f2004-06-20 12:36:04 +0000417 qemu_system_shutdown_request();
bellard0f0b7262003-08-09 18:26:36 +0000418 break;
419 case SDL_MOUSEMOTION:
420 if (gui_grab) {
bellard18a6d282005-01-17 22:32:23 +0000421 sdl_send_mouse_event(0);
bellard0f0b7262003-08-09 18:26:36 +0000422 }
423 break;
424 case SDL_MOUSEBUTTONDOWN:
425 case SDL_MOUSEBUTTONUP:
426 {
427 SDL_MouseButtonEvent *bev = &ev->button;
428 if (!gui_grab) {
429 if (ev->type == SDL_MOUSEBUTTONDOWN &&
430 (bev->state & SDL_BUTTON_LMASK)) {
431 /* start grabbing all events */
432 sdl_grab_start();
433 }
434 } else {
bellard18a6d282005-01-17 22:32:23 +0000435 int dz;
436 dz = 0;
437#ifdef SDL_BUTTON_WHEELUP
438 if (bev->button == SDL_BUTTON_WHEELUP) {
439 dz = -1;
440 } else if (bev->button == SDL_BUTTON_WHEELDOWN) {
441 dz = 1;
442 }
443#endif
444 sdl_send_mouse_event(dz);
bellard0f0b7262003-08-09 18:26:36 +0000445 }
446 }
447 break;
bellard0294ffb2004-04-29 22:15:15 +0000448 case SDL_ACTIVEEVENT:
bellardd63d3072004-10-03 13:29:03 +0000449 if (gui_grab && (ev->active.gain & SDL_ACTIVEEVENTMASK) == 0 &&
450 !gui_fullscreen_initial_grab) {
bellard0294ffb2004-04-29 22:15:15 +0000451 sdl_grab_end();
452 }
453 break;
bellard0f0b7262003-08-09 18:26:36 +0000454 default:
455 break;
456 }
457 }
458}
459
bellard898712a2004-02-06 19:56:42 +0000460static void sdl_cleanup(void)
461{
462 SDL_Quit();
463}
464
bellardd63d3072004-10-03 13:29:03 +0000465void sdl_display_init(DisplayState *ds, int full_screen)
bellard0f0b7262003-08-09 18:26:36 +0000466{
467 int flags;
468
bellard3d11d0e2004-12-12 16:56:30 +0000469#if defined(__APPLE__)
470 /* always use generic keymaps */
471 if (!keyboard_layout)
472 keyboard_layout = "en-us";
473#endif
474 if(keyboard_layout) {
475 kbd_layout = init_keyboard_layout(keyboard_layout);
476 if (!kbd_layout)
477 exit(1);
478 }
479
bellard0f0b7262003-08-09 18:26:36 +0000480 flags = SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE;
481 if (SDL_Init (flags)) {
482 fprintf(stderr, "Could not initialize SDL - exiting\n");
483 exit(1);
484 }
bellard67b915a2004-03-31 23:37:16 +0000485#ifndef _WIN32
bellard0ae04d72003-09-30 21:09:16 +0000486 /* NOTE: we still want Ctrl-C to work, so we undo the SDL redirections */
487 signal(SIGINT, SIG_DFL);
488 signal(SIGQUIT, SIG_DFL);
bellard67b915a2004-03-31 23:37:16 +0000489#endif
bellard0ae04d72003-09-30 21:09:16 +0000490
bellard0f0b7262003-08-09 18:26:36 +0000491 ds->dpy_update = sdl_update;
492 ds->dpy_resize = sdl_resize;
493 ds->dpy_refresh = sdl_refresh;
494
495 sdl_resize(ds, 640, 400);
bellard8a7ddc32004-03-31 19:00:16 +0000496 sdl_update_caption();
bellard0f0b7262003-08-09 18:26:36 +0000497 SDL_EnableKeyRepeat(250, 50);
bellard457831f2004-07-14 17:22:33 +0000498 SDL_EnableUNICODE(1);
bellard0f0b7262003-08-09 18:26:36 +0000499 gui_grab = 0;
bellard898712a2004-02-06 19:56:42 +0000500
501 atexit(sdl_cleanup);
bellardd63d3072004-10-03 13:29:03 +0000502 if (full_screen) {
503 gui_fullscreen = 1;
504 gui_fullscreen_initial_grab = 1;
505 sdl_grab_start();
506 }
bellard0f0b7262003-08-09 18:26:36 +0000507}