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