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