2 * xoptions.c -- Move list window, part of X front end for XBoard
4 * Copyright 2000, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
5 * ------------------------------------------------------------------------
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.
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.
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/. *
20 *------------------------------------------------------------------------
21 ** See the file ChangeLog for a revision history. */
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.
31 #include <sys/types.h>
36 #else /* not STDC_HEADERS */
37 extern char *getenv();
40 # else /* not HAVE_STRING_H */
42 # endif /* not HAVE_STRING_H */
43 #endif /* not STDC_HEADERS */
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>
76 # define _(s) gettext (s)
77 # define N_(s) gettext_noop (s)
83 // [HGM] the following code for makng menu popups was cloned from the FileNamePopUp routines
85 static Widget previous = NULL;
86 extern Pixel timerBackgroundPixel;
89 SetFocus (Widget w, XtPointer data, XEvent *event, Boolean *b)
96 XtSetArg(args[0], XtNdisplayCaret, False);
97 XtSetValues(previous, args, 1);
99 XtSetArg(args[0], XtNstring, &s);
100 XtGetValues(w, args, 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);
109 //--------------------------- Engine-specific options menu ----------------------------------
111 typedef void ButtonCallback(int n);
112 typedef int OKCallback(int n);
114 int values[MAX_OPTIONS];
115 ChessProgramState *currentCps;
116 static Option *currentOption;
117 static Boolean browserUp;
118 ButtonCallback *comboCallback;
121 GetWidgetText (Option *opt, char **buf)
124 XtSetArg(arg, XtNstring, buf);
125 XtGetValues(opt->handle, &arg, 1);
129 SetWidgetText (Option *opt, char *buf, int n)
132 XtSetArg(arg, XtNstring, buf);
133 XtSetValues(opt->handle, &arg, 1);
134 if(n >= 0) SetFocus(opt->handle, shells[n], NULL, False);
138 SetWidgetState (Option *opt, int state)
141 XtSetArg(arg, XtNstate, state);
142 XtSetValues(opt->handle, &arg, 1);
146 CheckCallback (Widget ww, XtPointer data, XEvent *event, Boolean *b)
148 Widget w = currentOption[(int)(intptr_t)data].handle;
152 XtSetArg(args[0], XtNstate, &s);
153 XtGetValues(w, args, 1);
154 SetWidgetState(¤tOption[(int)(intptr_t)data], !s);
158 SpinCallback (Widget w, XtPointer client_data, XtPointer call_data)
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;
166 XtSetArg(args[0], XtNlabel, &name);
167 XtGetValues(w, args, 1);
169 GetWidgetText(¤tOption[data], &val);
170 sscanf(val, "%d", &j);
171 if (strcmp(name, _("browse")) == 0) {
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;
177 if(XsraSelFile(shells[0], currentOption[data].name, NULL, NULL, "", "", r,
178 currentOption[data].type == PathName ? "p" : "f", NULL, &p)) {
180 if(len && p[len-1] == '/') p[len-1] = NULLCHAR;
181 XtSetArg(args[0], XtNstring, p);
182 XtSetValues(currentOption[data].handle, args, 1);
185 SetFocus(currentOption[data].handle, shells[0], (XEvent*) NULL, False);
188 if (strcmp(name, "+") == 0) {
189 if(++j > currentOption[data].max) return;
191 if (strcmp(name, "-") == 0) {
192 if(--j < currentOption[data].min) return;
194 snprintf(buf, MSG_SIZ, "%d", j);
195 SetWidgetText(¤tOption[data], buf, 0);
199 ComboSelect (Widget w, caddr_t addr, caddr_t index) // callback for all combo items
202 int i = ((intptr_t)addr)>>8;
203 int j = 255 & (intptr_t) addr;
205 values[i] = j; // store in temporary, for transfer at OK
207 if(currentOption[i].min & NO_GETTEXT)
208 XtSetArg(args[0], XtNlabel, ((char**)currentOption[i].textValue)[j]);
210 XtSetArg(args[0], XtNlabel, _(((char**)currentOption[i].textValue)[j]));
212 XtSetValues(currentOption[i].handle, args, 1);
214 if(currentOption[i].min & COMBO_CALLBACK && !currentCps && comboCallback) (comboCallback)(i);
218 CreateComboPopup (Widget parent, Option *option, int n)
223 char **mb = (char **) option->textValue;
225 if(mb[0] == NULL) return; // avoid empty menus, as they cause crash
226 menu = XtCreatePopupShell(option->name, simpleMenuWidgetClass,
229 XtSetArg(args[j], XtNwidth, 100); j++;
230 while (mb[i] != NULL)
232 if (option->min & NO_GETTEXT)
233 XtSetArg(args[j], XtNlabel, mb[i]);
235 XtSetArg(args[j], XtNlabel, _(mb[i]));
236 entry = XtCreateManagedWidget((String) mb[i], smeBSBObjectClass,
238 XtAddCallback(entry, XtNcallback,
239 (XtCallbackProc) ComboSelect,
240 (caddr_t)(intptr_t) (256*n+i));
246 //----------------------------Generic dialog --------------------------------------------
248 // cloned from Engine Settings dialog (and later merged with it)
250 extern WindowPlacement wpComment, wpTags, wpMoveHistory;
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));
261 WindowPlacement *wp[10] = { NULL, &wpComment, &wpTags, NULL, NULL, NULL, NULL, &wpMoveHistory };
262 Option *dialogOptions[10];
265 MarkMenu (char *item, int dlgNr)
268 XtSetArg(args[0], XtNleftBitmap, xMarkPixmap);
269 XtSetValues(marked[dlgNr] = XtNameToWidget(menuBarWidget, item), args, 1);
277 Dimension windowH, windowW; Position windowX, windowY;
278 if (!shellUp[n]) return 0;
279 if(n && wp[n]) { // remember position
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);
288 wp[n]->width = windowW;
289 wp[n]->height = windowH;
292 XtPopdown(shells[n]);
293 if(n == 0) XtDestroyWidget(shells[n]);
296 XtSetArg(args[0], XtNleftBitmap, None);
297 XtSetValues(marked[n], args, 1);
299 if(!n) currentCps = NULL; // if an Engine Settings dialog was up, we must be popping it down now
304 GenericPopDown (Widget w, XEvent *event, String *prms, Cardinal *nprms)
306 if(browserUp) return; // prevent closing dialog when it has an open file-browse daughter
307 PopDown(prms[0][0] - '0');
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] = {""};
317 AppendText (Option *opt, char *s)
322 GetWidgetText(opt, &v);
324 t.ptr = s; t.firstPos = 0; t.length = strlen(s); t.format = XawFmt8Bit;
325 XawTextReplace(opt->handle, len, len, &t);
330 AddLine (Option *opt, char *s)
333 AppendText(opt, "\n");
339 GenericReadout(4); // selected engine
340 AddLine(&matchOptions[3], engineChoice);
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
354 ReplaceParticipant ()
357 Substitute(strdup(engineName), True);
361 UpgradeParticipant ()
364 Substitute(strdup(engineName), False);
372 GetWidgetText(currentOption, &name);
373 if(name && name[0] && (f = fopen(name, "r")) ) {
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);
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 , "" }
407 GeneralOptionsOK (int n)
409 int newPonder = appData.ponderNextMove;
410 appData.ponderNextMove = oldPonder;
411 PonderNextMoveEvent(newPonder);
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 , "" }
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 */
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 */
462 GenericReadout(-1); // make sure ranks and file settings are read
464 gameInfo.variant = v;
465 appData.variant = VariantName(v);
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 = "";
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 , "" }
523 CommonOptionsOK (int n)
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);
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 , "" }
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 , "" }
571 ParseIcsTextColors();
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 , "" }
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" };
616 appData.searchMode = atoi(searchMode);
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 , "" }
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.saveExtendedInfoInPGN, "", NULL, CheckBox, N_("Save Score/Depth Info in PGN") },
645 { 0, 0, 0, NULL, (void*) &appData.saveOutOfBookInfo, "", NULL, CheckBox, N_("Save Out-of-Book Info in PGN ") },
646 { 0, 1, 0, NULL, NULL, "", NULL, EndMark , "" }
649 char *soundNames[] = {
652 N_("Above WAV File"),
667 char *soundFiles[] = { // sound files corresponding to above names
670 NULL, // kludge alert: as first thing in the dialog readout this is replaced with the user-given .WAV filename
689 if(soundFiles[values[3]]) PlaySound(soundFiles[values[3]]);
692 Option soundOptions[] = {
693 { 0, 0, 0, NULL, (void*) &appData.soundProgram, "", NULL, TextBox, N_("Sound Program:") },
694 { 0, 0, 0, NULL, (void*) &appData.soundDirectory, "", NULL, PathName, N_("Sounds Directory:") },
695 { 0, 0, 0, NULL, (void*) (soundFiles+2) /* kludge! */, ".wav", NULL, FileName, N_("User WAV File:") },
696 { 0, 0, 0, NULL, (void*) &trialSound, (char*) soundNames, soundFiles, ComboBox, N_("Try-Out Sound:") },
697 { 0, 1, 0, NULL, (void*) &Test, NULL, NULL, Button, N_("Play") },
698 { 0, 0, 0, NULL, (void*) &appData.soundMove, (char*) soundNames, soundFiles, ComboBox, N_("Move:") },
699 { 0, 0, 0, NULL, (void*) &appData.soundIcsWin, (char*) soundNames, soundFiles, ComboBox, N_("Win:") },
700 { 0, 0, 0, NULL, (void*) &appData.soundIcsLoss, (char*) soundNames, soundFiles, ComboBox, N_("Lose:") },
701 { 0, 0, 0, NULL, (void*) &appData.soundIcsDraw, (char*) soundNames, soundFiles, ComboBox, N_("Draw:") },
702 { 0, 0, 0, NULL, (void*) &appData.soundIcsUnfinished, (char*) soundNames, soundFiles, ComboBox, N_("Unfinished:") },
703 { 0, 0, 0, NULL, (void*) &appData.soundIcsAlarm, (char*) soundNames, soundFiles, ComboBox, N_("Alarm:") },
704 { 0, 0, 0, NULL, (void*) &appData.soundShout, (char*) soundNames, soundFiles, ComboBox, N_("Shout:") },
705 { 0, 0, 0, NULL, (void*) &appData.soundSShout, (char*) soundNames, soundFiles, ComboBox, N_("S-Shout:") },
706 { 0, 0, 0, NULL, (void*) &appData.soundChannel, (char*) soundNames, soundFiles, ComboBox, N_("Channel:") },
707 { 0, 0, 0, NULL, (void*) &appData.soundChannel1, (char*) soundNames, soundFiles, ComboBox, N_("Channel 1:") },
708 { 0, 0, 0, NULL, (void*) &appData.soundTell, (char*) soundNames, soundFiles, ComboBox, N_("Tell:") },
709 { 0, 0, 0, NULL, (void*) &appData.soundKibitz, (char*) soundNames, soundFiles, ComboBox, N_("Kibitz:") },
710 { 0, 0, 0, NULL, (void*) &appData.soundChallenge, (char*) soundNames, soundFiles, ComboBox, N_("Challenge:") },
711 { 0, 0, 0, NULL, (void*) &appData.soundRequest, (char*) soundNames, soundFiles, ComboBox, N_("Request:") },
712 { 0, 0, 0, NULL, (void*) &appData.soundSeek, (char*) soundNames, soundFiles, ComboBox, N_("Seek:") },
713 { 0, 1, 0, NULL, NULL, "", NULL, EndMark , "" }
717 SetColor (char *colorName, Option *box)
722 if (!appData.monoMode) {
723 vFrom.addr = (caddr_t) colorName;
724 vFrom.size = strlen(colorName);
725 XtConvert(shellWidget, XtRString, &vFrom, XtRPixel, &vTo);
726 if (vTo.addr == NULL) {
727 buttonColor = (Pixel) -1;
729 buttonColor = *(Pixel *) vTo.addr;
731 } else buttonColor = timerBackgroundPixel;
732 XtSetArg(args[0], XtNbackground, buttonColor);;
733 XtSetValues(box->handle, args, 1);
737 SetColorText (int n, char *buf)
739 SetWidgetText(¤tOption[n-1], buf, 0);
740 SetColor(buf, ¤tOption[n]);
746 SetColorText(n, (char*) currentOption[n].choice);
750 RefreshColor (int source, int n)
752 int col, j, r, g, b, step = 10;
753 char *s, buf[MSG_SIZ]; // color string
754 GetWidgetText(¤tOption[source], &s);
755 if(sscanf(s, "#%x", &col) != 1) return; // malformed
756 b = col & 0xFF; g = col & 0xFF00; r = col & 0xFF0000;
758 case 1: r += 0x10000*step;break;
759 case 2: g += 0x100*step; break;
760 case 3: b += step; break;
761 case 4: r -= 0x10000*step; g -= 0x100*step; b -= step; break;
763 if(r < 0) r = 0; if(g < 0) g = 0; if(b < 0) b = 0;
764 if(r > 0xFF0000) r = 0xFF0000; if(g > 0xFF00) g = 0xFF00; if(b > 0xFF) b = 0xFF;
766 snprintf(buf, MSG_SIZ, "#%06x", col);
767 for(j=1; j<7; j++) if(buf[j] >= 'a') buf[j] -= 32; // capitalize
768 SetColorText(source+1, buf);
772 ColorChanged (Widget w, XtPointer data, XEvent *event, Boolean *b)
775 if ( (XLookupString(&(event->xkey), buf, 2, NULL, NULL) == 1) && *buf == '\r' )
776 RefreshColor((int)(intptr_t) data, 0);
782 int n = currentOption[i].value;
783 RefreshColor(i-n-1, n);
787 BoardOptionsOK (int n)
789 if(appData.overrideLineGap >= 0) lineGap = appData.overrideLineGap; else lineGap = defaultLineGap;
790 useImages = useImageSqs = 0;
791 MakeColors(); CreateGCs(True);
793 InitDrawingSizes(-1, 0);
794 DrawPosition(True, NULL);
798 Option boardOptions[] = {
799 { 0, 0, 70, NULL, (void*) &appData.whitePieceColor, "", NULL, TextBox, N_("White Piece Color:") },
800 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#FFFFCC", Button, " " },
801 { 1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("R") },
802 { 2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("G") },
803 { 3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("B") },
804 { 4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("D") },
805 { 0, 0, 70, NULL, (void*) &appData.blackPieceColor, "", NULL, TextBox, N_("Black Piece Color:") },
806 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#202020", Button, " " },
807 { 1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("R") },
808 { 2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("G") },
809 { 3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("B") },
810 { 4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("D") },
811 { 0, 0, 70, NULL, (void*) &appData.lightSquareColor, "", NULL, TextBox, N_("Light Square Color:") },
812 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#C8C365", Button, " " },
813 { 1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("R") },
814 { 2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("G") },
815 { 3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("B") },
816 { 4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("D") },
817 { 0, 0, 70, NULL, (void*) &appData.darkSquareColor, "", NULL, TextBox, N_("Dark Square Color:") },
818 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#77A26D", Button, " " },
819 { 1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("R") },
820 { 2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("G") },
821 { 3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("B") },
822 { 4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("D") },
823 { 0, 0, 70, NULL, (void*) &appData.highlightSquareColor, "", NULL, TextBox, N_("Highlight Color:") },
824 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#FFFF00", Button, " " },
825 { 1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("R") },
826 { 2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("G") },
827 { 3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("B") },
828 { 4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("D") },
829 { 0, 0, 70, NULL, (void*) &appData.premoveHighlightColor, "", NULL, TextBox, N_("Premove Highlight Color:") },
830 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#FF0000", Button, " " },
831 { 1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("R") },
832 { 2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("G") },
833 { 3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("B") },
834 { 4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("D") },
835 { 0, 0, 0, NULL, (void*) &appData.upsideDown, "", NULL, CheckBox, N_("Flip Pieces Shogi Style (Colored buttons restore default)") },
836 //{ 0, 0, 0, NULL, (void*) &appData.allWhite, "", NULL, CheckBox, N_("Use Outline Pieces for Black") },
837 { 0, 0, 0, NULL, (void*) &appData.monoMode, "", NULL, CheckBox, N_("Mono Mode") },
838 { 0,-1, 5, NULL, (void*) &appData.overrideLineGap, "", NULL, Spin, N_("Line Gap ( -1 = default for board size):") },
839 { 0, 0, 0, NULL, (void*) &appData.useBitmaps, "", NULL, CheckBox, N_("Use Board Textures") },
840 { 0, 0, 0, NULL, (void*) &appData.liteBackTextureFile, ".xpm", NULL, FileName, N_("Light-Squares Texture File:") },
841 { 0, 0, 0, NULL, (void*) &appData.darkBackTextureFile, ".xpm", NULL, FileName, N_("Dark-Squares Texture File:") },
842 { 0, 0, 0, NULL, (void*) &appData.bitmapDirectory, "", NULL, PathName, N_("Directory with Bitmap Pieces:") },
843 { 0, 0, 0, NULL, (void*) &appData.pixmapDirectory, "", NULL, PathName, N_("Directory with Pixmap Pieces:") },
844 { 0, 0, 0, NULL, (void*) &BoardOptionsOK, "", NULL, EndMark , "" }
848 GenericUpdate (int selected)
854 if(selected >= 0) { if(i < selected) continue; else if(i > selected) break; }
855 switch(currentOption[i].type) {
859 SetWidgetText(¤tOption[i], *(char**) currentOption[i].target, -1);
862 sprintf(buf, "%d", *(int*) currentOption[i].target);
863 SetWidgetText(¤tOption[i], buf, -1);
866 sprintf(buf, "%4.2f", *(float*) currentOption[i].target);
867 SetWidgetText(¤tOption[i], buf, -1);
870 SetWidgetState(¤tOption[i], *(Boolean*) currentOption[i].target);
873 for(j=0; currentOption[i].choice[j]; j++)
874 if(*(char**)currentOption[i].target && !strcmp(*(char**)currentOption[i].target, currentOption[i].choice[j])) break;
875 values[i] = currentOption[i].value = j + (currentOption[i].choice[j] == NULL);
876 // TODO: actually display this
881 printf("GenericUpdate: unexpected case in switch.\n");
892 GenericReadout (int selected)
897 char buf[MSG_SIZ], **dest;
899 for(i=0; ; i++) { // send all options that had to be OK-ed to engine
900 if(selected >= 0) { if(i < selected) continue; else if(i > selected) break; }
901 switch(currentOption[i].type) {
905 XtSetArg(args[0], XtNstring, &val);
906 XtGetValues(currentOption[i].handle, args, 1);
907 dest = currentCps ? &(currentOption[i].textValue) : (char**) currentOption[i].target;
908 if(*dest == NULL || strcmp(*dest, val)) {
910 snprintf(buf, MSG_SIZ, "option %s=%s\n", currentOption[i].name, val);
911 SendToProgram(buf, currentCps);
913 if(*dest) free(*dest);
914 *dest = malloc(strlen(val)+1);
916 safeStrCpy(*dest, val, MSG_SIZ - (*dest - currentOption[i].name)); // copy text there
921 XtSetArg(args[0], XtNstring, &val);
922 XtGetValues(currentOption[i].handle, args, 1);
923 x = 0.0; // Initialise because sscanf() will fail if non-numeric text is entered
924 sscanf(val, "%f", &x);
925 if(x > currentOption[i].max) x = currentOption[i].max;
926 if(x < currentOption[i].min) x = currentOption[i].min;
927 if(currentOption[i].type == Fractional)
928 *(float*) currentOption[i].target = x; // engines never have float options!
929 else if(currentOption[i].value != x) {
930 currentOption[i].value = x;
932 snprintf(buf, MSG_SIZ, "option %s=%.0f\n", currentOption[i].name, x);
933 SendToProgram(buf, currentCps);
934 } else *(int*) currentOption[i].target = x;
939 XtSetArg(args[0], XtNstate, &j);
940 XtGetValues(currentOption[i].handle, args, 1);
941 if(currentOption[i].value != j) {
942 currentOption[i].value = j;
944 snprintf(buf, MSG_SIZ, "option %s=%d\n", currentOption[i].name, j);
945 SendToProgram(buf, currentCps);
946 } else *(Boolean*) currentOption[i].target = j;
950 val = ((char**)currentOption[i].choice)[values[i]];
952 if(currentOption[i].value == values[i]) break; // not changed
953 currentOption[i].value = values[i];
954 snprintf(buf, MSG_SIZ, "option %s=%s\n", currentOption[i].name,
955 ((char**)currentOption[i].textValue)[values[i]]);
956 SendToProgram(buf, currentCps);
957 } else if(val && (*(char**) currentOption[i].target == NULL || strcmp(*(char**) currentOption[i].target, val))) {
958 if(*(char**) currentOption[i].target) free(*(char**) currentOption[i].target);
959 *(char**) currentOption[i].target = strdup(val);
963 if(currentOption[i].target) // callback for implementing necessary actions on OK (like redraw)
964 res = ((OKCallback*) currentOption[i].target)(i);
967 printf("GenericReadout: unexpected case in switch.\n");
974 if(currentOption[i].type == EndMark) break;
980 GenericCallback (Widget w, XtPointer client_data, XtPointer call_data)
985 int data = (intptr_t) client_data;
987 currentOption = dialogOptions[data>>16]; data &= 0xFFFF;
989 XtSetArg(args[0], XtNlabel, &name);
990 XtGetValues(w, args, 1);
992 if (strcmp(name, _("cancel")) == 0) {
996 if (strcmp(name, _("OK")) == 0) { // save buttons imply OK
997 if(GenericReadout(-1)) PopDown(data);
1001 if(currentOption[data].type == SaveButton) GenericReadout(-1);
1002 snprintf(buf, MSG_SIZ, "option %s\n", name);
1003 SendToProgram(buf, currentCps);
1004 } else ((ButtonCallback*) currentOption[data].target)(data);
1007 static char *oneLiner = "<Key>Return: redraw-display()\n";
1010 GenericPopUp (Option *option, char *title, int dlgNr)
1013 Widget popup, layout, dialog=NULL, edit=NULL, form, last, b_ok, b_cancel, leftMargin = NULL, textField = NULL;
1015 int x, y, i, j, height=999, width=1, h, c, w;
1016 int win_x, win_y, maxWidth, maxTextWidth;
1018 char def[MSG_SIZ], *msg;
1019 static char pane[6] = "paneX";
1020 Widget texts[100], forelast = NULL, anchor, widest, lastrow = NULL, browse = NULL;
1021 Dimension bWidth = 50;
1023 if(shellUp[dlgNr]) return 0; // already up
1024 if(dlgNr && shells[dlgNr]) {
1025 XtPopup(shells[dlgNr], XtGrabNone);
1026 shellUp[dlgNr] = True;
1030 dialogOptions[dlgNr] = option; // make available to callback
1031 // post currentOption globally, so Spin and Combo callbacks can already use it
1032 // WARNING: this kludge does not work for persistent dialogs, so that these cannot have spin or combo controls!
1033 currentOption = option;
1035 if(currentCps) { // Settings popup for engine: format through heuristic
1036 int n = currentCps->nrOptions;
1037 if(!n) { DisplayNote(_("Engine has no options")); currentCps = NULL; return 0; }
1038 if(n > 50) width = 4; else if(n>24) width = 2; else width = 1;
1039 height = n / width + 1;
1040 if(n && (currentOption[n-1].type == Button || currentOption[n-1].type == SaveButton)) currentOption[n].min = SAME_ROW; // OK on same line
1041 currentOption[n].type = EndMark; currentOption[n].target = NULL; // delimit list by callback-less end mark
1044 XtSetArg(args[i], XtNresizable, True); i++;
1045 popup = shells[dlgNr] =
1046 XtCreatePopupShell(title, transientShellWidgetClass,
1047 shellWidget, args, i);
1050 XtCreateManagedWidget(layoutName, formWidgetClass, popup,
1051 layoutArgs, XtNumber(layoutArgs));
1052 for(c=0; c<width; c++) {
1055 XtCreateManagedWidget(pane, formWidgetClass, layout,
1056 formArgs, XtNumber(formArgs));
1058 XtSetArg(args[j], XtNfromHoriz, leftMargin); j++;
1059 XtSetValues(form, args, j);
1062 last = widest = NULL; anchor = lastrow;
1063 for(h=0; h<height; h++) {
1065 if(option[i].type == EndMark) break;
1068 switch(option[i].type) {
1070 snprintf(def, MSG_SIZ, "%.2f", *(float*)option[i].target);
1071 option[i].value = *(float*)option[i].target;
1074 if(!currentCps) option[i].value = *(int*)option[i].target;
1075 snprintf(def, MSG_SIZ, "%d", option[i].value);
1080 if(option[i].name[0]) {
1082 XtSetArg(args[j], XtNfromVert, last); j++;
1083 XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1084 XtSetArg(args[j], XtNright, XtChainLeft); j++;
1085 XtSetArg(args[j], XtNborderWidth, 0); j++;
1086 XtSetArg(args[j], XtNjustify, XtJustifyLeft); j++;
1087 XtSetArg(args[j], XtNlabel, _(option[i].name)); j++;
1089 dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
1090 } else texts[h] = dialog = NULL;
1091 w = option[i].type == Spin || option[i].type == Fractional ? 70 : option[i].max ? option[i].max : 205;
1092 if(option[i].type == FileName || option[i].type == PathName) w -= 55;
1094 XtSetArg(args[j], XtNfromVert, last); j++;
1095 XtSetArg(args[j], XtNfromHoriz, dialog); j++;
1096 XtSetArg(args[j], XtNborderWidth, 1); j++;
1097 XtSetArg(args[j], XtNwidth, w); j++;
1098 XtSetArg(args[j], XtNheight, textHeight); j++; // [HGM] use message widget
1099 if(option[i].type == TextBox && option[i].min) {
1100 XtSetArg(args[j-1], XtNheight, option[i].min); // overwrite
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++; }
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++;
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));
1122 if(option[i].type == TextBox || option[i].type == Fractional) break;
1124 // add increment and decrement controls for spin
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++;
1136 XtSetArg(args[j], XtNheight, 10); j++;
1137 XtSetArg(args[j], XtNwidth, w); j++;
1139 edit = XtCreateManagedWidget(msg, commandWidgetClass, form, args, j);
1140 XtAddCallback(edit, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i);
1141 if(w == 0) browse = edit;
1143 if(option[i].type != Spin) break;
1146 XtSetArg(args[j], XtNfromVert, edit); j++;
1147 XtSetArg(args[j], XtNfromHoriz, last); j++;
1148 XtSetArg(args[j], XtNheight, 10); j++;
1149 XtSetArg(args[j], XtNwidth, 20); j++;
1150 XtSetArg(args[j], XtNleft, XtChainRight); j++;
1151 XtSetArg(args[j], XtNright, XtChainRight); j++;
1152 last = XtCreateManagedWidget("-", commandWidgetClass, form, args, j);
1153 XtAddCallback(last, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i);
1156 if(!currentCps) option[i].value = *(Boolean*)option[i].target;
1157 j=0; // space holder
1158 XtSetArg(args[j], XtNfromVert, last); j++;
1159 XtSetArg(args[j], XtNwidth, 10); j++;
1160 XtSetArg(args[j], XtNheight, textHeight-22); j++;
1161 XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1162 XtSetArg(args[j], XtNright, XtChainLeft); j++;
1163 XtSetArg(args[j], XtNborderWidth, 0); j++;
1164 printf("%d\n",textHeight);
1165 if(textHeight < 24) dialog = last; else
1166 dialog = XtCreateManagedWidget(" ", labelWidgetClass, form, args, j);
1168 XtSetArg(args[j], XtNfromVert, dialog); j++;
1169 XtSetArg(args[j], XtNwidth, 10); j++;
1170 XtSetArg(args[j], XtNheight, 10); j++;
1171 XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1172 XtSetArg(args[j], XtNright, XtChainLeft); j++;
1173 XtSetArg(args[j], XtNstate, option[i].value); j++;
1174 option[i].handle = (void*)
1175 (dialog = XtCreateManagedWidget(" ", toggleWidgetClass, form, args, j));
1177 msg = option[i].name;
1178 if(*msg == NULLCHAR) msg = option[i].textValue;
1181 XtSetArg(args[j], XtNfromVert, last); j++;
1182 XtSetArg(args[j], XtNfromHoriz, option[i].type != Label ? dialog : NULL); j++;
1183 XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1184 XtSetArg(args[j], XtNborderWidth, 0); j++;
1185 XtSetArg(args[j], XtNjustify, XtJustifyLeft); j++;
1186 XtSetArg(args[j], XtNlabel, _(msg)); j++;
1187 last = XtCreateManagedWidget(msg, labelWidgetClass, form, args, j);
1188 if(option[i].type == CheckBox)
1189 XtAddEventHandler(last, ButtonPressMask, False, CheckCallback, (XtPointer)(intptr_t) i);
1194 if(option[i].min & SAME_ROW) {
1195 XtSetArg(args[j], XtNfromVert, lastrow); j++;
1196 XtSetArg(args[j], XtNfromHoriz, last); j++;
1198 XtSetArg(args[j], XtNfromVert, last); j++;
1199 XtSetArg(args[j], XtNfromHoriz, NULL); j++; lastrow = forelast;
1201 XtSetArg(args[j], XtNlabel, _(option[i].name)); j++;
1202 if(option[i].max) { XtSetArg(args[j], XtNwidth, option[i].max); j++; }
1203 if(option[i].textValue) { // special for buttons of New Variant dialog
1204 XtSetArg(args[j], XtNsensitive, appData.noChessProgram || option[i].value < 0
1205 || strstr(first.variants, VariantName(option[i].value))); j++;
1206 XtSetArg(args[j], XtNborderWidth, (gameInfo.variant == option[i].value)+1); j++;
1208 option[i].handle = (void*)
1209 (dialog = last = XtCreateManagedWidget(option[i].name, commandWidgetClass, form, args, j));
1210 if(option[i].choice && ((char*)option[i].choice)[0] == '#' && !currentCps) {
1211 SetColor( *(char**) option[i-1].target, &option[i]);
1212 XtAddEventHandler(option[i-1].handle, KeyReleaseMask, False, ColorChanged, (XtPointer)(intptr_t) i-1);
1214 XtAddCallback(last, XtNcallback, GenericCallback,
1215 (XtPointer)(intptr_t) i + (dlgNr<<16));
1216 if(option[i].textValue) SetColor( option[i].textValue, &option[i]);
1217 forelast = lastrow; // next button can go on same row
1221 XtSetArg(args[j], XtNfromVert, last); j++;
1222 XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1223 XtSetArg(args[j], XtNright, XtChainLeft); j++;
1224 XtSetArg(args[j], XtNborderWidth, 0); j++;
1225 XtSetArg(args[j], XtNjustify, XtJustifyLeft); j++;
1226 XtSetArg(args[j], XtNlabel, _(option[i].name)); j++;
1227 texts[h] = dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
1229 if(currentCps) option[i].choice = (char**) option[i].textValue; else {
1230 for(j=0; option[i].choice[j]; j++)
1231 if(*(char**)option[i].target && !strcmp(*(char**)option[i].target, option[i].choice[j])) break;
1232 option[i].value = j + (option[i].choice[j] == NULL);
1236 XtSetArg(args[j], XtNfromVert, last); j++;
1237 XtSetArg(args[j], XtNfromHoriz, dialog); j++;
1238 XtSetArg(args[j], XtNwidth, option[i].max && !currentCps ? option[i].max : 100); j++;
1239 XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1240 XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name)); j++;
1241 XtSetArg(args[j], XtNlabel, _(((char**)option[i].textValue)[option[i].value])); j++;
1242 option[i].handle = (void*)
1243 (last = XtCreateManagedWidget(" ", menuButtonWidgetClass, form, args, j));
1244 CreateComboPopup(last, option + i, i);
1245 values[i] = option[i].value;
1252 printf("GenericPopUp: unexpected case in switch.\n");
1257 // make an attempt to align all spins and textbox controls
1258 maxWidth = maxTextWidth = 0;
1259 if(browse != NULL) {
1261 XtSetArg(args[j], XtNwidth, &bWidth); j++;
1262 XtGetValues(browse, args, j);
1264 for(h=0; h<height; h++) {
1266 if(option[i].type == EndMark) break;
1267 if(option[i].type == Spin || option[i].type == TextBox || option[i].type == ComboBox
1268 || option[i].type == PathName || option[i].type == FileName) {
1270 if(!texts[h]) continue;
1272 XtSetArg(args[j], XtNwidth, &w); j++;
1273 XtGetValues(texts[h], args, j);
1274 if(option[i].type == Spin) {
1275 if(w > maxWidth) maxWidth = w;
1278 if(w > maxTextWidth) maxTextWidth = w;
1279 if(!widest) widest = texts[h];
1283 if(maxTextWidth + 110 < maxWidth)
1284 maxTextWidth = maxWidth - 110;
1285 else maxWidth = maxTextWidth + 110;
1286 for(h=0; h<height; h++) {
1288 if(option[i].type == EndMark) break;
1289 if(!texts[h]) continue; // Note: texts[h] can be undefined (giving errors in valgrind), but then both if's below will be false.
1291 if(option[i].type == Spin) {
1292 XtSetArg(args[j], XtNwidth, maxWidth); j++;
1293 XtSetValues(texts[h], args, j);
1295 if(option[i].type == TextBox || option[i].type == ComboBox || option[i].type == PathName || option[i].type == FileName) {
1296 XtSetArg(args[j], XtNwidth, maxTextWidth); j++;
1297 XtSetValues(texts[h], args, j);
1298 if(bWidth != 50 && (option[i].type == FileName || option[i].type == PathName)) {
1299 int tWidth = (option[i].max ? option[i].max : 205) - 5 - bWidth;
1301 XtSetArg(args[j], XtNwidth, tWidth); j++;
1302 XtSetValues(option[i].handle, args, j);
1308 if(!(option[i].min & NO_OK)) {
1310 if(option[i].min & SAME_ROW) {
1311 for(j=i-1; option[j+1].min & SAME_ROW && option[j].type == Button; j--) {
1312 XtSetArg(args[0], XtNtop, XtChainBottom);
1313 XtSetArg(args[1], XtNbottom, XtChainBottom);
1314 XtSetValues(option[j].handle, args, 2);
1316 if(option[j].type == TextBox && option[j].name[0] == NULLCHAR) {
1317 XtSetArg(args[0], XtNbottom, XtChainBottom);
1318 XtSetValues(option[j].handle, args, 1);
1321 XtSetArg(args[j], XtNfromHoriz, last); last = forelast;
1323 XtSetArg(args[j], XtNfromHoriz, widest ? widest : dialog); j++;
1324 XtSetArg(args[j], XtNfromVert, anchor ? anchor : last); j++;
1325 XtSetArg(args[j], XtNbottom, XtChainBottom); j++;
1326 XtSetArg(args[j], XtNtop, XtChainBottom); j++;
1327 XtSetArg(args[j], XtNleft, XtChainRight); j++;
1328 XtSetArg(args[j], XtNright, XtChainRight); j++;
1329 b_ok = XtCreateManagedWidget(_("OK"), commandWidgetClass, form, args, j);
1330 XtAddCallback(b_ok, XtNcallback, GenericCallback, (XtPointer)(intptr_t) dlgNr + (dlgNr<<16));
1332 XtSetArg(args[0], XtNfromHoriz, b_ok);
1333 b_cancel = XtCreateManagedWidget(_("cancel"), commandWidgetClass, form, args, j);
1334 XtAddCallback(b_cancel, XtNcallback, GenericCallback, (XtPointer)(intptr_t) dlgNr);
1337 XtRealizeWidget(popup);
1338 XSetWMProtocols(xDisplay, XtWindow(popup), &wm_delete_window, 1);
1339 snprintf(def, MSG_SIZ, "<Message>WM_PROTOCOLS: GenericPopDown(\"%d\") \n", dlgNr);
1340 XtAugmentTranslations(popup, XtParseTranslationTable(def));
1341 XQueryPointer(xDisplay, xBoardWindow, &root, &child,
1342 &x, &y, &win_x, &win_y, &mask);
1344 XtSetArg(args[0], XtNx, x - 10);
1345 XtSetArg(args[1], XtNy, y - 30);
1346 XtSetValues(popup, args, 2);
1348 XtPopup(popup, dlgNr ? XtGrabNone : XtGrabExclusive);
1349 shellUp[dlgNr] = True;
1351 if(textField)SetFocus(textField, popup, (XEvent*) NULL, False);
1352 if(dlgNr && wp[dlgNr] && wp[dlgNr]->width > 0) { // if persistent window-info available, reposition
1354 XtSetArg(args[j], XtNheight, (Dimension) (wp[dlgNr]->height)); j++;
1355 XtSetArg(args[j], XtNwidth, (Dimension) (wp[dlgNr]->width)); j++;
1356 XtSetArg(args[j], XtNx, (Position) (wp[dlgNr]->x)); j++;
1357 XtSetArg(args[j], XtNy, (Position) (wp[dlgNr]->y)); j++;
1358 XtSetValues(popup, args, j);
1365 IcsOptionsProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1367 GenericPopUp(icsOptions, _("ICS Options"), 0);
1371 LoadOptionsProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1373 ASSIGN(searchMode, modeValues[appData.searchMode-1]);
1374 GenericPopUp(loadOptions, _("Load Game Options"), 0);
1378 SaveOptionsProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1380 GenericPopUp(saveOptions, _("Save Game Options"), 0);
1384 SoundOptionsProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1386 free(soundFiles[2]);
1387 soundFiles[2] = strdup("*");
1388 GenericPopUp(soundOptions, _("Sound Options"), 0);
1392 BoardOptionsProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1394 GenericPopUp(boardOptions, _("Board Options"), 0);
1398 EngineMenuProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1400 GenericPopUp(adjudicationOptions, _("Adjudicate non-ICS Games"), 0);
1404 UciMenuProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1406 oldCores = appData.smpCores;
1407 oldPonder = appData.ponderNextMove;
1408 GenericPopUp(commonEngineOptions, _("Common Engine Settings"), 0);
1412 NewVariantProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1414 GenericPopUp(variantDescriptors, _("New Variant"), 0);
1418 OptionsProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1420 oldPonder = appData.ponderNextMove;
1421 GenericPopUp(generalOptions, _("General Options"), 0);
1425 MatchOptionsProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1427 NamesToList(firstChessProgramNames, engineList, engineMnemonic, "all");
1428 comboCallback = &AddToTourney;
1429 matchOptions[5].min = -(appData.pairingEngine[0] != NULLCHAR); // with pairing engine, allow Swiss
1430 ASSIGN(tfName, appData.tourneyFile[0] ? appData.tourneyFile : MakeName(appData.defName));
1431 ASSIGN(engineName, appData.participants);
1432 GenericPopUp(matchOptions, _("Match Options"), 0);
1435 Option textOptions[100];
1436 void PutText P((char *text, int pos));
1439 SendString (char *p)
1441 char buf[MSG_SIZ], *q;
1442 if(q = strstr(p, "$input")) {
1443 if(!shellUp[4]) return;
1444 strncpy(buf, p, MSG_SIZ);
1445 strncpy(buf + (q-p), q+6, MSG_SIZ-(q-p));
1449 snprintf(buf, MSG_SIZ, "%s\n", p);
1453 /* function called when the data to Paste is ready */
1455 SendTextCB (Widget w, XtPointer client_data, Atom *selection,
1456 Atom *type, XtPointer value, unsigned long *len, int *format)
1458 char buf[MSG_SIZ], *p = (char*) textOptions[(int)(intptr_t) client_data].choice, *name = (char*) value, *q;
1459 if (value==NULL || *len==0) return; /* nothing selected, abort */
1461 strncpy(buf, p, MSG_SIZ);
1462 q = strstr(p, "$name");
1463 snprintf(buf + (q-p), MSG_SIZ -(q-p), "%s%s", name, q+5);
1471 char *p = (char*) textOptions[n].choice;
1472 if(strstr(p, "$name")) {
1473 XtGetSelectionValue(menuBarWidget,
1474 XA_PRIMARY, XA_STRING,
1475 /* (XtSelectionCallbackProc) */ SendTextCB,
1476 (XtPointer) (intptr_t) n, /* client_data passed to PastePositionCB */
1479 } else SendString(p);
1483 IcsTextProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1487 if((p = icsTextMenuString) == NULL) return;
1489 q = r = p; while(*p && *p != ';') p++;
1490 for(j=0; j<p-q; j++) textOptions[i].name[j] = *r++;
1491 textOptions[i].name[j++] = 0;
1493 if(*++p == '\n') p++; // optional linefeed after button-text terminating semicolon
1495 textOptions[i].choice = (char**) (r = textOptions[i].name + j);
1496 while(*p && (*p != ';' || p[1] != '\n')) textOptions[i].name[j++] = *p++;
1497 textOptions[i].name[j++] = 0;
1499 textOptions[i].max = 135;
1500 textOptions[i].min = i&1;
1501 textOptions[i].handle = NULL;
1502 textOptions[i].target = &SendText;
1503 textOptions[i].textValue = strstr(r, "$input") ? "#80FF80" : strstr(r, "$name") ? "#FF8080" : "#FFFFFF";
1504 textOptions[i].type = Button;
1505 } while(++i < 99 && *p);
1507 textOptions[i].type = EndMark;
1508 textOptions[i].target = NULL;
1509 textOptions[i].min = 2;
1510 MarkMenu("menuView.ICStex", 3);
1511 GenericPopUp(textOptions, _("ICS text menu"), 3);
1514 static char *commentText;
1515 static int commentIndex;
1516 void ClearComment P((int n));
1517 extern char commentTranslations[];
1520 NewComCallback (int n)
1522 ReplaceComment(commentIndex, commentText);
1530 ReplaceComment(commentIndex, commentText);
1533 Option commentOptions[] = {
1534 { 0xD, 200, 250, NULL, (void*) &commentText, "", NULL, TextBox, "" },
1535 { 0, 0, 50, NULL, (void*) &ClearComment, NULL, NULL, Button, N_("clear") },
1536 { 0, 1, 100, NULL, (void*) &SaveChanges, NULL, NULL, Button, N_("save changes") },
1537 { 0, 1, 0, NULL, (void*) &NewComCallback, "", NULL, EndMark , "" }
1541 ClearTextWidget (Option *opt)
1543 // XtCallActionProc(opt->handle, "select-all", NULL, NULL, 0);
1544 // XtCallActionProc(opt->handle, "kill-selection", NULL, NULL, 0);
1546 XtSetArg(arg, XtNstring, ""); // clear without disturbing selection!
1547 XtSetValues(opt->handle, &arg, 1);
1551 ClearComment (int n)
1553 ClearTextWidget(&commentOptions[0]);
1557 NewCommentPopup (char *title, char *text, int index)
1561 if(shells[1]) { // if already exists, alter title and content
1562 XtSetArg(args[0], XtNtitle, title);
1563 XtSetValues(shells[1], args, 1);
1564 SetWidgetText(&commentOptions[0], text, 1);
1566 if(commentText) free(commentText); commentText = strdup(text);
1567 commentIndex = index;
1568 MarkMenu("menuView.Show Comments", 1);
1569 if(GenericPopUp(commentOptions, title, 1))
1570 XtOverrideTranslations(commentOptions[0].handle, XtParseTranslationTable(commentTranslations));
1573 static char *tagsText;
1576 NewTagsCallback (int n)
1578 ReplaceTags(tagsText, &gameInfo);
1586 if(bookUp) SaveToBook(tagsText); else
1587 ReplaceTags(tagsText, &gameInfo);
1590 Option tagsOptions[] = {
1591 { 0, 0, 0, NULL, NULL, NULL, NULL, Label, "" },
1592 { 0xD, 200, 200, NULL, (void*) &tagsText, "", NULL, TextBox, "" },
1593 { 0, 0, 100, NULL, (void*) &changeTags, NULL, NULL, Button, N_("save changes") },
1594 { 0, 1, 0, NULL, (void*) &NewTagsCallback, "", NULL, EndMark , "" }
1598 NewTagsPopup (char *text, char *msg)
1601 char *title = bookUp ? _("Edit book") : _("Tags");
1603 if(shells[2]) { // if already exists, alter title and content
1604 SetWidgetText(&tagsOptions[1], text, 2);
1605 XtSetArg(args[0], XtNtitle, title);
1606 XtSetValues(shells[2], args, 1);
1608 if(tagsText) free(tagsText); tagsText = strdup(text);
1609 tagsOptions[0].textValue = msg;
1610 MarkMenu("menuView.Show Tags", 2);
1611 GenericPopUp(tagsOptions, title, 2);
1616 Option boxOptions[] = {
1617 { 0, 30, 400, NULL, (void*) &icsText, "", NULL, TextBox, "" },
1618 { 0, 3, 0, NULL, NULL, "", NULL, EndMark , "" }
1622 PutText (char *text, int pos)
1625 char buf[MSG_SIZ], *p;
1627 if(strstr(text, "$add ") == text) {
1628 GetWidgetText(&boxOptions[0], &p);
1629 snprintf(buf, MSG_SIZ, "%s%s", p, text+5); text = buf;
1630 pos += strlen(p) - 5;
1632 SetWidgetText(&boxOptions[0], text, 4);
1633 XtSetArg(args[0], XtNinsertPosition, pos);
1634 XtSetValues(boxOptions[0].handle, args, 1);
1635 // SetFocus(boxOptions[0].handle, shells[4], NULL, False); // No idea why this does not work, and the following is needed:
1636 XSetInputFocus(xDisplay, XtWindow(boxOptions[0].handle), RevertToPointerRoot, CurrentTime);
1642 MarkMenu("menuView.ICS Input Box", 4);
1643 if(GenericPopUp(boxOptions, _("ICS input box"), 4))
1644 XtOverrideTranslations(boxOptions[0].handle, XtParseTranslationTable(ICSInputTranslations));
1648 TypeInProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1652 if(prms[0][0] == '1') {
1653 GetWidgetText(&boxOptions[0], &val);
1654 TypeInDoneEvent(val);
1659 char moveTypeInTranslations[] =
1660 "<Key>Return: TypeInProc(1) \n"
1661 "<Key>Escape: TypeInProc(0) \n";
1664 PopUpMoveDialog (char firstchar)
1667 buf[0] = firstchar; icsText = buf;
1668 if(GenericPopUp(boxOptions, _("Type a move"), 0))
1669 XtOverrideTranslations(boxOptions[0].handle, XtParseTranslationTable(moveTypeInTranslations));
1673 MoveTypeInProc (Widget widget, caddr_t unused, XEvent *event)
1675 char buf[10], keys[32];
1677 KeyCode metaL, metaR; //, ctrlL, ctrlR;
1678 int n = XLookupString(&(event->xkey), buf, 10, &sym, NULL);
1679 XQueryKeymap(xDisplay,keys);
1680 metaL = XKeysymToKeycode(xDisplay, XK_Meta_L);
1681 metaR = XKeysymToKeycode(xDisplay, XK_Meta_R);
1682 // ctrlL = XKeysymToKeycode(xDisplay, XK_Control_L);
1683 // ctrlR = XKeysymToKeycode(xDisplay, XK_Control_R);
1684 if ( n == 1 && *buf >= 32 // printable
1685 && !(keys[metaL>>3]&1<<(metaL&7)) && !(keys[metaR>>3]&1<<(metaR&7)) // no alt key pressed
1686 // && !(keys[ctrlL>>3]&1<<(ctrlL&7)) && !(keys[ctrlR>>3]&1<<(ctrlR&7)) // no ctrl key pressed
1689 if(appData.icsActive) { // text typed to board in ICS mode: divert to ICS input box
1690 if(shells[4]) { // box already exists: append to current contents
1691 char *p, newText[MSG_SIZ];
1692 GetWidgetText(&boxOptions[0], &p);
1693 snprintf(newText, MSG_SIZ, "%s%c", p, *buf);
1694 SetWidgetText(&boxOptions[0], newText, 4);
1695 if(shellUp[4]) XSetInputFocus(xDisplay, XtWindow(boxOptions[0].handle), RevertToPointerRoot, CurrentTime); //why???
1696 } else icsText = buf; // box did not exist: make sure it pops up with char in it
1698 } else PopUpMoveDialog(*buf);
1703 SettingsPopUp (ChessProgramState *cps)
1706 GenericPopUp(cps->option, _("Engine Settings"), 0);
1710 FirstSettingsProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1712 SettingsPopUp(&first);
1716 SecondSettingsProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1718 if(WaitForEngine(&second, SettingsMenuIfReady)) return;
1719 SettingsPopUp(&second);
1725 PopDown(0); // early popdown, to allow FreezeUI to instate grab
1726 if(engineChoice[0] == engineNr[0][0]) Load(&first, 0); else Load(&second, 1);
1730 Option installOptions[] = {
1731 { 0, NO_GETTEXT, 0, NULL, (void*) &engineLine, (char*) engineMnemonic, engineList, ComboBox, N_("Select engine from list:") },
1732 { 0, 0, 0, NULL, NULL, NULL, NULL, Label, N_("or specify one below:") },
1733 { 0, 0, 0, NULL, (void*) &nickName, NULL, NULL, TextBox, N_("Nickname (optional):") },
1734 { 0, 0, 0, NULL, (void*) &useNick, NULL, NULL, CheckBox, N_("Use nickname in PGN player tags of engine-engine games") },
1735 { 0, 0, 0, NULL, (void*) &engineDir, NULL, NULL, PathName, N_("Engine Directory:") },
1736 { 0, 0, 0, NULL, (void*) &engineName, NULL, NULL, FileName, N_("Engine Command:") },
1737 { 0, 0, 0, NULL, NULL, NULL, NULL, Label, N_("(Directory will be derived from engine path when empty)") },
1738 { 0, 0, 0, NULL, (void*) &isUCI, NULL, NULL, CheckBox, N_("UCI") },
1739 { 0, 0, 0, NULL, (void*) &v1, NULL, NULL, CheckBox, N_("WB protocol v1 (do not wait for engine features)") },
1740 { 0, 0, 0, NULL, (void*) &hasBook, NULL, NULL, CheckBox, N_("Must not use GUI book") },
1741 { 0, 0, 0, NULL, (void*) &addToList, NULL, NULL, CheckBox, N_("Add this engine to the list") },
1742 { 0, 0, 0, NULL, (void*) &storeVariant, NULL, NULL, CheckBox, N_("Force current variant with this engine") },
1743 { 0, 0, 0, NULL, (void*) &engineChoice, (char*) engineNr, engineNr, ComboBox, N_("Load mentioned engine as") },
1744 { 0, 1, 0, NULL, (void*) &InstallOK, "", NULL, EndMark , "" }
1748 LoadEngineProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1750 isUCI = storeVariant = v1 = useNick = False; addToList = hasBook = True; // defaults
1751 if(engineChoice) free(engineChoice); engineChoice = strdup(engineNr[0]);
1752 if(engineLine) free(engineLine); engineLine = strdup("");
1753 if(engineDir) free(engineDir); engineDir = strdup("");
1754 if(nickName) free(nickName); nickName = strdup("");
1755 if(params) free(params); params = strdup("");
1756 NamesToList(firstChessProgramNames, engineList, engineMnemonic, "all");
1757 GenericPopUp(installOptions, _("Load engine"), 0);
1761 EditBookProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1766 void SetRandom P((int n));
1775 Option shuffleOptions[] = {
1776 { 0, 0, 50, NULL, (void*) &shuffleOpenings, NULL, NULL, CheckBox, N_("shuffle") },
1777 { 0,-1,2000000000, NULL, (void*) &appData.defaultFrcPosition, "", NULL, Spin, N_("Start-position number:") },
1778 { 0, 0, 0, NULL, (void*) &SetRandom, NULL, NULL, Button, N_("randomize") },
1779 { 0, 1, 0, NULL, (void*) &SetRandom, NULL, NULL, Button, N_("pick fixed") },
1780 { 0, 1, 0, NULL, (void*) &ShuffleOK, "", NULL, EndMark , "" }
1786 int r = n==2 ? -1 : random() & (1<<30)-1;
1788 snprintf(buf, MSG_SIZ, "%d", r);
1789 SetWidgetText(&shuffleOptions[1], buf, 0);
1790 SetWidgetState(&shuffleOptions[0], True);
1794 ShuffleMenuProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1796 GenericPopUp(shuffleOptions, _("New Shuffle Game"), 0);
1799 int tmpMoves, tmpTc, tmpInc, tmpOdds1, tmpOdds2, tcType;
1806 void SetTcType P((int n));
1811 static char buf[MSG_SIZ];
1812 snprintf(buf, MSG_SIZ, "%d", n);
1820 if(tcType == 0 && tmpMoves <= 0) return 0;
1821 if(tcType == 2 && tmpInc <= 0) return 0;
1822 GetWidgetText(¤tOption[4], &tc); // get original text, in case it is min:sec
1826 if(!ParseTimeControl(tc, -1, tmpMoves)) return 0;
1827 appData.movesPerSession = tmpMoves;
1828 ASSIGN(appData.timeControl, tc);
1829 appData.timeIncrement = -1;
1832 if(!ParseTimeControl(tc, tmpInc, 0)) return 0;
1833 ASSIGN(appData.timeControl, tc);
1834 appData.timeIncrement = tmpInc;
1837 searchTime = tmpInc;
1839 appData.firstTimeOdds = first.timeOdds = tmpOdds1;
1840 appData.secondTimeOdds = second.timeOdds = tmpOdds2;
1845 Option tcOptions[] = {
1846 { 0, 0, 0, NULL, (void*) &SetTcType, NULL, NULL, Button, N_("classical") },
1847 { 0, 1, 0, NULL, (void*) &SetTcType, NULL, NULL, Button, N_("incremental") },
1848 { 0, 1, 0, NULL, (void*) &SetTcType, NULL, NULL, Button, N_("fixed max") },
1849 { 0, 0, 200, NULL, (void*) &tmpMoves, NULL, NULL, Spin, N_("Moves per session:") },
1850 { 0, 0,10000, NULL, (void*) &tmpTc, NULL, NULL, Spin, N_("Initial time (min):") },
1851 { 0, 0, 10000, NULL, (void*) &tmpInc, NULL, NULL, Spin, N_("Increment or max (sec/move):") },
1852 { 0, 0, 0, NULL, NULL, NULL, NULL, Label, N_("Time-Odds factors:") },
1853 { 0, 1, 1000, NULL, (void*) &tmpOdds1, NULL, NULL, Spin, N_("Engine #1") },
1854 { 0, 1, 1000, NULL, (void*) &tmpOdds2, NULL, NULL, Spin, N_("Engine #2 / Human") },
1855 { 0, 0, 0, NULL, (void*) &TcOK, "", NULL, EndMark , "" }
1861 switch(tcType = n) {
1863 SetWidgetText(&tcOptions[3], Value(tmpMoves), 0);
1864 SetWidgetText(&tcOptions[4], Value(tmpTc), 0);
1865 SetWidgetText(&tcOptions[5], _("Unused"), 0);
1868 SetWidgetText(&tcOptions[3], _("Unused"), 0);
1869 SetWidgetText(&tcOptions[4], Value(tmpTc), 0);
1870 SetWidgetText(&tcOptions[5], Value(tmpInc), 0);
1873 SetWidgetText(&tcOptions[3], _("Unused"), 0);
1874 SetWidgetText(&tcOptions[4], _("Unused"), 0);
1875 SetWidgetText(&tcOptions[5], Value(tmpInc), 0);
1880 TimeControlProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1882 tmpMoves = appData.movesPerSession;
1883 tmpInc = appData.timeIncrement; if(tmpInc < 0) tmpInc = 0;
1884 tmpOdds1 = tmpOdds2 = 1; tcType = 0;
1885 tmpTc = atoi(appData.timeControl);
1886 GenericPopUp(tcOptions, _("Time Control"), 0);
1889 //---------------------------- Chat Windows ----------------------------------------------
1892 OutputChatMessage (int partner, char *mess)