removed trailing whitespace
[xboard.git] / nengineoutput.c
1 /*
2  * Engine output (PV)
3  *
4  * Author: Alessandro Scotti (Dec 2005)
5  *
6  * Copyright 2005 Alessandro Scotti
7  *
8  * Enhancements Copyright 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc.
9  *
10  * ------------------------------------------------------------------------
11  *
12  * GNU XBoard is free software: you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation, either version 3 of the License, or (at
15  * your option) any later version.
16  *
17  * GNU XBoard is distributed in the hope that it will be useful, but
18  * WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20  * General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program. If not, see http://www.gnu.org/licenses/.
24  *
25  * ------------------------------------------------------------------------
26  ** See the file ChangeLog for a revision history.  */
27
28 #include "config.h"
29
30 #include <stdio.h>
31 #include <ctype.h>
32 #include <errno.h>
33 #include <sys/types.h>
34
35 #if STDC_HEADERS
36 # include <stdlib.h>
37 # include <string.h>
38 #else /* not STDC_HEADERS */
39 extern char *getenv();
40 # if HAVE_STRING_H
41 #  include <string.h>
42 # else /* not HAVE_STRING_H */
43 #  include <strings.h>
44 # endif /* not HAVE_STRING_H */
45 #endif /* not STDC_HEADERS */
46
47 #if HAVE_UNISTD_H
48 # include <unistd.h>
49 #endif
50
51 #include "common.h"
52 #include "frontend.h"
53 #include "backend.h"
54 #include "dialogs.h"
55 #include "menus.h"
56 #include "engineoutput.h"
57 #include "gettext.h"
58
59 #ifdef ENABLE_NLS
60 # define  _(s) gettext (s)
61 # define N_(s) gettext_noop (s)
62 #else
63 # define  _(s) (s)
64 # define N_(s)  s
65 #endif
66
67
68 /* Module variables */
69 int  windowMode = 1;
70
71 char *mem1, *mem2; // dummies, as this dialog can never be OK'ed
72 int highTextStart[2], highTextEnd[2];
73
74 int MemoProc P((Option *opt, int n, int x, int y, char *text, int index));
75
76 Option engoutOptions[] = {
77 {  0,  LL|T2T,           17, NULL, NULL, NULL, NULL, Icon, " " },
78 {  0, L2L|T2T|SAME_ROW, 163, NULL, NULL, NULL, NULL, Label, N_("engine name") },
79 {  0,     T2T|SAME_ROW,  30, NULL, NULL, NULL, NULL, Icon, " " },
80 {  0, R2R|T2T|SAME_ROW, 188, NULL, NULL, NULL, NULL, Label, N_("move") },
81 {  0,  RR|T2T|SAME_ROW,  80, NULL, NULL, NULL, NULL, Label, N_("NPS") },
82 {200, T_VSCRL | T_TOP,  500, NULL, (void*) &mem1, "", (char**) MemoProc, TextBox, "" },
83 {  0,         0,         0, NULL, NULL, "", NULL, Break , "" },
84 {  0,  LL|T2T,           17, NULL, NULL, NULL, NULL, Icon, " " },
85 {  0, L2L|T2T|SAME_ROW, 163, NULL, NULL, NULL, NULL, Label, N_("engine name") },
86 {  0,     T2T|SAME_ROW,  30, NULL, NULL, NULL, NULL, Icon, " " },
87 {  0, R2R|T2T|SAME_ROW, 188, NULL, NULL, NULL, NULL, Label, N_("move") },
88 {  0,  RR|T2T|SAME_ROW,  80, NULL, NULL, NULL, NULL, Label, N_("NPS") },
89 {200, T_VSCRL | T_TOP,  500, NULL, (void*) &mem2, "", (char**) MemoProc, TextBox, "" },
90 {   0,      NO_OK,       0, NULL, NULL, "", NULL, EndMark , "" }
91 };
92
93 int
94 MemoProc (Option *opt, int n, int x, int y, char *text, int index)
95 {   // user callback for mouse events in memo
96     static int pressed; // keep track of button 3 state
97     int start, end, currentPV = (opt != &engoutOptions[5]);
98
99     switch(n) {
100       case 0: // pointer motion
101         if(!pressed) return FALSE; // only motion with button 3 down is of interest
102         MovePV(x, y, 500/*lineGap + BOARD_HEIGHT * (squareSize + lineGap)*/);
103         break;
104       case 3: // press button 3
105         pressed = 1;
106         if(LoadMultiPV(x, y, text, index, &start, &end, currentPV)) {
107             highTextStart[currentPV] = start; highTextEnd[currentPV] = end;
108             HighlightText(&engoutOptions[currentPV ? 12 : 5], start, end, TRUE);
109         }
110         break;
111       case -3: // release button 3
112         pressed = 0;
113         if(highTextStart[currentPV] != highTextEnd[currentPV])
114             HighlightText(&engoutOptions[currentPV ? 12 : 5], highTextStart[currentPV], highTextEnd[currentPV], FALSE);
115         highTextStart[currentPV] = highTextEnd[currentPV] = 0;
116         UnLoadPV();
117         break;
118       default:
119         return FALSE; // not meant for us; do regular event handler
120     }
121     return TRUE;
122 }
123
124 void
125 SetIcon (int which, int field, int nIcon)
126 {   // first call into xengineoutput.c to pick up icon pixmap
127     if( nIcon ) DrawWidgetIcon(&engoutOptions[STRIDE*which + field - 1], nIcon);
128 }
129
130 void
131 DoSetWindowText (int which, int field, char *s_label)
132 {
133         SetWidgetLabel (&engoutOptions[STRIDE*which + field - 1], s_label);
134 }
135
136 void
137 SetEngineOutputTitle (char *title)
138 {
139         SetDialogTitle(EngOutDlg, title);
140 }
141
142
143 void
144 DoClearMemo (int which)
145 {
146       SetWidgetText(&engoutOptions[STRIDE*which + MEMO], "", -1);
147 }
148
149 void
150 EngineOutputPopUp ()
151 {
152     static int  needInit = TRUE;
153     static char *title = N_("Engine output");
154
155     if (GenericPopUp(engoutOptions, _(title), EngOutDlg, BoardWindow, NONMODAL, 1)) {
156         if(engoutOptions[STRIDE-1].type != Break)
157             DisplayFatalError(_("Mismatch of STRIDE in nengineoutput.c\nChange and recompile!"), 0, 2);
158         AddHandler(&engoutOptions[MEMO], EngOutDlg, 6);
159         AddHandler(&engoutOptions[MEMO+STRIDE], EngOutDlg, 6);
160         if( needInit ) {
161             InitEngineOutput(&engoutOptions[0], &engoutOptions[MEMO]); // make icon bitmaps
162             needInit = FALSE;
163         }
164         SetEngineColorIcon( 0 );
165         SetEngineColorIcon( 1 );
166         SetEngineState( 0, STATE_IDLE, "" );
167         SetEngineState( 1, STATE_IDLE, "" );
168     } else {
169         SetIconName(EngOutDlg, _(title));
170         SetDialogTitle(EngOutDlg, _(title));
171     }
172
173     MarkMenu("View.EngineOutput", EngOutDlg);
174
175     ShowThinkingEvent(); // [HGM] thinking: might need to prompt engine for thinking output
176 }
177
178 int
179 EngineOutputIsUp ()
180 {
181     return shellUp[EngOutDlg];
182 }
183
184 int
185 EngineOutputDialogExists ()
186 {
187     return DialogExists(EngOutDlg);
188 }
189
190 void
191 EngineOutputProc ()
192 {
193   if (!PopDown(EngOutDlg)) EngineOutputPopUp();
194 }