Make generic memo-event handler, and connect history callback
[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 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
73 void
74 MemoProc (Option *opt, int n, int x, int y)
75 {
76     static int pressed; // keep track of button 3 state
77     switch(n) {
78       case 0: // pointer motion
79         if(!pressed) return;
80 //      MovePV(x, y, lineGap + BOARD_HEIGHT * (squareSize + lineGap));
81         break;
82       case 3: // press button 3
83         pressed = 1;
84         SelectPV(opt, x, y);
85         break;
86       case -3: // release button 3
87         pressed = 0;
88         StopPV(opt);
89         break;
90     }
91 }
92
93 Option engoutOptions[] = {
94 {  0,  LL|T2T,           17, NULL, NULL, NULL, NULL, Label, " " },
95 {  0, L2L|T2T|SAME_ROW, 163, NULL, NULL, NULL, NULL, Label, N_("engine name") },
96 {  0,     T2T|SAME_ROW,  30, NULL, NULL, NULL, NULL, Label, " " },
97 {  0, R2R|T2T|SAME_ROW, 188, NULL, NULL, NULL, NULL, Label, N_("move") },
98 {  0,  RR|T2T|SAME_ROW,  80, NULL, NULL, NULL, NULL, Label, N_("NPS") },
99 {200, T_VSCRL | T_TOP,  500, NULL, (void*) &mem1, "", (char**) MemoProc, TextBox, "" },
100 {  0,         0,         0, NULL, NULL, "", NULL, Break , "" },
101 {  0,  LL|T2T,           17, NULL, NULL, NULL, NULL, Label, " " },
102 {  0, L2L|T2T|SAME_ROW, 163, NULL, NULL, NULL, NULL, Label, N_("engine name") },
103 {  0,     T2T|SAME_ROW,  30, NULL, NULL, NULL, NULL, Label, " " },
104 {  0, R2R|T2T|SAME_ROW, 188, NULL, NULL, NULL, NULL, Label, N_("move") },
105 {  0,  RR|T2T|SAME_ROW,  80, NULL, NULL, NULL, NULL, Label, N_("NPS") },
106 {200, T_VSCRL | T_TOP,  500, NULL, (void*) &mem2, "", (char**) MemoProc, TextBox, "" },
107 {   0,      NO_OK,       0, NULL, NULL, "", NULL, EndMark , "" }
108 };
109
110 void
111 SetIcon (int which, int field, int nIcon)
112 {   // first call into xengineoutput.c to pick up icon pixmap
113     if( nIcon ) DrawWidgetIcon(&engoutOptions[STRIDE*which + field - 1], nIcon);
114 }
115
116 void
117 DoSetWindowText (int which, int field, char *s_label)
118 {
119         SetWidgetLabel (&engoutOptions[STRIDE*which + field - 1], s_label);
120 }
121
122 void
123 SetEngineOutputTitle (char *title)
124 {
125         SetDialogTitle(EngOutDlg, title);
126 }
127
128
129 void
130 DoClearMemo (int which)
131 {
132       SetWidgetText(&engoutOptions[STRIDE*which + MEMO], "", -1);
133 }
134
135 void
136 EngineOutputPopUp ()
137 {
138     static int  needInit = TRUE;
139     static char *title = N_("Engine output");
140
141     if (GenericPopUp(engoutOptions, _(title), EngOutDlg, BoardWindow, NONMODAL, 1)) {
142         if(engoutOptions[STRIDE-1].type != Break)
143             DisplayFatalError(_("Mismatch of STRIDE in nengineoutput.c\nChange and recompile!"), 0, 2);
144         AddHandler(&engoutOptions[MEMO], 6);
145         AddHandler(&engoutOptions[MEMO+STRIDE], 6);
146         if( needInit ) {
147             InitEngineOutput(&engoutOptions[0], &engoutOptions[MEMO]); // make icon bitmaps
148             needInit = FALSE;
149         }
150         SetEngineColorIcon( 0 );
151         SetEngineColorIcon( 1 );
152         SetEngineState( 0, STATE_IDLE, "" );
153         SetEngineState( 1, STATE_IDLE, "" );
154     } else {
155         SetIconName(EngOutDlg, _(title));
156         SetDialogTitle(EngOutDlg, _(title));
157     }
158
159     MarkMenu("View.EngineOutput", EngOutDlg);
160
161     ShowThinkingEvent(); // [HGM] thinking: might need to prompt engine for thinking output
162 }
163
164 int
165 EngineOutputIsUp ()
166 {
167     return shellUp[EngOutDlg];
168 }
169
170 int
171 EngineOutputDialogExists ()
172 {
173     return DialogExists(EngOutDlg);
174 }
175
176 void
177 EngineOutputProc ()
178 {
179   if (!PopDown(EngOutDlg)) EngineOutputPopUp();
180 }
181