Cleanse back-end code of all references to X11 types
[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 Option engoutOptions[] = {
74 {  0,  LL|T2T,           17, NULL, NULL, NULL, NULL, Label, " " },
75 {  0, L2L|T2T|SAME_ROW, 163, NULL, NULL, NULL, NULL, Label, N_("engine name") },
76 {  0,     T2T|SAME_ROW,  30, NULL, NULL, NULL, NULL, Label, " " },
77 {  0, R2R|T2T|SAME_ROW, 188, NULL, NULL, NULL, NULL, Label, N_("move") },
78 {  0,  RR|T2T|SAME_ROW,  80, NULL, NULL, NULL, NULL, Label, N_("NPS") },
79 {200, T_VSCRL | T_TOP,  500, NULL, (void*) &mem1, "", NULL, TextBox, "" },
80 {  0,         0,         0, NULL, NULL, "", NULL, Break , "" },
81 {  0,  LL|T2T,           17, NULL, NULL, NULL, NULL, Label, " " },
82 {  0, L2L|T2T|SAME_ROW, 163, NULL, NULL, NULL, NULL, Label, N_("engine name") },
83 {  0,     T2T|SAME_ROW,  30, NULL, NULL, NULL, NULL, Label, " " },
84 {  0, R2R|T2T|SAME_ROW, 188, NULL, NULL, NULL, NULL, Label, N_("move") },
85 {  0,  RR|T2T|SAME_ROW,  80, NULL, NULL, NULL, NULL, Label, N_("NPS") },
86 {200, T_VSCRL | T_TOP,  500, NULL, (void*) &mem2, "", NULL, TextBox, "" },
87 {   0,      NO_OK,       0, NULL, NULL, "", NULL, EndMark , "" }
88 };
89
90 void
91 SetIcon (int which, int field, int nIcon)
92 {   // first call into xengineoutput.c to pick up icon pixmap
93     if( nIcon ) DrawWidgetIcon(&engoutOptions[STRIDE*which + field - 1], nIcon);
94 }
95
96 void
97 DoSetWindowText (int which, int field, char *s_label)
98 {
99         SetWidgetLabel (&engoutOptions[STRIDE*which + field - 1], s_label);
100 }
101
102 void
103 SetEngineOutputTitle (char *title)
104 {
105         SetDialogTitle(EngOutDlg, title);
106 }
107
108
109 void
110 DoClearMemo (int which)
111 {
112       SetWidgetText(&engoutOptions[STRIDE*which + MEMO], "", -1);
113 }
114
115 void
116 EngineOutputPopUp ()
117 {
118     static int  needInit = TRUE;
119     static char *title = N_("Engine output");
120
121     if (GenericPopUp(engoutOptions, _(title), EngOutDlg, BoardWindow, NONMODAL, 1)) {
122         if(engoutOptions[STRIDE-1].type != Break)
123             DisplayFatalError(_("Mismatch of STRIDE in nengineoutput.c\nChange and recompile!"), 0, 2);
124         AddHandler(&engoutOptions[MEMO], 6);
125         AddHandler(&engoutOptions[MEMO+STRIDE], 6);
126         if( needInit ) {
127             InitEngineOutput(&engoutOptions[0], &engoutOptions[MEMO]); // make icon bitmaps
128             needInit = FALSE;
129         }
130         SetEngineColorIcon( 0 );
131         SetEngineColorIcon( 1 );
132         SetEngineState( 0, STATE_IDLE, "" );
133         SetEngineState( 1, STATE_IDLE, "" );
134     } else {
135         SetIconName(EngOutDlg, _(title));
136         SetDialogTitle(EngOutDlg, _(title));
137     }
138
139     MarkMenu("View.EngineOutput", EngOutDlg);
140
141     ShowThinkingEvent(); // [HGM] thinking: might need to prompt engine for thinking output
142 }
143
144 int
145 EngineOutputIsUp ()
146 {
147     return shellUp[EngOutDlg];
148 }
149
150 int
151 EngineOutputDialogExists ()
152 {
153     return DialogExists(EngOutDlg);
154 }
155
156 void
157 EngineOutputProc ()
158 {
159   if (!PopDown(EngOutDlg)) EngineOutputPopUp();
160 }
161