balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 1 | /* |
| 2 | * QEMU curses/ncurses display driver |
| 3 | * |
| 4 | * Copyright (c) 2005 Andrzej Zaborowski <balrog@zabor.org> |
| 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 | */ |
Markus Armbruster | 0b8fa32 | 2019-05-23 16:35:07 +0200 | [diff] [blame^] | 24 | |
Peter Maydell | e16f4c8 | 2016-01-29 17:49:51 +0000 | [diff] [blame] | 25 | #include "qemu/osdep.h" |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 26 | |
| 27 | #ifndef _WIN32 |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 28 | #include <sys/ioctl.h> |
| 29 | #include <termios.h> |
| 30 | #endif |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 31 | #include <locale.h> |
| 32 | #include <wchar.h> |
| 33 | #include <langinfo.h> |
| 34 | #include <iconv.h> |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 35 | |
Fei Li | ab4f931 | 2018-10-17 10:26:50 +0200 | [diff] [blame] | 36 | #include "qapi/error.h" |
Markus Armbruster | 0b8fa32 | 2019-05-23 16:35:07 +0200 | [diff] [blame^] | 37 | #include "qemu/module.h" |
Paolo Bonzini | 28ecbae | 2012-11-28 12:06:30 +0100 | [diff] [blame] | 38 | #include "ui/console.h" |
Gerd Hoffmann | cd10032 | 2013-12-04 13:40:20 +0100 | [diff] [blame] | 39 | #include "ui/input.h" |
Paolo Bonzini | 9c17d61 | 2012-12-17 18:20:04 +0100 | [diff] [blame] | 40 | #include "sysemu/sysemu.h" |
blueswir1 | 511d2b1 | 2009-03-07 15:32:56 +0000 | [diff] [blame] | 41 | |
Gerd Hoffmann | e2f82e9 | 2017-09-27 12:38:11 +0200 | [diff] [blame] | 42 | /* KEY_EVENT is defined in wincon.h and in curses.h. Avoid redefinition. */ |
| 43 | #undef KEY_EVENT |
| 44 | #include <curses.h> |
| 45 | #undef KEY_EVENT |
| 46 | |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 47 | #define FONT_HEIGHT 16 |
| 48 | #define FONT_WIDTH 8 |
| 49 | |
Samuel Thibault | 459a707 | 2019-03-04 22:05:32 +0100 | [diff] [blame] | 50 | enum maybe_keycode { |
| 51 | CURSES_KEYCODE, |
| 52 | CURSES_CHAR, |
| 53 | CURSES_CHAR_OR_KEYCODE, |
| 54 | }; |
| 55 | |
Gerd Hoffmann | 7c20b4a | 2012-11-13 14:51:41 +0100 | [diff] [blame] | 56 | static DisplayChangeListener *dcl; |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 57 | static console_ch_t screen[160 * 100]; |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 58 | static WINDOW *screenpad = NULL; |
| 59 | static int width, height, gwidth, gheight, invalidate; |
| 60 | static int px, py, sminx, sminy, smaxx, smaxy; |
| 61 | |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 62 | static const char *font_charset = "CP437"; |
| 63 | static cchar_t vga_to_curses[256]; |
OGAWA Hirofumi | e2368dc | 2015-10-19 21:23:46 +0900 | [diff] [blame] | 64 | |
Gerd Hoffmann | 7c20b4a | 2012-11-13 14:51:41 +0100 | [diff] [blame] | 65 | static void curses_update(DisplayChangeListener *dcl, |
Gerd Hoffmann | 7c20b4a | 2012-11-13 14:51:41 +0100 | [diff] [blame] | 66 | int x, int y, int w, int h) |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 67 | { |
Gerd Hoffmann | e2f82e9 | 2017-09-27 12:38:11 +0200 | [diff] [blame] | 68 | console_ch_t *line; |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 69 | cchar_t curses_line[width]; |
Samuel Thibault | 962cf8f | 2019-04-27 20:33:07 +0200 | [diff] [blame] | 70 | wchar_t wch[CCHARW_MAX]; |
| 71 | attr_t attrs; |
| 72 | short colors; |
| 73 | int ret; |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 74 | |
Gerd Hoffmann | e2f82e9 | 2017-09-27 12:38:11 +0200 | [diff] [blame] | 75 | line = screen + y * width; |
| 76 | for (h += y; y < h; y ++, line += width) { |
| 77 | for (x = 0; x < width; x++) { |
| 78 | chtype ch = line[x] & 0xff; |
| 79 | chtype at = line[x] & ~0xff; |
Samuel Thibault | 962cf8f | 2019-04-27 20:33:07 +0200 | [diff] [blame] | 80 | ret = getcchar(&vga_to_curses[ch], wch, &attrs, &colors, NULL); |
| 81 | if (ret == ERR || wch[0] == 0) { |
| 82 | wch[0] = ch; |
| 83 | wch[1] = 0; |
Gerd Hoffmann | e2f82e9 | 2017-09-27 12:38:11 +0200 | [diff] [blame] | 84 | } |
Samuel Thibault | 962cf8f | 2019-04-27 20:33:07 +0200 | [diff] [blame] | 85 | setcchar(&curses_line[x], wch, at, 0, NULL); |
Gerd Hoffmann | e2f82e9 | 2017-09-27 12:38:11 +0200 | [diff] [blame] | 86 | } |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 87 | mvwadd_wchnstr(screenpad, y, 0, curses_line, width); |
Gerd Hoffmann | e2f82e9 | 2017-09-27 12:38:11 +0200 | [diff] [blame] | 88 | } |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 89 | |
| 90 | pnoutrefresh(screenpad, py, px, sminy, sminx, smaxy - 1, smaxx - 1); |
| 91 | refresh(); |
| 92 | } |
| 93 | |
| 94 | static void curses_calc_pad(void) |
| 95 | { |
Gerd Hoffmann | 81c0d5a | 2013-03-14 14:27:08 +0100 | [diff] [blame] | 96 | if (qemu_console_is_fixedsize(NULL)) { |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 97 | width = gwidth; |
| 98 | height = gheight; |
| 99 | } else { |
| 100 | width = COLS; |
| 101 | height = LINES; |
| 102 | } |
| 103 | |
| 104 | if (screenpad) |
| 105 | delwin(screenpad); |
| 106 | |
| 107 | clear(); |
| 108 | refresh(); |
| 109 | |
| 110 | screenpad = newpad(height, width); |
| 111 | |
| 112 | if (width > COLS) { |
| 113 | px = (width - COLS) / 2; |
| 114 | sminx = 0; |
| 115 | smaxx = COLS; |
| 116 | } else { |
| 117 | px = 0; |
| 118 | sminx = (COLS - width) / 2; |
| 119 | smaxx = sminx + width; |
| 120 | } |
| 121 | |
| 122 | if (height > LINES) { |
| 123 | py = (height - LINES) / 2; |
| 124 | sminy = 0; |
| 125 | smaxy = LINES; |
| 126 | } else { |
| 127 | py = 0; |
| 128 | sminy = (LINES - height) / 2; |
| 129 | smaxy = sminy + height; |
| 130 | } |
| 131 | } |
| 132 | |
Gerd Hoffmann | 7c20b4a | 2012-11-13 14:51:41 +0100 | [diff] [blame] | 133 | static void curses_resize(DisplayChangeListener *dcl, |
Gerd Hoffmann | 7c20b4a | 2012-11-13 14:51:41 +0100 | [diff] [blame] | 134 | int width, int height) |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 135 | { |
Gerd Hoffmann | a93a4a2 | 2012-09-28 15:02:08 +0200 | [diff] [blame] | 136 | if (width == gwidth && height == gheight) { |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 137 | return; |
Gerd Hoffmann | a93a4a2 | 2012-09-28 15:02:08 +0200 | [diff] [blame] | 138 | } |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 139 | |
Gerd Hoffmann | a93a4a2 | 2012-09-28 15:02:08 +0200 | [diff] [blame] | 140 | gwidth = width; |
| 141 | gheight = height; |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 142 | |
| 143 | curses_calc_pad(); |
| 144 | } |
| 145 | |
Gerd Hoffmann | 032ac6f | 2013-11-22 15:35:03 +0100 | [diff] [blame] | 146 | #if !defined(_WIN32) && defined(SIGWINCH) && defined(KEY_RESIZE) |
| 147 | static volatile sig_atomic_t got_sigwinch; |
| 148 | static void curses_winch_check(void) |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 149 | { |
| 150 | struct winsize { |
| 151 | unsigned short ws_row; |
| 152 | unsigned short ws_col; |
| 153 | unsigned short ws_xpixel; /* unused */ |
| 154 | unsigned short ws_ypixel; /* unused */ |
| 155 | } ws; |
| 156 | |
Gerd Hoffmann | 032ac6f | 2013-11-22 15:35:03 +0100 | [diff] [blame] | 157 | if (!got_sigwinch) { |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 158 | return; |
Gerd Hoffmann | 032ac6f | 2013-11-22 15:35:03 +0100 | [diff] [blame] | 159 | } |
| 160 | got_sigwinch = false; |
| 161 | |
| 162 | if (ioctl(1, TIOCGWINSZ, &ws) == -1) { |
| 163 | return; |
| 164 | } |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 165 | |
| 166 | resize_term(ws.ws_row, ws.ws_col); |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 167 | invalidate = 1; |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 168 | } |
Gerd Hoffmann | 032ac6f | 2013-11-22 15:35:03 +0100 | [diff] [blame] | 169 | |
| 170 | static void curses_winch_handler(int signum) |
| 171 | { |
| 172 | got_sigwinch = true; |
| 173 | } |
| 174 | |
| 175 | static void curses_winch_init(void) |
| 176 | { |
| 177 | struct sigaction old, winch = { |
| 178 | .sa_handler = curses_winch_handler, |
| 179 | }; |
| 180 | sigaction(SIGWINCH, &winch, &old); |
| 181 | } |
| 182 | #else |
| 183 | static void curses_winch_check(void) {} |
| 184 | static void curses_winch_init(void) {} |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 185 | #endif |
| 186 | |
Gerd Hoffmann | 7c20b4a | 2012-11-13 14:51:41 +0100 | [diff] [blame] | 187 | static void curses_cursor_position(DisplayChangeListener *dcl, |
Gerd Hoffmann | 7c20b4a | 2012-11-13 14:51:41 +0100 | [diff] [blame] | 188 | int x, int y) |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 189 | { |
| 190 | if (x >= 0) { |
| 191 | x = sminx + x - px; |
| 192 | y = sminy + y - py; |
| 193 | |
| 194 | if (x >= 0 && y >= 0 && x < COLS && y < LINES) { |
| 195 | move(y, x); |
| 196 | curs_set(1); |
| 197 | /* it seems that curs_set(1) must always be called before |
| 198 | * curs_set(2) for the latter to have effect */ |
Gerd Hoffmann | 81c0d5a | 2013-03-14 14:27:08 +0100 | [diff] [blame] | 199 | if (!qemu_console_is_graphic(NULL)) { |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 200 | curs_set(2); |
Gerd Hoffmann | 81c0d5a | 2013-03-14 14:27:08 +0100 | [diff] [blame] | 201 | } |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 202 | return; |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | curs_set(0); |
| 207 | } |
| 208 | |
| 209 | /* generic keyboard conversion */ |
| 210 | |
| 211 | #include "curses_keys.h" |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 212 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 213 | static kbd_layout_t *kbd_layout = NULL; |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 214 | |
Samuel Thibault | 459a707 | 2019-03-04 22:05:32 +0100 | [diff] [blame] | 215 | static wint_t console_getch(enum maybe_keycode *maybe_keycode) |
| 216 | { |
| 217 | wint_t ret; |
| 218 | switch (get_wch(&ret)) { |
| 219 | case KEY_CODE_YES: |
| 220 | *maybe_keycode = CURSES_KEYCODE; |
| 221 | break; |
| 222 | case OK: |
| 223 | *maybe_keycode = CURSES_CHAR; |
| 224 | break; |
| 225 | case ERR: |
| 226 | ret = -1; |
| 227 | break; |
| 228 | } |
| 229 | return ret; |
| 230 | } |
| 231 | |
| 232 | static int curses2foo(const int _curses2foo[], const int _curseskey2foo[], |
| 233 | int chr, enum maybe_keycode maybe_keycode) |
| 234 | { |
| 235 | int ret = -1; |
| 236 | if (maybe_keycode == CURSES_CHAR) { |
| 237 | if (chr < CURSES_CHARS) { |
| 238 | ret = _curses2foo[chr]; |
| 239 | } |
| 240 | } else { |
| 241 | if (chr < CURSES_KEYS) { |
| 242 | ret = _curseskey2foo[chr]; |
| 243 | } |
| 244 | if (ret == -1 && maybe_keycode == CURSES_CHAR_OR_KEYCODE && |
| 245 | chr < CURSES_CHARS) { |
| 246 | ret = _curses2foo[chr]; |
| 247 | } |
| 248 | } |
| 249 | return ret; |
| 250 | } |
| 251 | |
| 252 | #define curses2keycode(chr, maybe_keycode) \ |
| 253 | curses2foo(_curses2keycode, _curseskey2keycode, chr, maybe_keycode) |
| 254 | #define curses2keysym(chr, maybe_keycode) \ |
| 255 | curses2foo(_curses2keysym, _curseskey2keysym, chr, maybe_keycode) |
| 256 | #define curses2qemu(chr, maybe_keycode) \ |
| 257 | curses2foo(_curses2qemu, _curseskey2qemu, chr, maybe_keycode) |
| 258 | |
Gerd Hoffmann | bc2ed97 | 2013-03-01 13:03:04 +0100 | [diff] [blame] | 259 | static void curses_refresh(DisplayChangeListener *dcl) |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 260 | { |
Peter Maydell | 99a9ef4 | 2016-08-11 15:23:27 +0100 | [diff] [blame] | 261 | int chr, keysym, keycode, keycode_alt; |
Samuel Thibault | 459a707 | 2019-03-04 22:05:32 +0100 | [diff] [blame] | 262 | enum maybe_keycode maybe_keycode; |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 263 | |
Gerd Hoffmann | 032ac6f | 2013-11-22 15:35:03 +0100 | [diff] [blame] | 264 | curses_winch_check(); |
| 265 | |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 266 | if (invalidate) { |
| 267 | clear(); |
| 268 | refresh(); |
| 269 | curses_calc_pad(); |
Gerd Hoffmann | 1dbfa00 | 2013-03-12 13:44:38 +0100 | [diff] [blame] | 270 | graphic_hw_invalidate(NULL); |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 271 | invalidate = 0; |
| 272 | } |
| 273 | |
Gerd Hoffmann | 1dbfa00 | 2013-03-12 13:44:38 +0100 | [diff] [blame] | 274 | graphic_hw_text_update(NULL, screen); |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 275 | |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 276 | while (1) { |
| 277 | /* while there are any pending key strokes to process */ |
Samuel Thibault | 459a707 | 2019-03-04 22:05:32 +0100 | [diff] [blame] | 278 | chr = console_getch(&maybe_keycode); |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 279 | |
Samuel Thibault | 459a707 | 2019-03-04 22:05:32 +0100 | [diff] [blame] | 280 | if (chr == -1) |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 281 | break; |
| 282 | |
balrog | b1314cf | 2008-02-22 18:21:28 +0000 | [diff] [blame] | 283 | #ifdef KEY_RESIZE |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 284 | /* this shouldn't occur when we use a custom SIGWINCH handler */ |
Samuel Thibault | 459a707 | 2019-03-04 22:05:32 +0100 | [diff] [blame] | 285 | if (maybe_keycode != CURSES_CHAR && chr == KEY_RESIZE) { |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 286 | clear(); |
| 287 | refresh(); |
| 288 | curses_calc_pad(); |
Gerd Hoffmann | bc2ed97 | 2013-03-01 13:03:04 +0100 | [diff] [blame] | 289 | curses_update(dcl, 0, 0, width, height); |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 290 | continue; |
| 291 | } |
balrog | b1314cf | 2008-02-22 18:21:28 +0000 | [diff] [blame] | 292 | #endif |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 293 | |
Samuel Thibault | 459a707 | 2019-03-04 22:05:32 +0100 | [diff] [blame] | 294 | keycode = curses2keycode(chr, maybe_keycode); |
Samuel Thibault | 44bb61c | 2010-02-28 21:03:00 +0100 | [diff] [blame] | 295 | keycode_alt = 0; |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 296 | |
Samuel Thibault | 633786f | 2019-03-03 18:25:57 +0100 | [diff] [blame] | 297 | /* alt or esc key */ |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 298 | if (keycode == 1) { |
Samuel Thibault | 459a707 | 2019-03-04 22:05:32 +0100 | [diff] [blame] | 299 | enum maybe_keycode next_maybe_keycode; |
| 300 | int nextchr = console_getch(&next_maybe_keycode); |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 301 | |
Samuel Thibault | 459a707 | 2019-03-04 22:05:32 +0100 | [diff] [blame] | 302 | if (nextchr != -1) { |
Samuel Thibault | 44bb61c | 2010-02-28 21:03:00 +0100 | [diff] [blame] | 303 | chr = nextchr; |
Samuel Thibault | 459a707 | 2019-03-04 22:05:32 +0100 | [diff] [blame] | 304 | maybe_keycode = next_maybe_keycode; |
Samuel Thibault | 44bb61c | 2010-02-28 21:03:00 +0100 | [diff] [blame] | 305 | keycode_alt = ALT; |
Samuel Thibault | 459a707 | 2019-03-04 22:05:32 +0100 | [diff] [blame] | 306 | keycode = curses2keycode(chr, maybe_keycode); |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 307 | |
Samuel Thibault | 44bb61c | 2010-02-28 21:03:00 +0100 | [diff] [blame] | 308 | if (keycode != -1) { |
| 309 | keycode |= ALT; |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 310 | |
Samuel Thibault | 44bb61c | 2010-02-28 21:03:00 +0100 | [diff] [blame] | 311 | /* process keys reserved for qemu */ |
| 312 | if (keycode >= QEMU_KEY_CONSOLE0 && |
| 313 | keycode < QEMU_KEY_CONSOLE0 + 9) { |
| 314 | erase(); |
| 315 | wnoutrefresh(stdscr); |
| 316 | console_select(keycode - QEMU_KEY_CONSOLE0); |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 317 | |
Samuel Thibault | 44bb61c | 2010-02-28 21:03:00 +0100 | [diff] [blame] | 318 | invalidate = 1; |
| 319 | continue; |
| 320 | } |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 321 | } |
| 322 | } |
| 323 | } |
| 324 | |
Samuel Thibault | 44bb61c | 2010-02-28 21:03:00 +0100 | [diff] [blame] | 325 | if (kbd_layout) { |
Samuel Thibault | 459a707 | 2019-03-04 22:05:32 +0100 | [diff] [blame] | 326 | keysym = curses2keysym(chr, maybe_keycode); |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 327 | |
Samuel Thibault | 44bb61c | 2010-02-28 21:03:00 +0100 | [diff] [blame] | 328 | if (keysym == -1) { |
Samuel Thibault | d03703c | 2010-10-19 19:48:20 +0200 | [diff] [blame] | 329 | if (chr < ' ') { |
| 330 | keysym = chr + '@'; |
| 331 | if (keysym >= 'A' && keysym <= 'Z') |
| 332 | keysym += 'a' - 'A'; |
| 333 | keysym |= KEYSYM_CNTRL; |
| 334 | } else |
Samuel Thibault | 44bb61c | 2010-02-28 21:03:00 +0100 | [diff] [blame] | 335 | keysym = chr; |
| 336 | } |
| 337 | |
Gerd Hoffmann | abb4f2c | 2018-02-22 08:05:13 +0100 | [diff] [blame] | 338 | keycode = keysym2scancode(kbd_layout, keysym & KEYSYM_MASK, |
Gerd Hoffmann | 19c1b9f | 2019-01-22 10:28:14 +0100 | [diff] [blame] | 339 | NULL, false); |
Samuel Thibault | 44bb61c | 2010-02-28 21:03:00 +0100 | [diff] [blame] | 340 | if (keycode == 0) |
| 341 | continue; |
| 342 | |
| 343 | keycode |= (keysym & ~KEYSYM_MASK) >> 16; |
| 344 | keycode |= keycode_alt; |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 345 | } |
| 346 | |
Samuel Thibault | 44bb61c | 2010-02-28 21:03:00 +0100 | [diff] [blame] | 347 | if (keycode == -1) |
| 348 | continue; |
| 349 | |
Gerd Hoffmann | 81c0d5a | 2013-03-14 14:27:08 +0100 | [diff] [blame] | 350 | if (qemu_console_is_graphic(NULL)) { |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 351 | /* since terminals don't know about key press and release |
| 352 | * events, we need to emit both for each key received */ |
Gerd Hoffmann | cd10032 | 2013-12-04 13:40:20 +0100 | [diff] [blame] | 353 | if (keycode & SHIFT) { |
| 354 | qemu_input_event_send_key_number(NULL, SHIFT_CODE, true); |
Gerd Hoffmann | 5a16566 | 2014-05-28 13:05:04 +0200 | [diff] [blame] | 355 | qemu_input_event_send_key_delay(0); |
Samuel Thibault | 44bb61c | 2010-02-28 21:03:00 +0100 | [diff] [blame] | 356 | } |
Gerd Hoffmann | cd10032 | 2013-12-04 13:40:20 +0100 | [diff] [blame] | 357 | if (keycode & CNTRL) { |
| 358 | qemu_input_event_send_key_number(NULL, CNTRL_CODE, true); |
Gerd Hoffmann | 5a16566 | 2014-05-28 13:05:04 +0200 | [diff] [blame] | 359 | qemu_input_event_send_key_delay(0); |
Samuel Thibault | 44bb61c | 2010-02-28 21:03:00 +0100 | [diff] [blame] | 360 | } |
Gerd Hoffmann | cd10032 | 2013-12-04 13:40:20 +0100 | [diff] [blame] | 361 | if (keycode & ALT) { |
| 362 | qemu_input_event_send_key_number(NULL, ALT_CODE, true); |
Gerd Hoffmann | 5a16566 | 2014-05-28 13:05:04 +0200 | [diff] [blame] | 363 | qemu_input_event_send_key_delay(0); |
Gerd Hoffmann | cd10032 | 2013-12-04 13:40:20 +0100 | [diff] [blame] | 364 | } |
| 365 | if (keycode & ALTGR) { |
| 366 | qemu_input_event_send_key_number(NULL, GREY | ALT_CODE, true); |
Gerd Hoffmann | 5a16566 | 2014-05-28 13:05:04 +0200 | [diff] [blame] | 367 | qemu_input_event_send_key_delay(0); |
Gerd Hoffmann | cd10032 | 2013-12-04 13:40:20 +0100 | [diff] [blame] | 368 | } |
| 369 | |
Andrew Oates | f5c0ab1 | 2014-05-23 20:16:09 -0400 | [diff] [blame] | 370 | qemu_input_event_send_key_number(NULL, keycode & KEY_MASK, true); |
Gerd Hoffmann | 5a16566 | 2014-05-28 13:05:04 +0200 | [diff] [blame] | 371 | qemu_input_event_send_key_delay(0); |
Andrew Oates | f5c0ab1 | 2014-05-23 20:16:09 -0400 | [diff] [blame] | 372 | qemu_input_event_send_key_number(NULL, keycode & KEY_MASK, false); |
Gerd Hoffmann | 5a16566 | 2014-05-28 13:05:04 +0200 | [diff] [blame] | 373 | qemu_input_event_send_key_delay(0); |
Gerd Hoffmann | cd10032 | 2013-12-04 13:40:20 +0100 | [diff] [blame] | 374 | |
| 375 | if (keycode & ALTGR) { |
| 376 | qemu_input_event_send_key_number(NULL, GREY | ALT_CODE, false); |
Gerd Hoffmann | 5a16566 | 2014-05-28 13:05:04 +0200 | [diff] [blame] | 377 | qemu_input_event_send_key_delay(0); |
Gerd Hoffmann | cd10032 | 2013-12-04 13:40:20 +0100 | [diff] [blame] | 378 | } |
| 379 | if (keycode & ALT) { |
| 380 | qemu_input_event_send_key_number(NULL, ALT_CODE, false); |
Gerd Hoffmann | 5a16566 | 2014-05-28 13:05:04 +0200 | [diff] [blame] | 381 | qemu_input_event_send_key_delay(0); |
Gerd Hoffmann | cd10032 | 2013-12-04 13:40:20 +0100 | [diff] [blame] | 382 | } |
| 383 | if (keycode & CNTRL) { |
| 384 | qemu_input_event_send_key_number(NULL, CNTRL_CODE, false); |
Gerd Hoffmann | 5a16566 | 2014-05-28 13:05:04 +0200 | [diff] [blame] | 385 | qemu_input_event_send_key_delay(0); |
Gerd Hoffmann | cd10032 | 2013-12-04 13:40:20 +0100 | [diff] [blame] | 386 | } |
| 387 | if (keycode & SHIFT) { |
| 388 | qemu_input_event_send_key_number(NULL, SHIFT_CODE, false); |
Gerd Hoffmann | 5a16566 | 2014-05-28 13:05:04 +0200 | [diff] [blame] | 389 | qemu_input_event_send_key_delay(0); |
Gerd Hoffmann | cd10032 | 2013-12-04 13:40:20 +0100 | [diff] [blame] | 390 | } |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 391 | } else { |
Samuel Thibault | 459a707 | 2019-03-04 22:05:32 +0100 | [diff] [blame] | 392 | keysym = curses2qemu(chr, maybe_keycode); |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 393 | if (keysym == -1) |
| 394 | keysym = chr; |
| 395 | |
| 396 | kbd_put_keysym(keysym); |
| 397 | } |
| 398 | } |
| 399 | } |
| 400 | |
Blue Swirl | aaf12c2 | 2010-03-21 19:44:06 +0000 | [diff] [blame] | 401 | static void curses_atexit(void) |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 402 | { |
| 403 | endwin(); |
| 404 | } |
| 405 | |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 406 | /* |
| 407 | * In the following: |
| 408 | * - fch is the font glyph number |
| 409 | * - uch is the unicode value |
| 410 | * - wch is the wchar_t value (may not be unicode, e.g. on BSD/solaris) |
| 411 | * - mbch is the native local-dependent multibyte representation |
| 412 | */ |
| 413 | |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 414 | /* Setup wchar glyph for one UCS-2 char */ |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 415 | static void convert_ucs(unsigned char fch, uint16_t uch, iconv_t conv) |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 416 | { |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 417 | char mbch[MB_LEN_MAX]; |
Samuel Thibault | 962cf8f | 2019-04-27 20:33:07 +0200 | [diff] [blame] | 418 | wchar_t wch[2]; |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 419 | char *puch, *pmbch; |
| 420 | size_t such, smbch; |
| 421 | mbstate_t ps; |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 422 | |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 423 | puch = (char *) &uch; |
| 424 | pmbch = (char *) mbch; |
| 425 | such = sizeof(uch); |
| 426 | smbch = sizeof(mbch); |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 427 | |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 428 | if (iconv(conv, &puch, &such, &pmbch, &smbch) == (size_t) -1) { |
| 429 | fprintf(stderr, "Could not convert 0x%04x " |
| 430 | "from UCS-2 to a multibyte character: %s\n", |
| 431 | uch, strerror(errno)); |
| 432 | return; |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 433 | } |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 434 | |
| 435 | memset(&ps, 0, sizeof(ps)); |
Samuel Thibault | 962cf8f | 2019-04-27 20:33:07 +0200 | [diff] [blame] | 436 | if (mbrtowc(&wch[0], mbch, sizeof(mbch) - smbch, &ps) == -1) { |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 437 | fprintf(stderr, "Could not convert 0x%04x " |
| 438 | "from a multibyte character to wchar_t: %s\n", |
| 439 | uch, strerror(errno)); |
| 440 | return; |
| 441 | } |
Samuel Thibault | 962cf8f | 2019-04-27 20:33:07 +0200 | [diff] [blame] | 442 | |
| 443 | wch[1] = 0; |
| 444 | setcchar(&vga_to_curses[fch], wch, 0, 0, NULL); |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 445 | } |
| 446 | |
| 447 | /* Setup wchar glyph for one font character */ |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 448 | static void convert_font(unsigned char fch, iconv_t conv) |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 449 | { |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 450 | char mbch[MB_LEN_MAX]; |
Samuel Thibault | 962cf8f | 2019-04-27 20:33:07 +0200 | [diff] [blame] | 451 | wchar_t wch[2]; |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 452 | char *pfch, *pmbch; |
| 453 | size_t sfch, smbch; |
| 454 | mbstate_t ps; |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 455 | |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 456 | pfch = (char *) &fch; |
| 457 | pmbch = (char *) &mbch; |
| 458 | sfch = sizeof(fch); |
| 459 | smbch = sizeof(mbch); |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 460 | |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 461 | if (iconv(conv, &pfch, &sfch, &pmbch, &smbch) == (size_t) -1) { |
| 462 | fprintf(stderr, "Could not convert font glyph 0x%02x " |
| 463 | "from %s to a multibyte character: %s\n", |
| 464 | fch, font_charset, strerror(errno)); |
| 465 | return; |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 466 | } |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 467 | |
| 468 | memset(&ps, 0, sizeof(ps)); |
Samuel Thibault | 962cf8f | 2019-04-27 20:33:07 +0200 | [diff] [blame] | 469 | if (mbrtowc(&wch[0], mbch, sizeof(mbch) - smbch, &ps) == -1) { |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 470 | fprintf(stderr, "Could not convert font glyph 0x%02x " |
| 471 | "from a multibyte character to wchar_t: %s\n", |
| 472 | fch, strerror(errno)); |
| 473 | return; |
| 474 | } |
Samuel Thibault | 962cf8f | 2019-04-27 20:33:07 +0200 | [diff] [blame] | 475 | |
| 476 | wch[1] = 0; |
| 477 | setcchar(&vga_to_curses[fch], wch, 0, 0, NULL); |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 478 | } |
| 479 | |
| 480 | /* Convert one wchar to UCS-2 */ |
| 481 | static uint16_t get_ucs(wchar_t wch, iconv_t conv) |
| 482 | { |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 483 | char mbch[MB_LEN_MAX]; |
| 484 | uint16_t uch; |
| 485 | char *pmbch, *puch; |
| 486 | size_t smbch, such; |
| 487 | mbstate_t ps; |
| 488 | int ret; |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 489 | |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 490 | memset(&ps, 0, sizeof(ps)); |
| 491 | ret = wcrtomb(mbch, wch, &ps); |
| 492 | if (ret == -1) { |
Max Reitz | dc3c871 | 2019-05-27 16:25:40 +0200 | [diff] [blame] | 493 | fprintf(stderr, "Could not convert 0x%04lx " |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 494 | "from wchar_t to a multibyte character: %s\n", |
Max Reitz | dc3c871 | 2019-05-27 16:25:40 +0200 | [diff] [blame] | 495 | (unsigned long)wch, strerror(errno)); |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 496 | return 0xFFFD; |
| 497 | } |
| 498 | |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 499 | pmbch = (char *) mbch; |
| 500 | puch = (char *) &uch; |
| 501 | smbch = ret; |
| 502 | such = sizeof(uch); |
| 503 | |
| 504 | if (iconv(conv, &pmbch, &smbch, &puch, &such) == (size_t) -1) { |
Max Reitz | dc3c871 | 2019-05-27 16:25:40 +0200 | [diff] [blame] | 505 | fprintf(stderr, "Could not convert 0x%04lx " |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 506 | "from a multibyte character to UCS-2 : %s\n", |
Max Reitz | dc3c871 | 2019-05-27 16:25:40 +0200 | [diff] [blame] | 507 | (unsigned long)wch, strerror(errno)); |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 508 | return 0xFFFD; |
| 509 | } |
| 510 | |
| 511 | return uch; |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 512 | } |
| 513 | |
| 514 | /* |
| 515 | * Setup mapping for vga to curses line graphics. |
| 516 | */ |
| 517 | static void font_setup(void) |
| 518 | { |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 519 | iconv_t ucs2_to_nativecharset; |
| 520 | iconv_t nativecharset_to_ucs2; |
| 521 | iconv_t font_conv; |
| 522 | int i; |
| 523 | |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 524 | /* |
| 525 | * Control characters are normally non-printable, but VGA does have |
| 526 | * well-known glyphs for them. |
| 527 | */ |
| 528 | static uint16_t control_characters[0x20] = { |
| 529 | 0x0020, |
| 530 | 0x263a, |
| 531 | 0x263b, |
| 532 | 0x2665, |
| 533 | 0x2666, |
| 534 | 0x2663, |
| 535 | 0x2660, |
| 536 | 0x2022, |
| 537 | 0x25d8, |
| 538 | 0x25cb, |
| 539 | 0x25d9, |
| 540 | 0x2642, |
| 541 | 0x2640, |
| 542 | 0x266a, |
| 543 | 0x266b, |
| 544 | 0x263c, |
| 545 | 0x25ba, |
| 546 | 0x25c4, |
| 547 | 0x2195, |
| 548 | 0x203c, |
| 549 | 0x00b6, |
| 550 | 0x00a7, |
| 551 | 0x25ac, |
| 552 | 0x21a8, |
| 553 | 0x2191, |
| 554 | 0x2193, |
| 555 | 0x2192, |
| 556 | 0x2190, |
| 557 | 0x221f, |
| 558 | 0x2194, |
| 559 | 0x25b2, |
| 560 | 0x25bc |
| 561 | }; |
| 562 | |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 563 | ucs2_to_nativecharset = iconv_open(nl_langinfo(CODESET), "UCS-2"); |
| 564 | if (ucs2_to_nativecharset == (iconv_t) -1) { |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 565 | fprintf(stderr, "Could not convert font glyphs from UCS-2: '%s'\n", |
| 566 | strerror(errno)); |
| 567 | exit(1); |
| 568 | } |
| 569 | |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 570 | nativecharset_to_ucs2 = iconv_open("UCS-2", nl_langinfo(CODESET)); |
| 571 | if (nativecharset_to_ucs2 == (iconv_t) -1) { |
| 572 | iconv_close(ucs2_to_nativecharset); |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 573 | fprintf(stderr, "Could not convert font glyphs to UCS-2: '%s'\n", |
| 574 | strerror(errno)); |
| 575 | exit(1); |
| 576 | } |
| 577 | |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 578 | font_conv = iconv_open(nl_langinfo(CODESET), font_charset); |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 579 | if (font_conv == (iconv_t) -1) { |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 580 | iconv_close(ucs2_to_nativecharset); |
| 581 | iconv_close(nativecharset_to_ucs2); |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 582 | fprintf(stderr, "Could not convert font glyphs from %s: '%s'\n", |
| 583 | font_charset, strerror(errno)); |
| 584 | exit(1); |
| 585 | } |
| 586 | |
| 587 | /* Control characters */ |
| 588 | for (i = 0; i <= 0x1F; i++) { |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 589 | convert_ucs(i, control_characters[i], ucs2_to_nativecharset); |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 590 | } |
| 591 | |
| 592 | for (i = 0x20; i <= 0xFF; i++) { |
| 593 | convert_font(i, font_conv); |
| 594 | } |
| 595 | |
| 596 | /* DEL */ |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 597 | convert_ucs(0x7F, 0x2302, ucs2_to_nativecharset); |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 598 | |
| 599 | if (strcmp(nl_langinfo(CODESET), "UTF-8")) { |
| 600 | /* Non-Unicode capable, use termcap equivalents for those available */ |
| 601 | for (i = 0; i <= 0xFF; i++) { |
Samuel Thibault | 962cf8f | 2019-04-27 20:33:07 +0200 | [diff] [blame] | 602 | wchar_t wch[CCHARW_MAX]; |
| 603 | attr_t attr; |
| 604 | short color; |
| 605 | int ret; |
| 606 | |
| 607 | ret = getcchar(&vga_to_curses[i], wch, &attr, &color, NULL); |
| 608 | if (ret == ERR) |
| 609 | continue; |
| 610 | |
| 611 | switch (get_ucs(wch[0], nativecharset_to_ucs2)) { |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 612 | case 0x00a3: |
| 613 | vga_to_curses[i] = *WACS_STERLING; |
| 614 | break; |
| 615 | case 0x2591: |
| 616 | vga_to_curses[i] = *WACS_BOARD; |
| 617 | break; |
| 618 | case 0x2592: |
| 619 | vga_to_curses[i] = *WACS_CKBOARD; |
| 620 | break; |
| 621 | case 0x2502: |
| 622 | vga_to_curses[i] = *WACS_VLINE; |
| 623 | break; |
| 624 | case 0x2524: |
| 625 | vga_to_curses[i] = *WACS_RTEE; |
| 626 | break; |
| 627 | case 0x2510: |
| 628 | vga_to_curses[i] = *WACS_URCORNER; |
| 629 | break; |
| 630 | case 0x2514: |
| 631 | vga_to_curses[i] = *WACS_LLCORNER; |
| 632 | break; |
| 633 | case 0x2534: |
| 634 | vga_to_curses[i] = *WACS_BTEE; |
| 635 | break; |
| 636 | case 0x252c: |
| 637 | vga_to_curses[i] = *WACS_TTEE; |
| 638 | break; |
| 639 | case 0x251c: |
| 640 | vga_to_curses[i] = *WACS_LTEE; |
| 641 | break; |
| 642 | case 0x2500: |
| 643 | vga_to_curses[i] = *WACS_HLINE; |
| 644 | break; |
| 645 | case 0x253c: |
| 646 | vga_to_curses[i] = *WACS_PLUS; |
| 647 | break; |
| 648 | case 0x256c: |
| 649 | vga_to_curses[i] = *WACS_LANTERN; |
| 650 | break; |
| 651 | case 0x256a: |
| 652 | vga_to_curses[i] = *WACS_NEQUAL; |
| 653 | break; |
| 654 | case 0x2518: |
| 655 | vga_to_curses[i] = *WACS_LRCORNER; |
| 656 | break; |
| 657 | case 0x250c: |
| 658 | vga_to_curses[i] = *WACS_ULCORNER; |
| 659 | break; |
| 660 | case 0x2588: |
| 661 | vga_to_curses[i] = *WACS_BLOCK; |
| 662 | break; |
| 663 | case 0x03c0: |
| 664 | vga_to_curses[i] = *WACS_PI; |
| 665 | break; |
| 666 | case 0x00b1: |
| 667 | vga_to_curses[i] = *WACS_PLMINUS; |
| 668 | break; |
| 669 | case 0x2265: |
| 670 | vga_to_curses[i] = *WACS_GEQUAL; |
| 671 | break; |
| 672 | case 0x2264: |
| 673 | vga_to_curses[i] = *WACS_LEQUAL; |
| 674 | break; |
| 675 | case 0x00b0: |
| 676 | vga_to_curses[i] = *WACS_DEGREE; |
| 677 | break; |
| 678 | case 0x25a0: |
| 679 | vga_to_curses[i] = *WACS_BULLET; |
| 680 | break; |
| 681 | case 0x2666: |
| 682 | vga_to_curses[i] = *WACS_DIAMOND; |
| 683 | break; |
| 684 | case 0x2192: |
| 685 | vga_to_curses[i] = *WACS_RARROW; |
| 686 | break; |
| 687 | case 0x2190: |
| 688 | vga_to_curses[i] = *WACS_LARROW; |
| 689 | break; |
| 690 | case 0x2191: |
| 691 | vga_to_curses[i] = *WACS_UARROW; |
| 692 | break; |
| 693 | case 0x2193: |
| 694 | vga_to_curses[i] = *WACS_DARROW; |
| 695 | break; |
| 696 | case 0x23ba: |
| 697 | vga_to_curses[i] = *WACS_S1; |
| 698 | break; |
| 699 | case 0x23bb: |
| 700 | vga_to_curses[i] = *WACS_S3; |
| 701 | break; |
| 702 | case 0x23bc: |
| 703 | vga_to_curses[i] = *WACS_S7; |
| 704 | break; |
| 705 | case 0x23bd: |
| 706 | vga_to_curses[i] = *WACS_S9; |
| 707 | break; |
| 708 | } |
| 709 | } |
| 710 | } |
Samuel Thibault | b7b664a | 2019-04-27 20:33:06 +0200 | [diff] [blame] | 711 | iconv_close(ucs2_to_nativecharset); |
| 712 | iconv_close(nativecharset_to_ucs2); |
Samuel Thibault | a9fda24 | 2019-03-14 18:25:24 +0100 | [diff] [blame] | 713 | iconv_close(font_conv); |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 714 | } |
| 715 | |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 716 | static void curses_setup(void) |
| 717 | { |
| 718 | int i, colour_default[8] = { |
OGAWA Hirofumi | 4083733 | 2015-11-29 22:28:24 +0900 | [diff] [blame] | 719 | [QEMU_COLOR_BLACK] = COLOR_BLACK, |
| 720 | [QEMU_COLOR_BLUE] = COLOR_BLUE, |
| 721 | [QEMU_COLOR_GREEN] = COLOR_GREEN, |
| 722 | [QEMU_COLOR_CYAN] = COLOR_CYAN, |
| 723 | [QEMU_COLOR_RED] = COLOR_RED, |
| 724 | [QEMU_COLOR_MAGENTA] = COLOR_MAGENTA, |
| 725 | [QEMU_COLOR_YELLOW] = COLOR_YELLOW, |
| 726 | [QEMU_COLOR_WHITE] = COLOR_WHITE, |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 727 | }; |
| 728 | |
| 729 | /* input as raw as possible, let everything be interpreted |
| 730 | * by the guest system */ |
| 731 | initscr(); noecho(); intrflush(stdscr, FALSE); |
| 732 | nodelay(stdscr, TRUE); nonl(); keypad(stdscr, TRUE); |
| 733 | start_color(); raw(); scrollok(stdscr, FALSE); |
Samuel Thibault | 633786f | 2019-03-03 18:25:57 +0100 | [diff] [blame] | 734 | set_escdelay(25); |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 735 | |
OGAWA Hirofumi | 4083733 | 2015-11-29 22:28:24 +0900 | [diff] [blame] | 736 | /* Make color pair to match color format (3bits bg:3bits fg) */ |
OGAWA Hirofumi | 615220d | 2015-10-19 21:23:10 +0900 | [diff] [blame] | 737 | for (i = 0; i < 64; i++) { |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 738 | init_pair(i, colour_default[i & 7], colour_default[i >> 3]); |
OGAWA Hirofumi | 615220d | 2015-10-19 21:23:10 +0900 | [diff] [blame] | 739 | } |
OGAWA Hirofumi | 4083733 | 2015-11-29 22:28:24 +0900 | [diff] [blame] | 740 | /* Set default color for more than 64 for safety. */ |
OGAWA Hirofumi | 615220d | 2015-10-19 21:23:10 +0900 | [diff] [blame] | 741 | for (i = 64; i < COLOR_PAIRS; i++) { |
| 742 | init_pair(i, COLOR_WHITE, COLOR_BLACK); |
| 743 | } |
OGAWA Hirofumi | e2368dc | 2015-10-19 21:23:46 +0900 | [diff] [blame] | 744 | |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 745 | font_setup(); |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 746 | } |
| 747 | |
| 748 | static void curses_keyboard_setup(void) |
| 749 | { |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 750 | #if defined(__APPLE__) |
| 751 | /* always use generic keymaps */ |
| 752 | if (!keyboard_layout) |
| 753 | keyboard_layout = "en-us"; |
| 754 | #endif |
| 755 | if(keyboard_layout) { |
Fei Li | ab4f931 | 2018-10-17 10:26:50 +0200 | [diff] [blame] | 756 | kbd_layout = init_keyboard_layout(name2keysym, keyboard_layout, |
| 757 | &error_fatal); |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 758 | } |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 759 | } |
| 760 | |
Gerd Hoffmann | 7c20b4a | 2012-11-13 14:51:41 +0100 | [diff] [blame] | 761 | static const DisplayChangeListenerOps dcl_ops = { |
| 762 | .dpy_name = "curses", |
| 763 | .dpy_text_update = curses_update, |
| 764 | .dpy_text_resize = curses_resize, |
| 765 | .dpy_refresh = curses_refresh, |
| 766 | .dpy_text_cursor = curses_cursor_position, |
| 767 | }; |
| 768 | |
Gerd Hoffmann | b076661 | 2018-03-01 11:05:38 +0100 | [diff] [blame] | 769 | static void curses_display_init(DisplayState *ds, DisplayOptions *opts) |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 770 | { |
| 771 | #ifndef _WIN32 |
| 772 | if (!isatty(1)) { |
| 773 | fprintf(stderr, "We need a terminal output\n"); |
| 774 | exit(1); |
| 775 | } |
| 776 | #endif |
| 777 | |
Samuel Thibault | 2f8b7cd | 2019-03-11 14:51:27 +0100 | [diff] [blame] | 778 | setlocale(LC_CTYPE, ""); |
| 779 | if (opts->u.curses.charset) { |
| 780 | font_charset = opts->u.curses.charset; |
| 781 | } |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 782 | curses_setup(); |
| 783 | curses_keyboard_setup(); |
Anthony Liguori | 2869548 | 2010-03-21 14:13:02 -0500 | [diff] [blame] | 784 | atexit(curses_atexit); |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 785 | |
Gerd Hoffmann | 032ac6f | 2013-11-22 15:35:03 +0100 | [diff] [blame] | 786 | curses_winch_init(); |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 787 | |
Markus Armbruster | fedf0d3 | 2015-11-03 17:12:03 +0100 | [diff] [blame] | 788 | dcl = g_new0(DisplayChangeListener, 1); |
Gerd Hoffmann | 7c20b4a | 2012-11-13 14:51:41 +0100 | [diff] [blame] | 789 | dcl->ops = &dcl_ops; |
Gerd Hoffmann | 5209089 | 2013-04-23 15:44:31 +0200 | [diff] [blame] | 790 | register_displaychangelistener(dcl); |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 791 | |
| 792 | invalidate = 1; |
balrog | 4d3b6f6 | 2008-02-10 16:33:14 +0000 | [diff] [blame] | 793 | } |
Gerd Hoffmann | b076661 | 2018-03-01 11:05:38 +0100 | [diff] [blame] | 794 | |
| 795 | static QemuDisplay qemu_display_curses = { |
| 796 | .type = DISPLAY_TYPE_CURSES, |
| 797 | .init = curses_display_init, |
| 798 | }; |
| 799 | |
| 800 | static void register_curses(void) |
| 801 | { |
| 802 | qemu_display_register(&qemu_display_curses); |
| 803 | } |
| 804 | |
| 805 | type_init(register_curses); |