removed unused variables (-Wunused-variable)
[xboard.git] / dialogs.c
1 /*
2  * dialogs.c -- platform-independent code for dialogs of XBoard
3  *
4  * Copyright 2000, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
5  * ------------------------------------------------------------------------
6  *
7  * GNU XBoard is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or (at
10  * your option) any later version.
11  *
12  * GNU XBoard is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see http://www.gnu.org/licenses/.  *
19  *
20  *------------------------------------------------------------------------
21  ** See the file ChangeLog for a revision history.  */
22
23 // [HGM] this file is the counterpart of woptions.c, containing xboard popup menus
24 // similar to those of WinBoard, to set the most common options interactively.
25
26 #include "config.h"
27
28 #include <stdio.h>
29 #include <ctype.h>
30 #include <errno.h>
31 #include <sys/types.h>
32
33 #if STDC_HEADERS
34 # include <stdlib.h>
35 # include <string.h>
36 #else /* not STDC_HEADERS */
37 extern char *getenv();
38 # if HAVE_STRING_H
39 #  include <string.h>
40 # else /* not HAVE_STRING_H */
41 #  include <strings.h>
42 # endif /* not HAVE_STRING_H */
43 #endif /* not STDC_HEADERS */
44
45 #if HAVE_UNISTD_H
46 # include <unistd.h>
47 #endif
48 #include <stdint.h>
49
50 #include "common.h"
51 #include "backend.h"
52 #include "xboard.h"
53 #include "menus.h"
54 #include "dialogs.h"
55 #include "gettext.h"
56
57 #ifdef ENABLE_NLS
58 # define  _(s) gettext (s)
59 # define N_(s) gettext_noop (s)
60 #else
61 # define  _(s) (s)
62 # define N_(s)  s
63 #endif
64
65
66 int values[MAX_OPTIONS];
67 ChessProgramState *currentCps;
68
69 //----------------------------Generic dialog --------------------------------------------
70
71 // cloned from Engine Settings dialog (and later merged with it)
72
73 char *marked[NrOfDialogs];
74 Boolean shellUp[NrOfDialogs];
75
76 void
77 MarkMenu (char *item, int dlgNr)
78 {
79     MarkMenuItem(marked[dlgNr] = item, True);
80 }
81
82 void
83 AddLine (Option *opt, char *s)
84 {
85     AppendText(opt, s);
86     AppendText(opt, "\n");
87 }
88
89 //---------------------------------------------- Update dialog controls ------------------------------------
90
91 int
92 SetCurrentComboSelection (Option *opt)
93 {
94     int j;
95     if(!opt->textValue) opt->value = *(int*)opt->target; /* numeric */else {
96         for(j=0; opt->choice[j]; j++) // look up actual value in list of possible values, to get selection nr
97             if(*(char**)opt->target && !strcmp(*(char**)opt->target, ((char**)opt->textValue)[j])) break;
98         opt->value = j + (opt->choice[j] == NULL);
99     }
100     return opt->value;
101 }
102
103 void
104 GenericUpdate (Option *opts, int selected)
105 {
106     int i;
107     char buf[MSG_SIZ];
108
109     for(i=0; ; i++)
110       {
111         if(selected >= 0) { if(i < selected) continue; else if(i > selected) break; }
112         switch(opts[i].type)
113           {
114           case TextBox:
115           case FileName:
116           case PathName:
117             SetWidgetText(&opts[i],  *(char**) opts[i].target, -1);
118             break;
119           case Spin:
120             sprintf(buf, "%d", *(int*) opts[i].target);
121             SetWidgetText(&opts[i], buf, -1);
122             break;
123           case Fractional:
124             sprintf(buf, "%4.2f", *(float*) opts[i].target);
125             SetWidgetText(&opts[i], buf, -1);
126             break;
127           case CheckBox:
128             SetWidgetState(&opts[i],  *(Boolean*) opts[i].target);
129             break;
130           case ComboBox:
131             if(opts[i].min & COMBO_CALLBACK) break;
132             SetCurrentComboSelection(opts+i);
133             // TODO: actually display this (but it is never used that way...)
134             break;
135           case EndMark:
136             return;
137           default:
138             printf("GenericUpdate: unexpected case in switch.\n");
139           case ListBox:
140           case Button:
141           case SaveButton:
142           case Label:
143           case Break:
144             break;
145           }
146       }
147 }
148
149 //------------------------------------------- Read out dialog controls ------------------------------------
150
151 int
152 GenericReadout (Option *opts, int selected)
153 {
154     int i, j, res=1;
155     char *val;
156     char buf[MSG_SIZ], **dest;
157     float x;
158         for(i=0; ; i++) { // send all options that had to be OK-ed to engine
159             if(selected >= 0) { if(i < selected) continue; else if(i > selected) break; }
160             switch(opts[i].type) {
161                 case TextBox:
162                 case FileName:
163                 case PathName:
164                     GetWidgetText(&opts[i], &val);
165                     dest = currentCps ? &(opts[i].textValue) : (char**) opts[i].target;
166                     if(*dest == NULL || strcmp(*dest, val)) {
167                         if(currentCps) {
168                             snprintf(buf, MSG_SIZ,  "option %s=%s\n", opts[i].name, val);
169                             SendToProgram(buf, currentCps);
170                         } else {
171                             if(*dest) free(*dest);
172                             *dest = malloc(strlen(val)+1);
173                         }
174                         safeStrCpy(*dest, val, MSG_SIZ - (*dest - opts[i].name)); // copy text there
175                     }
176                     break;
177                 case Spin:
178                 case Fractional:
179                     GetWidgetText(&opts[i], &val);
180                     x = 0.0; // Initialise because sscanf() will fail if non-numeric text is entered
181                     sscanf(val, "%f", &x);
182                     if(x > opts[i].max) x = opts[i].max;
183                     if(x < opts[i].min) x = opts[i].min;
184                     if(opts[i].type == Fractional)
185                         *(float*) opts[i].target = x; // engines never have float options!
186                     else if(opts[i].value != x) {
187                         opts[i].value = x;
188                         if(currentCps) {
189                             snprintf(buf, MSG_SIZ,  "option %s=%.0f\n", opts[i].name, x);
190                             SendToProgram(buf, currentCps);
191                         } else *(int*) opts[i].target = x;
192                     }
193                     break;
194                 case CheckBox:
195                     j = 0;
196                     GetWidgetState(&opts[i], &j);
197                     if(opts[i].value != j) {
198                         opts[i].value = j;
199                         if(currentCps) {
200                             snprintf(buf, MSG_SIZ,  "option %s=%d\n", opts[i].name, j);
201                             SendToProgram(buf, currentCps);
202                         } else *(Boolean*) opts[i].target = j;
203                     }
204                     break;
205                 case ComboBox:
206                     if(opts[i].min & COMBO_CALLBACK) break;
207                     if(!opts[i].textValue) { *(int*)opts[i].target == opts[i].value; break; } // numeric
208                     val = ((char**)opts[i].textValue)[values[i]];
209                     if(currentCps) {
210                         if(opts[i].value == values[i]) break; // not changed
211                         opts[i].value = values[i];
212                         snprintf(buf, MSG_SIZ,  "option %s=%s\n", opts[i].name, opts[i].choice[values[i]]);
213                         SendToProgram(buf, currentCps);
214                     } else if(val && (*(char**) opts[i].target == NULL || strcmp(*(char**) opts[i].target, val))) {
215                       if(*(char**) opts[i].target) free(*(char**) opts[i].target);
216                       *(char**) opts[i].target = strdup(val);
217                     }
218                     break;
219                 case EndMark:
220                     if(opts[i].target) // callback for implementing necessary actions on OK (like redraw)
221                         res = ((OKCallback*) opts[i].target)(i);
222                     break;
223             default:
224                 printf("GenericReadout: unexpected case in switch.\n");
225                 case ListBox:
226                 case Button:
227                 case SaveButton:
228                 case Label:
229                 case Break:
230               break;
231             }
232             if(opts[i].type == EndMark) break;
233         }
234         return res;
235 }
236
237 //------------------------------------------- Match Options ------------------------------------------------------
238
239 char *engineName, *engineChoice, *tfName;
240 char *engineList[MAXENGINES] = {" "}, *engineMnemonic[MAXENGINES];
241
242 static void AddToTourney P((int n, int sel));
243 static void CloneTourney P((void));
244 static void ReplaceParticipant P((void));
245 static void UpgradeParticipant P((void));
246
247 static int
248 MatchOK (int n)
249 {
250     ASSIGN(appData.participants, engineName);
251     if(!CreateTourney(tfName) || matchMode) return matchMode || !appData.participants[0];
252     PopDown(TransientDlg); // early popdown to prevent FreezeUI called through MatchEvent from causing XtGrab warning
253     MatchEvent(2); // start tourney
254     return FALSE;  // no double PopDown!
255 }
256
257 static Option matchOptions[] = {
258 { 0,  0,          0, NULL, (void*) &tfName, ".trn", NULL, FileName, N_("Tournament file:") },
259 { 0,  0,          0, NULL, (void*) &appData.roundSync, "", NULL, CheckBox, N_("Sync after round") },
260 { 0, SAME_ROW|LL, 0, NULL, NULL, "", NULL, Label, N_("    (for concurrent playing of a single") },
261 { 0,  0,          0, NULL, (void*) &appData.cycleSync, "", NULL, CheckBox, N_("Sync after cycle") },
262 { 0, SAME_ROW|LL, 0, NULL, NULL, "", NULL, Label, N_("      tourney with multiple XBoards)") },
263 { 0,  LR,       200, NULL, NULL, "", NULL, Label, N_("Tourney participants:") },
264 { 0, SAME_ROW|RR, 0, NULL, NULL, "", NULL, Label, N_("Select Engine:") },
265 { 150, T_VSCRL | T_FILL | T_WRAP,
266                 175, NULL, (void*) &engineName, "", NULL, TextBox, "" },
267 { 150, SAME_ROW|RR,
268                 175, NULL, (void*) engineMnemonic, (char*) &AddToTourney, NULL, ListBox, "" },
269 //{ 0,  COMBO_CALLBACK | NO_GETTEXT,
270 //                0, NULL, (void*) &AddToTourney, (char*) (engineMnemonic+1), (engineMnemonic+1), ComboBox, N_("Select Engine:") },
271 { 0,  0,         10, NULL, (void*) &appData.tourneyType, "", NULL, Spin, N_("Tourney type (0 = round-robin, 1 = gauntlet):") },
272 { 0,  1, 1000000000, NULL, (void*) &appData.tourneyCycles, "", NULL, Spin, N_("Number of tourney cycles (or Swiss rounds):") },
273 { 0,  1, 1000000000, NULL, (void*) &appData.defaultMatchGames, "", NULL, Spin, N_("Default Number of Games in Match (or Pairing):") },
274 { 0,  0, 1000000000, NULL, (void*) &appData.matchPause, "", NULL, Spin, N_("Pause between Match Games (msec):") },
275 { 0,  0,          0, NULL, (void*) &appData.saveGameFile, ".pgn .game", NULL, FileName, N_("Save Tourney Games on:") },
276 { 0,  0,          0, NULL, (void*) &appData.loadGameFile, ".pgn .game", NULL, FileName, N_("Game File with Opening Lines:") },
277 { 0, -2, 1000000000, NULL, (void*) &appData.loadGameIndex, "", NULL, Spin, N_("Game Number (-1 or -2 = Auto-Increment):") },
278 { 0,  0,          0, NULL, (void*) &appData.loadPositionFile, ".fen .epd .pos", NULL, FileName, N_("File with Start Positions:") },
279 { 0, -2, 1000000000, NULL, (void*) &appData.loadPositionIndex, "", NULL, Spin, N_("Position Number (-1 or -2 = Auto-Increment):") },
280 { 0,  0, 1000000000, NULL, (void*) &appData.rewindIndex, "", NULL, Spin, N_("Rewind Index after this many Games (0 = never):") },
281 { 0,  0,          0, NULL, (void*) &appData.defNoBook, "", NULL, CheckBox, N_("Disable own engine books by default") },
282 { 0,  0,          0, NULL, (void*) &ReplaceParticipant, NULL, NULL, Button, N_("Replace Engine") },
283 { 0, SAME_ROW,    0, NULL, (void*) &UpgradeParticipant, NULL, NULL, Button, N_("Upgrade Engine") },
284 { 0, SAME_ROW,    0, NULL, (void*) &CloneTourney, NULL, NULL, Button, N_("Clone Tourney") },
285 { 0, SAME_ROW,    0, NULL, (void*) &MatchOK, "", NULL, EndMark , "" }
286 };
287
288 static void
289 ReplaceParticipant ()
290 {
291     GenericReadout(matchOptions, 7);
292     Substitute(strdup(engineName), True);
293 }
294
295 static void
296 UpgradeParticipant ()
297 {
298     GenericReadout(matchOptions, 7);
299     Substitute(strdup(engineName), False);
300 }
301
302 static void
303 CloneTourney ()
304 {
305     FILE *f;
306     char *name;
307     GetWidgetText(matchOptions, &name);
308     if(name && name[0] && (f = fopen(name, "r")) ) {
309         char *saveSaveFile;
310         saveSaveFile = appData.saveGameFile; appData.saveGameFile = NULL; // this is a persistent option, protect from change
311         ParseArgsFromFile(f);
312         engineName = appData.participants; GenericUpdate(matchOptions, -1);
313         FREE(appData.saveGameFile); appData.saveGameFile = saveSaveFile;
314     } else DisplayError(_("First you must specify an existing tourney file to clone"), 0);
315 }
316
317 static void
318 AddToTourney (int n, int sel)
319 {
320     int nr;
321     char buf[MSG_SIZ];
322     if(sel < 1) buf[0] = NULLCHAR; // back to top level
323     else if(engineList[sel][0] == '#') safeStrCpy(buf, engineList[sel], MSG_SIZ); // group header, open group
324     else { // normal line, select engine
325         AddLine(&matchOptions[7], engineMnemonic[sel]);
326         return;
327     }
328     nr = NamesToList(firstChessProgramNames, engineList, engineMnemonic, buf); // replace list by only the group contents
329     ASSIGN(engineMnemonic[0], buf);
330     LoadListBox(&matchOptions[8], _("# no engines are installed"));
331     HighlightWithScroll(&matchOptions[8], 0, nr);
332 }
333
334 void
335 MatchOptionsProc ()
336 {
337    NamesToList(firstChessProgramNames, engineList, engineMnemonic, "");
338    matchOptions[9].min = -(appData.pairingEngine[0] != NULLCHAR); // with pairing engine, allow Swiss
339    ASSIGN(tfName, appData.tourneyFile[0] ? appData.tourneyFile : MakeName(appData.defName));
340    ASSIGN(engineName, appData.participants);
341    ASSIGN(engineMnemonic[0], "");
342    GenericPopUp(matchOptions, _("Match Options"), TransientDlg, BoardWindow, MODAL, 0);
343 }
344
345 // ------------------------------------------- General Options --------------------------------------------------
346
347 static int oldShow, oldBlind, oldPonder;
348
349 static int
350 GeneralOptionsOK (int n)
351 {
352         int newPonder = appData.ponderNextMove;
353         appData.ponderNextMove = oldPonder;
354         PonderNextMoveEvent(newPonder);
355         if(!appData.highlightLastMove) ClearHighlights(), ClearPremoveHighlights();
356         if(oldShow != appData.showCoords || oldBlind != appData.blindfold) DrawPosition(TRUE, NULL);
357         return 1;
358 }
359
360 static Option generalOptions[] = {
361 { 0,  0, 0, NULL, (void*) &appData.whitePOV, "", NULL, CheckBox, N_("Absolute Analysis Scores") },
362 { 0,  0, 0, NULL, (void*) &appData.sweepSelect, "", NULL, CheckBox, N_("Almost Always Queen (Detour Under-Promote)") },
363 { 0,  0, 0, NULL, (void*) &appData.animateDragging, "", NULL, CheckBox, N_("Animate Dragging") },
364 { 0,  0, 0, NULL, (void*) &appData.animate, "", NULL, CheckBox, N_("Animate Moving") },
365 { 0,  0, 0, NULL, (void*) &appData.autoCallFlag, "", NULL, CheckBox, N_("Auto Flag") },
366 { 0,  0, 0, NULL, (void*) &appData.autoFlipView, "", NULL, CheckBox, N_("Auto Flip View") },
367 { 0,  0, 0, NULL, (void*) &appData.blindfold, "", NULL, CheckBox, N_("Blindfold") },
368 { 0,  0, 0, NULL, (void*) &appData.dropMenu, "", NULL, CheckBox, N_("Drop Menu") },
369 { 0,  0, 0, NULL, (void*) &appData.hideThinkingFromHuman, "", NULL, CheckBox, N_("Hide Thinking from Human") },
370 { 0,  0, 0, NULL, (void*) &appData.highlightLastMove, "", NULL, CheckBox, N_("Highlight Last Move") },
371 { 0,  0, 0, NULL, (void*) &appData.highlightMoveWithArrow, "", NULL, CheckBox, N_("Highlight with Arrow") },
372 { 0,  0, 0, NULL, (void*) &appData.ringBellAfterMoves, "", NULL, CheckBox, N_("Move Sound") },
373 { 0,  0, 0, NULL, (void*) &appData.oneClick, "", NULL, CheckBox, N_("One-Click Moving") },
374 { 0,  0, 0, NULL, (void*) &appData.periodicUpdates, "", NULL, CheckBox, N_("Periodic Updates (in Analysis Mode)") },
375 { 0,  0, 0, NULL, (void*) &appData.ponderNextMove, "", NULL, CheckBox, N_("Ponder Next Move") },
376 { 0,  0, 0, NULL, (void*) &appData.popupExitMessage, "", NULL, CheckBox, N_("Popup Exit Messages") },
377 { 0,  0, 0, NULL, (void*) &appData.popupMoveErrors, "", NULL, CheckBox, N_("Popup Move Errors") },
378 { 0,  0, 0, NULL, (void*) &appData.showEvalInMoveHistory, "", NULL, CheckBox, N_("Scores in Move List") },
379 { 0,  0, 0, NULL, (void*) &appData.showCoords, "", NULL, CheckBox, N_("Show Coordinates") },
380 { 0,  0, 0, NULL, (void*) &appData.markers, "", NULL, CheckBox, N_("Show Target Squares") },
381 { 0,  0, 0, NULL, (void*) &appData.useStickyWindows, "", NULL, CheckBox, N_("Sticky Windows") },
382 { 0,  0, 0, NULL, (void*) &appData.testLegality, "", NULL, CheckBox, N_("Test Legality") },
383 { 0,  0, 0, NULL, (void*) &appData.topLevel, "", NULL, CheckBox, N_("Top-Level Dialogs") },
384 { 0, 0,10,  NULL, (void*) &appData.flashCount, "", NULL, Spin, N_("Flash Moves (0 = no flashing):") },
385 { 0, 1,10,  NULL, (void*) &appData.flashRate, "", NULL, Spin, N_("Flash Rate (high = fast):") },
386 { 0, 5,100, NULL, (void*) &appData.animSpeed, "", NULL, Spin, N_("Animation Speed (high = slow):") },
387 { 0, 1,5,   NULL, (void*) &appData.zoom, "", NULL, Spin, N_("Zoom factor in Evaluation Graph:") },
388 { 0,  0, 0, NULL, (void*) &GeneralOptionsOK, "", NULL, EndMark , "" }
389 };
390
391 void
392 OptionsProc ()
393 {
394    oldPonder = appData.ponderNextMove;
395    oldShow = appData.showCoords; oldBlind = appData.blindfold;
396    GenericPopUp(generalOptions, _("General Options"), TransientDlg, BoardWindow, MODAL, 0);
397 }
398
399 //---------------------------------------------- New Variant ------------------------------------------------
400
401 static void Pick P((int n));
402
403 static char warning[MSG_SIZ];
404
405 static Option variantDescriptors[] = {
406 { 0, 0, 275, NULL, NULL, NULL, NULL, Label, warning },
407 { VariantNormal,        0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("normal")},
408 { VariantFairy,  SAME_ROW, 135, NULL, (void*) &Pick, "#BFBFBF", NULL, Button, N_("fairy")},
409 { VariantFischeRandom,  0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("FRC")},
410 { VariantSChess, SAME_ROW, 135, NULL, (void*) &Pick, "#FFBFBF", NULL, Button, N_("Seirawan")},
411 { VariantWildCastle,    0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("wild castle")},
412 { VariantSuper,  SAME_ROW, 135, NULL, (void*) &Pick, "#FFBFBF", NULL, Button, N_("Superchess")},
413 { VariantNoCastle,      0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("no castle")},
414 { VariantCrazyhouse,SAME_ROW,135,NULL,(void*) &Pick, "#FFBFBF", NULL, Button, N_("crazyhouse")},
415 { VariantKnightmate,    0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("knightmate")},
416 { VariantBughouse,SAME_ROW,135, NULL, (void*) &Pick, "#FFBFBF", NULL, Button, N_("bughouse")},
417 { VariantBerolina,      0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("berolina")},
418 { VariantShogi,  SAME_ROW, 135, NULL, (void*) &Pick, "#BFFFFF", NULL, Button, N_("shogi (9x9)")},
419 { VariantCylinder,      0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("cylinder")},
420 { VariantXiangqi, SAME_ROW,135, NULL, (void*) &Pick, "#BFFFFF", NULL, Button, N_("xiangqi (9x10)")},
421 { VariantShatranj,      0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("shatranj")},
422 { VariantCourier, SAME_ROW,135, NULL, (void*) &Pick, "#BFFFBF", NULL, Button, N_("courier (12x8)")},
423 { VariantMakruk,        0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("makruk")},
424 { VariantGreat,  SAME_ROW, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("Great Shatranj (10x8)")},
425 { VariantAtomic,        0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("atomic")},
426 { VariantFalcon, SAME_ROW, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("falcon (10x8)")},
427 { VariantTwoKings,      0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("two kings")},
428 { VariantCapablanca,SAME_ROW,135,NULL,(void*) &Pick, "#BFBFFF", NULL, Button, N_("Capablanca (10x8)")},
429 { Variant3Check,        0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("3-checks")},
430 { VariantGothic, SAME_ROW, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("Gothic (10x8)")},
431 { VariantSuicide,       0, 135, NULL, (void*) &Pick, "#FFFFBF", NULL, Button, N_("suicide")},
432 { VariantJanus,  SAME_ROW, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("janus (10x8)")},
433 { VariantGiveaway,      0, 135, NULL, (void*) &Pick, "#FFFFBF", NULL, Button, N_("give-away")},
434 { VariantCapaRandom,SAME_ROW,135,NULL,(void*) &Pick, "#BFBFFF", NULL, Button, N_("CRC (10x8)")},
435 { VariantLosers,        0, 135, NULL, (void*) &Pick, "#FFFFBF", NULL, Button, N_("losers")},
436 { VariantGrand,  SAME_ROW, 135, NULL, (void*) &Pick, "#5070FF", NULL, Button, N_("grand (10x10)")},
437 { VariantSpartan,       0, 135, NULL, (void*) &Pick, "#FF0000", NULL, Button, N_("Spartan")},
438 { 0, 0, 0, NULL, NULL, NULL, NULL, Label, N_("Board size ( -1 = default for selected variant):")},
439 { 0, -1, BOARD_RANKS-1, NULL, (void*) &appData.NrRanks, "", NULL, Spin, N_("Number of Board Ranks:") },
440 { 0, -1, BOARD_FILES, NULL, (void*) &appData.NrFiles, "", NULL, Spin, N_("Number of Board Files:") },
441 { 0, -1, BOARD_RANKS-1, NULL, (void*) &appData.holdingsSize, "", NULL, Spin, N_("Holdings Size:") },
442 { 0, 0, 0, NULL, NULL, NULL, NULL, Label,
443                                 N_("WARNING: variants with un-orthodox\n"
444                                   "pieces only have built-in bitmaps\n"
445                                   "for -boardSize middling, bulky and\n"
446                                   "petite, and substitute king or amazon\n"
447                                   "for missing bitmaps. (See manual.)")},
448 { 0, NO_OK, 0, NULL, NULL, "", NULL, EndMark , "" }
449 };
450
451 static void
452 Pick (int n)
453 {
454         VariantClass v = variantDescriptors[n].value;
455         if(!appData.noChessProgram) {
456             char *name = VariantName(v), buf[MSG_SIZ];
457             if (first.protocolVersion > 1 && StrStr(first.variants, name) == NULL) {
458                 /* [HGM] in protocol 2 we check if variant is suported by engine */
459               snprintf(buf, MSG_SIZ,  _("Variant %s not supported by %s"), name, first.tidy);
460                 DisplayError(buf, 0);
461                 return; /* ignore OK if first engine does not support it */
462             } else
463             if (second.initDone && second.protocolVersion > 1 && StrStr(second.variants, name) == NULL) {
464               snprintf(buf, MSG_SIZ,  _("Warning: second engine (%s) does not support this!"), second.tidy);
465                 DisplayError(buf, 0);   /* use of second engine is optional; only warn user */
466             }
467         }
468
469         GenericReadout(variantDescriptors, -1); // make sure ranks and file settings are read
470
471         gameInfo.variant = v;
472         appData.variant = VariantName(v);
473
474         shuffleOpenings = FALSE; /* [HGM] shuffle: possible shuffle reset when we switch */
475         startedFromPositionFile = FALSE; /* [HGM] loadPos: no longer valid in new variant */
476         appData.pieceToCharTable = NULL;
477         appData.pieceNickNames = "";
478         appData.colorNickNames = "";
479         Reset(True, True);
480         PopDown(TransientDlg);
481         return;
482 }
483
484 void
485 NewVariantProc ()
486 {
487    sprintf(warning, _("All variants not supported by first engine\n(currently %s) are disabled"), first.tidy);
488    GenericPopUp(variantDescriptors, _("New Variant"), TransientDlg, BoardWindow, MODAL, 0);
489 }
490
491 //------------------------------------------- Common Engine Options -------------------------------------
492
493 static int oldCores;
494
495 static int
496 CommonOptionsOK (int n)
497 {
498         int newPonder = appData.ponderNextMove;
499         // make sure changes are sent to first engine by re-initializing it
500         // if it was already started pre-emptively at end of previous game
501         if(gameMode == BeginningOfGame) Reset(True, True); else {
502             // Some changed setting need immediate sending always.
503             if(oldCores != appData.smpCores)
504                 NewSettingEvent(False, &(first.maxCores), "cores", appData.smpCores);
505             appData.ponderNextMove = oldPonder;
506             PonderNextMoveEvent(newPonder);
507         }
508         return 1;
509 }
510
511 static Option commonEngineOptions[] = {
512 { 0,  0,    0, NULL, (void*) &appData.ponderNextMove, "", NULL, CheckBox, N_("Ponder Next Move") },
513 { 0,  0, 1000, NULL, (void*) &appData.smpCores, "", NULL, Spin, N_("Maximum Number of CPUs per Engine:") },
514 { 0,  0,    0, NULL, (void*) &appData.polyglotDir, "", NULL, PathName, N_("Polygot Directory:") },
515 { 0,  0,16000, NULL, (void*) &appData.defaultHashSize, "", NULL, Spin, N_("Hash-Table Size (MB):") },
516 { 0,  0,    0, NULL, (void*) &appData.defaultPathEGTB, "", NULL, PathName, N_("Nalimov EGTB Path:") },
517 { 0,  0, 1000, NULL, (void*) &appData.defaultCacheSizeEGTB, "", NULL, Spin, N_("EGTB Cache Size (MB):") },
518 { 0,  0,    0, NULL, (void*) &appData.usePolyglotBook, "", NULL, CheckBox, N_("Use GUI Book") },
519 { 0,  0,    0, NULL, (void*) &appData.polyglotBook, ".bin", NULL, FileName, N_("Opening-Book Filename:") },
520 { 0,  0,  100, NULL, (void*) &appData.bookDepth, "", NULL, Spin, N_("Book Depth (moves):") },
521 { 0,  0,  100, NULL, (void*) &appData.bookStrength, "", NULL, Spin, N_("Book Variety (0) vs. Strength (100):") },
522 { 0,  0,    0, NULL, (void*) &appData.firstHasOwnBookUCI, "", NULL, CheckBox, N_("Engine #1 Has Own Book") },
523 { 0,  0,    0, NULL, (void*) &appData.secondHasOwnBookUCI, "", NULL, CheckBox, N_("Engine #2 Has Own Book          ") },
524 { 0,SAME_ROW,0,NULL, (void*) &CommonOptionsOK, "", NULL, EndMark , "" }
525 };
526
527 void
528 UciMenuProc ()
529 {
530    oldCores = appData.smpCores;
531    oldPonder = appData.ponderNextMove;
532    GenericPopUp(commonEngineOptions, _("Common Engine Settings"), TransientDlg, BoardWindow, MODAL, 0);
533 }
534
535 //------------------------------------------ Adjudication Options --------------------------------------
536
537 static Option adjudicationOptions[] = {
538 { 0, 0,    0, NULL, (void*) &appData.checkMates, "", NULL, CheckBox, N_("Detect all Mates") },
539 { 0, 0,    0, NULL, (void*) &appData.testClaims, "", NULL, CheckBox, N_("Verify Engine Result Claims") },
540 { 0, 0,    0, NULL, (void*) &appData.materialDraws, "", NULL, CheckBox, N_("Draw if Insufficient Mating Material") },
541 { 0, 0,    0, NULL, (void*) &appData.trivialDraws, "", NULL, CheckBox, N_("Adjudicate Trivial Draws (3-Move Delay)") },
542 { 0, 0,100,   NULL, (void*) &appData.ruleMoves, "", NULL, Spin, N_("N-Move Rule:") },
543 { 0, 0,    6, NULL, (void*) &appData.drawRepeats, "", NULL, Spin, N_("N-fold Repeats:") },
544 { 0, 0,1000,  NULL, (void*) &appData.adjudicateDrawMoves, "", NULL, Spin, N_("Draw after N Moves Total:") },
545 { 0, -5000,0, NULL, (void*) &appData.adjudicateLossThreshold, "", NULL, Spin, N_("Win / Loss Threshold:") },
546 { 0, 0,    0, NULL, (void*) &first.scoreIsAbsolute, "", NULL, CheckBox, N_("Negate Score of Engine #1") },
547 { 0, 0,    0, NULL, (void*) &second.scoreIsAbsolute, "", NULL, CheckBox, N_("Negate Score of Engine #2") },
548 { 0,SAME_ROW, 0, NULL, NULL, "", NULL, EndMark , "" }
549 };
550
551 void
552 EngineMenuProc ()
553 {
554    GenericPopUp(adjudicationOptions, _("Adjudicate non-ICS Games"), TransientDlg, BoardWindow, MODAL, 0);
555 }
556
557 //--------------------------------------------- ICS Options ---------------------------------------------
558
559 static int
560 IcsOptionsOK (int n)
561 {
562     ParseIcsTextColors();
563     return 1;
564 }
565
566 Option icsOptions[] = {
567 { 0, 0, 0, NULL, (void*) &appData.autoKibitz, "",  NULL, CheckBox, N_("Auto-Kibitz") },
568 { 0, 0, 0, NULL, (void*) &appData.autoComment, "", NULL, CheckBox, N_("Auto-Comment") },
569 { 0, 0, 0, NULL, (void*) &appData.autoObserve, "", NULL, CheckBox, N_("Auto-Observe") },
570 { 0, 0, 0, NULL, (void*) &appData.autoRaiseBoard, "", NULL, CheckBox, N_("Auto-Raise Board") },
571 { 0, 0, 0, NULL, (void*) &appData.bgObserve, "",   NULL, CheckBox, N_("Background Observe while Playing") },
572 { 0, 0, 0, NULL, (void*) &appData.dualBoard, "",   NULL, CheckBox, N_("Dual Board for Background-Observed Game") },
573 { 0, 0, 0, NULL, (void*) &appData.getMoveList, "", NULL, CheckBox, N_("Get Move List") },
574 { 0, 0, 0, NULL, (void*) &appData.quietPlay, "",   NULL, CheckBox, N_("Quiet Play") },
575 { 0, 0, 0, NULL, (void*) &appData.seekGraph, "",   NULL, CheckBox, N_("Seek Graph") },
576 { 0, 0, 0, NULL, (void*) &appData.autoRefresh, "", NULL, CheckBox, N_("Auto-Refresh Seek Graph") },
577 { 0, 0, 0, NULL, (void*) &appData.premove, "",     NULL, CheckBox, N_("Premove") },
578 { 0, 0, 0, NULL, (void*) &appData.premoveWhite, "", NULL, CheckBox, N_("Premove for White") },
579 { 0, 0, 0, NULL, (void*) &appData.premoveWhiteText, "", NULL, TextBox, N_("First White Move:") },
580 { 0, 0, 0, NULL, (void*) &appData.premoveBlack, "", NULL, CheckBox, N_("Premove for Black") },
581 { 0, 0, 0, NULL, (void*) &appData.premoveBlackText, "", NULL, TextBox, N_("First Black Move:") },
582 { 0, SAME_ROW, 0, NULL, NULL, NULL, NULL, Break, "" },
583 { 0, 0, 0, NULL, (void*) &appData.icsAlarm, "", NULL, CheckBox, N_("Alarm") },
584 { 0, 0, 100000000, NULL, (void*) &appData.icsAlarmTime, "", NULL, Spin, N_("Alarm Time (msec):") },
585 //{ 0, 0, 0, NULL, (void*) &appData.chatBoxes, "", NULL, TextBox, N_("Startup Chat Boxes:") },
586 { 0, 0, 0, NULL, (void*) &appData.colorize, "", NULL, CheckBox, N_("Colorize Messages") },
587 { 0, 0, 0, NULL, (void*) &appData.colorShout, "", NULL, TextBox, N_("Shout Text Colors:") },
588 { 0, 0, 0, NULL, (void*) &appData.colorSShout, "", NULL, TextBox, N_("S-Shout Text Colors:") },
589 { 0, 0, 0, NULL, (void*) &appData.colorChannel1, "", NULL, TextBox, N_("Channel #1 Text Colors:") },
590 { 0, 0, 0, NULL, (void*) &appData.colorChannel, "", NULL, TextBox, N_("Other Channel Text Colors:") },
591 { 0, 0, 0, NULL, (void*) &appData.colorKibitz, "", NULL, TextBox, N_("Kibitz Text Colors:") },
592 { 0, 0, 0, NULL, (void*) &appData.colorTell, "", NULL, TextBox, N_("Tell Text Colors:") },
593 { 0, 0, 0, NULL, (void*) &appData.colorChallenge, "", NULL, TextBox, N_("Challenge Text Colors:") },
594 { 0, 0, 0, NULL, (void*) &appData.colorRequest, "", NULL, TextBox, N_("Request Text Colors:") },
595 { 0, 0, 0, NULL, (void*) &appData.colorSeek, "", NULL, TextBox, N_("Seek Text Colors:") },
596 { 0, 0, 0, NULL, (void*) &IcsOptionsOK, "", NULL, EndMark , "" }
597 };
598
599 void
600 IcsOptionsProc ()
601 {
602    GenericPopUp(icsOptions, _("ICS Options"), TransientDlg, BoardWindow, MODAL, 0);
603 }
604
605 //-------------------------------------------- Load Game Options ---------------------------------
606
607 static char *modeNames[] = { N_("Exact position match"), N_("Shown position is subset"), N_("Same material with exactly same Pawn chain"), 
608                       N_("Same material"), N_("Material range (top board half optional)"), N_("Material difference (optional stuff balanced)"), NULL };
609 static char *modeValues[] = { "1", "2", "3", "4", "5", "6" };
610 static char *searchMode;
611
612 static int
613 LoadOptionsOK ()
614 {
615     appData.searchMode = atoi(searchMode);
616     return 1;
617 }
618
619 static Option loadOptions[] = {
620 { 0,  0, 0,     NULL, (void*) &appData.autoDisplayTags, "", NULL, CheckBox, N_("Auto-Display Tags") },
621 { 0,  0, 0,     NULL, (void*) &appData.autoDisplayComment, "", NULL, CheckBox, N_("Auto-Display Comment") },
622 { 0, LR, 0,     NULL, NULL, NULL, NULL, Label, N_("Auto-Play speed of loaded games\n(0 = instant, -1 = off):") },
623 { 0, -1,10000000, NULL, (void*) &appData.timeDelay, "", NULL, Fractional, N_("Seconds per Move:") },
624 { 0, LR, 0,     NULL, NULL, NULL, NULL, Label,  N_("\noptions to use in game-viewer mode:") },
625 { 0, 0,300,     NULL, (void*) &appData.viewerOptions, "", NULL, TextBox,  "" },
626 { 0, LR,  0,    NULL, NULL, NULL, NULL, Label,  N_("\nThresholds for position filtering in game list:") },
627 { 0, 0,5000,    NULL, (void*) &appData.eloThreshold1, "", NULL, Spin, N_("Elo of strongest player at least:") },
628 { 0, 0,5000,    NULL, (void*) &appData.eloThreshold2, "", NULL, Spin, N_("Elo of weakest player at least:") },
629 { 0, 0,5000,    NULL, (void*) &appData.dateThreshold, "", NULL, Spin, N_("No games before year:") },
630 { 0, 1,50,      NULL, (void*) &appData.stretch, "", NULL, Spin, N_("Minimum nr consecutive positions:") },
631 { 0, 0,205,     NULL, (void*) &searchMode, (char*) modeValues, modeNames, ComboBox, N_("Search mode:") },
632 { 0, 0, 0,      NULL, (void*) &appData.ignoreColors, "", NULL, CheckBox, N_("Also match reversed colors") },
633 { 0, 0, 0,      NULL, (void*) &appData.findMirror, "", NULL, CheckBox, N_("Also match left-right flipped position") },
634 { 0,  0, 0,     NULL, (void*) &LoadOptionsOK, "", NULL, EndMark , "" }
635 };
636
637 void
638 LoadOptionsPopUp (DialogClass parent)
639 {
640    ASSIGN(searchMode, modeValues[appData.searchMode-1]);
641    GenericPopUp(loadOptions, _("Load Game Options"), TransientDlg, parent, MODAL, 0);
642 }
643
644 void
645 LoadOptionsProc ()
646 {   // called from menu
647     LoadOptionsPopUp(BoardWindow);
648 }
649
650 //------------------------------------------- Save Game Options --------------------------------------------
651
652 static Option saveOptions[] = {
653 { 0, 0, 0, NULL, (void*) &appData.autoSaveGames, "", NULL, CheckBox, N_("Auto-Save Games") },
654 { 0, 0, 0, NULL, (void*) &appData.saveGameFile, ".pgn", NULL, FileName,  N_("Save Games on File:") },
655 { 0, 0, 0, NULL, (void*) &appData.savePositionFile, ".fen", NULL, FileName,  N_("Save Final Positions on File:") },
656 { 0, 0, 0, NULL, (void*) &appData.pgnEventHeader, "", NULL, TextBox,  N_("PGN Event Header:") },
657 { 0, 0, 0, NULL, (void*) &appData.oldSaveStyle, "", NULL, CheckBox, N_("Old Save Style (as opposed to PGN)") },
658 { 0, 0, 0, NULL, (void*) &appData.numberTag, "", NULL, CheckBox, N_("Include Number Tag in tourney PGN") },
659 { 0, 0, 0, NULL, (void*) &appData.saveExtendedInfoInPGN, "", NULL, CheckBox, N_("Save Score/Depth Info in PGN") },
660 { 0, 0, 0, NULL, (void*) &appData.saveOutOfBookInfo, "", NULL, CheckBox, N_("Save Out-of-Book Info in PGN           ") },
661 { 0, SAME_ROW, 0, NULL, NULL, "", NULL, EndMark , "" }
662 };
663
664 void
665 SaveOptionsProc ()
666 {
667    GenericPopUp(saveOptions, _("Save Game Options"), TransientDlg, BoardWindow, MODAL, 0);
668 }
669
670 //----------------------------------------------- Sound Options ---------------------------------------------
671
672 static void Test P((int n));
673 static char *trialSound;
674
675 static char *soundNames[] = {
676         N_("No Sound"),
677         N_("Default Beep"),
678         N_("Above WAV File"),
679         N_("Car Horn"),
680         N_("Cymbal"),
681         N_("Ding"),
682         N_("Gong"),
683         N_("Laser"),
684         N_("Penalty"),
685         N_("Phone"),
686         N_("Pop"),
687         N_("Slap"),
688         N_("Wood Thunk"),
689         NULL,
690         N_("User File")
691 };
692
693 static char *soundFiles[] = { // sound files corresponding to above names
694         "",
695         "$",
696         NULL, // kludge alert: as first thing in the dialog readout this is replaced with the user-given .WAV filename
697         "honkhonk.wav",
698         "cymbal.wav",
699         "ding1.wav",
700         "gong.wav",
701         "laser.wav",
702         "penalty.wav",
703         "phone.wav",
704         "pop2.wav",
705         "slap.wav",
706         "woodthunk.wav",
707         NULL,
708         NULL
709 };
710
711 static Option soundOptions[] = {
712 { 0, 0, 0, NULL, (void*) &appData.soundProgram, "", NULL, TextBox, N_("Sound Program:") },
713 { 0, 0, 0, NULL, (void*) &appData.soundDirectory, "", NULL, PathName, N_("Sounds Directory:") },
714 { 0, 0, 0, NULL, (void*) (soundFiles+2) /* kludge! */, ".wav", NULL, FileName, N_("User WAV File:") },
715 { 0, 0, 0, NULL, (void*) &trialSound, (char*) soundFiles, soundNames, ComboBox, N_("Try-Out Sound:") },
716 { 0, SAME_ROW, 0, NULL, (void*) &Test, NULL, NULL, Button, N_("Play") },
717 { 0, 0, 0, NULL, (void*) &appData.soundMove, (char*) soundFiles, soundNames, ComboBox, N_("Move:") },
718 { 0, 0, 0, NULL, (void*) &appData.soundIcsWin, (char*) soundFiles, soundNames, ComboBox, N_("Win:") },
719 { 0, 0, 0, NULL, (void*) &appData.soundIcsLoss, (char*) soundFiles, soundNames, ComboBox, N_("Lose:") },
720 { 0, 0, 0, NULL, (void*) &appData.soundIcsDraw, (char*) soundFiles, soundNames, ComboBox, N_("Draw:") },
721 { 0, 0, 0, NULL, (void*) &appData.soundIcsUnfinished, (char*) soundFiles, soundNames, ComboBox, N_("Unfinished:") },
722 { 0, 0, 0, NULL, (void*) &appData.soundIcsAlarm, (char*) soundFiles, soundNames, ComboBox, N_("Alarm:") },
723 { 0, 0, 0, NULL, (void*) &appData.soundShout, (char*) soundFiles, soundNames, ComboBox, N_("Shout:") },
724 { 0, 0, 0, NULL, (void*) &appData.soundSShout, (char*) soundFiles, soundNames, ComboBox, N_("S-Shout:") },
725 { 0, 0, 0, NULL, (void*) &appData.soundChannel, (char*) soundFiles, soundNames, ComboBox, N_("Channel:") },
726 { 0, 0, 0, NULL, (void*) &appData.soundChannel1, (char*) soundFiles, soundNames, ComboBox, N_("Channel 1:") },
727 { 0, 0, 0, NULL, (void*) &appData.soundTell, (char*) soundFiles, soundNames, ComboBox, N_("Tell:") },
728 { 0, 0, 0, NULL, (void*) &appData.soundKibitz, (char*) soundFiles, soundNames, ComboBox, N_("Kibitz:") },
729 { 0, 0, 0, NULL, (void*) &appData.soundChallenge, (char*) soundFiles, soundNames, ComboBox, N_("Challenge:") },
730 { 0, 0, 0, NULL, (void*) &appData.soundRequest, (char*) soundFiles, soundNames, ComboBox, N_("Request:") },
731 { 0, 0, 0, NULL, (void*) &appData.soundSeek, (char*) soundFiles, soundNames, ComboBox, N_("Seek:") },
732 { 0, SAME_ROW, 0, NULL, NULL, "", NULL, EndMark , "" }
733 };
734
735 static void
736 Test (int n)
737 {
738     GenericReadout(soundOptions, 2);
739     if(soundFiles[values[3]]) PlaySound(soundFiles[values[3]]);
740 }
741
742 void
743 SoundOptionsProc ()
744 {
745    free(soundFiles[2]);
746    soundFiles[2] = strdup("*");
747    GenericPopUp(soundOptions, _("Sound Options"), TransientDlg, BoardWindow, MODAL, 0);
748 }
749
750 //--------------------------------------------- Board Options --------------------------------------
751
752 static void DefColor P((int n));
753 static void AdjustColor P((int i));
754
755 static int
756 BoardOptionsOK (int n)
757 {
758     if(appData.overrideLineGap >= 0) lineGap = appData.overrideLineGap; else lineGap = defaultLineGap;
759     useImages = useImageSqs = 0;
760     InitDrawingParams();
761     InitDrawingSizes(-1, 0);
762     DrawPosition(True, NULL);
763     return 1;
764 }
765
766 static Option boardOptions[] = {
767 { 0,          0, 70, NULL, (void*) &appData.whitePieceColor, "", NULL, TextBox, N_("White Piece Color:") },
768 { 1000, SAME_ROW, 0, NULL, (void*) &DefColor, NULL, (char**) "#FFFFCC", Button, "      " },
769 /* TRANSLATORS: R = single letter for the color red */
770 {    1, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("R") },
771 /* TRANSLATORS: G = single letter for the color green */
772 {    2, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("G") },
773 /* TRANSLATORS: B = single letter for the color blue */
774 {    3, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("B") },
775 /* TRANSLATORS: D = single letter to make a color darker */
776 {    4, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("D") },
777 { 0,          0, 70, NULL, (void*) &appData.blackPieceColor, "", NULL, TextBox, N_("Black Piece Color:") },
778 { 1000, SAME_ROW, 0, NULL, (void*) &DefColor, NULL, (char**) "#202020", Button, "      " },
779 {    1, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("R") },
780 {    2, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("G") },
781 {    3, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("B") },
782 {    4, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("D") },
783 { 0,          0, 70, NULL, (void*) &appData.lightSquareColor, "", NULL, TextBox, N_("Light Square Color:") },
784 { 1000, SAME_ROW, 0, NULL, (void*) &DefColor, NULL, (char**) "#C8C365", Button, "      " },
785 {    1, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("R") },
786 {    2, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("G") },
787 {    3, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("B") },
788 {    4, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("D") },
789 { 0,          0, 70, NULL, (void*) &appData.darkSquareColor, "", NULL, TextBox, N_("Dark Square Color:") },
790 { 1000, SAME_ROW, 0, NULL, (void*) &DefColor, NULL, (char**) "#77A26D", Button, "      " },
791 {    1, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("R") },
792 {    2, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("G") },
793 {    3, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("B") },
794 {    4, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("D") },
795 { 0,          0, 70, NULL, (void*) &appData.highlightSquareColor, "", NULL, TextBox, N_("Highlight Color:") },
796 { 1000, SAME_ROW, 0, NULL, (void*) &DefColor, NULL, (char**) "#FFFF00", Button, "      " },
797 {    1, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("R") },
798 {    2, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("G") },
799 {    3, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("B") },
800 {    4, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("D") },
801 { 0,          0, 70, NULL, (void*) &appData.premoveHighlightColor, "", NULL, TextBox, N_("Premove Highlight Color:") },
802 { 1000, SAME_ROW, 0, NULL, (void*) &DefColor, NULL, (char**) "#FF0000", Button, "      " },
803 {    1, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("R") },
804 {    2, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("G") },
805 {    3, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("B") },
806 {    4, SAME_ROW, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("D") },
807 { 0, 0, 0, NULL, (void*) &appData.upsideDown, "", NULL, CheckBox, N_("Flip Pieces Shogi Style        (Colored buttons restore default)") },
808 //{ 0, 0, 0, NULL, (void*) &appData.allWhite, "", NULL, CheckBox, N_("Use Outline Pieces for Black") },
809 { 0, 0, 0, NULL, (void*) &appData.monoMode, "", NULL, CheckBox, N_("Mono Mode") },
810 { 0,-1, 5, NULL, (void*) &appData.overrideLineGap, "", NULL, Spin, N_("Line Gap ( -1 = default for board size):") },
811 { 0, 0, 0, NULL, (void*) &appData.useBitmaps, "", NULL, CheckBox, N_("Use Board Textures") },
812 { 0, 0, 0, NULL, (void*) &appData.liteBackTextureFile, ".xpm", NULL, FileName, N_("Light-Squares Texture File:") },
813 { 0, 0, 0, NULL, (void*) &appData.darkBackTextureFile, ".xpm", NULL, FileName, N_("Dark-Squares Texture File:") },
814 { 0, 0, 0, NULL, (void*) &appData.bitmapDirectory, "", NULL, PathName, N_("Directory with Bitmap Pieces:") },
815 { 0, 0, 0, NULL, (void*) &appData.pixmapDirectory, "", NULL, PathName, N_("Directory with Pixmap Pieces:") },
816 { 0, 0, 0, NULL, (void*) &BoardOptionsOK, "", NULL, EndMark , "" }
817 };
818
819 static void
820 SetColorText (int n, char *buf)
821 {
822     SetWidgetText(&boardOptions[n-1], buf, TransientDlg);
823     SetColor(buf, &boardOptions[n]);
824 }
825
826 static void
827 DefColor (int n)
828 {
829     SetColorText(n, (char*) boardOptions[n].choice);
830 }
831
832 void
833 RefreshColor (int source, int n)
834 {
835     int col, j, r, g, b, step = 10;
836     char *s, buf[MSG_SIZ]; // color string
837     GetWidgetText(&boardOptions[source], &s);
838     if(sscanf(s, "#%x", &col) != 1) return;   // malformed
839     b = col & 0xFF; g = col & 0xFF00; r = col & 0xFF0000;
840     switch(n) {
841         case 1: r += 0x10000*step;break;
842         case 2: g += 0x100*step;  break;
843         case 3: b += step;        break;
844         case 4: r -= 0x10000*step; g -= 0x100*step; b -= step; break;
845     }
846     if(r < 0) r = 0; if(g < 0) g = 0; if(b < 0) b = 0;
847     if(r > 0xFF0000) r = 0xFF0000; if(g > 0xFF00) g = 0xFF00; if(b > 0xFF) b = 0xFF;
848     col = r | g | b;
849     snprintf(buf, MSG_SIZ, "#%06x", col);
850     for(j=1; j<7; j++) if(buf[j] >= 'a') buf[j] -= 32; // capitalize
851     SetColorText(source+1, buf);
852 }
853
854 static void
855 AdjustColor (int i)
856 {
857     int n = boardOptions[i].value;
858     RefreshColor(i-n-1, n);
859 }
860
861 void
862 BoardOptionsProc ()
863 {
864    GenericPopUp(boardOptions, _("Board Options"), TransientDlg, BoardWindow, MODAL, 0);
865 }
866
867 //-------------------------------------------- ICS Text Menu Options ------------------------------
868
869 Option textOptions[100];
870 static void PutText P((char *text, int pos));
871
872 void
873 SendString (char *p)
874 {
875     char buf[MSG_SIZ], *q;
876     if(q = strstr(p, "$input")) {
877         if(!shellUp[TextMenuDlg]) return;
878         strncpy(buf, p, MSG_SIZ);
879         strncpy(buf + (q-p), q+6, MSG_SIZ-(q-p));
880         PutText(buf, q-p);
881         return;
882     }
883     snprintf(buf, MSG_SIZ, "%s\n", p);
884     SendToICS(buf);
885 }
886
887 void
888 IcsTextProc ()
889 {
890    int i=0, j;
891    char *p, *q, *r;
892    if((p = icsTextMenuString) == NULL) return;
893    do {
894         q = r = p; while(*p && *p != ';') p++;
895         for(j=0; j<p-q; j++) textOptions[i].name[j] = *r++;
896         textOptions[i].name[j++] = 0;
897         if(!*p) break;
898         if(*++p == '\n') p++; // optional linefeed after button-text terminating semicolon
899         q = p;
900         textOptions[i].choice = (char**) (r = textOptions[i].name + j);
901         while(*p && (*p != ';' || p[1] != '\n')) textOptions[i].name[j++] = *p++;
902         textOptions[i].name[j++] = 0;
903         if(*p) p += 2;
904         textOptions[i].max = 135;
905         textOptions[i].min = i&1;
906         textOptions[i].handle = NULL;
907         textOptions[i].target = &SendText;
908         textOptions[i].textValue = strstr(r, "$input") ? "#80FF80" : strstr(r, "$name") ? "#FF8080" : "#FFFFFF";
909         textOptions[i].type = Button;
910    } while(++i < 99 && *p);
911    if(i == 0) return;
912    textOptions[i].type = EndMark;
913    textOptions[i].target = NULL;
914    textOptions[i].min = 2;
915    MarkMenu("View.ICStextmenu", TextMenuDlg);
916    GenericPopUp(textOptions, _("ICS text menu"), TextMenuDlg, BoardWindow, NONMODAL, 1);
917 }
918
919 //---------------------------------------------------- Edit Comment -----------------------------------
920
921 static char *commentText;
922 static int commentIndex;
923 static void ClearComment P((int n));
924 static void SaveChanges P((int n));
925
926 static int
927 NewComCallback (int n)
928 {
929     ReplaceComment(commentIndex, commentText);
930     return 1;
931 }
932
933 Option commentOptions[] = {
934 { 200, T_VSCRL | T_FILL | T_WRAP | T_TOP, 250, NULL, (void*) &commentText, "", NULL, TextBox, "" },
935 { 0,     0,     50, NULL, (void*) &ClearComment, NULL, NULL, Button, N_("clear") },
936 { 0, SAME_ROW, 100, NULL, (void*) &SaveChanges, NULL, NULL, Button, N_("save changes") },
937 { 0, SAME_ROW,  0,  NULL, (void*) &NewComCallback, "", NULL, EndMark , "" }
938 };
939
940 static void
941 SaveChanges (int n)
942 {
943     GenericReadout(commentOptions, 0);
944     ReplaceComment(commentIndex, commentText);
945 }
946
947 static void
948 ClearComment (int n)
949 {
950     SetWidgetText(&commentOptions[0], "", CommentDlg);
951 }
952
953 void
954 NewCommentPopup (char *title, char *text, int index)
955 {
956     if(DialogExists(CommentDlg)) { // if already exists, alter title and content
957         SetDialogTitle(CommentDlg, title);
958         SetWidgetText(&commentOptions[0], text, CommentDlg);
959     }
960     if(commentText) free(commentText); commentText = strdup(text);
961     commentIndex = index;
962     MarkMenu("View.Comments", CommentDlg);
963     if(GenericPopUp(commentOptions, title, CommentDlg, BoardWindow, NONMODAL, 1))
964         AddHandler(&commentOptions[0], 1);
965 }
966
967 void
968 EditCommentProc ()
969 {
970     if (PopDown(CommentDlg)) { // popdown succesful
971 //      MarkMenuItem("Edit.EditComment", False);
972 //      MarkMenuItem("View.Comments", False);
973     } else // was not up
974         EditCommentEvent();
975 }
976
977 //------------------------------------------------------ Edit Tags ----------------------------------
978
979 static void changeTags P((int n));
980 static char *tagsText;
981
982 static int
983 NewTagsCallback (int n)
984 {
985     ReplaceTags(tagsText, &gameInfo);
986     return 1;
987 }
988
989 static Option tagsOptions[] = {
990 {   0,   0,   0, NULL, NULL, NULL, NULL, Label,  NULL },
991 { 200, T_VSCRL | T_FILL | T_WRAP | T_TOP, 200, NULL, (void*) &tagsText, "", NULL, TextBox, "" },
992 {   0,   0, 100, NULL, (void*) &changeTags, NULL, NULL, Button, N_("save changes") },
993 { 0,SAME_ROW, 0, NULL, (void*) &NewTagsCallback, "", NULL, EndMark , "" }
994 };
995
996 static void
997 changeTags (int n)
998 {
999     GenericReadout(tagsOptions, 1);
1000     if(bookUp) SaveToBook(tagsText); else
1001     ReplaceTags(tagsText, &gameInfo);
1002 }
1003
1004 void
1005 NewTagsPopup (char *text, char *msg)
1006 {
1007     char *title = bookUp ? _("Edit book") : _("Tags");
1008
1009     if(DialogExists(TagsDlg)) { // if already exists, alter title and content
1010         SetWidgetText(&tagsOptions[1], text, TagsDlg);
1011         SetDialogTitle(TagsDlg, title);
1012     }
1013     if(tagsText) free(tagsText); tagsText = strdup(text);
1014     tagsOptions[0].name = msg;
1015     MarkMenu("View.Tags", TagsDlg);
1016     GenericPopUp(tagsOptions, title, TagsDlg, BoardWindow, NONMODAL, 1);
1017 }
1018
1019 //---------------------------------------------- ICS Input Box ----------------------------------
1020
1021 char *icsText;
1022
1023 // [HGM] code borrowed from winboard.c (which should thus go to backend.c!)
1024 #define HISTORY_SIZE 64
1025 static char *history[HISTORY_SIZE];
1026 static int histIn = 0, histP = 0;
1027
1028 static void
1029 SaveInHistory (char *cmd)
1030 {
1031   if (history[histIn] != NULL) {
1032     free(history[histIn]);
1033     history[histIn] = NULL;
1034   }
1035   if (*cmd == NULLCHAR) return;
1036   history[histIn] = StrSave(cmd);
1037   histIn = (histIn + 1) % HISTORY_SIZE;
1038   if (history[histIn] != NULL) {
1039     free(history[histIn]);
1040     history[histIn] = NULL;
1041   }
1042   histP = histIn;
1043 }
1044
1045 static char *
1046 PrevInHistory (char *cmd)
1047 {
1048   int newhp;
1049   if (histP == histIn) {
1050     if (history[histIn] != NULL) free(history[histIn]);
1051     history[histIn] = StrSave(cmd);
1052   }
1053   newhp = (histP - 1 + HISTORY_SIZE) % HISTORY_SIZE;
1054   if (newhp == histIn || history[newhp] == NULL) return NULL;
1055   histP = newhp;
1056   return history[histP];
1057 }
1058
1059 static char *
1060 NextInHistory ()
1061 {
1062   if (histP == histIn) return NULL;
1063   histP = (histP + 1) % HISTORY_SIZE;
1064   return history[histP];   
1065 }
1066 // end of borrowed code
1067
1068 Option boxOptions[] = {
1069 {  30,  0,  400, NULL, (void*) &icsText, "", NULL, TextBox, "" },
1070 {  0,SAME_ROW | NO_OK, 0, NULL, NULL, "", NULL, EndMark , "" }
1071 };
1072
1073 void
1074 ICSInputSendText ()
1075 {
1076     char *val;
1077
1078     GetWidgetText(&boxOptions[0], &val);
1079     SaveInHistory(val);
1080     SendMultiLineToICS(val);
1081     SetWidgetText(&boxOptions[0], val, InputBoxDlg);
1082 }
1083
1084 void
1085 IcsKey (int n)
1086 {   // [HGM] input: let up-arrow recall previous line from history
1087     char *val;
1088
1089     if (!shellUp[InputBoxDlg]) return;
1090     switch(n) {
1091       case 0:
1092         ICSInputSendText();
1093         return;
1094       case 1:
1095         GetWidgetText(&boxOptions[0], &val);
1096         val = PrevInHistory(val);
1097         break;
1098       case -1:
1099         val = NextInHistory();
1100     }
1101     SetWidgetText(&boxOptions[0], val ? val : "", InputBoxDlg);
1102 }
1103
1104 static void
1105 PutText (char *text, int pos)
1106 {
1107     char buf[MSG_SIZ], *p;
1108
1109     if(strstr(text, "$add ") == text) {
1110         GetWidgetText(&boxOptions[0], &p);
1111         snprintf(buf, MSG_SIZ, "%s%s", p, text+5); text = buf;
1112         pos += strlen(p) - 5;
1113     }
1114     SetWidgetText(&boxOptions[0], text, TextMenuDlg);
1115     SetInsertPos(&boxOptions[0], pos);
1116 }
1117
1118 void
1119 ICSInputBoxPopUp ()
1120 {
1121     MarkMenu("View.ICSInputBox", InputBoxDlg);
1122     if(GenericPopUp(boxOptions, _("ICS input box"), InputBoxDlg, BoardWindow, NONMODAL, 0))
1123         AddHandler(&boxOptions[0], 3);
1124 }
1125
1126 void
1127 IcsInputBoxProc ()
1128 {
1129     if (!PopDown(InputBoxDlg)) ICSInputBoxPopUp();
1130 }
1131
1132 //--------------------------------------------- Move Type In ------------------------------------------
1133
1134 static int TypeInOK P((int n));
1135
1136 Option typeOptions[] = {
1137 { 30,  0,            400, NULL, (void*) &icsText, "", NULL, TextBox, "" },
1138 { 0, SAME_ROW | NO_OK, 0, NULL, (void*) &TypeInOK, "", NULL, EndMark , "" }
1139 };
1140
1141 static int
1142 TypeInOK (int n)
1143 {
1144     TypeInDoneEvent(icsText);
1145     return TRUE;
1146 }
1147
1148 void
1149 PopUpMoveDialog (char firstchar)
1150 {
1151     static char buf[2];
1152     buf[0] = firstchar; ASSIGN(icsText, buf);
1153     if(GenericPopUp(typeOptions, _("Type a move"), TransientDlg, BoardWindow, MODAL, 0))
1154         AddHandler(&typeOptions[0], 2);
1155 }
1156
1157 void
1158 BoxAutoPopUp (char *buf)
1159 {
1160         if(appData.icsActive) { // text typed to board in ICS mode: divert to ICS input box
1161             if(DialogExists(InputBoxDlg)) { // box already exists: append to current contents
1162                 char *p, newText[MSG_SIZ];
1163                 GetWidgetText(&boxOptions[0], &p);
1164                 snprintf(newText, MSG_SIZ, "%s%c", p, *buf);
1165                 SetWidgetText(&boxOptions[0], newText, InputBoxDlg);
1166                 if(shellUp[InputBoxDlg]) HardSetFocus (&boxOptions[0]); //why???
1167             } else icsText = buf; // box did not exist: make sure it pops up with char in it
1168             ICSInputBoxPopUp();
1169         } else PopUpMoveDialog(*buf);
1170 }
1171
1172 //------------------------------------------ Engine Settings ------------------------------------
1173
1174 void
1175 SettingsPopUp (ChessProgramState *cps)
1176 {
1177    currentCps = cps;
1178    GenericPopUp(cps->option, _("Engine Settings"), TransientDlg, BoardWindow, MODAL, 0);
1179 }
1180
1181 void
1182 FirstSettingsProc ()
1183 {
1184     SettingsPopUp(&first);
1185 }
1186
1187 void
1188 SecondSettingsProc ()
1189 {
1190    if(WaitForEngine(&second, SettingsMenuIfReady)) return;
1191    SettingsPopUp(&second);
1192 }
1193
1194 //----------------------------------------------- Load Engine --------------------------------------
1195
1196 char *engineDir, *engineLine, *nickName, *params;
1197 Boolean isUCI, hasBook, storeVariant, v1, addToList, useNick, secondEng;
1198
1199 static void EngSel P((int n, int sel));
1200 static int InstallOK P((int n));
1201
1202 static Option installOptions[] = {
1203 {   0,LR|T2T, 0, NULL, NULL, NULL, NULL, Label, N_("Select engine from list:") },
1204 { 300,LR|TB,200, NULL, (void*) engineMnemonic, (char*) &EngSel, NULL, ListBox, "" },
1205 { 0,SAME_ROW, 0, NULL, NULL, NULL, NULL, Break, NULL },
1206 {   0,  LR,   0, NULL, NULL, NULL, NULL, Label, N_("or specify one below:") },
1207 {   0,  0,    0, NULL, (void*) &nickName, NULL, NULL, TextBox, N_("Nickname (optional):") },
1208 {   0,  0,    0, NULL, (void*) &useNick, NULL, NULL, CheckBox, N_("Use nickname in PGN player tags of engine-engine games") },
1209 {   0,  0,    0, NULL, (void*) &engineDir, NULL, NULL, PathName, N_("Engine Directory:") },
1210 {   0,  0,    0, NULL, (void*) &engineName, NULL, NULL, FileName, N_("Engine Command:") },
1211 {   0,  LR,   0, NULL, NULL, NULL, NULL, Label, N_("(Directory will be derived from engine path when empty)") },
1212 {   0,  0,    0, NULL, (void*) &isUCI, NULL, NULL, CheckBox, N_("UCI") },
1213 {   0,  0,    0, NULL, (void*) &v1, NULL, NULL, CheckBox, N_("WB protocol v1 (do not wait for engine features)") },
1214 {   0,  0,    0, NULL, (void*) &hasBook, NULL, NULL, CheckBox, N_("Must not use GUI book") },
1215 {   0,  0,    0, NULL, (void*) &addToList, NULL, NULL, CheckBox, N_("Add this engine to the list") },
1216 {   0,  0,    0, NULL, (void*) &storeVariant, NULL, NULL, CheckBox, N_("Force current variant with this engine") },
1217 {   0,  0,    0, NULL, (void*) &InstallOK, "", NULL, EndMark , "" }
1218 };
1219
1220 static int
1221 InstallOK (int n)
1222 {
1223     if(n && (n = SelectedListBoxItem(&installOptions[1])) > 0) { // called by pressing OK, and engine selected
1224         ASSIGN(engineLine, engineList[n]);
1225     }
1226     PopDown(TransientDlg); // early popdown, to allow FreezeUI to instate grab
1227     if(!secondEng) Load(&first, 0); else Load(&second, 1);
1228     return FALSE; // no double PopDown!
1229 }
1230
1231 static void
1232 EngSel (int n, int sel)
1233 {
1234     int nr;
1235     char buf[MSG_SIZ];
1236     if(sel < 1) buf[0] = NULLCHAR; // back to top level
1237     else if(engineList[sel][0] == '#') safeStrCpy(buf, engineList[sel], MSG_SIZ); // group header, open group
1238     else { // normal line, select engine
1239         ASSIGN(engineLine, engineList[sel]);
1240         InstallOK(0);
1241         return;
1242     }
1243     nr = NamesToList(firstChessProgramNames, engineList, engineMnemonic, buf); // replace list by only the group contents
1244     ASSIGN(engineMnemonic[0], buf);
1245     LoadListBox(&installOptions[1], _("# no engines are installed"));
1246     HighlightWithScroll(&installOptions[1], 0, nr);
1247 }
1248
1249 static void
1250 LoadEngineProc (int engineNr, char *title)
1251 {
1252    isUCI = storeVariant = v1 = useNick = False; addToList = hasBook = True; // defaults
1253    secondEng = engineNr;
1254    if(engineLine)   free(engineLine);   engineLine = strdup("");
1255    if(engineDir)    free(engineDir);    engineDir = strdup(".");
1256    if(nickName)     free(nickName);     nickName = strdup("");
1257    if(params)       free(params);       params = strdup("");
1258    ASSIGN(engineMnemonic[0], "");
1259    NamesToList(firstChessProgramNames, engineList, engineMnemonic, "");
1260    GenericPopUp(installOptions, title, TransientDlg, BoardWindow, MODAL, 0);
1261 }
1262
1263 void
1264 LoadEngine1Proc ()
1265 {
1266     LoadEngineProc (0, _("Load first engine"));
1267 }
1268
1269 void
1270 LoadEngine2Proc ()
1271 {
1272     LoadEngineProc (1, _("Load second engine"));
1273 }
1274
1275 //----------------------------------------------------- Edit Book -----------------------------------------
1276
1277 void
1278 EditBookProc ()
1279 {
1280     EditBookEvent();
1281 }
1282
1283 //--------------------------------------------------- New Shuffle Game ------------------------------
1284
1285 static void SetRandom P((int n));
1286
1287 static int
1288 ShuffleOK (int n)
1289 {
1290     ResetGameEvent();
1291     return 1;
1292 }
1293
1294 static Option shuffleOptions[] = {
1295   {   0,  0,   50, NULL, (void*) &shuffleOpenings, NULL, NULL, CheckBox, N_("shuffle") },
1296   { 0,-1,2000000000, NULL, (void*) &appData.defaultFrcPosition, "", NULL, Spin, N_("Start-position number:") },
1297   {   0,  0,    0, NULL, (void*) &SetRandom, NULL, NULL, Button, N_("randomize") },
1298   {   0,  SAME_ROW,    0, NULL, (void*) &SetRandom, NULL, NULL, Button, N_("pick fixed") },
1299   { 0,SAME_ROW, 0, NULL, (void*) &ShuffleOK, "", NULL, EndMark , "" }
1300 };
1301
1302 static void
1303 SetRandom (int n)
1304 {
1305     int r = n==2 ? -1 : random() & (1<<30)-1;
1306     char buf[MSG_SIZ];
1307     snprintf(buf, MSG_SIZ,  "%d", r);
1308     SetWidgetText(&shuffleOptions[1], buf, TransientDlg);
1309     SetWidgetState(&shuffleOptions[0], True);
1310 }
1311
1312 void
1313 ShuffleMenuProc ()
1314 {
1315     GenericPopUp(shuffleOptions, _("New Shuffle Game"), TransientDlg, BoardWindow, MODAL, 0);
1316 }
1317
1318 //------------------------------------------------------ Time Control -----------------------------------
1319
1320 static int TcOK P((int n));
1321 int tmpMoves, tmpTc, tmpInc, tmpOdds1, tmpOdds2, tcType;
1322
1323 static void
1324 ShowTC (int n)
1325 {
1326 }
1327
1328 static void SetTcType P((int n));
1329
1330 static char *
1331 Value (int n)
1332 {
1333         static char buf[MSG_SIZ];
1334         snprintf(buf, MSG_SIZ, "%d", n);
1335         return buf;
1336 }
1337
1338 static Option tcOptions[] = {
1339 {   0,  0,    0, NULL, (void*) &SetTcType, NULL, NULL, Button, N_("classical") },
1340 {   0,SAME_ROW,0,NULL, (void*) &SetTcType, NULL, NULL, Button, N_("incremental") },
1341 {   0,SAME_ROW,0,NULL, (void*) &SetTcType, NULL, NULL, Button, N_("fixed max") },
1342 {   0,  0,  200, NULL, (void*) &tmpMoves, NULL, NULL, Spin, N_("Moves per session:") },
1343 {   0,  0,10000, NULL, (void*) &tmpTc,    NULL, NULL, Spin, N_("Initial time (min):") },
1344 {   0, 0, 10000, NULL, (void*) &tmpInc,   NULL, NULL, Spin, N_("Increment or max (sec/move):") },
1345 {   0,  0,    0, NULL, NULL, NULL, NULL, Label, N_("Time-Odds factors:") },
1346 {   0,  1, 1000, NULL, (void*) &tmpOdds1, NULL, NULL, Spin, N_("Engine #1") },
1347 {   0,  1, 1000, NULL, (void*) &tmpOdds2, NULL, NULL, Spin, N_("Engine #2 / Human") },
1348 {   0,  0,    0, NULL, (void*) &TcOK, "", NULL, EndMark , "" }
1349 };
1350
1351 static int
1352 TcOK (int n)
1353 {
1354     char *tc;
1355     if(tcType == 0 && tmpMoves <= 0) return 0;
1356     if(tcType == 2 && tmpInc <= 0) return 0;
1357     GetWidgetText(&tcOptions[4], &tc); // get original text, in case it is min:sec
1358     searchTime = 0;
1359     switch(tcType) {
1360       case 0:
1361         if(!ParseTimeControl(tc, -1, tmpMoves)) return 0;
1362         appData.movesPerSession = tmpMoves;
1363         ASSIGN(appData.timeControl, tc);
1364         appData.timeIncrement = -1;
1365         break;
1366       case 1:
1367         if(!ParseTimeControl(tc, tmpInc, 0)) return 0;
1368         ASSIGN(appData.timeControl, tc);
1369         appData.timeIncrement = tmpInc;
1370         break;
1371       case 2:
1372         searchTime = tmpInc;
1373     }
1374     appData.firstTimeOdds = first.timeOdds = tmpOdds1;
1375     appData.secondTimeOdds = second.timeOdds = tmpOdds2;
1376     Reset(True, True);
1377     return 1;
1378 }
1379
1380 static void
1381 SetTcType (int n)
1382 {
1383     switch(tcType = n) {
1384       case 0:
1385         SetWidgetText(&tcOptions[3], Value(tmpMoves), TransientDlg);
1386         SetWidgetText(&tcOptions[4], Value(tmpTc), TransientDlg);
1387         SetWidgetText(&tcOptions[5], _("Unused"), TransientDlg);
1388         break;
1389       case 1:
1390         SetWidgetText(&tcOptions[3], _("Unused"), TransientDlg);
1391         SetWidgetText(&tcOptions[4], Value(tmpTc), TransientDlg);
1392         SetWidgetText(&tcOptions[5], Value(tmpInc), TransientDlg);
1393         break;
1394       case 2:
1395         SetWidgetText(&tcOptions[3], _("Unused"), TransientDlg);
1396         SetWidgetText(&tcOptions[4], _("Unused"), TransientDlg);
1397         SetWidgetText(&tcOptions[5], Value(tmpInc), TransientDlg);
1398     }
1399 }
1400
1401 void
1402 TimeControlProc ()
1403 {
1404    tmpMoves = appData.movesPerSession;
1405    tmpInc = appData.timeIncrement; if(tmpInc < 0) tmpInc = 0;
1406    tmpOdds1 = tmpOdds2 = 1; tcType = 0;
1407    tmpTc = atoi(appData.timeControl);
1408    GenericPopUp(tcOptions, _("Time Control"), TransientDlg, BoardWindow, MODAL, 0);
1409 }
1410
1411 //------------------------------- Ask Question -----------------------------------------
1412
1413 int SendReply P((int n));
1414 char pendingReplyPrefix[MSG_SIZ];
1415 ProcRef pendingReplyPR;
1416 char *answer;
1417
1418 Option askOptions[] = {
1419 { 0, 0, 0, NULL, NULL, NULL, NULL, Label,  NULL },
1420 { 0, 0, 0, NULL, (void*) &answer, "", NULL, TextBox, "" },
1421 { 0, 0, 0, NULL, (void*) &SendReply, "", NULL, EndMark , "" }
1422 };
1423
1424 int
1425 SendReply (int n)
1426 {
1427     char buf[MSG_SIZ];
1428     int err;
1429     char *reply=answer;
1430 //    GetWidgetText(&askOptions[1], &reply);
1431     safeStrCpy(buf, pendingReplyPrefix, sizeof(buf)/sizeof(buf[0]) );
1432     if (*buf) strncat(buf, " ", MSG_SIZ - strlen(buf) - 1);
1433     strncat(buf, reply, MSG_SIZ - strlen(buf) - 1);
1434     strncat(buf, "\n",  MSG_SIZ - strlen(buf) - 1);
1435     OutputToProcess(pendingReplyPR, buf, strlen(buf), &err); // does not go into debug file??? => bug
1436     if (err) DisplayFatalError(_("Error writing to chess program"), err, 0);
1437     return TRUE;
1438 }
1439
1440 void
1441 AskQuestion (char *title, char *question, char *replyPrefix, ProcRef pr)
1442 {
1443     safeStrCpy(pendingReplyPrefix, replyPrefix, sizeof(pendingReplyPrefix)/sizeof(pendingReplyPrefix[0]) );
1444     pendingReplyPR = pr;
1445     ASSIGN(answer, "");
1446     askOptions[0].name = question;
1447     if(GenericPopUp(askOptions, title, AskDlg, BoardWindow, MODAL, 0))
1448         AddHandler(&askOptions[1], 2);
1449 }
1450
1451 //---------------------------- Promotion Popup --------------------------------------
1452
1453 static int count;
1454
1455 static void PromoPick P((int n));
1456
1457 static Option promoOptions[] = {
1458 {   0,         0,    0, NULL, (void*) &PromoPick, NULL, NULL, Button, NULL },
1459 {   0,  SAME_ROW,    0, NULL, (void*) &PromoPick, NULL, NULL, Button, NULL },
1460 {   0,  SAME_ROW,    0, NULL, (void*) &PromoPick, NULL, NULL, Button, NULL },
1461 {   0,  SAME_ROW,    0, NULL, (void*) &PromoPick, NULL, NULL, Button, NULL },
1462 {   0,  SAME_ROW,    0, NULL, (void*) &PromoPick, NULL, NULL, Button, NULL },
1463 {   0,  SAME_ROW,    0, NULL, (void*) &PromoPick, NULL, NULL, Button, NULL },
1464 {   0,  SAME_ROW,    0, NULL, (void*) &PromoPick, NULL, NULL, Button, NULL },
1465 {   0, SAME_ROW | NO_OK, 0, NULL, NULL, "", NULL, EndMark , "" }
1466 };
1467
1468 static void
1469 PromoPick (int n)
1470 {
1471     int promoChar = promoOptions[n+count].value;
1472
1473     PopDown(PromoDlg);
1474
1475     if (promoChar == 0) fromX = -1;
1476     if (fromX == -1) return;
1477
1478     if (! promoChar) {
1479         fromX = fromY = -1;
1480         ClearHighlights();
1481         return;
1482     }
1483     UserMoveEvent(fromX, fromY, toX, toY, promoChar);
1484
1485     if (!appData.highlightLastMove || gotPremove) ClearHighlights();
1486     if (gotPremove) SetPremoveHighlights(fromX, fromY, toX, toY);
1487     fromX = fromY = -1;
1488 }
1489
1490 static void
1491 SetPromo (char *name, int nr, char promoChar)
1492 {
1493     ASSIGN(promoOptions[nr].name, name);
1494     promoOptions[nr].value = promoChar;
1495     promoOptions[nr].min = SAME_ROW;
1496 }
1497
1498 void
1499 PromotionPopUp ()
1500 { // choice depends on variant: prepare dialog acordingly
1501   count = 7;
1502   SetPromo(_("Cancel"), --count, 0); // Beware: GenericPopUp cannot handle user buttons named "cancel" (lowe case)!
1503   if(gameInfo.variant != VariantShogi) {
1504     if (!appData.testLegality || gameInfo.variant == VariantSuicide ||
1505         gameInfo.variant == VariantSpartan && !WhiteOnMove(currentMove) ||
1506         gameInfo.variant == VariantGiveaway) {
1507       SetPromo(_("King"), --count, 'k');
1508     }
1509     if(gameInfo.variant == VariantSpartan && !WhiteOnMove(currentMove)) {
1510       SetPromo(_("Captain"), --count, 'c');
1511       SetPromo(_("Lieutenant"), --count, 'l');
1512       SetPromo(_("General"), --count, 'g');
1513       SetPromo(_("Warlord"), --count, 'w');
1514     } else {
1515       SetPromo(_("Knight"), --count, 'n');
1516       SetPromo(_("Bishop"), --count, 'b');
1517       SetPromo(_("Rook"), --count, 'r');
1518       if(gameInfo.variant == VariantCapablanca ||
1519          gameInfo.variant == VariantGothic ||
1520          gameInfo.variant == VariantCapaRandom) {
1521         SetPromo(_("Archbishop"), --count, 'a');
1522         SetPromo(_("Chancellor"), --count, 'c');
1523       }
1524       SetPromo(_("Queen"), --count, 'q');
1525     }
1526   } else // [HGM] shogi
1527   {
1528       SetPromo(_("Defer"), --count, '=');
1529       SetPromo(_("Promote"), --count, '+');
1530   }
1531   promoOptions[count].min = 0;
1532   GenericPopUp(promoOptions + count, "Promotion", PromoDlg, BoardWindow, NONMODAL, 0);
1533 }
1534
1535 //---------------------------- Chat Windows ----------------------------------------------
1536
1537 void
1538 OutputChatMessage (int partner, char *mess)
1539 {
1540     return; // dummy
1541 }
1542
1543 //--------------------------------- Game-List options dialog ------------------------------------------
1544
1545 char *strings[LPUSERGLT_SIZE];
1546 int stringPtr;
1547
1548 void
1549 GLT_ClearList ()
1550 {
1551     strings[0] = NULL;
1552     stringPtr = 0;
1553 }
1554
1555 void
1556 GLT_AddToList (char *name)
1557 {
1558     strings[stringPtr++] = name;
1559     strings[stringPtr] = NULL;
1560 }
1561
1562 Boolean
1563 GLT_GetFromList (int index, char *name)
1564 {
1565   safeStrCpy(name, strings[index], MSG_SIZ);
1566   return TRUE;
1567 }
1568
1569 void
1570 GLT_DeSelectList ()
1571 {
1572 }
1573
1574 static void GLT_Button P((int n));
1575 static int GLT_OK P((int n));
1576
1577 static Option listOptions[] = {
1578 { 0, LR|TB,  200, NULL, (void*) strings, "", NULL, ListBox, "" },
1579 { 0,    0,     0, NULL, (void*) &GLT_Button, NULL, NULL, Button, N_("factory") },
1580 { 0, SAME_ROW, 0, NULL, (void*) &GLT_Button, NULL, NULL, Button, N_("up") },
1581 { 0, SAME_ROW, 0, NULL, (void*) &GLT_Button, NULL, NULL, Button, N_("down") },
1582 { 0, SAME_ROW, 0, NULL, (void*) &GLT_OK, "", NULL, EndMark , "" }
1583 };
1584
1585 static int
1586 GLT_OK (int n)
1587 {
1588     GLT_ParseList();
1589     appData.gameListTags = strdup(lpUserGLT);
1590     return 1;
1591 }
1592
1593 static void
1594 GLT_Button (int n)
1595 {
1596     int index = SelectedListBoxItem (&listOptions[0]);
1597     char *p;
1598     if (index < 0) {
1599         DisplayError(_("No tag selected"), 0);
1600         return;
1601     }
1602     p = strings[index];
1603     if (n == 3) {
1604         if(index >= strlen(GLT_ALL_TAGS)) return;
1605         strings[index] = strings[index+1];
1606         strings[++index] = p;
1607     } else
1608     if (n == 2) {
1609         if(index == 0) return;
1610         strings[index] = strings[index-1];
1611         strings[--index] = p;
1612     } else
1613     if (n == 1) {
1614       safeStrCpy(lpUserGLT, GLT_DEFAULT_TAGS, LPUSERGLT_SIZE);
1615       GLT_TagsToList(lpUserGLT);
1616       index = 0;
1617       LoadListBox(&listOptions[0], "?"); // Note: the others don't need this, as the highlight switching redraws the change items
1618     }
1619     HighlightListBoxItem(&listOptions[0], index);
1620 }
1621
1622 void
1623 GameListOptionsPopUp (DialogClass parent)
1624 {
1625     safeStrCpy(lpUserGLT, appData.gameListTags, LPUSERGLT_SIZE);
1626     GLT_TagsToList(lpUserGLT);
1627
1628     GenericPopUp(listOptions, _("Game-list options"), TransientDlg, parent, MODAL, 0);
1629 }
1630
1631 void
1632 GameListOptionsProc ()
1633 {
1634     GameListOptionsPopUp(BoardWindow);
1635 }
1636
1637 //----------------------------- Error popup in various uses -----------------------------
1638
1639 /*
1640  * [HGM] Note:
1641  * XBoard has always had some pathologic behavior with multiple simultaneous error popups,
1642  * (which can occur even for modal popups when asynchrounous events, e.g. caused by engine, request a popup),
1643  * and this new implementation reproduces that as well:
1644  * Only the shell of the last instance is remembered in shells[ErrorDlg] (which replaces errorShell),
1645  * so that PopDowns ordered from the code always refer to that instance, and once that is down,
1646  * have no clue as to how to reach the others. For the Delete Window button calling PopDown this
1647  * has now been repaired, as the action routine assigned to it gets the shell passed as argument.
1648  */
1649
1650 int errorUp = False;
1651
1652 void
1653 ErrorPopDown ()
1654 {
1655     if (!errorUp) return;
1656     dialogError = errorUp = False;
1657     PopDown(ErrorDlg); PopDown(FatalDlg); // on explicit request we pop down any error dialog
1658     if (errorExitStatus != -1) ExitEvent(errorExitStatus);
1659 }
1660
1661 static int
1662 ErrorOK (int n)
1663 {
1664     dialogError = errorUp = False;
1665     PopDown(n == 1 ? FatalDlg : ErrorDlg); // kludge: non-modal dialogs have one less (dummy) option
1666     if (errorExitStatus != -1) ExitEvent(errorExitStatus);
1667     return FALSE; // prevent second Popdown !
1668 }
1669
1670 static Option errorOptions[] = {
1671 {   0,  0,    0, NULL, NULL, NULL, NULL, Label,  NULL }, // dummy option: will never be displayed
1672 {   0,  0,    0, NULL, NULL, NULL, NULL, Label,  NULL }, // textValue field will be set before popup
1673 { 0,NO_CANCEL,0, NULL, (void*) &ErrorOK, "", NULL, EndMark , "" }
1674 };
1675
1676 void
1677 ErrorPopUp (char *title, char *label, int modal)
1678 {
1679     errorUp = True;
1680     errorOptions[1].name = label;
1681     if(dialogError = shellUp[TransientDlg]) 
1682         GenericPopUp(errorOptions+1, title, FatalDlg, TransientDlg, MODAL, 0); // pop up as daughter of the transient dialog
1683     else
1684         GenericPopUp(errorOptions+modal, title, modal ? FatalDlg: ErrorDlg, BoardWindow, modal, 0); // kludge: option start address indicates modality
1685 }
1686
1687 void
1688 DisplayError (String message, int error)
1689 {
1690     char buf[MSG_SIZ];
1691
1692     if (error == 0) {
1693         if (appData.debugMode || appData.matchMode) {
1694             fprintf(stderr, "%s: %s\n", programName, message);
1695         }
1696     } else {
1697         if (appData.debugMode || appData.matchMode) {
1698             fprintf(stderr, "%s: %s: %s\n",
1699                     programName, message, strerror(error));
1700         }
1701         snprintf(buf, sizeof(buf), "%s: %s", message, strerror(error));
1702         message = buf;
1703     }
1704     ErrorPopUp(_("Error"), message, FALSE);
1705 }
1706
1707
1708 void
1709 DisplayMoveError (String message)
1710 {
1711     fromX = fromY = -1;
1712     ClearHighlights();
1713     DrawPosition(FALSE, NULL);
1714     if (appData.debugMode || appData.matchMode) {
1715         fprintf(stderr, "%s: %s\n", programName, message);
1716     }
1717     if (appData.popupMoveErrors) {
1718         ErrorPopUp(_("Error"), message, FALSE);
1719     } else {
1720         DisplayMessage(message, "");
1721     }
1722 }
1723
1724
1725 void
1726 DisplayFatalError (String message, int error, int status)
1727 {
1728     char buf[MSG_SIZ];
1729
1730     errorExitStatus = status;
1731     if (error == 0) {
1732         fprintf(stderr, "%s: %s\n", programName, message);
1733     } else {
1734         fprintf(stderr, "%s: %s: %s\n",
1735                 programName, message, strerror(error));
1736         snprintf(buf, sizeof(buf), "%s: %s", message, strerror(error));
1737         message = buf;
1738     }
1739     if (appData.popupExitMessage && boardWidget && XtIsRealized(boardWidget)) {
1740       ErrorPopUp(status ? _("Fatal Error") : _("Exiting"), message, TRUE);
1741     } else {
1742       ExitEvent(status);
1743     }
1744 }
1745
1746 void
1747 DisplayInformation (String message)
1748 {
1749     ErrorPopDown();
1750     ErrorPopUp(_("Information"), message, TRUE);
1751 }
1752
1753 void
1754 DisplayNote (String message)
1755 {
1756     ErrorPopDown();
1757     ErrorPopUp(_("Note"), message, FALSE);
1758 }
1759
1760 void
1761 DisplayTitle (char *text)
1762 {
1763     char title[MSG_SIZ];
1764     char icon[MSG_SIZ];
1765
1766     if (text == NULL) text = "";
1767
1768     if(partnerUp) { SetDialogTitle(DummyDlg, text); return; }
1769
1770     if (*text != NULLCHAR) {
1771       safeStrCpy(icon, text, sizeof(icon)/sizeof(icon[0]) );
1772       safeStrCpy(title, text, sizeof(title)/sizeof(title[0]) );
1773     } else if (appData.icsActive) {
1774         snprintf(icon, sizeof(icon), "%s", appData.icsHost);
1775         snprintf(title, sizeof(title), "%s: %s", programName, appData.icsHost);
1776     } else if (appData.cmailGameName[0] != NULLCHAR) {
1777         snprintf(icon, sizeof(icon), "%s", "CMail");
1778         snprintf(title,sizeof(title), "%s: %s", programName, "CMail");
1779 #ifdef GOTHIC
1780     // [HGM] license: This stuff should really be done in back-end, but WinBoard already had a pop-up for it
1781     } else if (gameInfo.variant == VariantGothic) {
1782       safeStrCpy(icon,  programName, sizeof(icon)/sizeof(icon[0]) );
1783       safeStrCpy(title, GOTHIC,     sizeof(title)/sizeof(title[0]) );
1784 #endif
1785 #ifdef FALCON
1786     } else if (gameInfo.variant == VariantFalcon) {
1787       safeStrCpy(icon, programName, sizeof(icon)/sizeof(icon[0]) );
1788       safeStrCpy(title, FALCON, sizeof(title)/sizeof(title[0]) );
1789 #endif
1790     } else if (appData.noChessProgram) {
1791       safeStrCpy(icon, programName, sizeof(icon)/sizeof(icon[0]) );
1792       safeStrCpy(title, programName, sizeof(title)/sizeof(title[0]) );
1793     } else {
1794       safeStrCpy(icon, first.tidy, sizeof(icon)/sizeof(icon[0]) );
1795         snprintf(title,sizeof(title), "%s: %s", programName, first.tidy);
1796     }
1797     SetWindowTitle(text, title, icon);
1798 }
1799
1800 #define PAUSE_BUTTON "P"
1801 #define PIECE_MENU_SIZE 18
1802 static String pieceMenuStrings[2][PIECE_MENU_SIZE+1] = {
1803     { N_("White"), "----", N_("Pawn"), N_("Knight"), N_("Bishop"), N_("Rook"),
1804       N_("Queen"), N_("King"), "----", N_("Elephant"), N_("Cannon"),
1805       N_("Archbishop"), N_("Chancellor"), "----", N_("Promote"), N_("Demote"),
1806       N_("Empty square"), N_("Clear board"), NULL },
1807     { N_("Black"), "----", N_("Pawn"), N_("Knight"), N_("Bishop"), N_("Rook"),
1808       N_("Queen"), N_("King"), "----", N_("Elephant"), N_("Cannon"),
1809       N_("Archbishop"), N_("Chancellor"), "----", N_("Promote"), N_("Demote"),
1810       N_("Empty square"), N_("Clear board"), NULL }
1811 };
1812 /* must be in same order as pieceMenuStrings! */
1813 static ChessSquare pieceMenuTranslation[2][PIECE_MENU_SIZE] = {
1814     { WhitePlay, (ChessSquare) 0, WhitePawn, WhiteKnight, WhiteBishop,
1815         WhiteRook, WhiteQueen, WhiteKing, (ChessSquare) 0, WhiteAlfil,
1816         WhiteCannon, WhiteAngel, WhiteMarshall, (ChessSquare) 0,
1817         PromotePiece, DemotePiece, EmptySquare, ClearBoard },
1818     { BlackPlay, (ChessSquare) 0, BlackPawn, BlackKnight, BlackBishop,
1819         BlackRook, BlackQueen, BlackKing, (ChessSquare) 0, BlackAlfil,
1820         BlackCannon, BlackAngel, BlackMarshall, (ChessSquare) 0,
1821         PromotePiece, DemotePiece, EmptySquare, ClearBoard },
1822 };
1823
1824 #define DROP_MENU_SIZE 6
1825 static String dropMenuStrings[DROP_MENU_SIZE+1] = {
1826     "----", N_("Pawn"), N_("Knight"), N_("Bishop"), N_("Rook"), N_("Queen"), NULL
1827   };
1828 /* must be in same order as dropMenuStrings! */
1829 static ChessSquare dropMenuTranslation[DROP_MENU_SIZE] = {
1830     (ChessSquare) 0, WhitePawn, WhiteKnight, WhiteBishop,
1831     WhiteRook, WhiteQueen
1832 };
1833
1834 // [HGM] experimental code to pop up window just like the main window, using GenercicPopUp
1835
1836 static Option *Exp P((int n, int x, int y));
1837 void MenuCallback P((int n));
1838 void SizeKludge P((int n));
1839
1840 static int pmFromX = -1, pmFromY = -1;
1841
1842 static void
1843 PMSelect (int n)
1844 {   // user callback for board context menus
1845     if (pmFromX < 0 || pmFromY < 0) return;
1846     if(n == W_DROP) DropMenuEvent(dropMenuTranslation[values[n]], pmFromX, pmFromY);
1847     else EditPositionMenuEvent(pieceMenuTranslation[n - W_MENUW][values[n]], pmFromX, pmFromY);
1848 }
1849
1850 static void
1851 CCB (int n)
1852 {
1853     shiftKey = (ShiftKeys() & 3) != 0;
1854     ClockClick(n == W_BLACK);
1855 }
1856
1857 Option mainOptions[] = { // description of main window in terms of generic dialog creator
1858 { 0, 0xCA, 0, NULL, NULL, "", NULL, BoxBegin, "" }, // menu bar
1859   { 0, COMBO_CALLBACK, 0, NULL, (void*)&MenuCallback, NULL, NULL, DropDown, N_("File") },
1860   { 0, COMBO_CALLBACK, 0, NULL, (void*)&MenuCallback, NULL, NULL, DropDown, N_("Edit") },
1861   { 0, COMBO_CALLBACK, 0, NULL, (void*)&MenuCallback, NULL, NULL, DropDown, N_("View") },
1862   { 0, COMBO_CALLBACK, 0, NULL, (void*)&MenuCallback, NULL, NULL, DropDown, N_("Mode") },
1863   { 0, COMBO_CALLBACK, 0, NULL, (void*)&MenuCallback, NULL, NULL, DropDown, N_("Action") },
1864   { 0, COMBO_CALLBACK, 0, NULL, (void*)&MenuCallback, NULL, NULL, DropDown, N_("Engine") },
1865   { 0, COMBO_CALLBACK, 0, NULL, (void*)&MenuCallback, NULL, NULL, DropDown, N_("Options") },
1866   { 0, COMBO_CALLBACK, 0, NULL, (void*)&MenuCallback, NULL, NULL, DropDown, N_("Help") },
1867 { 0, 0, 0, NULL, (void*)&SizeKludge, "", NULL, BoxEnd, "" },
1868 { 0, LR|T2T|BORDER|SAME_ROW, 0, NULL, NULL, "", NULL, Label, "1" }, // optional title in window
1869 { 0, L2L|T2T,              200, NULL, (void*) &CCB, NULL, NULL, Label, "White" }, // white clock
1870 { 0, R2R|T2T|SAME_ROW,     200, NULL, (void*) &CCB, NULL, NULL, Label, "Black" }, // black clock
1871 { 0, LR|T2T|BORDER,        401, NULL, NULL, "", NULL, -1, "2" }, // backup for title in window (if no room for other)
1872 { 0, LR|T2T|BORDER,        270, NULL, NULL, "", NULL, Label, "message" }, // message field
1873 { 0, RR|TT|SAME_ROW,       125, NULL, NULL, "", NULL, BoxBegin, "" }, // (optional) button bar
1874   { 0,    0,     0, NULL, (void*) &ToStartEvent, NULL, NULL, Button, N_("<<") },
1875   { 0, SAME_ROW, 0, NULL, (void*) &BackwardEvent, NULL, NULL, Button, N_("<") },
1876   { 0, SAME_ROW, 0, NULL, (void*) &PauseEvent, NULL, NULL, Button, N_(PAUSE_BUTTON) },
1877   { 0, SAME_ROW, 0, NULL, (void*) &ForwardEvent, NULL, NULL, Button, N_(">") },
1878   { 0, SAME_ROW, 0, NULL, (void*) &ToEndEvent, NULL, NULL, Button, N_(">>") },
1879 { 0, 0, 0, NULL, NULL, "", NULL, BoxEnd, "" },
1880 { 401, LR|TT, 401, NULL, (char*) &Exp, NULL, NULL, Graph, "shadow board" }, // board
1881   { 2, COMBO_CALLBACK, 0, NULL, (void*) &PMSelect, NULL, pieceMenuStrings[0], PopUp, "menuW" },
1882   { 2, COMBO_CALLBACK, 0, NULL, (void*) &PMSelect, NULL, pieceMenuStrings[1], PopUp, "menuB" },
1883   { -1, COMBO_CALLBACK, 0, NULL, (void*) &PMSelect, NULL, dropMenuStrings, PopUp, "menuD" },
1884 { 0,  NO_OK, 0, NULL, NULL, "", NULL, EndMark , "" }
1885 };
1886
1887 void
1888 SizeKludge (int n)
1889 {   // callback called by GenericPopUp immediately after sizing the menu bar
1890     int width = BOARD_WIDTH*(squareSize + lineGap) + lineGap;
1891     int w = width - 44 - mainOptions[n].min;
1892     mainOptions[W_TITLE].max = w; // width left behind menu bar
1893     if(w < 0.4*width) // if no reasonable amount of space for title, force small layout
1894         mainOptions[W_SMALL].type = mainOptions[W_TITLE].type, mainOptions[W_TITLE].type = -1; 
1895 }
1896
1897 void
1898 MenuCallback (int n)
1899 {
1900     MenuProc *proc = (MenuProc *) (((MenuItem*)(mainOptions[n].choice))[values[n]].proc);
1901
1902     (proc)();
1903 }
1904
1905 static Option *
1906 Exp (int n, int x, int y)
1907 {
1908     static int but1, but3;
1909     int menuNr = -3;
1910
1911     if(n == 0) { // motion
1912         if(SeekGraphClick(Press, x, y, 1)) return NULL;
1913         if(but1 && !PromoScroll(x, y)) DragPieceMove(x, y);
1914         if(but3) MovePV(x, y, lineGap + BOARD_HEIGHT * (squareSize + lineGap));
1915         return NULL;
1916     }
1917     if(n != 10 && PopDown(PromoDlg)) fromX = fromY = -1; // user starts fiddling with board when promotion dialog is up
1918     shiftKey = ShiftKeys();
1919     controlKey = (shiftKey & 0xC) != 0;
1920     shiftKey = (shiftKey & 3) != 0;
1921     switch(n) {
1922         case  1: LeftClick(Press,   x, y), but1 = 1; break;
1923         case -1: LeftClick(Release, x, y), but1 = 0; break;
1924         case  2: shiftKey = !shiftKey;
1925         case  3: menuNr = RightClick(Press,   x, y, &pmFromX, &pmFromY), but3 = 1; break;
1926         case -2: shiftKey = !shiftKey;
1927         case -3: menuNr = RightClick(Release, x, y, &pmFromX, &pmFromY), but3 = 0; break;
1928         case 10:
1929             DrawPosition(True, NULL);
1930         default:
1931             return NULL;
1932     }
1933
1934     switch(menuNr) {
1935       case 0: return &mainOptions[shiftKey ? W_MENUW: W_MENUB];
1936       case 1: SetupDropMenu(); return &mainOptions[W_DROP];
1937       case 2:
1938       case -1: ErrorPopDown();
1939       case -2:
1940       default: break; // -3, so no clicks caught
1941     }
1942     return NULL;
1943 }
1944
1945 Option *
1946 BoardPopUp (int squareSize, int lineGap, void *clockFontThingy)
1947 {
1948     int i, size = BOARD_WIDTH*(squareSize + lineGap) + lineGap;
1949     mainOptions[W_WHITE].choice = (char**) clockFontThingy;
1950     mainOptions[W_BLACK].choice = (char**) clockFontThingy;
1951     mainOptions[W_BOARD].value = BOARD_HEIGHT*(squareSize + lineGap) + lineGap;
1952     mainOptions[W_BOARD].max = mainOptions[W_SMALL].max = size; // board size
1953     mainOptions[W_SMALL].max = size - 2; // board title (subtract border!)
1954     mainOptions[W_BLACK].max = mainOptions[W_WHITE].max = size/2-3; // clock width
1955     mainOptions[W_MESSG].max = appData.showButtonBar ? size-130 : size-2; // message
1956     mainOptions[W_MENU].max = size-40; // menu bar
1957     mainOptions[W_TITLE].type = appData.titleInWindow ? Label : -1 ;
1958     if(!appData.showButtonBar) for(i=W_BUTTON; i<W_BOARD; i++) mainOptions[i].type = -1;
1959     for(i=0; i<8; i++) mainOptions[i+1].choice = (char**) menuBar[i].mi;
1960     GenericPopUp(mainOptions, "XBoard", BoardWindow, BoardWindow, NONMODAL, 1);
1961     return mainOptions;
1962 }
1963
1964 static Option *
1965 SlaveExp (int n, int x, int y)
1966 {
1967     if(n == 10) { // expose event
1968         flipView = !flipView; partnerUp = !partnerUp;
1969         DrawPosition(True, NULL); // [HGM] dual: draw other board in other orientation
1970         flipView = !flipView; partnerUp = !partnerUp;
1971     }
1972     return NULL;
1973 }
1974
1975 Option dualOptions[] = { // auxiliary board window
1976 { 0, L2L|T2T,              198, NULL, NULL, NULL, NULL, Label, "White" }, // white clock
1977 { 0, R2R|T2T|SAME_ROW,     198, NULL, NULL, NULL, NULL, Label, "Black" }, // black clock
1978 { 0, LR|T2T|BORDER,        401, NULL, NULL, NULL, NULL, Label, "message" }, // message field
1979 { 401, LR|TT, 401, NULL, (char*) &SlaveExp, NULL, NULL, Graph, "shadow board" }, // board
1980 { 0,  NO_OK, 0, NULL, NULL, "", NULL, EndMark , "" }
1981 };
1982
1983 void
1984 SlavePopUp ()
1985 {
1986     int size = BOARD_WIDTH*(squareSize + lineGap) + lineGap;
1987     // copy params from main board
1988     dualOptions[0].choice = mainOptions[W_WHITE].choice;
1989     dualOptions[1].choice = mainOptions[W_BLACK].choice;
1990     dualOptions[3].value = BOARD_HEIGHT*(squareSize + lineGap) + lineGap;
1991     dualOptions[3].max = dualOptions[2].max = size; // board width
1992     dualOptions[0].max = dualOptions[1].max = size/2 - 3; // clock width
1993     GenericPopUp(dualOptions, "XBoard", DummyDlg, BoardWindow, NONMODAL, 1);
1994 }
1995
1996 void
1997 DisplayWhiteClock (long timeRemaining, int highlight)
1998 {
1999     if(appData.noGUI) return;
2000     if(twoBoards && partnerUp) {
2001         DisplayTimerLabel(&dualOptions[0], _("White"), timeRemaining, highlight);
2002         return;
2003     }
2004     DisplayTimerLabel(&mainOptions[W_WHITE], _("White"), timeRemaining, highlight);
2005     if(highlight) SetClockIcon(0);
2006 }
2007
2008 void
2009 DisplayBlackClock (long timeRemaining, int highlight)
2010 {
2011     if(appData.noGUI) return;
2012     if(twoBoards && partnerUp) {
2013         DisplayTimerLabel(&dualOptions[1], _("Black"), timeRemaining, highlight);
2014         return;
2015     }
2016     DisplayTimerLabel(&mainOptions[W_BLACK], _("Black"), timeRemaining, highlight);
2017     if(highlight) SetClockIcon(1);
2018 }
2019
2020
2021 //---------------------------------------------
2022
2023 void
2024 DisplayMessage (char *message, char *extMessage)
2025 {
2026   /* display a message in the message widget */
2027
2028   char buf[MSG_SIZ];
2029
2030   if (extMessage)
2031     {
2032       if (*message)
2033         {
2034           snprintf(buf, sizeof(buf), "%s  %s", message, extMessage);
2035           message = buf;
2036         }
2037       else
2038         {
2039           message = extMessage;
2040         };
2041     };
2042
2043     safeStrCpy(lastMsg, message, MSG_SIZ); // [HGM] make available
2044
2045   /* need to test if messageWidget already exists, since this function
2046      can also be called during the startup, if for example a Xresource
2047      is not set up correctly */
2048   if(mainOptions[W_MESSG].handle)
2049     SetWidgetLabel(&mainOptions[W_MESSG], message);
2050
2051   return;
2052 }
2053
2054 //----------------------------------- File Browser -------------------------------
2055
2056 #ifdef HAVE_DIRENT_H
2057 #include <dirent.h>
2058 #else
2059 #include <sys/dir.h>
2060 #define dirent direct
2061 #endif
2062
2063 #include <sys/stat.h>
2064
2065 static ChessProgramState *savCps;
2066 static FILE **savFP;
2067 static char *fileName, *extFilter, *savMode, **namePtr;
2068 static int folderPtr, filePtr, oldVal, byExtension, extFlag;
2069 static char curDir[MSG_SIZ], title[MSG_SIZ], *folderList[1000], *fileList[1000];
2070
2071 static char *FileTypes[] = {
2072 "Chess Games",
2073 "Chess Positions",
2074 "Tournaments",
2075 "Opening Books",
2076 "Sound files",
2077 "Settings (*.ini)",
2078 "Log files",
2079 "All files",
2080 NULL,
2081 "PGN",
2082 "Old-Style Games",
2083 "FEN",
2084 "Old-Style Positions",
2085 NULL,
2086 NULL
2087 };
2088
2089 static char *Extensions[] = {
2090 ".pgn .game",
2091 ".fen .epd .pos",
2092 ".trn",
2093 ".bin",
2094 ".wav",
2095 ".ini",
2096 ".log",
2097 "",
2098 "INVALID",
2099 ".pgn",
2100 ".game",
2101 ".fen",
2102 ".pos",
2103 NULL,
2104 ""
2105 };
2106
2107 void DirSelProc P((int n, int sel));
2108 void FileSelProc P((int n, int sel));
2109 void SetTypeFilter P((int n));
2110 int BrowseOK P((int n));
2111 void Switch P((int n));
2112 void CreateDir P((int n));
2113
2114 Option browseOptions[] = {
2115 {   0,    LR|T2T,      500, NULL, NULL, NULL, NULL, Label, title },
2116 {   0,    L2L|T2T,     250, NULL, NULL, NULL, NULL, Label, N_("Directories:") },
2117 {   0,R2R|T2T|SAME_ROW,100, NULL, NULL, NULL, NULL, Label, N_("Files:") },
2118 {   0, R2R|TT|SAME_ROW, 70, NULL, (void*) &Switch, NULL, NULL, Button, N_("by name") },
2119 {   0, R2R|TT|SAME_ROW, 70, NULL, (void*) &Switch, NULL, NULL, Button, N_("by type") },
2120 { 300,    L2L|TB,      250, NULL, (void*) folderList, (char*) &DirSelProc, NULL, ListBox, "" },
2121 { 300, R2R|TB|SAME_ROW,250, NULL, (void*) fileList, (char*) &FileSelProc, NULL, ListBox, "" },
2122 {   0,       0,        300, NULL, (void*) &fileName, NULL, NULL, TextBox, N_("Filename:") },
2123 {   0,    SAME_ROW,    120, NULL, (void*) &CreateDir, NULL, NULL, Button, N_("New directory") },
2124 {   0, COMBO_CALLBACK, 150, NULL, (void*) &SetTypeFilter, NULL, FileTypes, ComboBox, N_("File type:") },
2125 {   0,    SAME_ROW,      0, NULL, (void*) &BrowseOK, "", NULL, EndMark , "" }
2126 };
2127
2128 int
2129 BrowseOK (int n)
2130 {
2131         if(!fileName[0]) { // it is enough to have a file selected
2132             if(browseOptions[6].textValue) { // kludge: if callback specified we browse for file
2133                 int sel = SelectedListBoxItem(&browseOptions[6]);
2134                 if(sel < 0 || sel >= filePtr) return FALSE;
2135                 ASSIGN(fileName, fileList[sel]);
2136             } else { // we browse for path
2137                 ASSIGN(fileName, curDir); // kludge: without callback we browse for path
2138             }
2139         }
2140         if(!fileName[0]) return FALSE; // refuse OK when no file
2141         if(!savMode[0]) { // browsing for name only (dialog Browse button)
2142                 snprintf(title, MSG_SIZ, "%s/%s", curDir, fileName);
2143                 SetWidgetText((Option*) savFP, title, TransientDlg);
2144                 currentCps = savCps; // could return to Engine Settings dialog!
2145                 return TRUE;
2146         }
2147         *savFP = fopen(fileName, savMode);
2148         if(*savFP == NULL) return FALSE; // refuse OK if file not openable
2149         ASSIGN(*namePtr, fileName);
2150         ScheduleDelayedEvent(DelayedLoad, 50);
2151         currentCps = savCps; // not sure this is ever non-null
2152         return TRUE;
2153 }
2154
2155 void
2156 FileSelProc (int n, int sel)
2157 {
2158     if(sel<0) return;
2159     ASSIGN(fileName, fileList[sel]);
2160     if(BrowseOK(0)) PopDown(BrowserDlg);
2161 }
2162
2163 int
2164 AlphaNumCompare (char *p, char *q)
2165 {
2166     while(*p) {
2167         if(isdigit(*p) && isdigit(*q) && atoi(p) != atoi(q))
2168              return (atoi(p) > atoi(q) ? 1 : -1);
2169         if(*p != *q) break;
2170         p++, q++;
2171     }
2172     if(*p == *q) return 0;
2173     return (*p > *q ? 1 : -1);
2174 }
2175
2176 int
2177 Comp (const void *s, const void *t)
2178 {
2179     char *p = *(char**) s, *q = *(char**) t;
2180     if(extFlag) {
2181         char *h; int r;
2182         while(h = strchr(p, '.')) p = h+1;
2183         if(p == *(char**) s) p = "";
2184         while(h = strchr(q, '.')) q = h+1;
2185         if(q == *(char**) t) q = "";
2186         r = AlphaNumCompare(p, q);
2187         if(r) return r;
2188     }
2189     return AlphaNumCompare( *(char**) s, *(char**) t );
2190 }
2191
2192 void
2193 ListDir (int pathFlag)
2194 {
2195         DIR *dir;
2196         struct dirent *dp;
2197         struct stat statBuf;
2198         static int lastFlag;
2199
2200         if(pathFlag < 0) pathFlag = lastFlag;
2201         lastFlag = pathFlag;
2202         dir = opendir(".");
2203         getcwd(curDir, MSG_SIZ);
2204         snprintf(title, MSG_SIZ, "%s   %s", _("Contents of"), curDir);
2205         folderPtr = filePtr = 0; // clear listing
2206
2207         while (dp = readdir(dir)) { // pass 1: list foders
2208             char *s = dp->d_name;
2209             if(!stat(s, &statBuf) && S_ISDIR(statBuf.st_mode)) { // stat succeeds and tells us it is directory
2210                 if(s[0] == '.' && strcmp(s, "..")) continue; // suppress hidden, except ".."
2211                 ASSIGN(folderList[folderPtr], s); folderPtr++;
2212             } else if(!pathFlag) {
2213                 char *s = dp->d_name, match=0;
2214                 if(s[0] == '.') continue; // suppress hidden files
2215                 if(extFilter[0]) { // [HGM] filter on extension
2216                     char *p = extFilter, *q;
2217                     do {
2218                         if(q = strchr(p, ' ')) *q = 0;
2219                         if(strstr(s, p)) match++;
2220                         if(q) *q = ' ';
2221                     } while(q && (p = q+1));
2222                     if(!match) continue;
2223                 }
2224                 ASSIGN(fileList[filePtr], s); filePtr++;
2225             }
2226         }
2227         FREE(folderList[folderPtr]); folderList[folderPtr] = NULL;
2228         FREE(fileList[filePtr]); fileList[filePtr] = NULL;
2229         closedir(dir);
2230         extFlag = 0;         qsort((void*)folderList, folderPtr, sizeof(char*), &Comp);
2231         extFlag = byExtension; qsort((void*)fileList, filePtr, sizeof(char*), &Comp);
2232 }
2233
2234 void
2235 Refresh (int pathFlag)
2236 {
2237     ListDir(pathFlag); // and make new one
2238     LoadListBox(&browseOptions[5], "");
2239     LoadListBox(&browseOptions[6], "");
2240     SetWidgetLabel(&browseOptions[0], title);
2241 }
2242
2243 void
2244 CreateDir (int n)
2245 {
2246     char *name, *errmsg = "";
2247     GetWidgetText(&browseOptions[n-1], &name);
2248     if(!name[0]) errmsg = _("FIRST TYPE DIRECTORY NAME HERE"); else
2249     if(mkdir(name, 0755)) errmsg = _("TRY ANOTHER NAME");
2250     else {
2251         chdir(name);
2252         Refresh(-1);
2253     }
2254     SetWidgetText(&browseOptions[n-1], errmsg, BrowserDlg);
2255 }
2256
2257 void
2258 Switch (int n)
2259 {
2260     if(byExtension == (n == 4)) return;
2261     extFlag = byExtension = (n == 4);
2262     qsort((void*)fileList, filePtr, sizeof(char*), &Comp);
2263     LoadListBox(&browseOptions[6], "");
2264 }
2265
2266 void
2267 SetTypeFilter (int n)
2268 {
2269     int j = values[n];
2270     if(j == browseOptions[n].value) return; // no change
2271     browseOptions[n].value = j;
2272     SetWidgetLabel(&browseOptions[n], FileTypes[j]);
2273     ASSIGN(extFilter, Extensions[j]);
2274     Refresh(-1); // uses pathflag remembered by ListDir
2275     values[n] = oldVal; // do not disturb combo settings of underlying dialog
2276 }
2277
2278 void
2279 DirSelProc (int n, int sel)
2280 {
2281     if(!chdir(folderList[sel])) { // cd succeeded, so we are in new directory now
2282         Refresh(-1);
2283     }
2284 }
2285
2286 void
2287 Browse (DialogClass dlg, char *label, char *proposed, char *ext, Boolean pathFlag, char *mode, char **name, FILE **fp)
2288 {
2289     int j=0;
2290     savFP = fp; savMode = mode, namePtr = name, savCps = currentCps, oldVal = values[9]; // save params, for use in callback
2291     ASSIGN(extFilter, ext);
2292     ASSIGN(fileName, proposed ? proposed : "");
2293     for(j=0; Extensions[j]; j++) // look up actual value in list of possible values, to get selection nr
2294         if(extFilter && !strcmp(extFilter, Extensions[j])) break;
2295     if(Extensions[j] == NULL) { j++; ASSIGN(FileTypes[j], extFilter); }
2296     browseOptions[9].value = j;
2297     browseOptions[6].textValue = (char*) (pathFlag ? NULL : &FileSelProc); // disable file listbox during path browsing
2298     ListDir(pathFlag);
2299     currentCps = NULL;
2300     GenericPopUp(browseOptions, label, BrowserDlg, dlg, MODAL, 0);
2301     SetWidgetLabel(&browseOptions[9], FileTypes[j]);
2302 }
2303
2304