Statistics
| Branch: | Revision:

root / sdl.c @ 97eb5b14

History | View | Annotate | Download (8.1 kB)

1 0f0b7264 bellard
/*
2 0f0b7264 bellard
 * QEMU SDL display driver
3 0f0b7264 bellard
 * 
4 0f0b7264 bellard
 * Copyright (c) 2003 Fabrice Bellard
5 0f0b7264 bellard
 * 
6 0f0b7264 bellard
 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 0f0b7264 bellard
 * of this software and associated documentation files (the "Software"), to deal
8 0f0b7264 bellard
 * in the Software without restriction, including without limitation the rights
9 0f0b7264 bellard
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 0f0b7264 bellard
 * copies of the Software, and to permit persons to whom the Software is
11 0f0b7264 bellard
 * furnished to do so, subject to the following conditions:
12 0f0b7264 bellard
 *
13 0f0b7264 bellard
 * The above copyright notice and this permission notice shall be included in
14 0f0b7264 bellard
 * all copies or substantial portions of the Software.
15 0f0b7264 bellard
 *
16 0f0b7264 bellard
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 0f0b7264 bellard
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 0f0b7264 bellard
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 0f0b7264 bellard
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 0f0b7264 bellard
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 0f0b7264 bellard
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 0f0b7264 bellard
 * THE SOFTWARE.
23 0f0b7264 bellard
 */
24 0f0b7264 bellard
#include <stdlib.h>
25 0f0b7264 bellard
#include <stdio.h>
26 0f0b7264 bellard
#include <stdarg.h>
27 0f0b7264 bellard
#include <string.h>
28 0f0b7264 bellard
#include <getopt.h>
29 0f0b7264 bellard
#include <inttypes.h>
30 0f0b7264 bellard
#include <unistd.h>
31 0f0b7264 bellard
#include <sys/mman.h>
32 0f0b7264 bellard
#include <fcntl.h>
33 0f0b7264 bellard
#include <signal.h>
34 0f0b7264 bellard
#include <time.h>
35 0f0b7264 bellard
#include <sys/time.h>
36 0f0b7264 bellard
#include <malloc.h>
37 0f0b7264 bellard
#include <termios.h>
38 0f0b7264 bellard
#include <sys/poll.h>
39 0f0b7264 bellard
#include <errno.h>
40 0f0b7264 bellard
#include <sys/wait.h>
41 0f0b7264 bellard
#include <netinet/in.h>
42 0f0b7264 bellard
43 0f0b7264 bellard
#include <SDL.h>
44 0f0b7264 bellard
45 0ae04d73 bellard
#include "cpu.h"
46 0ae04d73 bellard
#include "exec-all.h"
47 0f0b7264 bellard
48 0f0b7264 bellard
#include "vl.h"
49 0f0b7264 bellard
50 0f0b7264 bellard
static SDL_Surface *screen;
51 0f0b7264 bellard
static int gui_grab; /* if true, all keyboard/mouse events are grabbed */
52 0f0b7264 bellard
53 0f0b7264 bellard
static void sdl_update(DisplayState *ds, int x, int y, int w, int h)
54 0f0b7264 bellard
{
55 898712a8 bellard
    //    printf("updating x=%d y=%d w=%d h=%d\n", x, y, w, h);
56 0f0b7264 bellard
    SDL_UpdateRect(screen, x, y, w, h);
57 0f0b7264 bellard
}
58 0f0b7264 bellard
59 0f0b7264 bellard
static void sdl_resize(DisplayState *ds, int w, int h)
60 0f0b7264 bellard
{
61 0f0b7264 bellard
    int flags;
62 0f0b7264 bellard
63 0f0b7264 bellard
    //    printf("resizing to %d %d\n", w, h);
64 0f0b7264 bellard
65 0f0b7264 bellard
    flags = SDL_HWSURFACE|SDL_ASYNCBLIT|SDL_HWACCEL;
66 0f0b7264 bellard
    flags |= SDL_RESIZABLE;
67 0f0b7264 bellard
    screen = SDL_SetVideoMode(w, h, 0, flags);
68 0f0b7264 bellard
    if (!screen) {
69 0f0b7264 bellard
        fprintf(stderr, "Could not open SDL display\n");
70 0f0b7264 bellard
        exit(1);
71 0f0b7264 bellard
    }
72 0f0b7264 bellard
    ds->data = screen->pixels;
73 0f0b7264 bellard
    ds->linesize = screen->pitch;
74 0f0b7264 bellard
    ds->depth = screen->format->BitsPerPixel;
75 0f0b7264 bellard
}
76 0f0b7264 bellard
77 0f0b7264 bellard
static const uint32_t x_keycode_to_pc_keycode[61] = {
78 0f0b7264 bellard
   0x47e0,      /*  97  Home   */
79 0f0b7264 bellard
   0x48e0,      /*  98  Up     */
80 0f0b7264 bellard
   0x49e0,      /*  99  PgUp   */
81 0f0b7264 bellard
   0x4be0,      /* 100  Left   */
82 0f0b7264 bellard
   0x4c,        /* 101  KP-5   */
83 0f0b7264 bellard
   0x4de0,      /* 102  Right  */
84 0f0b7264 bellard
   0x4fe0,      /* 103  End    */
85 0f0b7264 bellard
   0x50e0,      /* 104  Down   */
86 0f0b7264 bellard
   0x51e0,      /* 105  PgDn   */
87 0f0b7264 bellard
   0x52e0,      /* 106  Ins    */
88 0f0b7264 bellard
   0x53e0,      /* 107  Del    */
89 0f0b7264 bellard
   0x1ce0,      /* 108  Enter  */
90 0f0b7264 bellard
   0x1de0,      /* 109  Ctrl-R */
91 0f0b7264 bellard
   0x451de1,    /* 110  Pause  */
92 0f0b7264 bellard
   0x37e0,      /* 111  Print  */
93 0f0b7264 bellard
   0x35e0,      /* 112  Divide */
94 0f0b7264 bellard
   0x38e0,      /* 113  Alt-R  */
95 0f0b7264 bellard
   0x46e0,      /* 114  Break  */   
96 0f0b7264 bellard
   0x0,         /* 115 */
97 0f0b7264 bellard
   0x0,         /* 116 */
98 0f0b7264 bellard
   0x0,         /* 117 */
99 0f0b7264 bellard
   0x0,         /* 118 */
100 0f0b7264 bellard
   0x0,         /* 119 */
101 0f0b7264 bellard
   0x0,         /* 120 */
102 0f0b7264 bellard
   0x0,         /* 121 */
103 0f0b7264 bellard
   0x0,         /* 122 */
104 0f0b7264 bellard
   0x0,         /* 123 */
105 0f0b7264 bellard
   0x0,         /* 124 */
106 0f0b7264 bellard
   0x0,         /* 125 */
107 0f0b7264 bellard
   0x0,         /* 126 */
108 0f0b7264 bellard
   0x0,         /* 127 */
109 0f0b7264 bellard
   0x0,         /* 128 */
110 0f0b7264 bellard
   0x0,         /* 129 */
111 0f0b7264 bellard
   0x0,         /* 130 */
112 0f0b7264 bellard
   0x0,         /* 131 */
113 0f0b7264 bellard
   0x0,         /* 132 */
114 0f0b7264 bellard
   0x0,         /* 133 */
115 0f0b7264 bellard
   0x0,         /* 134 */
116 0f0b7264 bellard
   0x0,         /* 135 */
117 0f0b7264 bellard
   0x47,         /* 136 KP_7 */
118 0f0b7264 bellard
   0x48,         /* 137 KP_8 */
119 0f0b7264 bellard
   0x49,         /* 138 KP_9 */
120 0f0b7264 bellard
   0x4b,         /* 139 KP_4 */
121 0f0b7264 bellard
   0x4c,         /* 140 KP_5 */
122 0f0b7264 bellard
   0x4d,         /* 141 KP_6 */
123 0f0b7264 bellard
   0x4f,         /* 142 KP_1 */
124 0f0b7264 bellard
   0x50,         /* 143 KP_2 */
125 0f0b7264 bellard
   0x51,         /* 144 KP_3 */
126 0f0b7264 bellard
   0x52,         /* 145 KP_0 */
127 0f0b7264 bellard
   0x53,         /* 146 KP_. */
128 0f0b7264 bellard
   0x47,         /* 147 KP_HOME */
129 0f0b7264 bellard
   0x48,         /* 148 KP_UP */
130 0f0b7264 bellard
   0x49,         /* 149 KP_PgUp */
131 0f0b7264 bellard
   0x4b,         /* 150 KP_Left */
132 0f0b7264 bellard
   0x4c,         /* 151 KP_ */
133 0f0b7264 bellard
   0x4d,         /* 152 KP_Right */
134 0f0b7264 bellard
   0x4f,         /* 153 KP_End */
135 0f0b7264 bellard
   0x50,         /* 154 KP_Down */
136 0f0b7264 bellard
   0x51,         /* 155 KP_PgDn */
137 0f0b7264 bellard
   0x52,         /* 156 KP_Ins */
138 0f0b7264 bellard
   0x53,         /* 157 KP_Del */
139 0f0b7264 bellard
};
140 0f0b7264 bellard
141 0f0b7264 bellard
static void sdl_process_key(SDL_KeyboardEvent *ev)
142 0f0b7264 bellard
{
143 0f0b7264 bellard
    int keycode, v;
144 0f0b7264 bellard
    
145 0f0b7264 bellard
    /* XXX: not portable, but avoids complicated mappings */
146 0f0b7264 bellard
    keycode = ev->keysym.scancode;
147 0f0b7264 bellard
    if (keycode < 9) {
148 0f0b7264 bellard
        keycode = 0;
149 0f0b7264 bellard
    } else if (keycode < 97) {
150 0f0b7264 bellard
        keycode -= 8; /* just an offset */
151 0f0b7264 bellard
    } else if (keycode < 158) {
152 0f0b7264 bellard
        /* use conversion table */
153 0f0b7264 bellard
        keycode = x_keycode_to_pc_keycode[keycode - 97];
154 0f0b7264 bellard
    } else {
155 0f0b7264 bellard
        keycode = 0;
156 0f0b7264 bellard
    }
157 0f0b7264 bellard
    
158 0f0b7264 bellard
    /* now send the key code */
159 0f0b7264 bellard
    while (keycode != 0) {
160 0f0b7264 bellard
        v = keycode & 0xff;
161 0f0b7264 bellard
        if (ev->type == SDL_KEYUP)
162 0f0b7264 bellard
            v |= 0x80;
163 0f0b7264 bellard
        kbd_put_keycode(v);
164 0f0b7264 bellard
        keycode >>= 8;
165 0f0b7264 bellard
    }
166 0f0b7264 bellard
}
167 0f0b7264 bellard
168 0f0b7264 bellard
static void sdl_grab_start(void)
169 0f0b7264 bellard
{
170 0f0b7264 bellard
    SDL_WM_SetCaption("QEMU - Press Ctrl-Shift to exit grab", "QEMU");
171 0f0b7264 bellard
    SDL_ShowCursor(0);
172 0f0b7264 bellard
    SDL_WM_GrabInput(SDL_GRAB_ON);
173 0f0b7264 bellard
    /* dummy read to avoid moving the mouse */
174 0f0b7264 bellard
    SDL_GetRelativeMouseState(NULL, NULL);
175 0f0b7264 bellard
    gui_grab = 1;
176 0f0b7264 bellard
}
177 0f0b7264 bellard
178 0f0b7264 bellard
static void sdl_grab_end(void)
179 0f0b7264 bellard
{
180 0f0b7264 bellard
    SDL_WM_SetCaption("QEMU", "QEMU");
181 0f0b7264 bellard
    SDL_WM_GrabInput(SDL_GRAB_OFF);
182 0f0b7264 bellard
    SDL_ShowCursor(1);
183 0f0b7264 bellard
    gui_grab = 0;
184 0f0b7264 bellard
}
185 0f0b7264 bellard
186 0f0b7264 bellard
static void sdl_send_mouse_event(void)
187 0f0b7264 bellard
{
188 0f0b7264 bellard
    int dx, dy, dz, state, buttons;
189 0f0b7264 bellard
    state = SDL_GetRelativeMouseState(&dx, &dy);
190 0f0b7264 bellard
    buttons = 0;
191 0f0b7264 bellard
    if (state & SDL_BUTTON(SDL_BUTTON_LEFT))
192 0f0b7264 bellard
        buttons |= MOUSE_EVENT_LBUTTON;
193 0f0b7264 bellard
    if (state & SDL_BUTTON(SDL_BUTTON_RIGHT))
194 0f0b7264 bellard
        buttons |= MOUSE_EVENT_RBUTTON;
195 0f0b7264 bellard
    if (state & SDL_BUTTON(SDL_BUTTON_MIDDLE))
196 0f0b7264 bellard
        buttons |= MOUSE_EVENT_MBUTTON;
197 0f0b7264 bellard
    /* XXX: test wheel */
198 0f0b7264 bellard
    dz = 0;
199 8351d2d4 bellard
#ifdef SDL_BUTTON_WHEELUP
200 0f0b7264 bellard
    if (state & SDL_BUTTON(SDL_BUTTON_WHEELUP))
201 0f0b7264 bellard
        dz--;
202 0f0b7264 bellard
    if (state & SDL_BUTTON(SDL_BUTTON_WHEELDOWN))
203 0f0b7264 bellard
        dz++;
204 8351d2d4 bellard
#endif
205 0f0b7264 bellard
    kbd_mouse_event(dx, dy, dz, buttons);
206 0f0b7264 bellard
}
207 0f0b7264 bellard
208 0f0b7264 bellard
static void sdl_refresh(DisplayState *ds)
209 0f0b7264 bellard
{
210 0f0b7264 bellard
    SDL_Event ev1, *ev = &ev1;
211 0f0b7264 bellard
212 0f0b7264 bellard
    vga_update_display();
213 0f0b7264 bellard
    while (SDL_PollEvent(ev)) {
214 0f0b7264 bellard
        switch (ev->type) {
215 0f0b7264 bellard
        case SDL_VIDEOEXPOSE:
216 0f0b7264 bellard
            sdl_update(ds, 0, 0, screen->w, screen->h);
217 0f0b7264 bellard
            break;
218 0f0b7264 bellard
        case SDL_KEYDOWN:
219 0f0b7264 bellard
        case SDL_KEYUP:
220 0f0b7264 bellard
            if (ev->type == SDL_KEYDOWN) {
221 0f0b7264 bellard
                if ((SDL_GetModState() & (KMOD_LSHIFT | KMOD_LCTRL)) ==
222 0f0b7264 bellard
                    (KMOD_LSHIFT | KMOD_LCTRL)) {
223 0f0b7264 bellard
                    /* exit/enter grab if pressing Ctrl-Shift */
224 0f0b7264 bellard
                    if (!gui_grab)
225 0f0b7264 bellard
                        sdl_grab_start();
226 0f0b7264 bellard
                    else
227 0f0b7264 bellard
                        sdl_grab_end();
228 0f0b7264 bellard
                }
229 0f0b7264 bellard
            }
230 0f0b7264 bellard
            sdl_process_key(&ev->key);
231 0f0b7264 bellard
            break;
232 0f0b7264 bellard
        case SDL_QUIT:
233 0f0b7264 bellard
            reset_requested = 1;
234 0f0b7264 bellard
            break;
235 0f0b7264 bellard
        case SDL_MOUSEMOTION:
236 0f0b7264 bellard
            if (gui_grab) {
237 0f0b7264 bellard
                sdl_send_mouse_event();
238 0f0b7264 bellard
            }
239 0f0b7264 bellard
            break;
240 0f0b7264 bellard
        case SDL_MOUSEBUTTONDOWN:
241 0f0b7264 bellard
        case SDL_MOUSEBUTTONUP:
242 0f0b7264 bellard
            {
243 0f0b7264 bellard
                SDL_MouseButtonEvent *bev = &ev->button;
244 0f0b7264 bellard
                if (!gui_grab) {
245 0f0b7264 bellard
                    if (ev->type == SDL_MOUSEBUTTONDOWN &&
246 0f0b7264 bellard
                        (bev->state & SDL_BUTTON_LMASK)) {
247 0f0b7264 bellard
                        /* start grabbing all events */
248 0f0b7264 bellard
                        sdl_grab_start();
249 0f0b7264 bellard
                    }
250 0f0b7264 bellard
                } else {
251 0f0b7264 bellard
                    sdl_send_mouse_event();
252 0f0b7264 bellard
                }
253 0f0b7264 bellard
            }
254 0f0b7264 bellard
            break;
255 0f0b7264 bellard
        default:
256 0f0b7264 bellard
            break;
257 0f0b7264 bellard
        }
258 0f0b7264 bellard
    }
259 0f0b7264 bellard
}
260 0f0b7264 bellard
261 898712a8 bellard
static void sdl_cleanup(void) 
262 898712a8 bellard
{
263 898712a8 bellard
    SDL_Quit();
264 898712a8 bellard
}
265 898712a8 bellard
266 0f0b7264 bellard
void sdl_display_init(DisplayState *ds)
267 0f0b7264 bellard
{
268 0f0b7264 bellard
    int flags;
269 0f0b7264 bellard
270 0f0b7264 bellard
    flags = SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE;
271 0f0b7264 bellard
    if (SDL_Init (flags)) {
272 0f0b7264 bellard
        fprintf(stderr, "Could not initialize SDL - exiting\n");
273 0f0b7264 bellard
        exit(1);
274 0f0b7264 bellard
    }
275 0ae04d73 bellard
    /* NOTE: we still want Ctrl-C to work, so we undo the SDL redirections */
276 0ae04d73 bellard
    signal(SIGINT, SIG_DFL);
277 0ae04d73 bellard
    signal(SIGQUIT, SIG_DFL);
278 0ae04d73 bellard
279 0f0b7264 bellard
    ds->dpy_update = sdl_update;
280 0f0b7264 bellard
    ds->dpy_resize = sdl_resize;
281 0f0b7264 bellard
    ds->dpy_refresh = sdl_refresh;
282 0f0b7264 bellard
283 0f0b7264 bellard
    sdl_resize(ds, 640, 400);
284 0f0b7264 bellard
    SDL_WM_SetCaption("QEMU", "QEMU");
285 0f0b7264 bellard
    SDL_EnableKeyRepeat(250, 50);
286 0f0b7264 bellard
    gui_grab = 0;
287 898712a8 bellard
288 898712a8 bellard
    atexit(sdl_cleanup);
289 0f0b7264 bellard
}