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