Improve error reporting.
[wine.git] / programs / wineconsole / curses.c
blobc5e365c75cfb6152042f74e2f5365950e978f6f4
1 /*
2 * a GUI application for displaying a console
3 * (N)Curses back end
5 * Copyright 2002 Eric Pouech
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 /* Known issues & FIXME:
23 * - not all key mapping functions have been written
24 * - allow dyn loading of curses library (extreme care should be taken for
25 * functions which can be implemented as macros)
26 * - finish buffer scrolling (mainly, need to decide of a nice way for
27 * requesting the UP/DOWN operations
28 * - Resizing (unix) terminal does not change (Win32) console size.
29 * - Initial console size comes from registry and not from terminal size.
32 #include "config.h"
33 #include "wine/port.h"
35 #include <stdio.h>
36 #include <stdarg.h>
37 #include <stdlib.h>
38 #ifdef HAVE_CURSES_H
39 #include <curses.h>
40 #endif
41 #ifdef HAVE_NCURSES_H
42 #include <ncurses.h>
43 #endif
44 #undef KEY_EVENT /* avoid redefinition warning */
45 #ifdef HAVE_UNISTD_H
46 #include <unistd.h>
47 #endif
48 #include <windef.h>
49 #include <winbase.h>
50 #include <winnls.h>
51 #include "winecon_private.h"
53 #include "wine/library.h"
54 #include "wine/server.h"
55 #include "wine/debug.h"
57 WINE_DEFAULT_DEBUG_CHANNEL(curses);
59 #define PRIVATE(data) ((struct inner_data_curse*)((data)->private))
61 #if defined(HAVE_CURSES_H) || defined(HAVE_NCURSES_H)
63 #ifdef HAVE_NCURSES_H
64 #define CURSES_NAME "ncurses"
65 #else
66 #define CURSES_NAME "curses"
67 #endif
69 struct inner_data_curse
71 mmask_t initial_mouse_mask;
72 HANDLE hInput;
73 WINDOW* pad;
74 chtype* line;
75 int allow_scroll;
79 static void *nc_handle = NULL;
81 #define MAKE_FUNCPTR(f) static typeof(f) * p_##f;
83 MAKE_FUNCPTR(curs_set)
84 MAKE_FUNCPTR(delwin)
85 MAKE_FUNCPTR(endwin)
86 MAKE_FUNCPTR(getmouse)
87 MAKE_FUNCPTR(has_colors)
88 MAKE_FUNCPTR(init_pair)
89 #ifndef initscr
90 MAKE_FUNCPTR(initscr)
91 #endif
92 #ifndef intrflush
93 MAKE_FUNCPTR(intrflush)
94 #endif
95 MAKE_FUNCPTR(keypad)
96 MAKE_FUNCPTR(mouseinterval)
97 MAKE_FUNCPTR(mousemask)
98 MAKE_FUNCPTR(newpad)
99 #ifndef nodelay
100 MAKE_FUNCPTR(nodelay)
101 #endif
102 #ifndef noecho
103 MAKE_FUNCPTR(noecho)
104 #endif
105 MAKE_FUNCPTR(prefresh)
106 MAKE_FUNCPTR(raw)
107 MAKE_FUNCPTR(start_color)
108 MAKE_FUNCPTR(stdscr)
109 MAKE_FUNCPTR(waddchnstr)
110 MAKE_FUNCPTR(wmove)
111 MAKE_FUNCPTR(wgetch)
113 #undef MAKE_FUNCPTR
115 /**********************************************************************/
117 static BOOL WCCURSES_bind_libcurses(void)
119 #ifdef HAVE_NCURSES_H
120 static const char *ncname = SONAME_LIBNCURSES;
121 #else
122 static const char *ncname = SONAME_LIBCURSES;
123 #endif
125 nc_handle = wine_dlopen(ncname, RTLD_NOW, NULL, 0);
126 if(!nc_handle)
128 WINE_MESSAGE("Wine cannot find the " CURSES_NAME " library (%s).\n",
129 ncname);
130 return FALSE;
133 #define LOAD_FUNCPTR(f) \
134 if((p_##f = wine_dlsym(nc_handle, #f, NULL, 0)) == NULL) \
136 WINE_WARN("Can't find symbol %s\n", #f); \
137 goto sym_not_found; \
140 LOAD_FUNCPTR(curs_set)
141 LOAD_FUNCPTR(delwin)
142 LOAD_FUNCPTR(endwin)
143 LOAD_FUNCPTR(getmouse)
144 LOAD_FUNCPTR(has_colors)
145 LOAD_FUNCPTR(init_pair)
146 #ifndef initscr
147 LOAD_FUNCPTR(initscr)
148 #endif
149 #ifndef intrflush
150 LOAD_FUNCPTR(intrflush)
151 #endif
152 LOAD_FUNCPTR(keypad)
153 LOAD_FUNCPTR(mouseinterval)
154 LOAD_FUNCPTR(mousemask)
155 LOAD_FUNCPTR(newpad)
156 #ifndef nodelay
157 LOAD_FUNCPTR(nodelay)
158 #endif
159 #ifndef noecho
160 LOAD_FUNCPTR(noecho)
161 #endif
162 LOAD_FUNCPTR(prefresh)
163 LOAD_FUNCPTR(raw)
164 LOAD_FUNCPTR(start_color)
165 LOAD_FUNCPTR(stdscr)
166 LOAD_FUNCPTR(waddchnstr)
167 LOAD_FUNCPTR(wmove)
168 LOAD_FUNCPTR(wgetch)
170 #undef LOAD_FUNCPTR
172 return TRUE;
174 sym_not_found:
175 WINE_MESSAGE(
176 "Wine cannot find certain functions that it needs inside the "
177 CURSES_NAME "\nlibrary. To enable Wine to use " CURSES_NAME
178 " please upgrade your " CURSES_NAME "\nlibraries\n");
179 wine_dlclose(nc_handle, NULL, 0);
180 nc_handle = NULL;
181 return FALSE;
184 #define curs_set p_curs_set
185 #define delwin p_delwin
186 #define endwin p_endwin
187 #define getmouse p_getmouse
188 #define has_colors p_has_colors
189 #define init_pair p_init_pair
190 #ifndef initscr
191 #define initscr p_initscr
192 #endif
193 #ifndef intrflush
194 #define intrflush p_intrflush
195 #endif
196 #define keypad p_keypad
197 #define mouseinterval p_mouseinterval
198 #define mousemask p_mousemask
199 #define newpad p_newpad
200 #ifndef nodelay
201 #define nodelay p_nodelay
202 #endif
203 #ifndef noecho
204 #define noecho p_noecho
205 #endif
206 #define prefresh p_prefresh
207 #define raw p_raw
208 #define start_color p_start_color
209 #define stdscr (*p_stdscr)
210 #define waddchnstr p_waddchnstr
211 #define wmove p_wmove
212 #define wgetch p_wgetch
214 /******************************************************************
215 * WCCURSES_ResizeScreenBuffer
219 static void WCCURSES_ResizeScreenBuffer(struct inner_data* data)
221 /* reallocate a new pad. next event would redraw the whole pad */
222 if (PRIVATE(data)->pad) delwin(PRIVATE(data)->pad);
223 PRIVATE(data)->pad = newpad(data->curcfg.sb_height, data->curcfg.sb_width);
224 if (!PRIVATE(data)->pad)
225 WINE_FIXME("Cannot create pad\n");
226 if (PRIVATE(data)->line)
227 PRIVATE(data)->line = HeapReAlloc(GetProcessHeap(), 0, PRIVATE(data)->line,
228 sizeof(chtype) * data->curcfg.sb_width);
229 else
230 PRIVATE(data)->line = HeapAlloc(GetProcessHeap(), 0,
231 sizeof(chtype) * data->curcfg.sb_width);
234 /******************************************************************
235 * WCCURSES_PosCursor
237 * Set a new position for the cursor (and refresh any modified part of our pad)
239 static void WCCURSES_PosCursor(const struct inner_data* data)
241 int scr_width;
242 int scr_height;
244 if (data->curcfg.cursor_visible &&
245 data->cursor.Y >= data->curcfg.win_pos.Y &&
246 data->cursor.Y < data->curcfg.win_pos.Y + data->curcfg.win_height &&
247 data->cursor.X >= data->curcfg.win_pos.X &&
248 data->cursor.X < data->curcfg.win_pos.X + data->curcfg.win_width)
250 if (curs_set(2) == ERR) curs_set(1);
251 wmove(PRIVATE(data)->pad, data->cursor.Y, data->cursor.X);
253 else
255 curs_set(0);
257 getmaxyx(stdscr, scr_height, scr_width);
258 prefresh(PRIVATE(data)->pad,
259 data->curcfg.win_pos.Y, data->curcfg.win_pos.X,
260 0, 0,
261 min(scr_height, data->curcfg.win_height) - 1,
262 min(scr_width, data->curcfg.win_width) - 1);
265 /******************************************************************
266 * WCCURSES_ShapeCursor
268 * Sets a new shape for the cursor
270 void WCCURSES_ShapeCursor(struct inner_data* data, int size, int vis, BOOL force)
272 /* we can't do much about the size... */
273 data->curcfg.cursor_size = size;
274 data->curcfg.cursor_visible = vis ? TRUE : FALSE;
275 WCCURSES_PosCursor(data);
278 /******************************************************************
279 * WCCURSES_ComputePositions
281 * Recomputes all the components (mainly scroll bars) positions
283 void WCCURSES_ComputePositions(struct inner_data* data)
285 int x, y;
287 getmaxyx(stdscr, y, x);
288 if ((data->curcfg.win_height && y < data->curcfg.win_height) ||
289 (data->curcfg.win_width && x < data->curcfg.win_width))
291 SMALL_RECT pos;
293 WINE_WARN("Window too large (%dx%d), adjusting to curses' size (%dx%d)\n",
294 data->curcfg.win_width, data->curcfg.win_height, x, y);
295 pos.Left = pos.Top = 0;
296 pos.Right = x - 1; pos.Bottom = y - 1;
297 SetConsoleWindowInfo(data->hConOut, FALSE, &pos);
298 return; /* we'll get called again upon event for new window size */
300 if (PRIVATE(data)->pad) WCCURSES_PosCursor(data);
303 /******************************************************************
304 * WCCURSES_SetTitle
306 * Sets the title to the wine console
308 static void WCCURSES_SetTitle(const struct inner_data* data)
310 WCHAR wbuf[256];
312 if (WINECON_GetConsoleTitle(data->hConIn, wbuf, sizeof(wbuf)/sizeof(WCHAR)))
314 char buffer[256];
316 WideCharToMultiByte(CP_ACP, 0, wbuf, -1, buffer, sizeof(buffer),
317 NULL, NULL);
318 fputs("\033]2;", stdout);
319 fputs(buffer, stdout);
320 fputc('\a', stdout);
321 fflush(stdout);
325 /******************************************************************
326 * WCCURSES_Refresh
330 static void WCCURSES_Refresh(const struct inner_data* data, int tp, int bm)
332 int x, y;
333 CHAR_INFO* cell;
334 DWORD attr;
335 char ch;
337 for (y = tp; y <= bm; y++)
339 cell = &data->cells[y * data->curcfg.sb_width];
340 for (x = 0; x < data->curcfg.sb_width; x++)
342 WideCharToMultiByte(CP_ACP, 0, &cell[x].Char.UnicodeChar, 1,
343 &ch, 1, NULL, NULL);
344 attr = ((BYTE)ch < 32 || (BYTE)ch > 127) ? 32 : (BYTE)ch;
346 if (cell[x].Attributes & FOREGROUND_RED) attr |= COLOR_PAIR(COLOR_RED);
347 if (cell[x].Attributes & FOREGROUND_BLUE) attr |= COLOR_PAIR(COLOR_BLUE);
348 if (cell[x].Attributes & FOREGROUND_GREEN) attr |= COLOR_PAIR(COLOR_GREEN);
349 if (cell[x].Attributes & BACKGROUND_RED) attr |= COLOR_PAIR(COLOR_RED << 3);
350 if (cell[x].Attributes & BACKGROUND_BLUE) attr |= COLOR_PAIR(COLOR_BLUE << 3);
351 if (cell[x].Attributes & BACKGROUND_GREEN) attr |= COLOR_PAIR(COLOR_GREEN << 3);
353 if (cell[x].Attributes & FOREGROUND_INTENSITY) attr |= A_BOLD;
354 PRIVATE(data)->line[x] = attr;
356 mvwaddchnstr(PRIVATE(data)->pad, y, 0, PRIVATE(data)->line, data->curcfg.sb_width);
359 WCCURSES_PosCursor(data);
362 /******************************************************************
363 * WCCURSES_Scroll
367 static void WCCURSES_Scroll(struct inner_data* data, int pos, BOOL horz)
369 if (horz)
371 data->curcfg.win_pos.X = pos;
373 else
375 data->curcfg.win_pos.Y = pos;
377 WCCURSES_PosCursor(data);
380 /******************************************************************
381 * WCCURSES_SetFont
385 static void WCCURSES_SetFont(struct inner_data* data, const WCHAR* font,
386 unsigned height, unsigned weight)
388 /* FIXME: really not much to do ? */
391 /******************************************************************
392 * WCCURSES_ScrollV
396 static void WCCURSES_ScrollV(struct inner_data* data, int delta)
398 int pos = data->curcfg.win_pos.Y;
400 pos += delta;
401 if (pos < 0) pos = 0;
402 if (pos > data->curcfg.sb_height - data->curcfg.win_height)
403 pos = data->curcfg.sb_height - data->curcfg.win_height;
404 if (pos != data->curcfg.win_pos.Y)
406 data->curcfg.win_pos.Y = pos;
407 WCCURSES_PosCursor(data);
408 WINECON_NotifyWindowChange(data);
412 /* Ascii -> VK, generated by calling VkKeyScanA(i) */
413 static int vkkeyscan_table[256] =
415 0,0,0,0,0,0,0,0,8,9,0,0,0,13,0,0,0,0,0,19,145,556,0,0,0,0,0,27,0,0,0,
416 0,32,305,478,307,308,309,311,222,313,304,312,443,188,189,190,191,48,
417 49,50,51,52,53,54,55,56,57,442,186,444,187,446,447,306,321,322,323,
418 324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,
419 341,342,343,344,345,346,219,220,221,310,445,192,65,66,67,68,69,70,71,
420 72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,475,476,477,
421 448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
422 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
423 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
424 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,400,0,0,0,0,0,0
427 static int mapvkey_0[256] =
429 0,0,0,0,0,0,0,0,14,15,0,0,0,28,0,0,42,29,56,69,58,0,0,0,0,0,0,1,0,0,
430 0,0,57,73,81,79,71,75,72,77,80,0,0,0,55,82,83,0,11,2,3,4,5,6,7,8,9,
431 10,0,0,0,0,0,0,0,30,48,46,32,18,33,34,35,23,36,37,38,50,49,24,25,16,
432 19,31,20,22,47,17,45,21,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,78,0,74,
433 0,53,59,60,61,62,63,64,65,66,67,68,87,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
434 0,0,0,0,0,0,69,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
435 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,13,51,12,52,53,41,0,0,0,0,0,0,0,0,0,
436 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,43,27,40,76,96,0,0,0,0,0,0,0,0,
437 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
440 /******************************************************************
441 * WCCURSES_InitComplexChar
445 static inline void WCCURSES_InitComplexChar(INPUT_RECORD* ir, BOOL down, WORD vk, WORD kc, DWORD cks)
447 ir->EventType = KEY_EVENT;
448 ir->Event.KeyEvent.bKeyDown = down;
449 ir->Event.KeyEvent.wRepeatCount = 1;
451 ir->Event.KeyEvent.wVirtualScanCode = vk;
452 ir->Event.KeyEvent.wVirtualKeyCode = kc;
453 ir->Event.KeyEvent.dwControlKeyState = cks;
454 ir->Event.KeyEvent.uChar.UnicodeChar = 0;
457 /******************************************************************
458 * WCCURSES_FillSimpleChar
462 static unsigned WCCURSES_FillSimpleChar(INPUT_RECORD* ir, unsigned real_inchar)
464 unsigned vk;
465 unsigned inchar;
466 unsigned numEvent = 0;
467 DWORD cks = 0;
469 switch (real_inchar)
471 case 9: inchar = real_inchar;
472 real_inchar = 27; /* so that we don't think key is ctrl- something */
473 break;
474 case 10: inchar = '\r';
475 real_inchar = 27; /* Fixme: so that we don't think key is ctrl- something */
476 break;
477 case 127: inchar = '\b';
478 break;
479 case 27:
480 /* we assume that ESC & and the second character are atomically
481 * generated otherwise, we'll have a race here. FIXME: This gives 1 sec. delay
482 * because curses looks for a second character.
484 if ((inchar = wgetch(stdscr)) != ERR)
486 /* we got a alt-something key... */
487 cks = LEFT_ALT_PRESSED;
489 else
490 inchar = 27;
491 break;
492 default:
493 inchar = real_inchar;
494 break;
496 if ((inchar & ~0xFF) != 0) WINE_FIXME("What a char (%u)\n", inchar);
497 vk = vkkeyscan_table[inchar];
498 if (vk & 0x0100)
499 WCCURSES_InitComplexChar(&ir[numEvent++], 1, 0x2a, 0x10, SHIFT_PRESSED);
500 if ((vk & 0x0200) || (unsigned char)real_inchar <= 26)
501 WCCURSES_InitComplexChar(&ir[numEvent++], 1, 0x1d, 0x11, LEFT_CTRL_PRESSED);
502 if (vk & 0x0400)
503 WCCURSES_InitComplexChar(&ir[numEvent++], 1, 0x38, 0x12, LEFT_ALT_PRESSED);
505 ir[numEvent].EventType = KEY_EVENT;
506 ir[numEvent].Event.KeyEvent.bKeyDown = 1;
507 ir[numEvent].Event.KeyEvent.wRepeatCount = 1;
508 ir[numEvent].Event.KeyEvent.dwControlKeyState = cks;
509 if (vk & 0x0100)
510 ir[numEvent].Event.KeyEvent.dwControlKeyState |= SHIFT_PRESSED;
511 if ((vk & 0x0200) || (unsigned char)real_inchar <= 26)
512 ir[numEvent].Event.KeyEvent.dwControlKeyState |= LEFT_CTRL_PRESSED;
513 if (vk & 0x0400)
514 ir[numEvent].Event.KeyEvent.dwControlKeyState |= LEFT_ALT_PRESSED;
515 ir[numEvent].Event.KeyEvent.wVirtualKeyCode = vk;
516 ir[numEvent].Event.KeyEvent.wVirtualScanCode = mapvkey_0[vk & 0x00ff]; /* VirtualKeyCodes to ScanCode */
517 ir[numEvent].Event.KeyEvent.uChar.UnicodeChar = (unsigned char)inchar;
519 ir[numEvent + 1] = ir[numEvent];
520 ir[numEvent + 1].Event.KeyEvent.bKeyDown = 0;
522 numEvent += 2;
524 if (vk & 0x0400)
525 WCCURSES_InitComplexChar(&ir[numEvent++], 0, 0x38, 0x12, LEFT_ALT_PRESSED);
526 if ((vk & 0x0200) || (unsigned char)real_inchar <= 26)
527 WCCURSES_InitComplexChar(&ir[numEvent++], 0, 0x1d, 0x11, 0);
528 if (vk & 0x0100)
529 WCCURSES_InitComplexChar(&ir[numEvent++], 0, 0x2a, 0x10, 0);
531 return numEvent;
534 /******************************************************************
535 * WCCURSES_FillComplexChar
539 static unsigned WCCURSES_FillComplexChar(INPUT_RECORD* ir, WORD vk, WORD kc, DWORD cks)
541 WCCURSES_InitComplexChar(&ir[0], 1, vk, kc, ENHANCED_KEY | cks);
542 WCCURSES_InitComplexChar(&ir[1], 0, vk, kc, ENHANCED_KEY | cks);
544 return 2;
547 /******************************************************************
548 * WCCURSES_FillMouse
552 static unsigned WCCURSES_FillMouse(INPUT_RECORD* ir)
554 static unsigned bstate /* = 0 */;
555 static COORD pos /* = {0, 0} */;
557 MEVENT mevt;
559 if (getmouse(&mevt) == ERR)
560 return 0;
562 WINE_TRACE("[%u]: (%d, %d) %08lx\n",
563 mevt.id, mevt.x, mevt.y, (unsigned long)mevt.bstate);
565 /* macros to ease mapping ncurse button numbering to windows's one */
566 #define BTN1_BIT FROM_LEFT_1ST_BUTTON_PRESSED
567 #define BTN2_BIT RIGHTMOST_BUTTON_PRESSED
568 #define BTN3_BIT FROM_LEFT_2ND_BUTTON_PRESSED
569 #define BTN4_BIT 0 /* not done yet */
571 if (mevt.bstate & BUTTON1_PRESSED) bstate |= BTN1_BIT;
572 if (mevt.bstate & BUTTON1_RELEASED) bstate &= ~BTN1_BIT;
573 if (mevt.bstate & BUTTON2_PRESSED) bstate |= BTN2_BIT;
574 if (mevt.bstate & BUTTON2_RELEASED) bstate &= ~BTN2_BIT;
575 if (mevt.bstate & BUTTON3_PRESSED) bstate |= BTN3_BIT;
576 if (mevt.bstate & BUTTON3_RELEASED) bstate &= ~BTN3_BIT;
578 ir->EventType = MOUSE_EVENT;
579 ir->Event.MouseEvent.dwMousePosition.X = mevt.x;
580 ir->Event.MouseEvent.dwMousePosition.Y = mevt.y;
582 ir->Event.MouseEvent.dwButtonState = bstate;
584 /* partial conversion */
585 ir->Event.MouseEvent.dwControlKeyState = 0;
586 if (mevt.bstate & BUTTON_SHIFT) ir->Event.MouseEvent.dwControlKeyState |= SHIFT_PRESSED;
587 /* choose to map to left ctrl... could use both ? */
588 if (mevt.bstate & BUTTON_CTRL) ir->Event.MouseEvent.dwControlKeyState |= LEFT_CTRL_PRESSED;
589 /* choose to map to left alt... could use both ? */
590 if (mevt.bstate & BUTTON_ALT) ir->Event.MouseEvent.dwControlKeyState |= LEFT_ALT_PRESSED;
591 /* FIXME: unsupported yet flags: CAPSLOCK_ON, ENHANCED_KEY (??), NUMLOCK_ON, SCROLLLOCK_ON
592 * could be reported from the key events...
595 ir->Event.MouseEvent.dwEventFlags = 0;
596 /* FIXME: we no longer generate double click events */
598 if (!(mevt.bstate & (BUTTON1_PRESSED|BUTTON1_RELEASED|BUTTON2_PRESSED|BUTTON2_RELEASED|BUTTON3_PRESSED|BUTTON3_RELEASED)) &&
599 (mevt.x != pos.X || mevt.y != pos.Y))
601 ir->Event.MouseEvent.dwEventFlags |= MOUSE_MOVED;
603 pos.X = mevt.x; pos.Y = mevt.y;
605 return 1;
608 /******************************************************************
609 * WCCURSES_FillCode
613 static unsigned WCCURSES_FillCode(struct inner_data* data, INPUT_RECORD* ir, int inchar)
615 unsigned numEvent = 0;
617 switch (inchar)
619 case KEY_BREAK:
620 goto notFound;
621 case KEY_DOWN:
622 numEvent = WCCURSES_FillComplexChar(ir, 0x50, 0x28, 0);
623 break;
624 case KEY_UP:
625 numEvent = WCCURSES_FillComplexChar(ir, 0x48, 0x26, 0);
626 break;
627 case KEY_LEFT:
628 numEvent = WCCURSES_FillComplexChar(ir, 0x4b, 0x25, 0);
629 break;
630 case KEY_RIGHT:
631 numEvent = WCCURSES_FillComplexChar(ir, 0x4d, 0x27, 0);
632 break;
633 case KEY_HOME:
634 numEvent = WCCURSES_FillComplexChar(ir, 0x47, 0x24, 0);
635 break;
636 case KEY_BACKSPACE:
637 numEvent = WCCURSES_FillSimpleChar(ir, 127);
638 break;
640 case KEY_F0: /* up to F63 */
641 goto notFound;
643 case KEY_F( 1):
644 case KEY_F( 2):
645 case KEY_F( 3):
646 case KEY_F( 4):
647 case KEY_F( 5):
648 case KEY_F( 6):
649 case KEY_F( 7):
650 case KEY_F( 8):
651 case KEY_F( 9):
652 case KEY_F(10):
653 numEvent = WCCURSES_FillComplexChar(ir, 0x3b + inchar - KEY_F(1), 0, 0);
654 break;
655 case KEY_F(11):
656 case KEY_F(12):
657 if (PRIVATE(data)->allow_scroll)
659 WCCURSES_ScrollV(data, inchar == KEY_F(11) ? 8 : -8);
661 else
663 numEvent = WCCURSES_FillComplexChar(ir, 0xd9 + inchar - KEY_F(11), 0, 0);
665 break;
667 case KEY_DL:
668 case KEY_IL:
669 goto notFound;
671 case KEY_DC:
672 numEvent = WCCURSES_FillComplexChar(ir, 0x53, 0x2e, 0);
673 break;
674 case KEY_IC:
675 numEvent = WCCURSES_FillComplexChar(ir, 0x52, 0x2d, 0);
676 break;
678 case KEY_EIC:
679 case KEY_CLEAR:
680 case KEY_EOS:
681 case KEY_EOL:
682 case KEY_SF:
683 case KEY_SR:
684 goto notFound;
686 case KEY_NPAGE:
687 numEvent = WCCURSES_FillComplexChar(ir, 0x51, 0x22, 0);
688 break;
689 case KEY_PPAGE:
690 numEvent = WCCURSES_FillComplexChar(ir, 0x49, 0x21, 0);
691 break;
693 case KEY_STAB:
694 case KEY_CTAB:
695 case KEY_CATAB:
696 case KEY_ENTER:
697 case KEY_SRESET:
698 case KEY_RESET:
699 case KEY_PRINT:
700 case KEY_LL:
701 case KEY_A1:
702 case KEY_A3:
703 case KEY_B2:
704 case KEY_C1:
705 case KEY_C3:
706 goto notFound;
707 case KEY_BTAB: /* shift tab */
708 numEvent = WCCURSES_FillSimpleChar(ir, 0x9);
709 ir[0].Event.KeyEvent.dwControlKeyState |= SHIFT_PRESSED;
710 ir[1].Event.KeyEvent.dwControlKeyState |= SHIFT_PRESSED;
711 if (numEvent != 2) WINE_ERR("FillsimpleChar has changed");
712 break;
714 case KEY_BEG:
715 case KEY_CANCEL:
716 case KEY_CLOSE:
717 case KEY_COMMAND:
718 case KEY_COPY:
719 case KEY_CREATE:
720 goto notFound;
722 case KEY_END:
723 numEvent = WCCURSES_FillComplexChar(ir, 0x4f, 0x23, 0);
724 break;
726 case KEY_EXIT:
727 case KEY_FIND:
728 case KEY_HELP:
729 case KEY_MARK:
730 case KEY_MESSAGE:
731 goto notFound;
733 case KEY_MOUSE:
734 numEvent = WCCURSES_FillMouse(ir);
735 break;
737 case KEY_MOVE:
738 case KEY_NEXT:
739 case KEY_OPEN:
740 case KEY_OPTIONS:
741 case KEY_PREVIOUS:
742 case KEY_REDO:
743 case KEY_REFERENCE:
744 case KEY_REFRESH:
745 case KEY_REPLACE:
746 case KEY_RESIZE:
747 case KEY_RESTART:
748 case KEY_RESUME:
749 case KEY_SAVE:
750 case KEY_SBEG:
751 case KEY_SCANCEL:
752 case KEY_SCOMMAND:
753 case KEY_SCOPY:
754 case KEY_SCREATE:
755 goto notFound;
757 case KEY_SDC:
758 numEvent = WCCURSES_FillComplexChar(ir, 0x53, 0x2e, SHIFT_PRESSED);
759 break;
760 case KEY_SDL:
761 case KEY_SELECT:
762 goto notFound;
764 case KEY_SEND:
765 numEvent = WCCURSES_FillComplexChar(ir, 0x4f, 0x23, SHIFT_PRESSED);
766 break;
768 case KEY_SEOL:
769 case KEY_SEXIT:
770 case KEY_SFIND:
771 case KEY_SHELP:
772 goto notFound;
774 case KEY_SHOME:
775 numEvent = WCCURSES_FillComplexChar(ir, 0x47, 0x24, SHIFT_PRESSED);
776 break;
777 case KEY_SIC:
778 numEvent = WCCURSES_FillComplexChar(ir, 0x52, 0x2d, SHIFT_PRESSED);
779 break;
780 case KEY_SLEFT:
781 numEvent = WCCURSES_FillComplexChar(ir, 0x4b, 0x25, SHIFT_PRESSED);
782 break;
784 case KEY_SMESSAGE:
785 case KEY_SMOVE:
786 case KEY_SNEXT:
787 case KEY_SOPTIONS:
788 case KEY_SPREVIOUS:
789 case KEY_SPRINT:
790 case KEY_SREDO:
791 case KEY_SREPLACE:
792 goto notFound;
794 case KEY_SRIGHT:
795 numEvent = WCCURSES_FillComplexChar(ir, 0x4d, 0x27, SHIFT_PRESSED);
796 break;
798 case KEY_SRSUME:
799 case KEY_SSAVE:
800 case KEY_SSUSPEND:
801 case KEY_SUNDO:
802 case KEY_SUSPEND:
803 case KEY_UNDO:
804 notFound:
805 WINE_FIXME("Not done yet (%o)\n", inchar);
806 break;
807 default:
808 WINE_ERR("Unknown val (%o)\n", inchar);
809 break;
811 return numEvent;
814 /******************************************************************
815 * WCCURSES_GetEvents
819 static void WCCURSES_GetEvents(struct inner_data* data)
821 int inchar;
822 INPUT_RECORD ir[8];
823 unsigned numEvent;
824 DWORD n;
826 if ((inchar = wgetch(stdscr)) == ERR) {WINE_FIXME("Ooch. somebody beat us\n");return;}
828 WINE_TRACE("Got o%o (0x%x)\n", inchar,inchar);
830 if (inchar & KEY_CODE_YES)
832 numEvent = WCCURSES_FillCode(data, ir, inchar);
834 else
836 numEvent = WCCURSES_FillSimpleChar(ir, inchar);
838 if (numEvent)
839 WriteConsoleInput(data->hConIn, ir, numEvent, &n);
842 /******************************************************************
843 * WCCURSES_DeleteBackend
847 static void WCCURSES_DeleteBackend(struct inner_data* data)
849 mmask_t mm;
851 if (!PRIVATE(data)) return;
853 CloseHandle(PRIVATE(data)->hInput);
855 delwin(PRIVATE(data)->pad);
856 mousemask(PRIVATE(data)->initial_mouse_mask, &mm);
857 endwin();
859 HeapFree(GetProcessHeap(), 0, PRIVATE(data)->line);
860 HeapFree(GetProcessHeap(), 0, PRIVATE(data));
861 PRIVATE(data) = NULL;
864 /******************************************************************
865 * WCCURSES_MainLoop
869 static int WCCURSES_MainLoop(struct inner_data* data)
871 HANDLE hin[2];
873 hin[0] = PRIVATE(data)->hInput;
874 hin[1] = data->hSynchro;
876 for (;;)
878 unsigned ret = WaitForMultipleObjects(2, hin, FALSE, INFINITE);
879 switch (ret)
881 case WAIT_OBJECT_0:
882 WCCURSES_GetEvents(data);
883 break;
884 case WAIT_OBJECT_0+1:
885 if (!WINECON_GrabChanges(data)) return 0;
886 break;
887 default:
888 WINE_ERR("got pb\n");
889 /* err */
890 break;
895 /******************************************************************
896 * WCCURSES_InitBackend
898 * Initialisation part II: creation of window.
901 enum init_return WCCURSES_InitBackend(struct inner_data* data)
903 if( !WCCURSES_bind_libcurses() )
904 return init_failed;
906 data->private = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(struct inner_data_curse));
907 if (!data->private) return init_failed;
909 data->fnMainLoop = WCCURSES_MainLoop;
910 data->fnPosCursor = WCCURSES_PosCursor;
911 data->fnShapeCursor = WCCURSES_ShapeCursor;
912 data->fnComputePositions = WCCURSES_ComputePositions;
913 data->fnRefresh = WCCURSES_Refresh;
914 data->fnResizeScreenBuffer = WCCURSES_ResizeScreenBuffer;
915 data->fnSetTitle = WCCURSES_SetTitle;
916 data->fnScroll = WCCURSES_Scroll;
917 data->fnSetFont = WCCURSES_SetFont;
918 data->fnDeleteBackend = WCCURSES_DeleteBackend;
920 if (wine_server_fd_to_handle(0, GENERIC_READ|SYNCHRONIZE, FALSE,
921 (obj_handle_t*)&PRIVATE(data)->hInput))
923 WINE_FIXME("Cannot open 0\n");
924 return init_failed;
927 /* FIXME: should find a good way to enable buffer scrolling
928 * For the time being, setting this to 1 will allow scrolling up/down
929 * on buffer with F11/F12.
931 /* PRIVATE(data)->allow_scroll = 1; */
933 initscr();
935 /* creating the basic colors - FIXME intensity not handled yet */
936 if (has_colors())
938 int i, j;
940 start_color();
941 for (i = 0; i < 8; i++)
942 for (j = 0; j < 8; j++)
943 init_pair(i | (j << 3), i, j);
946 raw();
947 noecho();
948 intrflush(stdscr, FALSE);
949 nodelay(stdscr, TRUE);
950 keypad(stdscr, TRUE);
951 if (data->curcfg.quick_edit)
953 mousemask(BUTTON1_PRESSED|BUTTON1_RELEASED|
954 BUTTON2_PRESSED|BUTTON2_RELEASED|
955 BUTTON3_PRESSED|BUTTON3_RELEASED|
956 BUTTON_SHIFT|BUTTON_CTRL|BUTTON_ALT|REPORT_MOUSE_POSITION,
957 &PRIVATE(data)->initial_mouse_mask);
958 /* no click event generation... we just need button up/down events
959 * it doesn't seem that mouseinterval(-1) behaves as documented...
960 * 0 seems to be better value to disable click event generation
962 mouseinterval(0);
964 else
966 mousemask(0, &PRIVATE(data)->initial_mouse_mask);
969 return init_success;
972 #else
973 enum init_return WCCURSES_InitBackend(struct inner_data* data)
975 return init_not_supported;
977 #endif