make_makefiles: Merge the generated gitignores in dlls and programs into the top...
[wine] / programs / wineconsole / curses.c
1 /*
2  * a GUI application for displaying a console
3  *      (N)Curses back end
4  *
5  * Copyright 2002 Eric Pouech
6  *
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.
11  *
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.
16  *
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
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.
30  */
31
32 #include "config.h"
33 #include "wine/port.h"
34
35 #include <stdio.h>
36 #include <stdarg.h>
37 #include <stdlib.h>
38 #ifdef HAVE_NCURSES_H
39 # include <ncurses.h>
40 #elif defined(HAVE_CURSES_H)
41 # include <curses.h>
42 #endif
43 /* avoid redefinition warnings */
44 #undef KEY_EVENT
45 #undef MOUSE_MOVED
46
47 #ifdef HAVE_UNISTD_H
48 #include <unistd.h>
49 #endif
50 #include <windef.h>
51 #include <winbase.h>
52 #include <winnls.h>
53 #include "winecon_private.h"
54
55 #include "wine/library.h"
56 #include "wine/server.h"
57 #include "wine/debug.h"
58
59 WINE_DEFAULT_DEBUG_CHANNEL(curses);
60
61 #define PRIVATE(data)   ((struct inner_data_curse*)((data)->private))
62
63 #if defined(HAVE_CURSES_H) || defined(HAVE_NCURSES_H)
64
65 #ifdef HAVE_NCURSES_H
66 # define CURSES_NAME "ncurses"
67 #else
68 # define CURSES_NAME "curses"
69 #endif
70
71 struct inner_data_curse 
72 {
73     unsigned long       initial_mouse_mask;
74     HANDLE              hInput;
75     WINDOW*             pad;
76     chtype*             line;
77     int                 allow_scroll;
78 };
79
80
81 static void *nc_handle = NULL;
82
83 #ifdef initscr  /* work around Solaris breakage */
84 #undef initscr
85 extern WINDOW *initscr(void);
86 #endif
87
88 #define MAKE_FUNCPTR(f) static typeof(f) * p_##f;
89
90 MAKE_FUNCPTR(curs_set)
91 MAKE_FUNCPTR(delwin)
92 MAKE_FUNCPTR(endwin)
93 #ifndef getmaxx
94 MAKE_FUNCPTR(getmaxx)
95 #endif
96 #ifndef getmaxy
97 MAKE_FUNCPTR(getmaxy)
98 #endif
99 MAKE_FUNCPTR(getmouse)
100 MAKE_FUNCPTR(has_colors)
101 MAKE_FUNCPTR(init_pair)
102 MAKE_FUNCPTR(initscr)
103 #ifndef intrflush
104 MAKE_FUNCPTR(intrflush)
105 #endif
106 MAKE_FUNCPTR(keypad)
107 MAKE_FUNCPTR(newpad)
108 #ifndef nodelay
109 MAKE_FUNCPTR(nodelay)
110 #endif
111 #ifndef noecho
112 MAKE_FUNCPTR(noecho)
113 #endif
114 MAKE_FUNCPTR(prefresh)
115 MAKE_FUNCPTR(raw)
116 MAKE_FUNCPTR(start_color)
117 MAKE_FUNCPTR(stdscr)
118 MAKE_FUNCPTR(waddchnstr)
119 MAKE_FUNCPTR(wmove)
120 MAKE_FUNCPTR(wgetch)
121 #ifdef HAVE_MOUSEMASK
122 MAKE_FUNCPTR(mouseinterval)
123 MAKE_FUNCPTR(mousemask)
124 #endif
125
126 #undef MAKE_FUNCPTR
127
128 /**********************************************************************/
129
130 static BOOL WCCURSES_bind_libcurses(void)
131 {
132 #ifdef HAVE_NCURSES_H
133     static const char *ncname = SONAME_LIBNCURSES;
134 #else
135     static const char *ncname = SONAME_LIBCURSES;
136 #endif
137
138     nc_handle = wine_dlopen(ncname, RTLD_NOW, NULL, 0);
139     if(!nc_handle)
140     {
141         WINE_MESSAGE("Wine cannot find the " CURSES_NAME " library (%s).\n",
142                      ncname);
143         return FALSE;
144     }
145
146 #define LOAD_FUNCPTR(f)                                      \
147     if((p_##f = wine_dlsym(nc_handle, #f, NULL, 0)) == NULL) \
148     {                                                        \
149         WINE_WARN("Can't find symbol %s\n", #f);             \
150         goto sym_not_found;                                  \
151     }
152
153     LOAD_FUNCPTR(curs_set)
154     LOAD_FUNCPTR(delwin)
155     LOAD_FUNCPTR(endwin)
156 #ifndef getmaxx
157     LOAD_FUNCPTR(getmaxx)
158 #endif
159 #ifndef getmaxy
160     LOAD_FUNCPTR(getmaxy)
161 #endif
162     LOAD_FUNCPTR(getmouse)
163     LOAD_FUNCPTR(has_colors)
164     LOAD_FUNCPTR(init_pair)
165     LOAD_FUNCPTR(initscr)
166 #ifndef intrflush
167     LOAD_FUNCPTR(intrflush)
168 #endif
169     LOAD_FUNCPTR(keypad)
170     LOAD_FUNCPTR(newpad)
171 #ifndef nodelay
172     LOAD_FUNCPTR(nodelay)
173 #endif
174 #ifndef noecho
175     LOAD_FUNCPTR(noecho)
176 #endif
177     LOAD_FUNCPTR(prefresh)
178     LOAD_FUNCPTR(raw)
179     LOAD_FUNCPTR(start_color)
180     LOAD_FUNCPTR(stdscr)
181     LOAD_FUNCPTR(waddchnstr)
182     LOAD_FUNCPTR(wmove)
183     LOAD_FUNCPTR(wgetch)
184 #ifdef HAVE_MOUSEMASK
185     LOAD_FUNCPTR(mouseinterval)
186     LOAD_FUNCPTR(mousemask)
187 #endif
188
189 #undef LOAD_FUNCPTR
190
191     return TRUE;
192
193 sym_not_found:
194     WINE_MESSAGE(
195       "Wine cannot find certain functions that it needs inside the "
196        CURSES_NAME "\nlibrary.  To enable Wine to use " CURSES_NAME 
197       " please upgrade your " CURSES_NAME "\nlibraries\n");
198     wine_dlclose(nc_handle, NULL, 0);
199     nc_handle = NULL;
200     return FALSE;
201 }
202
203 #define curs_set p_curs_set
204 #define delwin p_delwin
205 #define endwin p_endwin
206 #ifndef getmaxx
207 #define getmaxx p_getmaxx
208 #endif
209 #ifndef getmaxy
210 #define getmaxy p_getmaxy
211 #endif
212 #define getmouse p_getmouse
213 #define has_colors p_has_colors
214 #define init_pair p_init_pair
215 #define initscr p_initscr
216 #ifndef intrflush
217 #define intrflush p_intrflush
218 #endif
219 #define keypad p_keypad
220 #define mouseinterval p_mouseinterval
221 #define mousemask p_mousemask
222 #define newpad p_newpad
223 #ifndef nodelay
224 #define nodelay p_nodelay
225 #endif
226 #ifndef noecho
227 #define noecho p_noecho
228 #endif
229 #define prefresh p_prefresh
230 #define raw p_raw
231 #define start_color p_start_color
232 #define stdscr (*p_stdscr)
233 #define waddchnstr p_waddchnstr
234 #define wmove p_wmove
235 #define wgetch p_wgetch
236
237 /******************************************************************
238  *              WCCURSES_ResizeScreenBuffer
239  *
240  *
241  */
242 static void WCCURSES_ResizeScreenBuffer(struct inner_data* data)
243 {
244     /* reallocate a new pad. next event would redraw the whole pad */
245     if (PRIVATE(data)->pad) delwin(PRIVATE(data)->pad);
246     PRIVATE(data)->pad = newpad(data->curcfg.sb_height, data->curcfg.sb_width);
247     if (!PRIVATE(data)->pad)
248         WINE_FIXME("Cannot create pad\n");
249     if (PRIVATE(data)->line) 
250         PRIVATE(data)->line = HeapReAlloc(GetProcessHeap(), 0, PRIVATE(data)->line, 
251                                       sizeof(chtype) * data->curcfg.sb_width);
252     else 
253         PRIVATE(data)->line = HeapAlloc(GetProcessHeap(), 0, 
254                                       sizeof(chtype) * data->curcfg.sb_width);
255 }
256
257 /******************************************************************
258  *              WCCURSES_PosCursor
259  *
260  * Set a new position for the cursor (and refresh any modified part of our pad)
261  */
262 static void     WCCURSES_PosCursor(const struct inner_data* data)
263 {
264     int scr_width;
265     int scr_height;
266
267     if (data->curcfg.cursor_visible &&
268         data->cursor.Y >= data->curcfg.win_pos.Y &&
269         data->cursor.Y < data->curcfg.win_pos.Y + data->curcfg.win_height &&
270         data->cursor.X >= data->curcfg.win_pos.X &&
271         data->cursor.X < data->curcfg.win_pos.X + data->curcfg.win_width)
272     {
273         if (curs_set(2) == ERR) curs_set(1);
274         wmove(PRIVATE(data)->pad, data->cursor.Y, data->cursor.X);
275     }
276     else
277     {
278         curs_set(0);
279     }
280     getmaxyx(stdscr, scr_height, scr_width); 
281     prefresh(PRIVATE(data)->pad,
282              data->curcfg.win_pos.Y, data->curcfg.win_pos.X,
283              0, 0, 
284              min(scr_height, data->curcfg.win_height) - 1, 
285              min(scr_width, data->curcfg.win_width) - 1);
286 }
287
288 /******************************************************************
289  *              WCCURSES_ShapeCursor
290  *
291  * Sets a new shape for the cursor
292  */
293 static void     WCCURSES_ShapeCursor(struct inner_data* data, int size, int vis, BOOL force)
294 {
295     /* we can't do much about the size... */
296     data->curcfg.cursor_size = size;
297     data->curcfg.cursor_visible = vis ? TRUE : FALSE;
298     WCCURSES_PosCursor(data);
299 }
300
301 /******************************************************************
302  *              WCCURSES_ComputePositions
303  *
304  * Recomputes all the components (mainly scroll bars) positions
305  */
306 static void     WCCURSES_ComputePositions(struct inner_data* data)
307 {
308     int         x, y;
309
310     getmaxyx(stdscr, y, x);
311     if ((data->curcfg.win_height && y < data->curcfg.win_height) ||
312         (data->curcfg.win_width && x < data->curcfg.win_width))
313     {
314         SMALL_RECT  pos;
315
316         WINE_WARN("Window too large (%dx%d), adjusting to curses' size (%dx%d)\n",
317                   data->curcfg.win_width, data->curcfg.win_height, x, y);
318         pos.Left = pos.Top = 0;
319         pos.Right = x - 1; pos.Bottom = y - 1;
320         SetConsoleWindowInfo(data->hConOut, FALSE, &pos);
321         return; /* we'll get called again upon event for new window size */
322     }
323     if (PRIVATE(data)->pad) WCCURSES_PosCursor(data);
324 }
325
326 /******************************************************************
327  *              WCCURSES_SetTitle
328  *
329  * Sets the title to the wine console
330  */
331 static void     WCCURSES_SetTitle(const struct inner_data* data)
332 {
333     WCHAR   wbuf[256];
334
335     if (WINECON_GetConsoleTitle(data->hConIn, wbuf, sizeof(wbuf)/sizeof(WCHAR)))
336     {
337         char        buffer[256];
338         
339         WideCharToMultiByte(CP_ACP, 0, wbuf, -1, buffer, sizeof(buffer), 
340                             NULL, NULL);
341         fputs("\033]2;", stdout);
342         fputs(buffer, stdout);
343         fputc('\a', stdout);
344         fflush(stdout);
345     }
346 }
347
348 /******************************************************************
349  *              WCCURSES_Refresh
350  *
351  *
352  */
353 static void WCCURSES_Refresh(const struct inner_data* data, int tp, int bm)
354 {
355     unsigned int x;
356     int         y;
357     CHAR_INFO*  cell;
358     DWORD       attr;
359     char        ch;
360
361     for (y = tp; y <= bm; y++)
362     {
363         cell = &data->cells[y * data->curcfg.sb_width];
364         for (x = 0; x < data->curcfg.sb_width; x++)
365         {
366             WideCharToMultiByte(CP_ACP, 0, &cell[x].Char.UnicodeChar, 1, 
367                                 &ch, 1, NULL, NULL);
368             attr = ((BYTE)ch < 32 || (BYTE)ch > 127) ? 32 : (BYTE)ch;
369
370             if (cell[x].Attributes & FOREGROUND_RED)       attr |= COLOR_PAIR(COLOR_RED);
371             if (cell[x].Attributes & FOREGROUND_BLUE)      attr |= COLOR_PAIR(COLOR_BLUE);
372             if (cell[x].Attributes & FOREGROUND_GREEN)     attr |= COLOR_PAIR(COLOR_GREEN);
373             if (cell[x].Attributes & BACKGROUND_RED)       attr |= COLOR_PAIR(COLOR_RED << 3);
374             if (cell[x].Attributes & BACKGROUND_BLUE)      attr |= COLOR_PAIR(COLOR_BLUE << 3);
375             if (cell[x].Attributes & BACKGROUND_GREEN)     attr |= COLOR_PAIR(COLOR_GREEN << 3);
376
377             if (cell[x].Attributes & FOREGROUND_INTENSITY) attr |= A_BOLD;
378             PRIVATE(data)->line[x] = attr;
379         }
380         mvwaddchnstr(PRIVATE(data)->pad, y, 0, PRIVATE(data)->line, data->curcfg.sb_width);
381     }
382
383     WCCURSES_PosCursor(data);
384 }
385
386 /******************************************************************
387  *              WCCURSES_Scroll
388  *
389  *
390  */
391 static void WCCURSES_Scroll(struct inner_data* data, int pos, BOOL horz)
392 {
393     if (horz)
394     {
395         data->curcfg.win_pos.X = pos;
396     }
397     else
398     {
399         data->curcfg.win_pos.Y = pos;
400     }
401     WCCURSES_PosCursor(data);
402 }
403
404 /******************************************************************
405  *              WCCURSES_SetFont
406  *
407  *
408  */
409 static void WCCURSES_SetFont(struct inner_data* data, const WCHAR* font, 
410                             unsigned height, unsigned weight)
411 {
412     /* FIXME: really not much to do ? */
413 }
414
415 /******************************************************************
416  *              WCCURSES_ScrollV
417  *
418  *
419  */
420 static void WCCURSES_ScrollV(struct inner_data* data, int delta)
421 {
422     int pos = data->curcfg.win_pos.Y;
423
424     pos += delta;
425     if (pos < 0) pos = 0;
426     if (pos > data->curcfg.sb_height - data->curcfg.win_height)
427         pos = data->curcfg.sb_height - data->curcfg.win_height;
428     if (pos != data->curcfg.win_pos.Y)
429     {
430         data->curcfg.win_pos.Y = pos;
431         WCCURSES_PosCursor(data);
432         WINECON_NotifyWindowChange(data);
433     }
434 }
435
436 /* Ascii -> VK, generated by calling VkKeyScanA(i) */
437 static int vkkeyscan_table[256] = 
438 {
439      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,
440      0,32,305,478,307,308,309,311,222,313,304,312,443,188,189,190,191,48,
441      49,50,51,52,53,54,55,56,57,442,186,444,187,446,447,306,321,322,323,
442      324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,
443      341,342,343,344,345,346,219,220,221,310,445,192,65,66,67,68,69,70,71,
444      72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,475,476,477,
445      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,
446      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,
447      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,
448      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
449 };
450
451 static int mapvkey_0[256] = 
452 {
453      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,
454      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,
455      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,
456      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,
457      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,
458      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,
459      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,
460      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,
461      0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
462 }; 
463
464 /******************************************************************
465  *              WCCURSES_InitComplexChar
466  *
467  *
468  */
469 static inline void WCCURSES_InitComplexChar(INPUT_RECORD* ir, BOOL down, WORD vk, WORD kc, DWORD cks)
470 {
471     ir->EventType                        = KEY_EVENT;
472     ir->Event.KeyEvent.bKeyDown          = down;
473     ir->Event.KeyEvent.wRepeatCount      = 1;
474     
475     ir->Event.KeyEvent.wVirtualScanCode  = vk;
476     ir->Event.KeyEvent.wVirtualKeyCode   = kc;
477     ir->Event.KeyEvent.dwControlKeyState = cks;
478     ir->Event.KeyEvent.uChar.UnicodeChar = 0;
479 }
480
481 /******************************************************************
482  *              WCCURSES_FillSimpleChar
483  *
484  *
485  */
486 static unsigned WCCURSES_FillSimpleChar(INPUT_RECORD* ir, unsigned real_inchar)
487 {
488     unsigned vk;
489     unsigned inchar;
490     unsigned numEvent = 0;
491     DWORD    cks = 0;
492
493     switch (real_inchar)
494     {
495     case   9: inchar = real_inchar;
496               real_inchar = 27; /* so that we don't think key is ctrl- something */     
497               break;
498     case  10: inchar = '\r'; 
499               real_inchar = 27; /* Fixme: so that we don't think key is ctrl- something */ 
500               break;
501     case 127: inchar = '\b'; 
502               break;
503     case  27:
504         /* we assume that ESC & and the second character are atomically
505          * generated otherwise, we'll have a race here. FIXME: This gives 1 sec. delay
506          * because curses looks for a second character.
507          */
508         if ((inchar = wgetch(stdscr)) != ERR)
509         {
510             /* we got a alt-something key... */
511             cks = LEFT_ALT_PRESSED;
512         }
513         else
514             inchar = 27;
515         break;
516     default:
517         inchar = real_inchar;
518         break;
519     }
520     if ((inchar & ~0xFF) != 0) WINE_FIXME("What a char (%u)\n", inchar);
521     vk = vkkeyscan_table[inchar];
522     if (vk & 0x0100)
523         WCCURSES_InitComplexChar(&ir[numEvent++], 1, 0x2a, 0x10, SHIFT_PRESSED);
524     if ((vk & 0x0200) || (unsigned char)real_inchar <= 26)
525         WCCURSES_InitComplexChar(&ir[numEvent++], 1, 0x1d, 0x11, LEFT_CTRL_PRESSED);
526     if (vk & 0x0400)
527         WCCURSES_InitComplexChar(&ir[numEvent++], 1, 0x38, 0x12, LEFT_ALT_PRESSED);
528
529     ir[numEvent].EventType                        = KEY_EVENT;
530     ir[numEvent].Event.KeyEvent.bKeyDown          = 1;
531     ir[numEvent].Event.KeyEvent.wRepeatCount      = 1;
532     ir[numEvent].Event.KeyEvent.dwControlKeyState = cks;
533     if (vk & 0x0100)
534         ir[numEvent].Event.KeyEvent.dwControlKeyState |= SHIFT_PRESSED;
535     if ((vk & 0x0200) || (unsigned char)real_inchar <= 26)
536         ir[numEvent].Event.KeyEvent.dwControlKeyState |= LEFT_CTRL_PRESSED;
537     if (vk & 0x0400)
538         ir[numEvent].Event.KeyEvent.dwControlKeyState |= LEFT_ALT_PRESSED;
539     ir[numEvent].Event.KeyEvent.wVirtualKeyCode = vk;
540     ir[numEvent].Event.KeyEvent.wVirtualScanCode = mapvkey_0[vk & 0x00ff]; /* VirtualKeyCodes to ScanCode */
541     ir[numEvent].Event.KeyEvent.uChar.UnicodeChar = (unsigned char)inchar;
542
543     ir[numEvent + 1] = ir[numEvent];
544     ir[numEvent + 1].Event.KeyEvent.bKeyDown      = 0;
545
546     numEvent += 2;
547
548     if (vk & 0x0400)
549         WCCURSES_InitComplexChar(&ir[numEvent++], 0, 0x38, 0x12, LEFT_ALT_PRESSED);
550     if ((vk & 0x0200) || (unsigned char)real_inchar <= 26)
551         WCCURSES_InitComplexChar(&ir[numEvent++], 0, 0x1d, 0x11, 0);
552     if (vk & 0x0100)
553         WCCURSES_InitComplexChar(&ir[numEvent++], 0, 0x2a, 0x10, 0);
554
555     return numEvent;
556 }
557
558 /******************************************************************
559  *              WCCURSES_FillComplexChar
560  *
561  *
562  */
563 static unsigned WCCURSES_FillComplexChar(INPUT_RECORD* ir, WORD vk, WORD kc, DWORD cks)
564 {
565     WCCURSES_InitComplexChar(&ir[0], 1, vk, kc, ENHANCED_KEY | cks);
566     WCCURSES_InitComplexChar(&ir[1], 0, vk, kc, ENHANCED_KEY | cks);
567
568     return 2;
569 }
570
571 /******************************************************************
572  *              WCCURSES_FillMouse
573  *
574  *
575  */
576 static unsigned WCCURSES_FillMouse(INPUT_RECORD* ir)
577 {
578 #ifdef HAVE_MOUSEMASK
579     static      unsigned        bstate /* = 0 */;
580     static      COORD           pos /* = {0, 0} */;
581
582     MEVENT      mevt;
583
584     if (getmouse(&mevt) == ERR)
585         return 0;
586
587     WINE_TRACE("[%u]: (%d, %d) %08lx\n", 
588                mevt.id, mevt.x, mevt.y, (unsigned long)mevt.bstate);
589
590     /* macros to ease mapping ncurse button numbering to windows's one */
591 #define BTN1_BIT        FROM_LEFT_1ST_BUTTON_PRESSED
592 #define BTN2_BIT        RIGHTMOST_BUTTON_PRESSED
593 #define BTN3_BIT        FROM_LEFT_2ND_BUTTON_PRESSED
594 #define BTN4_BIT        0 /* not done yet */
595
596     if (mevt.bstate & BUTTON1_PRESSED)   bstate |= BTN1_BIT;
597     if (mevt.bstate & BUTTON1_RELEASED)  bstate &= ~BTN1_BIT;
598     if (mevt.bstate & BUTTON2_PRESSED)   bstate |= BTN2_BIT;
599     if (mevt.bstate & BUTTON2_RELEASED)  bstate &= ~BTN2_BIT;
600     if (mevt.bstate & BUTTON3_PRESSED)   bstate |= BTN3_BIT;
601     if (mevt.bstate & BUTTON3_RELEASED)  bstate &= ~BTN3_BIT;
602
603     ir->EventType = MOUSE_EVENT;
604     ir->Event.MouseEvent.dwMousePosition.X = mevt.x;
605     ir->Event.MouseEvent.dwMousePosition.Y = mevt.y;
606
607     ir->Event.MouseEvent.dwButtonState = bstate;
608
609     /* partial conversion */
610     ir->Event.MouseEvent.dwControlKeyState = 0;
611     if (mevt.bstate & BUTTON_SHIFT)     ir->Event.MouseEvent.dwControlKeyState |= SHIFT_PRESSED;
612     /* choose to map to left ctrl... could use both ? */
613     if (mevt.bstate & BUTTON_CTRL)      ir->Event.MouseEvent.dwControlKeyState |= LEFT_CTRL_PRESSED;
614     /* choose to map to left alt... could use both ? */
615     if (mevt.bstate & BUTTON_ALT)       ir->Event.MouseEvent.dwControlKeyState |= LEFT_ALT_PRESSED;
616     /* FIXME: unsupported yet flags: CAPSLOCK_ON, ENHANCED_KEY (??), NUMLOCK_ON, SCROLLLOCK_ON 
617      * could be reported from the key events...
618      */
619
620     ir->Event.MouseEvent.dwEventFlags = 0;
621     /* FIXME: we no longer generate double click events */
622
623     if (!(mevt.bstate & (BUTTON1_PRESSED|BUTTON1_RELEASED|BUTTON2_PRESSED|BUTTON2_RELEASED|BUTTON3_PRESSED|BUTTON3_RELEASED)) &&
624         (mevt.x != pos.X || mevt.y != pos.Y))
625     {
626         ir->Event.MouseEvent.dwEventFlags |= MOUSE_MOVED;
627     }
628     pos.X = mevt.x; pos.Y = mevt.y;
629
630     return 1;
631 #else
632     return 0;
633 #endif
634 }
635
636 /******************************************************************
637  *              WCCURSES_FillCode
638  *
639  *
640  */
641 static unsigned WCCURSES_FillCode(struct inner_data* data, INPUT_RECORD* ir, int inchar)
642 {
643     unsigned numEvent = 0;
644     
645     switch (inchar)
646     {
647     case KEY_BREAK:
648         goto notFound;
649     case KEY_DOWN:
650         numEvent = WCCURSES_FillComplexChar(ir, 0x50, 0x28, 0);
651         break;
652     case KEY_UP:
653         numEvent = WCCURSES_FillComplexChar(ir, 0x48, 0x26, 0);
654         break;
655     case KEY_LEFT:
656         numEvent = WCCURSES_FillComplexChar(ir, 0x4b, 0x25, 0);
657         break;
658     case KEY_RIGHT:
659         numEvent = WCCURSES_FillComplexChar(ir, 0x4d, 0x27, 0);
660         break;
661     case KEY_HOME:
662         numEvent = WCCURSES_FillComplexChar(ir, 0x47, 0x24, 0);
663         break;
664     case KEY_BACKSPACE:
665         numEvent = WCCURSES_FillSimpleChar(ir, 127);
666         break;
667         
668     case KEY_F0: /* up to F63 */
669         goto notFound;
670                     
671     case KEY_F( 1):
672     case KEY_F( 2):
673     case KEY_F( 3):
674     case KEY_F( 4):
675     case KEY_F( 5):
676     case KEY_F( 6):
677     case KEY_F( 7):
678     case KEY_F( 8):
679     case KEY_F( 9):
680     case KEY_F(10):
681         numEvent = WCCURSES_FillComplexChar(ir, 0x3b + inchar - KEY_F(1),
682                                             0x70 + inchar - KEY_F(1), 0);
683         break;
684     case KEY_F(11):
685     case KEY_F(12):
686         if (PRIVATE(data)->allow_scroll)
687         {
688             WCCURSES_ScrollV(data, inchar == KEY_F(11) ? 8 : -8);
689         }
690         else
691         {
692             numEvent = WCCURSES_FillComplexChar(ir, 0xd9 + inchar - KEY_F(11),
693                                                 0x7a + inchar - KEY_F(11), 0);
694         }
695         break;
696                     
697     case KEY_DL:
698     case KEY_IL:
699         goto notFound;
700
701     case KEY_DC:
702         numEvent = WCCURSES_FillComplexChar(ir, 0x53, 0x2e, 0);
703         break;
704     case KEY_IC:
705         numEvent = WCCURSES_FillComplexChar(ir, 0x52, 0x2d, 0);
706         break;
707
708     case KEY_EIC:
709     case KEY_CLEAR:
710     case KEY_EOS:
711     case KEY_EOL:
712     case KEY_SF:
713     case KEY_SR:
714         goto notFound;
715                     
716     case KEY_NPAGE:
717         numEvent = WCCURSES_FillComplexChar(ir, 0x51, 0x22, 0);
718         break;
719     case KEY_PPAGE:
720         numEvent = WCCURSES_FillComplexChar(ir, 0x49, 0x21, 0);
721         break;
722         
723     case KEY_STAB:
724     case KEY_CTAB:
725     case KEY_CATAB:
726     case KEY_ENTER:
727     case KEY_SRESET:
728     case KEY_RESET:
729     case KEY_PRINT:
730     case KEY_LL:
731     case KEY_A1:
732     case KEY_A3:
733     case KEY_B2:
734     case KEY_C1:
735     case KEY_C3:
736         goto notFound;
737     case KEY_BTAB:      /* shift tab */
738         numEvent = WCCURSES_FillSimpleChar(ir, 0x9);
739         ir[0].Event.KeyEvent.dwControlKeyState |= SHIFT_PRESSED;
740         ir[1].Event.KeyEvent.dwControlKeyState |= SHIFT_PRESSED;        
741         if (numEvent != 2) WINE_ERR("FillsimpleChar has changed\n");
742         break;
743
744     case KEY_BEG:
745     case KEY_CANCEL:
746     case KEY_CLOSE:
747     case KEY_COMMAND:
748     case KEY_COPY:
749     case KEY_CREATE:
750         goto notFound;
751
752     case KEY_END:
753         numEvent = WCCURSES_FillComplexChar(ir, 0x4f, 0x23, 0);
754         break;
755         
756     case KEY_EXIT:
757     case KEY_FIND:
758     case KEY_HELP:
759     case KEY_MARK:
760     case KEY_MESSAGE:
761         goto notFound;
762                     
763     case KEY_MOUSE:
764         numEvent = WCCURSES_FillMouse(ir);
765         break;
766         
767     case KEY_MOVE:
768     case KEY_NEXT:
769     case KEY_OPEN:
770     case KEY_OPTIONS:
771     case KEY_PREVIOUS:
772     case KEY_REDO:
773     case KEY_REFERENCE:
774     case KEY_REFRESH:
775     case KEY_REPLACE:
776     case KEY_RESTART:
777     case KEY_RESUME:
778     case KEY_SAVE:
779     case KEY_SBEG:
780     case KEY_SCANCEL:
781     case KEY_SCOMMAND:
782     case KEY_SCOPY:
783     case KEY_SCREATE:
784 #ifdef KEY_RESIZE
785     case KEY_RESIZE:
786 #endif
787         goto notFound;
788
789     case KEY_SDC:
790         numEvent = WCCURSES_FillComplexChar(ir, 0x53, 0x2e, SHIFT_PRESSED);
791         break;
792     case KEY_SDL:
793     case KEY_SELECT:
794         goto notFound;
795
796     case KEY_SEND:
797         numEvent = WCCURSES_FillComplexChar(ir, 0x4f, 0x23, SHIFT_PRESSED);
798         break;
799
800     case KEY_SEOL:
801     case KEY_SEXIT:
802     case KEY_SFIND:
803     case KEY_SHELP:
804         goto notFound;
805
806     case KEY_SHOME:
807         numEvent = WCCURSES_FillComplexChar(ir, 0x47, 0x24, SHIFT_PRESSED);
808         break;
809     case KEY_SIC:
810         numEvent = WCCURSES_FillComplexChar(ir, 0x52, 0x2d, SHIFT_PRESSED);
811         break;
812     case KEY_SLEFT:
813         numEvent = WCCURSES_FillComplexChar(ir, 0x4b, 0x25, SHIFT_PRESSED);
814         break;
815
816     case KEY_SMESSAGE:
817     case KEY_SMOVE:
818     case KEY_SNEXT:
819     case KEY_SOPTIONS:
820     case KEY_SPREVIOUS:
821     case KEY_SPRINT:
822     case KEY_SREDO:
823     case KEY_SREPLACE:
824         goto notFound;
825
826     case KEY_SRIGHT:
827         numEvent = WCCURSES_FillComplexChar(ir, 0x4d, 0x27, SHIFT_PRESSED);
828         break;
829
830     case KEY_SRSUME:
831     case KEY_SSAVE:
832     case KEY_SSUSPEND:
833     case KEY_SUNDO:
834     case KEY_SUSPEND:
835     case KEY_UNDO:
836     notFound:
837         WINE_FIXME("Not done yet (%o)\n", inchar);
838         break;
839     default:
840         WINE_ERR("Unknown val (%o)\n", inchar);
841         break;
842     }
843     return numEvent;
844 }
845
846 /******************************************************************
847  *              WCCURSES_GetEvents
848  *
849  *
850  */
851 static void WCCURSES_GetEvents(struct inner_data* data)
852 {
853     int                 inchar;
854     INPUT_RECORD        ir[8];
855     unsigned            numEvent;
856     DWORD               n;
857     
858     if ((inchar = wgetch(stdscr)) == ERR) {WINE_FIXME("Ooch. somebody beat us\n");return;}
859     
860     WINE_TRACE("Got o%o (0x%x)\n", inchar,inchar);
861     
862     if (inchar >= KEY_MIN && inchar <= KEY_MAX)
863     {
864         numEvent = WCCURSES_FillCode(data, ir, inchar);
865     }
866     else
867     {
868         numEvent = WCCURSES_FillSimpleChar(ir, inchar);
869     }
870     if (numEvent)
871         WriteConsoleInput(data->hConIn, ir, numEvent, &n);
872 }
873
874 /******************************************************************
875  *              WCCURSES_DeleteBackend
876  *
877  *
878  */
879 static void WCCURSES_DeleteBackend(struct inner_data* data)
880 {
881     if (!PRIVATE(data)) return;
882
883     CloseHandle(PRIVATE(data)->hInput);
884
885     delwin(PRIVATE(data)->pad);
886 #ifdef HAVE_MOUSEMASK
887     {
888         mmask_t mm;
889         mousemask(PRIVATE(data)->initial_mouse_mask, &mm);
890     }
891 #endif
892     endwin();
893
894     HeapFree(GetProcessHeap(), 0, PRIVATE(data)->line);
895     HeapFree(GetProcessHeap(), 0, PRIVATE(data));
896     data->private = NULL;
897 }
898
899 /******************************************************************
900  *              WCCURSES_MainLoop
901  *
902  *
903  */
904 static int WCCURSES_MainLoop(struct inner_data* data)
905 {
906     HANDLE hin[2];
907
908     hin[0] = PRIVATE(data)->hInput;
909     hin[1] = data->hSynchro;
910
911     for (;;) 
912     {
913         unsigned ret = WaitForMultipleObjects(2, hin, FALSE, INFINITE);
914         switch (ret)
915         {
916         case WAIT_OBJECT_0:
917             WCCURSES_GetEvents(data);
918             break;
919         case WAIT_OBJECT_0+1:
920             if (!WINECON_GrabChanges(data)) return 0;
921             break;
922         default:
923             WINE_ERR("got pb\n");
924             /* err */
925             break;
926         }
927     }
928 }
929
930 /******************************************************************
931  *              WCCURSES_InitBackend
932  *
933  * Initialisation part II: creation of window.
934  *
935  */
936 enum init_return WCCURSES_InitBackend(struct inner_data* data)
937 {
938     if( !WCCURSES_bind_libcurses() )
939         return init_failed;
940
941     data->private = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(struct inner_data_curse));
942     if (!data->private) return init_failed;
943
944     data->fnMainLoop           = WCCURSES_MainLoop;
945     data->fnPosCursor          = WCCURSES_PosCursor;
946     data->fnShapeCursor        = WCCURSES_ShapeCursor;
947     data->fnComputePositions   = WCCURSES_ComputePositions;
948     data->fnRefresh            = WCCURSES_Refresh;
949     data->fnResizeScreenBuffer = WCCURSES_ResizeScreenBuffer;
950     data->fnSetTitle           = WCCURSES_SetTitle;
951     data->fnScroll             = WCCURSES_Scroll;
952     data->fnSetFont            = WCCURSES_SetFont;
953     data->fnDeleteBackend      = WCCURSES_DeleteBackend;
954
955     if (wine_server_fd_to_handle(0, GENERIC_READ|SYNCHRONIZE, 0,
956                                  (obj_handle_t*)&PRIVATE(data)->hInput))
957     {
958         WINE_FIXME("Cannot open 0\n");
959         return init_failed;
960     }
961
962     /* FIXME: should find a good way to enable buffer scrolling
963      * For the time being, setting this to 1 will allow scrolling up/down 
964      * on buffer with F11/F12.
965      */
966     /* PRIVATE(data)->allow_scroll = 1; */
967
968     initscr();
969
970     /* creating the basic colors - FIXME intensity not handled yet */
971     if (has_colors())
972     {
973         int i, j;
974
975         start_color();
976         for (i = 0; i < 8; i++)
977             for (j = 0; j < 8; j++)
978                 init_pair(i | (j << 3), i, j);
979     }
980
981     raw();
982     noecho();
983     intrflush(stdscr, FALSE);
984     nodelay(stdscr, TRUE);
985     keypad(stdscr, TRUE);
986 #ifdef HAVE_MOUSEMASK
987     if (data->curcfg.quick_edit)
988     {
989         mmask_t mm;
990         mousemask(BUTTON1_PRESSED|BUTTON1_RELEASED|
991                   BUTTON2_PRESSED|BUTTON2_RELEASED|
992                   BUTTON3_PRESSED|BUTTON3_RELEASED|
993                   BUTTON_SHIFT|BUTTON_CTRL|BUTTON_ALT|REPORT_MOUSE_POSITION,
994                   &mm);
995         /* no click event generation... we just need button up/down events
996          * it doesn't seem that mouseinterval(-1) behaves as documented... 
997          * 0 seems to be better value to disable click event generation
998          */
999         mouseinterval(0);
1000         PRIVATE(data)->initial_mouse_mask = mm;
1001     }
1002     else
1003     {
1004         mmask_t mm;
1005         mousemask(0, &mm);
1006         PRIVATE(data)->initial_mouse_mask = mm;
1007     }
1008 #endif
1009
1010     return init_success;
1011 }
1012
1013 #else
1014 enum init_return WCCURSES_InitBackend(struct inner_data* data)
1015 {
1016     return init_not_supported;
1017 }
1018 #endif