Implement searching games in Game List for a position
[xboard.git] / xoptions.c
1 /*
2  * xoptions.c -- Move list window, part of X front end for XBoard
3  *
4  * Copyright 2000, 2009, 2010, 2011 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 <X11/Intrinsic.h>
51 #include <X11/StringDefs.h>
52 #include <X11/Shell.h>
53 #include <X11/Xatom.h>
54 #include <X11/Xaw/Dialog.h>
55 #include <X11/Xaw/Form.h>
56 #include <X11/Xaw/List.h>
57 #include <X11/Xaw/Label.h>
58 #include <X11/Xaw/SimpleMenu.h>
59 #include <X11/Xaw/SmeBSB.h>
60 #include <X11/Xaw/SmeLine.h>
61 #include <X11/Xaw/Box.h>
62 #include <X11/Xaw/Paned.h>
63 #include <X11/Xaw/MenuButton.h>
64 #include <X11/cursorfont.h>
65 #include <X11/Xaw/Text.h>
66 #include <X11/Xaw/AsciiText.h>
67 #include <X11/Xaw/Viewport.h>
68 #include <X11/Xaw/Toggle.h>
69
70 #include "common.h"
71 #include "backend.h"
72 #include "xboard.h"
73 #include "gettext.h"
74
75 #ifdef ENABLE_NLS
76 # define  _(s) gettext (s)
77 # define N_(s) gettext_noop (s)
78 #else
79 # define  _(s) (s)
80 # define N_(s)  s
81 #endif
82
83 // [HGM] the following code for makng menu popups was cloned from the FileNamePopUp routines
84
85 static Widget previous = NULL;
86
87 void SetFocus(Widget w, XtPointer data, XEvent *event, Boolean *b)
88 {
89     Arg args[2];
90     char *s;
91     int j;
92
93     if(previous) {
94         XtSetArg(args[0], XtNdisplayCaret, False);
95         XtSetValues(previous, args, 1);
96     }
97     XtSetArg(args[0], XtNstring, &s);
98     XtGetValues(w, args, 1);
99     j = 1;
100     XtSetArg(args[0], XtNdisplayCaret, True);
101     if(!strchr(s, '\n') && strlen(s) < 80) XtSetArg(args[1], XtNinsertPosition, strlen(s)), j++;
102     XtSetValues(w, args, j);
103     XtSetKeyboardFocus((Widget) data, w);
104     previous = w;
105 }
106
107 //--------------------------- Engine-specific options menu ----------------------------------
108
109 typedef void ButtonCallback(int n);
110 typedef int OKCallback(int n);
111
112 int values[MAX_OPTIONS];
113 ChessProgramState *currentCps;
114 static Option *currentOption;
115 static Boolean browserUp;
116 ButtonCallback *comboCallback;
117
118 void GetWidgetText(Option *opt, char **buf)
119 {
120     Arg arg;
121     XtSetArg(arg, XtNstring, buf);
122     XtGetValues(opt->handle, &arg, 1);
123 }
124
125 void SetWidgetText(Option *opt, char *buf, int n)
126 {
127     Arg arg;
128     XtSetArg(arg, XtNstring, buf);
129     XtSetValues(opt->handle, &arg, 1);
130     SetFocus(opt->handle, shells[n], NULL, False);
131 }
132
133 void SetWidgetState(Option *opt, int state)
134 {
135     Arg arg;
136     XtSetArg(arg, XtNstate, state);
137     XtSetValues(opt->handle, &arg, 1);
138 }
139
140 void CheckCallback(Widget ww, XtPointer data, XEvent *event, Boolean *b)
141 {
142     Widget w = currentOption[(int)(intptr_t)data].handle;
143     Boolean s;
144     Arg args[16];
145
146     XtSetArg(args[0], XtNstate, &s);
147     XtGetValues(w, args, 1);
148     SetWidgetState(&currentOption[(int)(intptr_t)data], !s);
149 }
150
151 void SpinCallback(w, client_data, call_data)
152      Widget w;
153      XtPointer client_data, call_data;
154 {
155     String name, val;
156     Arg args[16];
157     char buf[MSG_SIZ], *p;
158     int j;
159     int data = (intptr_t) client_data;
160
161     XtSetArg(args[0], XtNlabel, &name);
162     XtGetValues(w, args, 1);
163
164     GetWidgetText(&currentOption[data], &val);
165     sscanf(val, "%d", &j);
166     if (strcmp(name, "browse") == 0) {
167         char *q=val, *r;
168         for(r = ""; *q; q++) if(*q == '.') r = q; else if(*q == '/') r = ""; // last dot after last slash
169         if(!strcmp(r, "") && !currentCps && currentOption[data].type == FileName && currentOption[data].textValue)
170                 r = currentOption[data].textValue;
171         browserUp = True;
172         if(XsraSelFile(shells[0], currentOption[data].name, NULL, NULL, "", "", r,
173                                   currentOption[data].type == PathName ? "p" : "f", NULL, &p)) {
174                 int len = strlen(p);
175                 if(len && p[len-1] == '/') p[len-1] = NULLCHAR;
176                 XtSetArg(args[0], XtNstring, p);
177                 XtSetValues(currentOption[data].handle, args, 1);
178         }
179         browserUp = False;
180         SetFocus(currentOption[data].handle, shells[0], (XEvent*) NULL, False);
181         return;
182     } else
183     if (strcmp(name, "+") == 0) {
184         if(++j > currentOption[data].max) return;
185     } else
186     if (strcmp(name, "-") == 0) {
187         if(--j < currentOption[data].min) return;
188     } else return;
189     snprintf(buf, MSG_SIZ,  "%d", j);
190     SetWidgetText(&currentOption[data], buf, 0);
191 }
192
193 void ComboSelect(w, addr, index) // callback for all combo items
194      Widget w;
195      caddr_t addr;
196      caddr_t index;
197 {
198     Arg args[16];
199     int i = ((intptr_t)addr)>>8;
200     int j = 255 & (intptr_t) addr;
201
202     values[i] = j; // store in temporary, for transfer at OK
203     XtSetArg(args[0], XtNlabel, _(((char**)currentOption[i].textValue)[j]));
204     XtSetValues(currentOption[i].handle, args, 1);
205
206     if(currentOption[i].min & 1 && !currentCps && comboCallback) (comboCallback)(i);
207 }
208
209 void CreateComboPopup(parent, name, n, mb)
210      Widget parent;
211      String name;
212      int n;
213      char *mb[];
214 {
215     int i=0, j;
216     Widget menu, entry;
217     Arg args[16];
218
219     menu = XtCreatePopupShell(name, simpleMenuWidgetClass,
220                               parent, NULL, 0);
221     j = 0;
222     XtSetArg(args[j], XtNwidth, 100);  j++;
223 //    XtSetArg(args[j], XtNright, XtChainRight);  j++;
224     while (mb[i] != NULL) {
225             XtSetArg(args[j], XtNlabel, _(mb[i]));
226             entry = XtCreateManagedWidget(mb[i], smeBSBObjectClass,
227                                           menu, args, j+1);
228             XtAddCallback(entry, XtNcallback,
229                           (XtCallbackProc) ComboSelect,
230                           (caddr_t)(intptr_t) (256*n+i));
231         i++;
232     }
233 }
234
235
236 //----------------------------Generic dialog --------------------------------------------
237
238 // cloned from Engine Settings dialog (and later merged with it)
239
240 extern WindowPlacement wpComment, wpTags, wpMoveHistory;
241 char *trialSound;
242 static int oldCores, oldPonder;
243 int MakeColors P((void));
244 void CreateGCs P((int redo));
245 void CreateAnyPieces P((void));
246 int GenericReadout P((int selected));
247 Widget shells[10];
248 Widget marked[10];
249 Boolean shellUp[10];
250 WindowPlacement *wp[10] = { NULL, &wpComment, &wpTags, NULL, NULL, NULL, NULL, &wpMoveHistory };
251 Option *dialogOptions[10];
252
253 void MarkMenu(char *item, int dlgNr)
254 {
255     Arg args[2];
256     XtSetArg(args[0], XtNleftBitmap, xMarkPixmap);
257     XtSetValues(marked[dlgNr] = XtNameToWidget(menuBarWidget, item), args, 1);
258 }
259
260 int PopDown(int n)
261 {
262     int j;
263     Arg args[10];
264     Dimension windowH, windowW; Position windowX, windowY;
265     if (!shellUp[n]) return 0;
266     if(n && wp[n]) { // remember position
267         j = 0;
268         XtSetArg(args[j], XtNx, &windowX); j++;
269         XtSetArg(args[j], XtNy, &windowY); j++;
270         XtSetArg(args[j], XtNheight, &windowH); j++;
271         XtSetArg(args[j], XtNwidth, &windowW); j++;
272         XtGetValues(shells[n], args, j);
273         wp[n]->x = windowX;
274         wp[n]->x = windowY;
275         wp[n]->width  = windowW;
276         wp[n]->height = windowH;
277     }
278     previous = NULL;
279     XtPopdown(shells[n]);
280     if(n == 0) XtDestroyWidget(shells[n]);
281     shellUp[n] = False;
282     if(marked[n]) {
283         XtSetArg(args[0], XtNleftBitmap, None);
284         XtSetValues(marked[n], args, 1);
285     }
286     if(!n) currentCps = NULL; // if an Engine Settings dialog was up, we must be popping it down now
287     return 1;
288 }
289
290 void GenericPopDown(w, event, prms, nprms)
291      Widget w;
292      XEvent *event;
293      String *prms;
294      Cardinal *nprms;
295 {
296     if(browserUp) return; // prevent closing dialog when it has an open file-browse daughter
297     PopDown(prms[0][0] - '0');
298 }
299
300 char *engineName, *engineDir, *engineChoice, *engineLine, *nickName, *params, *tfName;
301 Boolean isUCI, hasBook, storeVariant, v1, addToList, useNick;
302 extern Option installOptions[], matchOptions[];
303 char *engineNr[] = { N_("First Engine"), N_("Second Engine"), NULL };
304 char *engineList[100] = {" "}, *engineMnemonic[100] = {""};
305
306 int AppendText(Option *opt, char *s)
307 {
308     XawTextBlock t;
309     char *v;
310     int len;
311     GetWidgetText(opt, &v);
312     len = strlen(v);
313     t.ptr = s; t.firstPos = 0; t.length = strlen(s); t.format = XawFmt8Bit;
314     XawTextReplace(opt->handle, len, len, &t);
315     return len;
316 }
317
318 void AddLine(Option *opt, char *s)
319 {
320     AppendText(opt, s);
321     AppendText(opt, "\n");
322 }
323
324 void AddToTourney(int n)
325 {
326     GenericReadout(4);  // selected engine
327     AddLine(&matchOptions[3], engineChoice);
328 }
329
330 int MatchOK(int n)
331 {
332     if(appData.participants && appData.participants[0]) free(appData.participants);
333     appData.participants = strdup(engineName);
334     if(!CreateTourney(tfName)) return !appData.participants[0];
335     PopDown(0); // early popdown to prevent FreezeUI called through MatchEvent from causing XtGrab warning
336     MatchEvent(2); // start tourney
337     return 1;
338 }
339
340 Option matchOptions[] = {
341 { 0,  0,          0, NULL, (void*) &tfName, ".trn", NULL, FileName, N_("Tournament file:") },
342 { 0,  0,          0, NULL, (void*) &appData.roundSync, "", NULL, CheckBox, N_("Sync after round    (for concurrent playing of a single") },
343 { 0,  0,          0, NULL, (void*) &appData.cycleSync, "", NULL, CheckBox, N_("Sync after cycle      tourney with multiple XBoards)") },
344 { 0xD, 150,       0, NULL, (void*) &engineName, "", NULL, TextBox, "Tourney participants:" },
345 { 0,  1,          0, NULL, (void*) &engineChoice, (char*) (engineMnemonic+1), (engineMnemonic+1), ComboBox, N_("Select Engine:") },
346 { 0,  0,         10, NULL, (void*) &appData.tourneyType, "", NULL, Spin, N_("Tourney type (0 = round-robin, 1 = gauntlet):") },
347 { 0,  1, 1000000000, NULL, (void*) &appData.tourneyCycles, "", NULL, Spin, N_("Number of tourney cycles (or Swiss rounds):") },
348 { 0,  1, 1000000000, NULL, (void*) &appData.defaultMatchGames, "", NULL, Spin, N_("Default Number of Games in Match (or Pairing):") },
349 { 0,  0, 1000000000, NULL, (void*) &appData.matchPause, "", NULL, Spin, N_("Pause between Match Games (msec):") },
350 { 0,  0,          0, NULL, (void*) &appData.saveGameFile, ".pgn", NULL, FileName, N_("Save Tourney Games on:") },
351 { 0,  0,          0, NULL, (void*) &appData.loadGameFile, ".pgn", NULL, FileName, N_("Game File with Opening Lines:") },
352 { 0, -2, 1000000000, NULL, (void*) &appData.loadGameIndex, "", NULL, Spin, N_("Game Number (-1 or -2 = Auto-Increment):") },
353 { 0,  0,          0, NULL, (void*) &appData.loadPositionFile, ".fen", NULL, FileName, N_("File with Start Positions:") },
354 { 0, -2, 1000000000, NULL, (void*) &appData.loadPositionIndex, "", NULL, Spin, N_("Position Number (-1 or -2 = Auto-Increment):") },
355 { 0,  0, 1000000000, NULL, (void*) &appData.rewindIndex, "", NULL, Spin, N_("Rewind Index after this many Games (0 = never):") },
356 { 0, 0, 0, NULL, (void*) &MatchOK, "", NULL, EndMark , "" }
357 };
358
359 int GeneralOptionsOK(int n)
360 {
361         int newPonder = appData.ponderNextMove;
362         appData.ponderNextMove = oldPonder;
363         PonderNextMoveEvent(newPonder);
364         return 1;
365 }
366
367 Option generalOptions[] = {
368 { 0,  0, 0, NULL, (void*) &appData.whitePOV, "", NULL, CheckBox, N_("Absolute Analysis Scores") },
369 { 0,  0, 0, NULL, (void*) &appData.sweepSelect, "", NULL, CheckBox, N_("Almost Always Queen (Detour Under-Promote)") },
370 { 0,  0, 0, NULL, (void*) &appData.animateDragging, "", NULL, CheckBox, N_("Animate Dragging") },
371 { 0,  0, 0, NULL, (void*) &appData.animate, "", NULL, CheckBox, N_("Animate Moving") },
372 { 0,  0, 0, NULL, (void*) &appData.autoCallFlag, "", NULL, CheckBox, N_("Auto Flag") },
373 { 0,  0, 0, NULL, (void*) &appData.autoFlipView, "", NULL, CheckBox, N_("Auto Flip View") },
374 { 0,  0, 0, NULL, (void*) &appData.blindfold, "", NULL, CheckBox, N_("Blindfold") },
375 { 0,  0, 0, NULL, (void*) &appData.dropMenu, "", NULL, CheckBox, N_("Drop Menu") },
376 { 0,  0, 0, NULL, (void*) &appData.hideThinkingFromHuman, "", NULL, CheckBox, N_("Hide Thinking from Human") },
377 { 0,  0, 0, NULL, (void*) &appData.highlightDragging, "", NULL, CheckBox, N_("Highlight Dragging (Show Move Targets)") },
378 { 0,  0, 0, NULL, (void*) &appData.highlightLastMove, "", NULL, CheckBox, N_("Highlight Last Move") },
379 { 0,  0, 0, NULL, (void*) &appData.highlightMoveWithArrow, "", NULL, CheckBox, N_("Highlight with Arrow") },
380 { 0,  0, 0, NULL, (void*) &appData.ringBellAfterMoves, "", NULL, CheckBox, N_("Move Sound") },
381 { 0,  0, 0, NULL, (void*) &appData.oneClick, "", NULL, CheckBox, N_("One-Click Moving") },
382 { 0,  0, 0, NULL, (void*) &appData.periodicUpdates, "", NULL, CheckBox, N_("Periodic Updates (in Analysis Mode)") },
383 { 0,  0, 0, NULL, (void*) &appData.ponderNextMove, "", NULL, CheckBox, N_("Ponder Next Move") },
384 { 0,  0, 0, NULL, (void*) &appData.popupExitMessage, "", NULL, CheckBox, N_("Popup Exit Messages") },
385 { 0,  0, 0, NULL, (void*) &appData.popupMoveErrors, "", NULL, CheckBox, N_("Popup Move Errors") },
386 { 0,  0, 0, NULL, (void*) &appData.showEvalInMoveHistory, "", NULL, CheckBox, N_("Scores in Move List") },
387 { 0,  0, 0, NULL, (void*) &appData.showCoords, "", NULL, CheckBox, N_("Show Coordinates") },
388 { 0,  0, 0, NULL, (void*) &appData.markers, "", NULL, CheckBox, N_("Show Target Squares") },
389 { 0,  0, 0, NULL, (void*) &appData.testLegality, "", NULL, CheckBox, N_("Test Legality") },
390 { 0, 0, 10, NULL, (void*) &appData.flashCount, "", NULL, Spin, N_("Flash Moves (0 = no flashing):") },
391 { 0, 1, 10, NULL, (void*) &appData.flashRate, "", NULL, Spin, N_("Flash Rate (high = fast):") },
392 { 0, 5, 100,NULL, (void*) &appData.animSpeed, "", NULL, Spin, N_("Animation Speed (high = slow):") },
393 { 0,  1, 5, NULL, (void*) &appData.zoom, "", NULL, Spin, N_("Zoom factor in Evaluation Graph:") },
394 { 0,  0, 0, NULL, (void*) &GeneralOptionsOK, "", NULL, EndMark , "" }
395 };
396
397 void Pick(int n)
398 {
399         VariantClass v = currentOption[n].value;
400         if(!appData.noChessProgram) {
401             char *name = VariantName(v), buf[MSG_SIZ];
402             if (first.protocolVersion > 1 && StrStr(first.variants, name) == NULL) {
403                 /* [HGM] in protocol 2 we check if variant is suported by engine */
404               snprintf(buf, MSG_SIZ,  _("Variant %s not supported by %s"), name, first.tidy);
405                 DisplayError(buf, 0);
406                 return; /* ignore OK if first engine does not support it */
407             } else
408             if (second.initDone && second.protocolVersion > 1 && StrStr(second.variants, name) == NULL) {
409               snprintf(buf, MSG_SIZ,  _("Warning: second engine (%s) does not support this!"), second.tidy);
410                 DisplayError(buf, 0);   /* use of second engine is optional; only warn user */
411             }
412         }
413
414         GenericReadout(-1); // make sure ranks and file settings are read
415
416         gameInfo.variant = v;
417         appData.variant = VariantName(v);
418
419         shuffleOpenings = FALSE; /* [HGM] shuffle: possible shuffle reset when we switch */
420         startedFromPositionFile = FALSE; /* [HGM] loadPos: no longer valid in new variant */
421         appData.pieceToCharTable = NULL;
422         appData.pieceNickNames = "";
423         appData.colorNickNames = "";
424         Reset(True, True);
425         PopDown(0);
426         return;
427 }
428
429 Option variantDescriptors[] = {
430 { VariantNormal, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("normal")},
431 { VariantFairy, 1, 135, NULL, (void*) &Pick, "#BFBFBF", NULL, Button, N_("fairy")},
432 { VariantFischeRandom, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("FRC")},
433 { VariantSChess, 1, 135, NULL, (void*) &Pick, "#FFBFBF", NULL, Button, N_("Seirawan")},
434 { VariantWildCastle, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("wild castle")},
435 { VariantSuper, 1, 135, NULL, (void*) &Pick, "#FFBFBF", NULL, Button, N_("Superchess")},
436 { VariantNoCastle, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("no castle")},
437 { VariantCrazyhouse, 1, 135, NULL, (void*) &Pick, "#FFBFBF", NULL, Button, N_("crazyhouse")},
438 { VariantKnightmate, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("knightmate")},
439 { VariantBughouse, 1, 135, NULL, (void*) &Pick, "#FFBFBF", NULL, Button, N_("bughouse")},
440 { VariantBerolina, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("berolina")},
441 { VariantShogi, 1, 135, NULL, (void*) &Pick, "#BFFFFF", NULL, Button, N_("shogi (9x9)")},
442 { VariantCylinder, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("cylinder")},
443 { VariantXiangqi, 1, 135, NULL, (void*) &Pick, "#BFFFFF", NULL, Button, N_("xiangqi (9x10)")},
444 { VariantShatranj, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("shatranj")},
445 { VariantCourier, 1, 135, NULL, (void*) &Pick, "#BFFFBF", NULL, Button, N_("courier (12x8)")},
446 { VariantMakruk, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("makruk")},
447 { VariantGreat, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("Great Shatranj (10x8)")},
448 { VariantAtomic, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("atomic")},
449 { VariantCapablanca, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("Capablanca (10x8)")},
450 { VariantTwoKings, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("two kings")},
451 { VariantGothic, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("Gothic (10x8)")},
452 { Variant3Check, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("3-checks")},
453 { VariantJanus, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("janus (10x8)")},
454 { VariantSuicide, 0, 135, NULL, (void*) &Pick, "#FFFFBF", NULL, Button, N_("suicide")},
455 { VariantCapaRandom, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("CRC (10x8)")},
456 { VariantGiveaway, 0, 135, NULL, (void*) &Pick, "#FFFFBF", NULL, Button, N_("give-away")},
457 { VariantGrand, 1, 135, NULL, (void*) &Pick, "#5070FF", NULL, Button, N_("grand (10x10)")},
458 { VariantLosers, 0, 135, NULL, (void*) &Pick, "#FFFFBF", NULL, Button, N_("losers")},
459 { VariantSpartan, 1, 135, NULL, (void*) &Pick, "#FF0000", NULL, Button, N_("Spartan")},
460 { 0, 0, 0, NULL, NULL, NULL, NULL, Label, N_("Board size ( -1 = default for selected variant):")},
461 { 0, -1, BOARD_RANKS-1, NULL, (void*) &appData.NrRanks, "", NULL, Spin, N_("Number of Board Ranks:") },
462 { 0, -1, BOARD_FILES, NULL, (void*) &appData.NrFiles, "", NULL, Spin, N_("Number of Board Files:") },
463 { 0, -1, BOARD_RANKS-1, NULL, (void*) &appData.holdingsSize, "", NULL, Spin, N_("Holdings Size:") },
464 { 0, 0, 0, NULL, NULL, NULL, NULL, Label,
465                                 N_("WARNING: variants with un-orthodox\n"
466                                   "pieces only have built-in bitmaps\n"
467                                   "for -boardSize middling, bulky and\n"
468                                   "petite, and substitute king or amazon\n"
469                                   "for missing bitmaps. (See manual.)")},
470 { 0, 2, 0, NULL, NULL, "", NULL, EndMark , "" }
471 };
472
473 int CommonOptionsOK(int n)
474 {
475         int newPonder = appData.ponderNextMove;
476         // make sure changes are sent to first engine by re-initializing it
477         // if it was already started pre-emptively at end of previous game
478         if(gameMode == BeginningOfGame) Reset(True, True); else {
479             // Some changed setting need immediate sending always.
480             if(oldCores != appData.smpCores)
481                 NewSettingEvent(False, &(first.maxCores), "cores", appData.smpCores);
482             appData.ponderNextMove = oldPonder;
483             PonderNextMoveEvent(newPonder);
484         }
485         return 1;
486 }
487
488 Option commonEngineOptions[] = {
489 { 0,     0, 0, NULL, (void*) &appData.ponderNextMove, "", NULL, CheckBox, N_("Ponder Next Move") },
490 { 0,  0, 1000, NULL, (void*) &appData.smpCores, "", NULL, Spin, N_("Maximum Number of CPUs per Engine:") },
491 { 0,     0, 0, NULL, (void*) &appData.polyglotDir, "", NULL, PathName, N_("Polygot Directory:") },
492 { 0, 0, 16000, NULL, (void*) &appData.defaultHashSize, "", NULL, Spin, N_("Hash-Table Size (MB):") },
493 { 0,     0, 0, NULL, (void*) &appData.defaultPathEGTB, "", NULL, PathName, N_("Nalimov EGTB Path:") },
494 { 0,  0, 1000, NULL, (void*) &appData.defaultCacheSizeEGTB, "", NULL, Spin, N_("EGTB Cache Size (MB):") },
495 { 0,     0, 0, NULL, (void*) &appData.usePolyglotBook, "", NULL, CheckBox, N_("Use GUI Book") },
496 { 0,     0, 0, NULL, (void*) &appData.polyglotBook, ".bin", NULL, FileName, N_("Opening-Book Filename:") },
497 { 0,   0, 100, NULL, (void*) &appData.bookDepth, "", NULL, Spin, N_("Book Depth (moves):") },
498 { 0,   0, 100, NULL, (void*) &appData.bookStrength, "", NULL, Spin, N_("Book Variety (0) vs. Strength (100):") },
499 { 0,     0, 0, NULL, (void*) &appData.firstHasOwnBookUCI, "", NULL, CheckBox, N_("Engine #1 Has Own Book") },
500 { 0,     0, 0, NULL, (void*) &appData.secondHasOwnBookUCI, "", NULL, CheckBox, N_("Engine #2 Has Own Book          ") },
501 { 0,     1, 0, NULL, (void*) &CommonOptionsOK, "", NULL, EndMark , "" }
502 };
503
504 Option adjudicationOptions[] = {
505 { 0, 0,    0, NULL, (void*) &appData.checkMates, "", NULL, CheckBox, N_("Detect all Mates") },
506 { 0, 0,    0, NULL, (void*) &appData.testClaims, "", NULL, CheckBox, N_("Verify Engine Result Claims") },
507 { 0, 0,    0, NULL, (void*) &appData.materialDraws, "", NULL, CheckBox, N_("Draw if Insufficient Mating Material") },
508 { 0, 0,    0, NULL, (void*) &appData.trivialDraws, "", NULL, CheckBox, N_("Adjudicate Trivial Draws (3-Move Delay)") },
509 { 0, 0,  100, NULL, (void*) &appData.ruleMoves, "", NULL, Spin, N_("N-Move Rule:") },
510 { 0, 0,    6, NULL, (void*) &appData.drawRepeats, "", NULL, Spin, N_("N-fold Repeats:") },
511 { 0, 0, 1000, NULL, (void*) &appData.adjudicateDrawMoves, "", NULL, Spin, N_("Draw after N Moves Total:") },
512 { 0,-5000, 0, NULL, (void*) &appData.adjudicateLossThreshold, "", NULL, Spin, N_("Win / Loss Threshold:") },
513 { 0, 0,    0, NULL, (void*) &first.scoreIsAbsolute, "", NULL, CheckBox, N_("Negate Score of Engine #1") },
514 { 0, 0,    0, NULL, (void*) &second.scoreIsAbsolute, "", NULL, CheckBox, N_("Negate Score of Engine #2") },
515 { 0, 1,    0, NULL, NULL, "", NULL, EndMark , "" }
516 };
517
518 int IcsOptionsOK(int n)
519 {
520     ParseIcsTextColors();
521     return 1;
522 }
523
524 Option icsOptions[] = {
525 { 0, 0, 0, NULL, (void*) &appData.autoKibitz, "",  NULL, CheckBox, N_("Auto-Kibitz") },
526 { 0, 0, 0, NULL, (void*) &appData.autoComment, "", NULL, CheckBox, N_("Auto-Comment") },
527 { 0, 0, 0, NULL, (void*) &appData.autoObserve, "", NULL, CheckBox, N_("Auto-Observe") },
528 { 0, 0, 0, NULL, (void*) &appData.autoRaiseBoard, "", NULL, CheckBox, N_("Auto-Raise Board") },
529 { 0, 0, 0, NULL, (void*) &appData.bgObserve, "",   NULL, CheckBox, N_("Background Observe while Playing") },
530 { 0, 0, 0, NULL, (void*) &appData.dualBoard, "",   NULL, CheckBox, N_("Dual Board for Background-Observed Game") },
531 { 0, 0, 0, NULL, (void*) &appData.getMoveList, "", NULL, CheckBox, N_("Get Move List") },
532 { 0, 0, 0, NULL, (void*) &appData.quietPlay, "",   NULL, CheckBox, N_("Quiet Play") },
533 { 0, 0, 0, NULL, (void*) &appData.seekGraph, "",   NULL, CheckBox, N_("Seek Graph") },
534 { 0, 0, 0, NULL, (void*) &appData.autoRefresh, "", NULL, CheckBox, N_("Auto-Refresh Seek Graph") },
535 { 0, 0, 0, NULL, (void*) &appData.premove, "",     NULL, CheckBox, N_("Premove") },
536 { 0, 0, 0, NULL, (void*) &appData.premoveWhite, "", NULL, CheckBox, N_("Premove for White") },
537 { 0, 0, 0, NULL, (void*) &appData.premoveWhiteText, "", NULL, TextBox, N_("First White Move:") },
538 { 0, 0, 0, NULL, (void*) &appData.premoveBlack, "", NULL, CheckBox, N_("Premove for Black") },
539 { 0, 0, 0, NULL, (void*) &appData.premoveBlackText, "", NULL, TextBox, N_("First Black Move:") },
540 { 0, 0, 0, NULL, NULL, NULL, NULL, Break, "" },
541 { 0, 0, 0, NULL, (void*) &appData.icsAlarm, "", NULL, CheckBox, N_("Alarm") },
542 { 0, 0, 100000000, NULL, (void*) &appData.icsAlarmTime, "", NULL, Spin, N_("Alarm Time (msec):") },
543 //{ 0, 0, 0, NULL, (void*) &appData.chatBoxes, "", NULL, TextBox, N_("Startup Chat Boxes:") },
544 { 0, 0, 0, NULL, (void*) &appData.colorize, "", NULL, CheckBox, N_("Colorize Messages") },
545 { 0, 0, 0, NULL, (void*) &appData.colorShout, "", NULL, TextBox, N_("Shout Text Colors:") },
546 { 0, 0, 0, NULL, (void*) &appData.colorSShout, "", NULL, TextBox, N_("S-Shout Text Colors:") },
547 { 0, 0, 0, NULL, (void*) &appData.colorChannel1, "", NULL, TextBox, N_("Channel #1 Text Colors:") },
548 { 0, 0, 0, NULL, (void*) &appData.colorChannel, "", NULL, TextBox, N_("Other Channel Text Colors:") },
549 { 0, 0, 0, NULL, (void*) &appData.colorKibitz, "", NULL, TextBox, N_("Kibitz Text Colors:") },
550 { 0, 0, 0, NULL, (void*) &appData.colorTell, "", NULL, TextBox, N_("Tell Text Colors:") },
551 { 0, 0, 0, NULL, (void*) &appData.colorChallenge, "", NULL, TextBox, N_("Challenge Text Colors:") },
552 { 0, 0, 0, NULL, (void*) &appData.colorRequest, "", NULL, TextBox, N_("Request Text Colors:") },
553 { 0, 0, 0, NULL, (void*) &appData.colorSeek, "", NULL, TextBox, N_("Seek Text Colors:") },
554 { 0, 0, 0, NULL, (void*) &IcsOptionsOK, "", NULL, EndMark , "" }
555 };
556
557 char *modeNames[] = { N_("Exact match"), N_("Shown position is subset"), N_("Same material and Pawn chain"), N_("Same material"), NULL };
558 char *modeValues[] = { "1", "2", "3", "4" };
559 char *searchMode;
560
561 int LoadOptionsOK()
562 {
563     appData.searchMode = atoi(searchMode);
564     return 1;
565 }
566
567 Option loadOptions[] = {
568 { 0, 0, 0, NULL, (void*) &appData.autoDisplayTags, "", NULL, CheckBox, N_("Auto-Display Tags") },
569 { 0, 0, 0, NULL, (void*) &appData.autoDisplayComment, "", NULL, CheckBox, N_("Auto-Display Comment") },
570 { 0, 0, 0, NULL, NULL, NULL, NULL, Label, N_("Auto-Play speed of loaded games\n(0 = instant, -1 = off):") },
571 { 0, -1, 10000000, NULL, (void*) &appData.timeDelay, "", NULL, Fractional, N_("Seconds per Move:") },
572 {   0,  0,    0, NULL, NULL, NULL, NULL, Label,  N_("\nThresholds for position filtering in game list:") },
573 { 0, 0, 5000, NULL, (void*) &appData.eloThreshold1, "", NULL, Spin, N_("Elo of strongest player at least:") },
574 { 0, 0, 5000, NULL, (void*) &appData.eloThreshold2, "", NULL, Spin, N_("Elo of weakest player at least:") },
575 { 0, 0, 5000, NULL, (void*) &appData.dateThreshold, "", NULL, Spin, N_("No games before year:") },
576 { 1, 0, 180, NULL, (void*) &searchMode, (char*) modeNames, modeValues, ComboBox, N_("Seach mode:") },
577 { 0,  0, 0, NULL, (void*) &LoadOptionsOK, "", NULL, EndMark , "" }
578 };
579
580 Option saveOptions[] = {
581 { 0, 0, 0, NULL, (void*) &appData.autoSaveGames, "", NULL, CheckBox, N_("Auto-Save Games") },
582 { 0, 0, 0, NULL, (void*) &appData.saveGameFile, ".pgn", NULL, FileName,  N_("Save Games on File:") },
583 { 0, 0, 0, NULL, (void*) &appData.savePositionFile, ".fen", NULL, FileName,  N_("Save Final Positions on File:") },
584 { 0, 0, 0, NULL, (void*) &appData.pgnEventHeader, "", NULL, TextBox,  N_("PGN Event Header:") },
585 { 0, 0, 0, NULL, (void*) &appData.oldSaveStyle, "", NULL, CheckBox, N_("Old Save Style (as opposed to PGN)") },
586 { 0, 0, 0, NULL, (void*) &appData.saveExtendedInfoInPGN, "", NULL, CheckBox, N_("Save Score/Depth Info in PGN") },
587 { 0, 0, 0, NULL, (void*) &appData.saveOutOfBookInfo, "", NULL, CheckBox, N_("Save Out-of-Book Info in PGN           ") },
588 { 0, 1, 0, NULL, NULL, "", NULL, EndMark , "" }
589 };
590
591 char *soundNames[] = {
592         N_("No Sound"),
593         N_("Default Beep"),
594         N_("Above WAV File"),
595         N_("Car Horn"),
596         N_("Cymbal"),
597         N_("Ding"),
598         N_("Gong"),
599         N_("Laser"),
600         N_("Penalty"),
601         N_("Phone"),
602         N_("Pop"),
603         N_("Slap"),
604         N_("Wood Thunk"),
605         NULL,
606         N_("User File")
607 };
608
609 char *soundFiles[] = { // sound files corresponding to above names
610         "",
611         "$",
612         "*", // kludge alert: as first thing in the dialog readout this is replaced with the user-given .WAV filename
613         "honkhonk.wav",
614         "cymbal.wav",
615         "ding1.wav",
616         "gong.wav",
617         "laser.wav",
618         "penalty.wav",
619         "phone.wav",
620         "pop2.wav",
621         "slap.wav",
622         "woodthunk.wav",
623         NULL,
624         NULL
625 };
626
627 void Test(int n)
628 {
629     GenericReadout(2);
630     if(soundFiles[values[3]]) PlaySound(soundFiles[values[3]]);
631 }
632
633 Option soundOptions[] = {
634 { 0, 0, 0, NULL, (void*) &appData.soundProgram, "", NULL, TextBox, N_("Sound Program:") },
635 { 0, 0, 0, NULL, (void*) &appData.soundDirectory, "", NULL, PathName, N_("Sounds Directory:") },
636 { 0, 0, 0, NULL, (void*) (soundFiles+2) /* kludge! */, ".wav", NULL, FileName, N_("User WAV File:") },
637 { 0, 0, 0, NULL, (void*) &trialSound, (char*) soundNames, soundFiles, ComboBox, N_("Try-Out Sound:") },
638 { 0, 1, 0, NULL, (void*) &Test, NULL, NULL, Button, N_("Play") },
639 { 0, 0, 0, NULL, (void*) &appData.soundMove, (char*) soundNames, soundFiles, ComboBox, N_("Move:") },
640 { 0, 0, 0, NULL, (void*) &appData.soundIcsWin, (char*) soundNames, soundFiles, ComboBox, N_("Win:") },
641 { 0, 0, 0, NULL, (void*) &appData.soundIcsLoss, (char*) soundNames, soundFiles, ComboBox, N_("Lose:") },
642 { 0, 0, 0, NULL, (void*) &appData.soundIcsDraw, (char*) soundNames, soundFiles, ComboBox, N_("Draw:") },
643 { 0, 0, 0, NULL, (void*) &appData.soundIcsUnfinished, (char*) soundNames, soundFiles, ComboBox, N_("Unfinished:") },
644 { 0, 0, 0, NULL, (void*) &appData.soundIcsAlarm, (char*) soundNames, soundFiles, ComboBox, N_("Alarm:") },
645 { 0, 0, 0, NULL, (void*) &appData.soundShout, (char*) soundNames, soundFiles, ComboBox, N_("Shout:") },
646 { 0, 0, 0, NULL, (void*) &appData.soundSShout, (char*) soundNames, soundFiles, ComboBox, N_("S-Shout:") },
647 { 0, 0, 0, NULL, (void*) &appData.soundChannel, (char*) soundNames, soundFiles, ComboBox, N_("Channel:") },
648 { 0, 0, 0, NULL, (void*) &appData.soundChannel1, (char*) soundNames, soundFiles, ComboBox, N_("Channel 1:") },
649 { 0, 0, 0, NULL, (void*) &appData.soundTell, (char*) soundNames, soundFiles, ComboBox, N_("Tell:") },
650 { 0, 0, 0, NULL, (void*) &appData.soundKibitz, (char*) soundNames, soundFiles, ComboBox, N_("Kibitz:") },
651 { 0, 0, 0, NULL, (void*) &appData.soundChallenge, (char*) soundNames, soundFiles, ComboBox, N_("Challenge:") },
652 { 0, 0, 0, NULL, (void*) &appData.soundRequest, (char*) soundNames, soundFiles, ComboBox, N_("Request:") },
653 { 0, 0, 0, NULL, (void*) &appData.soundSeek, (char*) soundNames, soundFiles, ComboBox, N_("Seek:") },
654 { 0, 1, 0, NULL, NULL, "", NULL, EndMark , "" }
655 };
656
657 void SetColor(char *colorName, Option *box)
658 {
659         Arg args[5];
660         Pixel buttonColor;
661         XrmValue vFrom, vTo;
662         if (!appData.monoMode) {
663             vFrom.addr = (caddr_t) colorName;
664             vFrom.size = strlen(colorName);
665             XtConvert(shellWidget, XtRString, &vFrom, XtRPixel, &vTo);
666             if (vTo.addr == NULL) {
667                 buttonColor = (Pixel) -1;
668             } else {
669                 buttonColor = *(Pixel *) vTo.addr;
670             }
671         } else buttonColor = (Pixel) 0;
672         XtSetArg(args[0], XtNbackground, buttonColor);;
673         XtSetValues(box->handle, args, 1);
674 }
675
676 void SetColorText(int n, char *buf)
677 {
678     SetWidgetText(&currentOption[n-1], buf, 0);
679     SetColor(buf, &currentOption[n]);
680 }
681
682 void DefColor(int n)
683 {
684     SetColorText(n, (char*) currentOption[n].choice);
685 }
686
687 void RefreshColor(int source, int n)
688 {
689     int col, j, r, g, b, step = 10;
690     char *s, buf[MSG_SIZ]; // color string
691     GetWidgetText(&currentOption[source], &s);
692     if(sscanf(s, "#%x", &col) != 1) return;   // malformed
693     b = col & 0xFF; g = col & 0xFF00; r = col & 0xFF0000;
694     switch(n) {
695         case 1: r += 0x10000*step;break;
696         case 2: g += 0x100*step;  break;
697         case 3: b += step;        break;
698         case 4: r -= 0x10000*step; g -= 0x100*step; b -= step; break;
699     }
700     if(r < 0) r = 0; if(g < 0) g = 0; if(b < 0) b = 0;
701     if(r > 0xFF0000) r = 0xFF0000; if(g > 0xFF00) g = 0xFF00; if(b > 0xFF) b = 0xFF;
702     col = r | g | b;
703     snprintf(buf, MSG_SIZ, "#%06x", col);
704     for(j=1; j<7; j++) if(buf[j] >= 'a') buf[j] -= 32; // capitalize
705     SetColorText(source+1, buf);
706 }
707
708 void ColorChanged(Widget w, XtPointer data, XEvent *event, Boolean *b)
709 {
710     char buf[10];
711     if ( (XLookupString(&(event->xkey), buf, 2, NULL, NULL) == 1) && *buf == '\r' )
712         RefreshColor((int)(intptr_t) data, 0);
713 }
714
715 void AdjustColor(int i)
716 {
717     int n = currentOption[i].value;
718     RefreshColor(i-n-1, n);
719 }
720
721 int BoardOptionsOK(int n)
722 {
723     if(appData.overrideLineGap >= 0) lineGap = appData.overrideLineGap; else lineGap = defaultLineGap;
724     useImages = useImageSqs = 0;
725     MakeColors(); CreateGCs(True);
726     CreateAnyPieces();
727     InitDrawingSizes(-1, 0);
728     DrawPosition(True, NULL);
729     return 1;
730 }
731
732 Option boardOptions[] = {
733 { 0,   0, 70, NULL, (void*) &appData.whitePieceColor, "", NULL, TextBox, N_("White Piece Color:") },
734 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#FFFFCC", Button, "      " },
735 {    1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "R" },
736 {    2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "G" },
737 {    3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "B" },
738 {    4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "D" },
739 { 0,   0, 70, NULL, (void*) &appData.blackPieceColor, "", NULL, TextBox, N_("Black Piece Color:") },
740 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#202020", Button, "      " },
741 {    1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "R" },
742 {    2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "G" },
743 {    3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "B" },
744 {    4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "D" },
745 { 0,   0, 70, NULL, (void*) &appData.lightSquareColor, "", NULL, TextBox, N_("Light Square Color:") },
746 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#C8C365", Button, "      " },
747 {    1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "R" },
748 {    2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "G" },
749 {    3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "B" },
750 {    4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "D" },
751 { 0,   0, 70, NULL, (void*) &appData.darkSquareColor, "", NULL, TextBox, N_("Dark Square Color:") },
752 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#77A26D", Button, "      " },
753 {    1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "R" },
754 {    2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "G" },
755 {    3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "B" },
756 {    4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "D" },
757 { 0,   0, 70, NULL, (void*) &appData.highlightSquareColor, "", NULL, TextBox, N_("Highlight Color:") },
758 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#FFFF00", Button, "      " },
759 {    1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "R" },
760 {    2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "G" },
761 {    3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "B" },
762 {    4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "D" },
763 { 0,   0, 70, NULL, (void*) &appData.premoveHighlightColor, "", NULL, TextBox, N_("Premove Highlight Color:") },
764 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#FF0000", Button, "      " },
765 {    1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "R" },
766 {    2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "G" },
767 {    3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "B" },
768 {    4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "D" },
769 { 0, 0, 0, NULL, (void*) &appData.upsideDown, "", NULL, CheckBox, N_("Flip Pieces Shogi Style        (Colored buttons restore default)") },
770 //{ 0, 0, 0, NULL, (void*) &appData.allWhite, "", NULL, CheckBox, N_("Use Outline Pieces for Black") },
771 { 0, 0, 0, NULL, (void*) &appData.monoMode, "", NULL, CheckBox, N_("Mono Mode") },
772 { 0,-1, 5, NULL, (void*) &appData.overrideLineGap, "", NULL, Spin, N_("Line Gap ( -1 = default for board size):") },
773 { 0, 0, 0, NULL, (void*) &appData.liteBackTextureFile, ".xpm", NULL, FileName, N_("Light-Squares Texture File:") },
774 { 0, 0, 0, NULL, (void*) &appData.darkBackTextureFile, ".xpm", NULL, FileName, N_("Dark-Squares Texture File:") },
775 { 0, 0, 0, NULL, (void*) &appData.bitmapDirectory, "", NULL, PathName, N_("Directory with Bitmap Pieces:") },
776 { 0, 0, 0, NULL, (void*) &appData.pixmapDirectory, "", NULL, PathName, N_("Directory with Pixmap Pieces:") },
777 { 0, 0, 0, NULL, (void*) &BoardOptionsOK, "", NULL, EndMark , "" }
778 };
779
780 int GenericReadout(int selected)
781 {
782     int i, j, res=1;
783     String val;
784     Arg args[16];
785     char buf[MSG_SIZ], **dest;
786     float x;
787         for(i=0; ; i++) { // send all options that had to be OK-ed to engine
788             if(selected >= 0) { if(i < selected) continue; else if(i > selected) break; }
789             switch(currentOption[i].type) {
790                 case TextBox:
791                 case FileName:
792                 case PathName:
793                     XtSetArg(args[0], XtNstring, &val);
794                     XtGetValues(currentOption[i].handle, args, 1);
795                     dest = currentCps ? &(currentOption[i].textValue) : (char**) currentOption[i].target;
796                     if(*dest == NULL || strcmp(*dest, val)) {
797                         if(currentCps) {
798                             snprintf(buf, MSG_SIZ,  "option %s=%s\n", currentOption[i].name, val);
799                             SendToProgram(buf, currentCps);
800                         } else {
801                             if(*dest) free(*dest);
802                             *dest = malloc(strlen(val)+1);
803                         }
804                         safeStrCpy(*dest, val, MSG_SIZ - (*dest - currentOption[i].name)); // copy text there
805                     }
806                     break;
807                 case Spin:
808                 case Fractional:
809                     XtSetArg(args[0], XtNstring, &val);
810                     XtGetValues(currentOption[i].handle, args, 1);
811                     sscanf(val, "%f", &x);
812                     if(x > currentOption[i].max) x = currentOption[i].max;
813                     if(x < currentOption[i].min) x = currentOption[i].min;
814                     if(currentOption[i].type == Fractional)
815                         *(float*) currentOption[i].target = x; // engines never have float options!
816                     else if(currentOption[i].value != x) {
817                         currentOption[i].value = x;
818                         if(currentCps) {
819                             snprintf(buf, MSG_SIZ,  "option %s=%.0f\n", currentOption[i].name, x);
820                             SendToProgram(buf, currentCps);
821                         } else *(int*) currentOption[i].target = x;
822                     }
823                     break;
824                 case CheckBox:
825                     j = 0;
826                     XtSetArg(args[0], XtNstate, &j);
827                     XtGetValues(currentOption[i].handle, args, 1);
828                     if(currentOption[i].value != j) {
829                         currentOption[i].value = j;
830                         if(currentCps) {
831                             snprintf(buf, MSG_SIZ,  "option %s=%d\n", currentOption[i].name, j);
832                             SendToProgram(buf, currentCps);
833                         } else *(Boolean*) currentOption[i].target = j;
834                     }
835                     break;
836                 case ComboBox:
837                     val = ((char**)currentOption[i].choice)[values[i]];
838                     if(currentCps) {
839                         if(currentOption[i].value == values[i]) break; // not changed
840                         currentOption[i].value = values[i];
841                         snprintf(buf, MSG_SIZ,  "option %s=%s\n", currentOption[i].name,
842                                 ((char**)currentOption[i].textValue)[values[i]]);
843                         SendToProgram(buf, currentCps);
844                     } else if(val && (*(char**) currentOption[i].target == NULL || strcmp(*(char**) currentOption[i].target, val))) {
845                       if(*(char**) currentOption[i].target) free(*(char**) currentOption[i].target);
846                       *(char**) currentOption[i].target = strdup(val);
847                     }
848                     break;
849                 case EndMark:
850                     if(currentOption[i].target) // callback for implementing necessary actions on OK (like redraw)
851                         res = ((OKCallback*) currentOption[i].target)(i);
852                     break;
853             default:
854                 printf("GenericReadout: unexpected case in switch.\n");
855                 case Button:
856                 case SaveButton:
857                 case Label:
858                 case Break:
859               break;
860             }
861             if(currentOption[i].type == EndMark) break;
862         }
863         return res;
864 }
865
866 void GenericCallback(w, client_data, call_data)
867      Widget w;
868      XtPointer client_data, call_data;
869 {
870     String name;
871     Arg args[16];
872     char buf[MSG_SIZ];
873     int data = (intptr_t) client_data;
874
875     currentOption = dialogOptions[data>>16]; data &= 0xFFFF;
876
877     XtSetArg(args[0], XtNlabel, &name);
878     XtGetValues(w, args, 1);
879
880     if (strcmp(name, _("cancel")) == 0) {
881         PopDown(data);
882         return;
883     }
884     if (strcmp(name, _("OK")) == 0) { // save buttons imply OK
885         if(GenericReadout(-1)) PopDown(data);
886         return;
887     }
888     if(currentCps) {
889         if(currentOption[data].type == SaveButton) GenericReadout(-1);
890         snprintf(buf, MSG_SIZ,  "option %s\n", name);
891         SendToProgram(buf, currentCps);
892     } else ((ButtonCallback*) currentOption[data].target)(data);
893 }
894
895 static char *oneLiner  = "<Key>Return:  redraw-display()\n";
896
897 int
898 GenericPopUp(Option *option, char *title, int dlgNr)
899 {
900     Arg args[16];
901     Widget popup, layout, dialog=NULL, edit=NULL, form,  last, b_ok, b_cancel, leftMargin = NULL, textField = NULL;
902     Window root, child;
903     int x, y, i, j, height=999, width=1, h, c, w;
904     int win_x, win_y, maxWidth, maxTextWidth;
905     unsigned int mask;
906     char def[MSG_SIZ], *msg;
907     static char pane[6] = "paneX";
908     Widget texts[100], forelast = NULL, anchor, widest, lastrow = NULL;
909
910     if(shellUp[dlgNr]) return 0; // already up          
911     if(dlgNr && shells[dlgNr]) {
912         XtPopup(shells[dlgNr], XtGrabNone);
913         shellUp[dlgNr] = True;
914         return 0;
915     }
916
917     dialogOptions[dlgNr] = option; // make available to callback
918     // post currentOption globally, so Spin and Combo callbacks can already use it
919     // WARNING: this kludge does not work for persistent dialogs, so that these cannot have spin or combo controls!
920     currentOption = option;
921
922     if(currentCps) { // Settings popup for engine: format through heuristic
923         int n = currentCps->nrOptions;
924         if(!n) { DisplayNote(_("Engine has no options")); return 0; }
925         if(n > 50) width = 4; else if(n>24) width = 2; else width = 1;
926         height = n / width + 1;
927         if(n && (currentOption[n-1].type == Button || currentOption[n-1].type == SaveButton)) currentOption[n].min = 1; // OK on same line
928         currentOption[n].type = EndMark; currentOption[n].target = NULL; // delimit list by callback-less end mark
929     }
930      i = 0;
931     XtSetArg(args[i], XtNresizable, True); i++;
932     popup = shells[dlgNr] =
933       XtCreatePopupShell(title, transientShellWidgetClass,
934                          shellWidget, args, i);
935
936     layout =
937       XtCreateManagedWidget(layoutName, formWidgetClass, popup,
938                             layoutArgs, XtNumber(layoutArgs));
939   for(c=0; c<width; c++) {
940     pane[4] = 'A'+c;
941     form =
942       XtCreateManagedWidget(pane, formWidgetClass, layout,
943                             formArgs, XtNumber(formArgs));
944     j=0;
945     XtSetArg(args[j], XtNfromHoriz, leftMargin);  j++;
946     XtSetValues(form, args, j);
947     leftMargin = form;
948
949     last = widest = NULL; anchor = lastrow;
950     for(h=0; h<height; h++) {
951         i = h + c*height;
952         if(option[i].type == EndMark) break;
953         lastrow = forelast;
954         forelast = last;
955         switch(option[i].type) {
956           case Fractional:
957             snprintf(def, MSG_SIZ,  "%.2f", *(float*)option[i].target);
958             option[i].value = *(float*)option[i].target;
959             goto tBox;
960           case Spin:
961             if(!currentCps) option[i].value = *(int*)option[i].target;
962             snprintf(def, MSG_SIZ,  "%d", option[i].value);
963           case TextBox:
964           case FileName:
965           case PathName:
966           tBox:
967             if(option[i].name[0]) {
968             j=0;
969             XtSetArg(args[j], XtNfromVert, last);  j++;
970             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
971             XtSetArg(args[j], XtNright, XtChainLeft); j++;
972             XtSetArg(args[j], XtNborderWidth, 0);  j++;
973             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
974             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
975             texts[h] =
976             dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
977             } else texts[h] = dialog = NULL;
978             w = option[i].type == Spin || option[i].type == Fractional ? 70 : option[i].max ? option[i].max : 205;
979             if(option[i].type == FileName || option[i].type == PathName) w -= 55;
980             j=0;
981             XtSetArg(args[j], XtNfromVert, last);  j++;
982             XtSetArg(args[j], XtNfromHoriz, dialog);  j++;
983             XtSetArg(args[j], XtNborderWidth, 1); j++;
984             XtSetArg(args[j], XtNwidth, w); j++;
985             if(option[i].type == TextBox && option[i].min) {
986                 XtSetArg(args[j], XtNheight, option[i].min); j++;
987                 if(option[i].value & 1) { XtSetArg(args[j], XtNscrollVertical, XawtextScrollAlways);  j++; }
988                 if(option[i].value & 2) { XtSetArg(args[j], XtNscrollHorizontal, XawtextScrollAlways);  j++; }
989                 if(option[i].value & 4) { XtSetArg(args[j], XtNautoFill, True);  j++; }
990                 if(option[i].value & 8) { XtSetArg(args[j], XtNwrap, XawtextWrapWord); j++; }
991             }
992             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
993             XtSetArg(args[j], XtNeditType, XawtextEdit);  j++;
994             XtSetArg(args[j], XtNuseStringInPlace, False);  j++;
995             XtSetArg(args[j], XtNdisplayCaret, False);  j++;
996             XtSetArg(args[j], XtNright, XtChainRight);  j++;
997             XtSetArg(args[j], XtNresizable, True);  j++;
998             XtSetArg(args[j], XtNinsertPosition, 9999);  j++;
999             XtSetArg(args[j], XtNstring, option[i].type==Spin || option[i].type==Fractional ? def : 
1000                                 currentCps ? option[i].textValue : *(char**)option[i].target);  j++;
1001             edit = last;
1002             option[i].handle = (void*)
1003                 (textField = last = XtCreateManagedWidget("text", asciiTextWidgetClass, form, args, j));
1004             XtAddEventHandler(last, ButtonPressMask, False, SetFocus, (XtPointer) popup);
1005             if(option[i].min == 0 || option[i].type != TextBox)
1006                 XtOverrideTranslations(last, XtParseTranslationTable(oneLiner));
1007
1008             if(option[i].type == TextBox || option[i].type == Fractional) break;
1009
1010             // add increment and decrement controls for spin
1011             j=0;
1012             XtSetArg(args[j], XtNfromVert, edit);  j++;
1013             XtSetArg(args[j], XtNfromHoriz, last);  j++;
1014             XtSetArg(args[j], XtNleft, XtChainRight); j++;
1015             XtSetArg(args[j], XtNright, XtChainRight); j++;
1016             if(option[i].type == FileName || option[i].type == PathName) {
1017                 w = 50; msg = _("browse");
1018             } else {
1019                 XtSetArg(args[j], XtNheight, 10);  j++;
1020                 w = 20; msg = "+";
1021             }
1022             XtSetArg(args[j], XtNwidth, w);  j++;
1023             edit = XtCreateManagedWidget(msg, commandWidgetClass, form, args, j);
1024             XtAddCallback(edit, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i);
1025
1026             if(option[i].type != Spin) break;
1027
1028             j=0;
1029             XtSetArg(args[j], XtNfromVert, edit);  j++;
1030             XtSetArg(args[j], XtNfromHoriz, last);  j++;
1031             XtSetArg(args[j], XtNheight, 10);  j++;
1032             XtSetArg(args[j], XtNwidth, 20);  j++;
1033             XtSetArg(args[j], XtNleft, XtChainRight); j++;
1034             XtSetArg(args[j], XtNright, XtChainRight); j++;
1035             last = XtCreateManagedWidget("-", commandWidgetClass, form, args, j);
1036             XtAddCallback(last, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i);
1037             break;
1038           case CheckBox:
1039             if(!currentCps) option[i].value = *(Boolean*)option[i].target;
1040             j=0;
1041             XtSetArg(args[j], XtNfromVert, last);  j++;
1042             XtSetArg(args[j], XtNwidth, 10);  j++;
1043             XtSetArg(args[j], XtNheight, 10);  j++;
1044             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1045             XtSetArg(args[j], XtNright, XtChainLeft); j++;
1046             XtSetArg(args[j], XtNstate, option[i].value);  j++;
1047             option[i].handle = (void*)
1048                 (dialog = XtCreateManagedWidget(" ", toggleWidgetClass, form, args, j));
1049           case Label:
1050             msg = option[i].name;
1051             if(*msg == NULLCHAR) msg = option[i].textValue;
1052             if(!msg) break;
1053             j=0;
1054             XtSetArg(args[j], XtNfromVert, last);  j++;
1055             XtSetArg(args[j], XtNfromHoriz, option[i].type != Label ? dialog : NULL);  j++;
1056             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1057             XtSetArg(args[j], XtNborderWidth, 0);  j++;
1058             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1059             XtSetArg(args[j], XtNlabel, _(msg));  j++;
1060             last = XtCreateManagedWidget(msg, labelWidgetClass, form, args, j);
1061             if(option[i].type == CheckBox)
1062                 XtAddEventHandler(last, ButtonPressMask, False, CheckCallback, (XtPointer)(intptr_t) i);
1063             break;
1064           case SaveButton:
1065           case Button:
1066             j=0;
1067             XtSetArg(args[j], XtNfromVert, option[i].min & 1 ? lastrow : last);  j++;
1068             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1069             if(option[i].min & 1) { XtSetArg(args[j], XtNfromHoriz, last);  j++; }
1070             else  { XtSetArg(args[j], XtNfromHoriz, NULL);  j++; lastrow = forelast; }
1071             if(option[i].max) { XtSetArg(args[j], XtNwidth, option[i].max);  j++; }
1072             if(option[i].textValue) { // special for buttons of New Variant dialog
1073                 XtSetArg(args[j], XtNsensitive, appData.noChessProgram || option[i].value < 0
1074                                          || strstr(first.variants, VariantName(option[i].value))); j++;
1075                 XtSetArg(args[j], XtNborderWidth, (gameInfo.variant == option[i].value)+1); j++;
1076             }
1077             option[i].handle = (void*)
1078                 (dialog = last = XtCreateManagedWidget(option[i].name, commandWidgetClass, form, args, j));
1079             if(option[i].choice && ((char*)option[i].choice)[0] == '#' && !currentCps) {
1080                 SetColor( *(char**) option[i-1].target, &option[i]);
1081                 XtAddEventHandler(option[i-1].handle, KeyReleaseMask, False, ColorChanged, (XtPointer)(intptr_t) i-1);
1082             }
1083             XtAddCallback(last, XtNcallback, GenericCallback,
1084                           (XtPointer)(intptr_t) i + (dlgNr<<16));
1085             if(option[i].textValue) SetColor( option[i].textValue, &option[i]);
1086             forelast = lastrow; // next button can go on same row
1087             break;
1088           case ComboBox:
1089             j=0;
1090             XtSetArg(args[j], XtNfromVert, last);  j++;
1091             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1092             XtSetArg(args[j], XtNright, XtChainLeft); j++;
1093             XtSetArg(args[j], XtNborderWidth, 0);  j++;
1094             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1095             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1096             texts[h] = dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
1097
1098             if(currentCps) option[i].choice = (char**) option[i].textValue; else {
1099               for(j=0; option[i].choice[j]; j++)
1100                 if(*(char**)option[i].target && !strcmp(*(char**)option[i].target, option[i].choice[j])) break;
1101               option[i].value = j + (option[i].choice[j] == NULL);
1102             }
1103
1104             j=0;
1105             XtSetArg(args[j], XtNfromVert, last);  j++;
1106             XtSetArg(args[j], XtNfromHoriz, dialog);  j++;
1107             XtSetArg(args[j], XtNwidth, option[i].max && !currentCps ? option[i].max : 100);  j++;
1108             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1109             XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
1110             XtSetArg(args[j], XtNlabel, _(((char**)option[i].textValue)[option[i].value]));  j++;
1111             option[i].handle = (void*)
1112                 (last = XtCreateManagedWidget(" ", menuButtonWidgetClass, form, args, j));
1113             CreateComboPopup(last, option[i].name, i, (char **) option[i].textValue);
1114             values[i] = option[i].value;
1115             break;
1116           case Break:
1117             width++;
1118             height = i+1;
1119             break;
1120         default:
1121             printf("GenericPopUp: unexpected case in switch.\n");
1122             break;
1123         }
1124     }
1125
1126     // make an attempt to align all spins and textbox controls
1127     maxWidth = maxTextWidth = 0;
1128     for(h=0; h<height; h++) {
1129         i = h + c*height;
1130         if(option[i].type == EndMark) break;
1131         if(option[i].type == Spin || option[i].type == TextBox || option[i].type == ComboBox
1132                                   || option[i].type == PathName || option[i].type == FileName) {
1133             Dimension w;
1134             if(!texts[h]) continue;
1135             j=0;
1136             XtSetArg(args[j], XtNwidth, &w);  j++;
1137             XtGetValues(texts[h], args, j);
1138             if(option[i].type == Spin) {
1139                 if(w > maxWidth) maxWidth = w;
1140                 widest = texts[h];
1141             } else {
1142                 if(w > maxTextWidth) maxTextWidth = w;
1143                 if(!widest) widest = texts[h];
1144             }
1145         }
1146     }
1147     if(maxTextWidth + 110 < maxWidth)
1148          maxTextWidth = maxWidth - 110;
1149     else maxWidth = maxTextWidth + 110;
1150     for(h=0; h<height; h++) {
1151         i = h + c*height;
1152         if(option[i].type == EndMark) break;
1153         if(!texts[h]) continue;
1154         j=0;
1155         if(option[i].type == Spin) {
1156             XtSetArg(args[j], XtNwidth, maxWidth);  j++;
1157             XtSetValues(texts[h], args, j);
1158         } else
1159         if(option[i].type == TextBox || option[i].type == ComboBox || option[i].type == PathName || option[i].type == FileName) {
1160             XtSetArg(args[j], XtNwidth, maxTextWidth);  j++;
1161             XtSetValues(texts[h], args, j);
1162         }
1163     }
1164   }
1165
1166   if(!(option[i].min & 2)) {
1167     j=0;
1168     if(option[i].min & 1) {
1169         for(j=i-1; option[j+1].min&1 && option[j].type == Button; j--) {
1170             XtSetArg(args[0], XtNtop, XtChainBottom);
1171             XtSetArg(args[1], XtNbottom, XtChainBottom);
1172             XtSetValues(option[j].handle, args, 2);
1173         }
1174         if(option[j].type == TextBox && option[j].name[0] == NULLCHAR) {
1175             XtSetArg(args[0], XtNbottom, XtChainBottom);
1176             XtSetValues(option[j].handle, args, 1);
1177         }
1178         j = 0;
1179         XtSetArg(args[j], XtNfromHoriz, last); last = forelast;
1180     } else
1181     XtSetArg(args[j], XtNfromHoriz, widest ? widest : dialog);  j++;
1182     XtSetArg(args[j], XtNfromVert, anchor ? anchor : last);  j++;
1183     XtSetArg(args[j], XtNbottom, XtChainBottom);  j++;
1184     XtSetArg(args[j], XtNtop, XtChainBottom);  j++;
1185     XtSetArg(args[j], XtNleft, XtChainRight);  j++;
1186     XtSetArg(args[j], XtNright, XtChainRight);  j++;
1187     b_ok = XtCreateManagedWidget(_("OK"), commandWidgetClass, form, args, j);
1188     XtAddCallback(b_ok, XtNcallback, GenericCallback, (XtPointer)(intptr_t) dlgNr + (dlgNr<<16));
1189
1190     XtSetArg(args[0], XtNfromHoriz, b_ok);
1191     b_cancel = XtCreateManagedWidget(_("cancel"), commandWidgetClass, form, args, j);
1192     XtAddCallback(b_cancel, XtNcallback, GenericCallback, (XtPointer)(intptr_t) dlgNr);
1193   }
1194
1195     XtRealizeWidget(popup);
1196     XSetWMProtocols(xDisplay, XtWindow(popup), &wm_delete_window, 1);
1197     snprintf(def, MSG_SIZ, "<Message>WM_PROTOCOLS: GenericPopDown(\"%d\") \n", dlgNr);
1198     XtAugmentTranslations(popup, XtParseTranslationTable(def));
1199     XQueryPointer(xDisplay, xBoardWindow, &root, &child,
1200                   &x, &y, &win_x, &win_y, &mask);
1201
1202     XtSetArg(args[0], XtNx, x - 10);
1203     XtSetArg(args[1], XtNy, y - 30);
1204     XtSetValues(popup, args, 2);
1205
1206     XtPopup(popup, dlgNr ? XtGrabNone : XtGrabExclusive);
1207     shellUp[dlgNr] = True;
1208     previous = NULL;
1209     if(textField)SetFocus(textField, popup, (XEvent*) NULL, False);
1210     if(dlgNr && wp[dlgNr] && wp[dlgNr]->width > 0) { // if persistent window-info available, reposition
1211         j = 0;
1212         XtSetArg(args[j], XtNheight, (Dimension) (wp[dlgNr]->height));  j++;
1213         XtSetArg(args[j], XtNwidth,  (Dimension) (wp[dlgNr]->width));  j++;
1214         XtSetArg(args[j], XtNx, (Position) (wp[dlgNr]->x));  j++;
1215         XtSetArg(args[j], XtNy, (Position) (wp[dlgNr]->y));  j++;
1216         XtSetValues(popup, args, j);
1217     }
1218     return 1;
1219 }
1220
1221
1222 void IcsOptionsProc(w, event, prms, nprms)
1223      Widget w;
1224      XEvent *event;
1225      String *prms;
1226      Cardinal *nprms;
1227 {
1228    GenericPopUp(icsOptions, _("ICS Options"), 0);
1229 }
1230
1231 void LoadOptionsProc(w, event, prms, nprms)
1232      Widget w;
1233      XEvent *event;
1234      String *prms;
1235      Cardinal *nprms;
1236 {
1237    ASSIGN(searchMode, modeValues[appData.searchMode-1]);
1238    GenericPopUp(loadOptions, _("Load Game Options"), 0);
1239 }
1240
1241 void SaveOptionsProc(w, event, prms, nprms)
1242      Widget w;
1243      XEvent *event;
1244      String *prms;
1245      Cardinal *nprms;
1246 {
1247    GenericPopUp(saveOptions, _("Save Game Options"), 0);
1248 }
1249
1250 void SoundOptionsProc(w, event, prms, nprms)
1251      Widget w;
1252      XEvent *event;
1253      String *prms;
1254      Cardinal *nprms;
1255 {
1256    soundFiles[2] = "*";
1257    GenericPopUp(soundOptions, _("Sound Options"), 0);
1258 }
1259
1260 void BoardOptionsProc(w, event, prms, nprms)
1261      Widget w;
1262      XEvent *event;
1263      String *prms;
1264      Cardinal *nprms;
1265 {
1266    GenericPopUp(boardOptions, _("Board Options"), 0);
1267 }
1268
1269 void EngineMenuProc(w, event, prms, nprms)
1270      Widget w;
1271      XEvent *event;
1272      String *prms;
1273      Cardinal *nprms;
1274 {
1275    GenericPopUp(adjudicationOptions, "Adjudicate non-ICS Games", 0);
1276 }
1277
1278 void UciMenuProc(w, event, prms, nprms)
1279      Widget w;
1280      XEvent *event;
1281      String *prms;
1282      Cardinal *nprms;
1283 {
1284    oldCores = appData.smpCores;
1285    oldPonder = appData.ponderNextMove;
1286    GenericPopUp(commonEngineOptions, _("Common Engine Settings"), 0);
1287 }
1288
1289 void NewVariantProc(w, event, prms, nprms)
1290      Widget w;
1291      XEvent *event;
1292      String *prms;
1293      Cardinal *nprms;
1294 {
1295    GenericPopUp(variantDescriptors, _("New Variant"), 0);
1296 }
1297
1298 void OptionsProc(w, event, prms, nprms)
1299      Widget w;
1300      XEvent *event;
1301      String *prms;
1302      Cardinal *nprms;
1303 {
1304    oldPonder = appData.ponderNextMove;
1305    GenericPopUp(generalOptions, _("General Options"), 0);
1306 }
1307
1308 void MatchOptionsProc(w, event, prms, nprms)
1309      Widget w;
1310      XEvent *event;
1311      String *prms;
1312      Cardinal *nprms;
1313 {
1314    NamesToList(firstChessProgramNames, engineList, engineMnemonic);
1315    comboCallback = &AddToTourney;
1316    matchOptions[5].min = -(appData.pairingEngine[0] != NULLCHAR); // with pairing engine, allow Swiss
1317    ASSIGN(tfName, appData.tourneyFile[0] ? appData.tourneyFile : MakeName(appData.defName));
1318    GenericPopUp(matchOptions, _("Match Options"), 0);
1319 }
1320
1321 Option textOptions[100];
1322 void PutText P((char *text, int pos));
1323
1324 void SendString(char *p)
1325 {
1326     char buf[MSG_SIZ], *q;
1327     if(q = strstr(p, "$input")) {
1328         if(!shellUp[4]) return;
1329         strncpy(buf, p, MSG_SIZ);
1330         strncpy(buf + (q-p), q+6, MSG_SIZ-(q-p));
1331         PutText(buf, q-p);
1332         return;
1333     }
1334     snprintf(buf, MSG_SIZ, "%s\n", p);
1335     SendToICS(buf);
1336 }
1337
1338 /* function called when the data to Paste is ready */
1339 static void
1340 SendTextCB(Widget w, XtPointer client_data, Atom *selection,
1341            Atom *type, XtPointer value, unsigned long *len, int *format)
1342 {
1343   char buf[MSG_SIZ], *p = (char*) textOptions[(int)(intptr_t) client_data].choice, *name = (char*) value, *q;
1344   if (value==NULL || *len==0) return; /* nothing selected, abort */
1345   name[*len]='\0';
1346   strncpy(buf, p, MSG_SIZ);
1347   q = strstr(p, "$name");
1348   snprintf(buf + (q-p), MSG_SIZ -(q-p), "%s%s", name, q+5);
1349   SendString(buf);
1350   XtFree(value);
1351 }
1352
1353 void SendText(int n)
1354 {
1355     char *p = (char*) textOptions[n].choice;
1356     if(strstr(p, "$name")) {
1357         XtGetSelectionValue(menuBarWidget,
1358           XA_PRIMARY, XA_STRING,
1359           /* (XtSelectionCallbackProc) */ SendTextCB,
1360           (XtPointer) (intptr_t) n, /* client_data passed to PastePositionCB */
1361           CurrentTime
1362         );
1363     } else SendString(p);
1364 }
1365
1366 void IcsTextProc(w, event, prms, nprms)
1367      Widget w;
1368      XEvent *event;
1369      String *prms;
1370      Cardinal *nprms;
1371 {
1372    int i=0, j;
1373    char *p, *q, *r;
1374    if((p = icsTextMenuString) == NULL) return;
1375    do {
1376         q = r = p; while(*p && *p != ';') p++;
1377         for(j=0; j<p-q; j++) textOptions[i].name[j] = *r++;
1378         textOptions[i].name[j++] = 0;
1379         if(!*p) break;
1380         if(*++p == '\n') p++; // optional linefeed after button-text terminating semicolon
1381         q = p;
1382         textOptions[i].choice = (char**) (r = textOptions[i].name + j);
1383         while(*p && (*p != ';' || p[1] != '\n')) textOptions[i].name[j++] = *p++;
1384         textOptions[i].name[j++] = 0;
1385         if(*p) p += 2;
1386         textOptions[i].max = 135;
1387         textOptions[i].min = i&1;
1388         textOptions[i].handle = NULL;
1389         textOptions[i].target = &SendText;
1390         textOptions[i].textValue = strstr(r, "$input") ? "#80FF80" : strstr(r, "$name") ? "#FF8080" : "#FFFFFF";
1391         textOptions[i].type = Button;
1392    } while(++i < 99 && *p);
1393    if(i == 0) return;
1394    textOptions[i].type = EndMark;
1395    textOptions[i].target = NULL;
1396    textOptions[i].min = 2;
1397    MarkMenu("menuView.ICStex", 3);
1398    GenericPopUp(textOptions, _("ICS text menu"), 3);
1399 }
1400
1401 static char *commentText;
1402 static int commentIndex;
1403 void ClearComment P((int n));
1404 extern char commentTranslations[];
1405
1406 int NewComCallback(int n)
1407 {
1408     ReplaceComment(commentIndex, commentText);
1409     return 1;
1410 }
1411
1412 void SaveChanges(int n)
1413 {
1414     GenericReadout(0);
1415     ReplaceComment(commentIndex, commentText);
1416 }
1417
1418 Option commentOptions[] = {
1419 { 0xD, 200, 250, NULL, (void*) &commentText, "", NULL, TextBox, "" },
1420 {   0,  0,   50, NULL, (void*) &ClearComment, NULL, NULL, Button, "clear" },
1421 {   0,  1,  100, NULL, (void*) &SaveChanges, NULL, NULL, Button, "save changes" },
1422 {   0,  1,    0, NULL, (void*) &NewComCallback, "", NULL, EndMark , "" }
1423 };
1424
1425 void ClearTextWidget(Option *opt)
1426 {
1427 //    XtCallActionProc(opt->handle, "select-all", NULL, NULL, 0);
1428 //    XtCallActionProc(opt->handle, "kill-selection", NULL, NULL, 0);
1429     Arg arg;
1430     XtSetArg(arg, XtNstring, ""); // clear without disturbing selection!
1431     XtSetValues(opt->handle, &arg, 1);
1432 }
1433
1434 void ClearComment(int n)
1435 {
1436     ClearTextWidget(&commentOptions[0]);
1437 }
1438
1439 void NewCommentPopup(char *title, char *text, int index)
1440 {
1441     Arg args[16];
1442
1443     if(shells[1]) { // if already exists, alter title and content
1444         XtSetArg(args[0], XtNtitle, title);
1445         XtSetValues(shells[1], args, 1);
1446         SetWidgetText(&commentOptions[0], text, 1);
1447     }
1448     if(commentText) free(commentText); commentText = strdup(text);
1449     commentIndex = index;
1450     MarkMenu("menuView.Show Comments", 1);
1451     if(GenericPopUp(commentOptions, title, 1))
1452         XtOverrideTranslations(commentOptions[0].handle, XtParseTranslationTable(commentTranslations));
1453 }
1454
1455 static char *tagsText;
1456
1457 int NewTagsCallback(int n)
1458 {
1459     ReplaceTags(tagsText, &gameInfo);
1460     return 1;
1461 }
1462
1463 void changeTags(int n)
1464 {
1465     GenericReadout(1);
1466     if(bookUp) SaveToBook(tagsText); else
1467     ReplaceTags(tagsText, &gameInfo);
1468 }
1469
1470 Option tagsOptions[] = {
1471 {   0,  0,    0, NULL, NULL, NULL, NULL, Label,  "" },
1472 { 0xD, 200, 200, NULL, (void*) &tagsText, "", NULL, TextBox, "" },
1473 {   0,  0,  100, NULL, (void*) &changeTags, NULL, NULL, Button, "save changes" },
1474 {   0,  1,    0, NULL, (void*) &NewTagsCallback, "", NULL, EndMark , "" }
1475 };
1476
1477 void NewTagsPopup(char *text, char *msg)
1478 {
1479     Arg args[16];
1480     char *title = bookUp ? _("Edit book") : _("Tags");
1481
1482     if(shells[2]) { // if already exists, alter title and content
1483         SetWidgetText(&tagsOptions[1], text, 2);
1484         XtSetArg(args[0], XtNtitle, title);
1485         XtSetValues(shells[2], args, 1);
1486     }
1487     if(tagsText) free(tagsText); tagsText = strdup(text);
1488     tagsOptions[0].textValue = msg;
1489     MarkMenu("menuView.Show Tags", 2);
1490     GenericPopUp(tagsOptions, title, 2);
1491 }
1492
1493 char *icsText;
1494
1495 Option boxOptions[] = {
1496 {   0, 30,  400, NULL, (void*) &icsText, "", NULL, TextBox, "" },
1497 {   0,  3,    0, NULL, NULL, "", NULL, EndMark , "" }
1498 };
1499
1500 void PutText(char *text, int pos)
1501 {
1502     Arg args[16];
1503     char buf[MSG_SIZ], *p;
1504
1505     if(strstr(text, "$add ") == text) {
1506         GetWidgetText(&boxOptions[0], &p);
1507         snprintf(buf, MSG_SIZ, "%s%s", p, text+5); text = buf;
1508         pos += strlen(p) - 5;
1509     }
1510     SetWidgetText(&boxOptions[0], text, 4);
1511     XtSetArg(args[0], XtNinsertPosition, pos);
1512     XtSetValues(boxOptions[0].handle, args, 1);
1513 //    SetFocus(boxOptions[0].handle, shells[4], NULL, False); // No idea why this does not work, and the following is needed:
1514     XSetInputFocus(xDisplay, XtWindow(boxOptions[0].handle), RevertToPointerRoot, CurrentTime);
1515 }
1516
1517 void InputBoxPopup()
1518 {
1519     MarkMenu("menuView.ICS Input Box", 4);
1520     if(GenericPopUp(boxOptions, _("ICS input box"), 4))
1521         XtOverrideTranslations(boxOptions[0].handle, XtParseTranslationTable(ICSInputTranslations));
1522 }
1523
1524 void TypeInProc(w, event, prms, nprms)
1525      Widget w;
1526      XEvent *event;
1527      String *prms;
1528      Cardinal *nprms;
1529 {
1530     char *val;
1531
1532     if(prms[0][0] == '1') {
1533         GetWidgetText(&boxOptions[0], &val);
1534         TypeInDoneEvent(val);
1535     }
1536     PopDown(0);
1537 }
1538
1539 char moveTypeInTranslations[] =
1540     "<Key>Return: TypeInProc(1) \n"
1541     "<Key>Escape: TypeInProc(0) \n";
1542
1543 void PopUpMoveDialog(char firstchar)
1544 {
1545     static char buf[2];
1546     buf[0] = firstchar; icsText = buf;
1547     if(GenericPopUp(boxOptions, _("Type a move"), 0))
1548         XtOverrideTranslations(boxOptions[0].handle, XtParseTranslationTable(moveTypeInTranslations));
1549 }
1550
1551 void MoveTypeInProc(Widget widget, caddr_t unused, XEvent *event)
1552 {
1553     char buf[10], keys[32];
1554     KeySym sym;
1555     KeyCode metaL, metaR;
1556     int n = XLookupString(&(event->xkey), buf, 10, &sym, NULL);
1557     XQueryKeymap(xDisplay,keys);
1558     metaL = XKeysymToKeycode(xDisplay, XK_Meta_L);
1559     metaR = XKeysymToKeycode(xDisplay, XK_Meta_R);
1560     if ( n == 1 && *buf > 32 && !(keys[metaL>>3]&1<<(metaL&7)) && !(keys[metaR>>3]&1<<(metaR&7))) // printable, no alt
1561         PopUpMoveDialog(*buf);
1562
1563 }
1564
1565 void
1566 SettingsPopUp(ChessProgramState *cps)
1567 {
1568    currentCps = cps;
1569    GenericPopUp(cps->option, _("Engine Settings"), 0);
1570 }
1571
1572 void FirstSettingsProc(w, event, prms, nprms)
1573      Widget w;
1574      XEvent *event;
1575      String *prms;
1576      Cardinal *nprms;
1577 {
1578     SettingsPopUp(&first);
1579 }
1580
1581 void SecondSettingsProc(w, event, prms, nprms)
1582      Widget w;
1583      XEvent *event;
1584      String *prms;
1585      Cardinal *nprms;
1586 {
1587    if(WaitForEngine(&second, SettingsMenuIfReady)) return;
1588    SettingsPopUp(&second);
1589 }
1590
1591 int InstallOK(int n)
1592 {
1593     PopDown(0); // early popdown, to allow FreezeUI to instate grab
1594     if(engineChoice[0] == engineNr[0][0])  Load(&first, 0); else Load(&second, 1);
1595     return 1;
1596 }
1597
1598 Option installOptions[] = {
1599 {   0,  0,    0, NULL, (void*) &engineLine, (char*) engineMnemonic, engineList, ComboBox, N_("Select engine from list:") },
1600 {   0,  0,    0, NULL, NULL, NULL, NULL, Label, N_("or specify one below:") },
1601 {   0,  0,    0, NULL, (void*) &nickName, NULL, NULL, TextBox, N_("Nickname (optional):") },
1602 {   0,  0,    0, NULL, (void*) &useNick, NULL, NULL, CheckBox, N_("Use nickname in PGN player tags of engine-engine games") },
1603 {   0,  0,    0, NULL, (void*) &engineDir, NULL, NULL, PathName, N_("Engine Directory:") },
1604 {   0,  0,    0, NULL, (void*) &engineName, NULL, NULL, FileName, N_("Engine Command:") },
1605 {   0,  0,    0, NULL, NULL, NULL, NULL, Label, N_("(Directory will be derived from engine path when empty)") },
1606 {   0,  0,    0, NULL, (void*) &isUCI, NULL, NULL, CheckBox, N_("UCI") },
1607 {   0,  0,    0, NULL, (void*) &v1, NULL, NULL, CheckBox, N_("WB protocol v1 (do not wait for engine features)") },
1608 {   0,  0,    0, NULL, (void*) &hasBook, NULL, NULL, CheckBox, N_("Must not use GUI book") },
1609 {   0,  0,    0, NULL, (void*) &addToList, NULL, NULL, CheckBox, N_("Add this engine to the list") },
1610 {   0,  0,    0, NULL, (void*) &storeVariant, NULL, NULL, CheckBox, N_("Force current variant with this engine") },
1611 {   0,  0,    0, NULL, (void*) &engineChoice, (char*) engineNr, engineNr, ComboBox, N_("Load mentioned engine as") },
1612 {   0,  1,    0, NULL, (void*) &InstallOK, "", NULL, EndMark , "" }
1613 };
1614
1615 void LoadEngineProc(w, event, prms, nprms)
1616      Widget w;
1617      XEvent *event;
1618      String *prms;
1619      Cardinal *nprms;
1620 {
1621    isUCI = storeVariant = v1 = useNick = False; addToList = hasBook = True; // defaults
1622    if(engineChoice) free(engineChoice); engineChoice = strdup(engineNr[0]);
1623    if(engineLine)   free(engineLine);   engineLine = strdup("");
1624    if(engineDir)    free(engineDir);    engineDir = strdup("");
1625    if(nickName)     free(nickName);     nickName = strdup("");
1626    if(params)       free(params);       params = strdup("");
1627    NamesToList(firstChessProgramNames, engineList, engineMnemonic);
1628    GenericPopUp(installOptions, _("Load engine"), 0);
1629 }
1630
1631 void EditBookProc(w, event, prms, nprms)
1632      Widget w;
1633      XEvent *event;
1634      String *prms;
1635      Cardinal *nprms;
1636 {
1637     EditBookEvent();
1638 }
1639
1640 void SetRandom P((int n));
1641
1642 int ShuffleOK(int n)
1643 {
1644     ResetGameEvent();
1645     return 1;
1646 }
1647
1648 Option shuffleOptions[] = {
1649 {   0,  0,   50, NULL, (void*) &shuffleOpenings, NULL, NULL, CheckBox, "shuffle" },
1650 { 0,-1,2000000000, NULL, (void*) &appData.defaultFrcPosition, "", NULL, Spin, N_("Start-position number:") },
1651 {   0,  0,    0, NULL, (void*) &SetRandom, NULL, NULL, Button, "randomize" },
1652 {   0,  1,    0, NULL, (void*) &SetRandom, NULL, NULL, Button, "pick fixed" },
1653 {   0,  1,    0, NULL, (void*) &ShuffleOK, "", NULL, EndMark , "" }
1654 };
1655
1656 void SetRandom(int n)
1657 {
1658     int r = n==2 ? -1 : rand() & (1<<30)-1;
1659     char buf[MSG_SIZ];
1660     snprintf(buf, MSG_SIZ,  "%d", r);
1661     SetWidgetText(&shuffleOptions[1], buf, 0);
1662     SetWidgetState(&shuffleOptions[0], True);
1663 }
1664
1665 void ShuffleMenuProc(w, event, prms, nprms)
1666      Widget w;
1667      XEvent *event;
1668      String *prms;
1669      Cardinal *nprms;
1670 {
1671     GenericPopUp(shuffleOptions, _("New Shuffle Game"), 0);
1672 }
1673
1674 int tmpMoves, tmpTc, tmpInc, tmpOdds1, tmpOdds2, tcType;
1675
1676 void ShowTC(int n)
1677 {
1678 }
1679
1680 void SetTcType P((int n));
1681
1682 char *Value(int n)
1683 {
1684         static char buf[MSG_SIZ];
1685         snprintf(buf, MSG_SIZ, "%d", n);
1686         return buf;
1687 }
1688
1689 int TcOK(int n)
1690 {
1691     char *tc;
1692     if(tcType == 0 && tmpMoves <= 0) return 0;
1693     if(tcType == 2 && tmpInc <= 0) return 0;
1694     GetWidgetText(&currentOption[4], &tc); // get original text, in case it is min:sec
1695     searchTime = 0;
1696     switch(tcType) {
1697       case 0:
1698         if(!ParseTimeControl(tc, -1, tmpMoves)) return 0;
1699         appData.movesPerSession = tmpMoves;
1700         ASSIGN(appData.timeControl, tc);
1701         appData.timeIncrement = -1;
1702         break;
1703       case 1:
1704         if(!ParseTimeControl(tc, tmpInc, 0)) return 0;
1705         ASSIGN(appData.timeControl, tc);
1706         appData.timeIncrement = tmpInc;
1707         break;
1708       case 2:
1709         searchTime = tmpInc;
1710     }
1711     appData.firstTimeOdds = first.timeOdds = tmpOdds1;
1712     appData.secondTimeOdds = second.timeOdds = tmpOdds2;
1713     Reset(True, True);
1714     return 1;
1715 }
1716
1717 Option tcOptions[] = {
1718 {   0,  0,    0, NULL, (void*) &SetTcType, NULL, NULL, Button, N_("classical") },
1719 {   0,  1,    0, NULL, (void*) &SetTcType, NULL, NULL, Button, N_("incremental") },
1720 {   0,  1,    0, NULL, (void*) &SetTcType, NULL, NULL, Button, N_("fixed max") },
1721 {   0,  0,  200, NULL, (void*) &tmpMoves, NULL, NULL, Spin, N_("Moves per session:") },
1722 {   0,  0,10000, NULL, (void*) &tmpTc, NULL, NULL, Spin, N_("Initial time (min):") },
1723 {   0, 0, 10000, NULL, (void*) &tmpInc, NULL, NULL, Spin, N_("Increment or max (sec/move):") },
1724 {   0,  0,    0, NULL, NULL, NULL, NULL, Label, N_("Time-Odds factors:") },
1725 {   0,  1, 1000, NULL, (void*) &tmpOdds1, NULL, NULL, Spin, N_("Engine #1") },
1726 {   0,  1, 1000, NULL, (void*) &tmpOdds2, NULL, NULL, Spin, N_("Engine #2 / Human") },
1727 {   0,  0,    0, NULL, (void*) &TcOK, "", NULL, EndMark , "" }
1728 };
1729
1730 void SetTcType(int n)
1731 {
1732     switch(tcType = n) {
1733       case 0:
1734         SetWidgetText(&tcOptions[3], Value(tmpMoves), 0);
1735         SetWidgetText(&tcOptions[4], Value(tmpTc), 0);
1736         SetWidgetText(&tcOptions[5], _("Unused"), 0);
1737         break;
1738       case 1:
1739         SetWidgetText(&tcOptions[3], _("Unused"), 0);
1740         SetWidgetText(&tcOptions[4], Value(tmpTc), 0);
1741         SetWidgetText(&tcOptions[5], Value(tmpInc), 0);
1742         break;
1743       case 2:
1744         SetWidgetText(&tcOptions[3], _("Unused"), 0);
1745         SetWidgetText(&tcOptions[4], _("Unused"), 0);
1746         SetWidgetText(&tcOptions[5], Value(tmpInc), 0);
1747     }
1748 }
1749
1750 void TimeControlProc(w, event, prms, nprms)
1751      Widget w;
1752      XEvent *event;
1753      String *prms;
1754      Cardinal *nprms;
1755 {
1756    tmpMoves = appData.movesPerSession;
1757    tmpInc = appData.timeIncrement; if(tmpInc < 0) tmpInc = 0;
1758    tmpOdds1 = tmpOdds2 = 1; tcType = 0;
1759    tmpTc = atoi(appData.timeControl);
1760    GenericPopUp(tcOptions, _("Time Control"), 0);
1761 }
1762
1763 //---------------------------- Chat Windows ----------------------------------------------
1764
1765 void OutputChatMessage(int partner, char *mess)
1766 {
1767     return; // dummy
1768 }
1769