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