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