2 * xoptions.c -- Move list window, part of X front end for XBoard
4 * Copyright 2000, 2009, 2010, 2011 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;
87 void SetFocus(Widget w, XtPointer data, XEvent *event, Boolean *b)
94 XtSetArg(args[0], XtNdisplayCaret, False);
95 XtSetValues(previous, args, 1);
97 XtSetArg(args[0], XtNstring, &s);
98 XtGetValues(w, args, 1);
100 XtSetArg(args[0], XtNdisplayCaret, True);
101 if(!strchr(s, '\n') && strlen(s) < 80) XtSetArg(args[1], XtNinsertPosition, strlen(s)), j++;
102 XtSetValues(w, args, j);
103 XtSetKeyboardFocus((Widget) data, w);
107 //--------------------------- Engine-specific options menu ----------------------------------
109 typedef void ButtonCallback(int n);
110 typedef int OKCallback(int n);
112 int values[MAX_OPTIONS];
113 ChessProgramState *currentCps;
114 static Option *currentOption;
115 static Boolean browserUp;
116 ButtonCallback *comboCallback;
118 void GetWidgetText(Option *opt, char **buf)
121 XtSetArg(arg, XtNstring, buf);
122 XtGetValues(opt->handle, &arg, 1);
125 void SetWidgetText(Option *opt, char *buf, int n)
128 XtSetArg(arg, XtNstring, buf);
129 XtSetValues(opt->handle, &arg, 1);
130 SetFocus(opt->handle, shells[n], NULL, False);
133 void SetWidgetState(Option *opt, int state)
136 XtSetArg(arg, XtNstate, state);
137 XtSetValues(opt->handle, &arg, 1);
140 void CheckCallback(Widget ww, XtPointer data, XEvent *event, Boolean *b)
142 Widget w = currentOption[(int)(intptr_t)data].handle;
146 XtSetArg(args[0], XtNstate, &s);
147 XtGetValues(w, args, 1);
148 SetWidgetState(¤tOption[(int)(intptr_t)data], !s);
151 void SpinCallback(w, client_data, call_data)
153 XtPointer client_data, call_data;
157 char buf[MSG_SIZ], *p;
159 int data = (intptr_t) client_data;
161 XtSetArg(args[0], XtNlabel, &name);
162 XtGetValues(w, args, 1);
164 GetWidgetText(¤tOption[data], &val);
165 sscanf(val, "%d", &j);
166 if (strcmp(name, "browse") == 0) {
168 for(r = ""; *q; q++) if(*q == '.') r = q; else if(*q == '/') r = ""; // last dot after last slash
169 if(!strcmp(r, "") && !currentCps && currentOption[data].type == FileName && currentOption[data].textValue)
170 r = currentOption[data].textValue;
172 if(XsraSelFile(shells[0], currentOption[data].name, NULL, NULL, "", "", r,
173 currentOption[data].type == PathName ? "p" : "f", NULL, &p)) {
175 if(len && p[len-1] == '/') p[len-1] = NULLCHAR;
176 XtSetArg(args[0], XtNstring, p);
177 XtSetValues(currentOption[data].handle, args, 1);
180 SetFocus(currentOption[data].handle, shells[0], (XEvent*) NULL, False);
183 if (strcmp(name, "+") == 0) {
184 if(++j > currentOption[data].max) return;
186 if (strcmp(name, "-") == 0) {
187 if(--j < currentOption[data].min) return;
189 snprintf(buf, MSG_SIZ, "%d", j);
190 SetWidgetText(¤tOption[data], buf, 0);
193 void ComboSelect(w, addr, index) // callback for all combo items
199 int i = ((intptr_t)addr)>>8;
200 int j = 255 & (intptr_t) addr;
202 values[i] = j; // store in temporary, for transfer at OK
203 XtSetArg(args[0], XtNlabel, _(((char**)currentOption[i].textValue)[j]));
204 XtSetValues(currentOption[i].handle, args, 1);
206 if(currentOption[i].min & 1 && !currentCps && comboCallback) (comboCallback)(i);
209 void CreateComboPopup(parent, name, n, mb)
219 menu = XtCreatePopupShell(name, simpleMenuWidgetClass,
222 XtSetArg(args[j], XtNwidth, 100); j++;
223 // XtSetArg(args[j], XtNright, XtChainRight); j++;
224 while (mb[i] != NULL) {
225 XtSetArg(args[j], XtNlabel, _(mb[i]));
226 entry = XtCreateManagedWidget(mb[i], smeBSBObjectClass,
228 XtAddCallback(entry, XtNcallback,
229 (XtCallbackProc) ComboSelect,
230 (caddr_t)(intptr_t) (256*n+i));
236 //----------------------------Generic dialog --------------------------------------------
238 // cloned from Engine Settings dialog (and later merged with it)
240 extern WindowPlacement wpComment, wpTags, wpMoveHistory;
242 static int oldCores, oldPonder;
243 int MakeColors P((void));
244 void CreateGCs P((int redo));
245 void CreateAnyPieces P((void));
246 int GenericReadout P((int selected));
250 WindowPlacement *wp[10] = { NULL, &wpComment, &wpTags, NULL, NULL, NULL, NULL, &wpMoveHistory };
251 Option *dialogOptions[10];
253 void MarkMenu(char *item, int dlgNr)
256 XtSetArg(args[0], XtNleftBitmap, xMarkPixmap);
257 XtSetValues(marked[dlgNr] = XtNameToWidget(menuBarWidget, item), args, 1);
264 Dimension windowH, windowW; Position windowX, windowY;
265 if (!shellUp[n]) return 0;
266 if(n && wp[n]) { // remember position
268 XtSetArg(args[j], XtNx, &windowX); j++;
269 XtSetArg(args[j], XtNy, &windowY); j++;
270 XtSetArg(args[j], XtNheight, &windowH); j++;
271 XtSetArg(args[j], XtNwidth, &windowW); j++;
272 XtGetValues(shells[n], args, j);
275 wp[n]->width = windowW;
276 wp[n]->height = windowH;
279 XtPopdown(shells[n]);
280 if(n == 0) XtDestroyWidget(shells[n]);
283 XtSetArg(args[0], XtNleftBitmap, None);
284 XtSetValues(marked[n], args, 1);
286 if(!n) currentCps = NULL; // if an Engine Settings dialog was up, we must be popping it down now
290 void GenericPopDown(w, event, prms, nprms)
296 if(browserUp) return; // prevent closing dialog when it has an open file-browse daughter
297 PopDown(prms[0][0] - '0');
300 char *engineName, *engineDir, *engineChoice, *engineLine, *nickName, *params, *tfName;
301 Boolean isUCI, hasBook, storeVariant, v1, addToList, useNick;
302 extern Option installOptions[], matchOptions[];
303 char *engineNr[] = { N_("First Engine"), N_("Second Engine"), NULL };
304 char *engineList[100] = {" "}, *engineMnemonic[100] = {""};
306 int AppendText(Option *opt, char *s)
311 GetWidgetText(opt, &v);
313 t.ptr = s; t.firstPos = 0; t.length = strlen(s); t.format = XawFmt8Bit;
314 XawTextReplace(opt->handle, len, len, &t);
318 void AddLine(Option *opt, char *s)
321 AppendText(opt, "\n");
324 void AddToTourney(int n)
326 GenericReadout(4); // selected engine
327 AddLine(&matchOptions[3], engineChoice);
332 ASSIGN(appData.participants, engineName);
333 if(!CreateTourney(tfName) || matchMode) return matchMode || !appData.participants[0];
334 PopDown(0); // early popdown to prevent FreezeUI called through MatchEvent from causing XtGrab warning
335 MatchEvent(2); // start tourney
339 void ReplaceParticipant()
342 Substitute(strdup(engineName), True);
345 void UpgradeParticipant()
348 Substitute(strdup(engineName), False);
351 Option matchOptions[] = {
352 { 0, 0, 0, NULL, (void*) &tfName, ".trn", NULL, FileName, N_("Tournament file:") },
353 { 0, 0, 0, NULL, (void*) &appData.roundSync, "", NULL, CheckBox, N_("Sync after round (for concurrent playing of a single") },
354 { 0, 0, 0, NULL, (void*) &appData.cycleSync, "", NULL, CheckBox, N_("Sync after cycle tourney with multiple XBoards)") },
355 { 0xD, 150, 0, NULL, (void*) &engineName, "", NULL, TextBox, N_("Tourney participants:") },
356 { 0, 1, 0, NULL, (void*) &engineChoice, (char*) (engineMnemonic+1), (engineMnemonic+1), ComboBox, N_("Select Engine:") },
357 { 0, 0, 10, NULL, (void*) &appData.tourneyType, "", NULL, Spin, N_("Tourney type (0 = round-robin, 1 = gauntlet):") },
358 { 0, 1, 1000000000, NULL, (void*) &appData.tourneyCycles, "", NULL, Spin, N_("Number of tourney cycles (or Swiss rounds):") },
359 { 0, 1, 1000000000, NULL, (void*) &appData.defaultMatchGames, "", NULL, Spin, N_("Default Number of Games in Match (or Pairing):") },
360 { 0, 0, 1000000000, NULL, (void*) &appData.matchPause, "", NULL, Spin, N_("Pause between Match Games (msec):") },
361 { 0, 0, 0, NULL, (void*) &appData.saveGameFile, ".pgn", NULL, FileName, N_("Save Tourney Games on:") },
362 { 0, 0, 0, NULL, (void*) &appData.loadGameFile, ".pgn", NULL, FileName, N_("Game File with Opening Lines:") },
363 { 0, -2, 1000000000, NULL, (void*) &appData.loadGameIndex, "", NULL, Spin, N_("Game Number (-1 or -2 = Auto-Increment):") },
364 { 0, 0, 0, NULL, (void*) &appData.loadPositionFile, ".fen", NULL, FileName, N_("File with Start Positions:") },
365 { 0, -2, 1000000000, NULL, (void*) &appData.loadPositionIndex, "", NULL, Spin, N_("Position Number (-1 or -2 = Auto-Increment):") },
366 { 0, 0, 1000000000, NULL, (void*) &appData.rewindIndex, "", NULL, Spin, N_("Rewind Index after this many Games (0 = never):") },
367 { 0, 0, 0, NULL, (void*) &appData.defNoBook, "", NULL, CheckBox, N_("Disable own engine books by default") },
368 { 0, 0, 0, NULL, (void*) &ReplaceParticipant, NULL, NULL, Button, N_("Replace Engine") },
369 { 0, 1, 0, NULL, (void*) &UpgradeParticipant, NULL, NULL, Button, N_("Upgrade Engine") },
370 { 0, 1, 0, NULL, (void*) &MatchOK, "", NULL, EndMark , "" }
373 int GeneralOptionsOK(int n)
375 int newPonder = appData.ponderNextMove;
376 appData.ponderNextMove = oldPonder;
377 PonderNextMoveEvent(newPonder);
381 Option generalOptions[] = {
382 { 0, 0, 0, NULL, (void*) &appData.whitePOV, "", NULL, CheckBox, N_("Absolute Analysis Scores") },
383 { 0, 0, 0, NULL, (void*) &appData.sweepSelect, "", NULL, CheckBox, N_("Almost Always Queen (Detour Under-Promote)") },
384 { 0, 0, 0, NULL, (void*) &appData.animateDragging, "", NULL, CheckBox, N_("Animate Dragging") },
385 { 0, 0, 0, NULL, (void*) &appData.animate, "", NULL, CheckBox, N_("Animate Moving") },
386 { 0, 0, 0, NULL, (void*) &appData.autoCallFlag, "", NULL, CheckBox, N_("Auto Flag") },
387 { 0, 0, 0, NULL, (void*) &appData.autoFlipView, "", NULL, CheckBox, N_("Auto Flip View") },
388 { 0, 0, 0, NULL, (void*) &appData.blindfold, "", NULL, CheckBox, N_("Blindfold") },
389 { 0, 0, 0, NULL, (void*) &appData.dropMenu, "", NULL, CheckBox, N_("Drop Menu") },
390 { 0, 0, 0, NULL, (void*) &appData.hideThinkingFromHuman, "", NULL, CheckBox, N_("Hide Thinking from Human") },
391 { 0, 0, 0, NULL, (void*) &appData.highlightDragging, "", NULL, CheckBox, N_("Highlight Dragging (Show Move Targets)") },
392 { 0, 0, 0, NULL, (void*) &appData.highlightLastMove, "", NULL, CheckBox, N_("Highlight Last Move") },
393 { 0, 0, 0, NULL, (void*) &appData.highlightMoveWithArrow, "", NULL, CheckBox, N_("Highlight with Arrow") },
394 { 0, 0, 0, NULL, (void*) &appData.ringBellAfterMoves, "", NULL, CheckBox, N_("Move Sound") },
395 { 0, 0, 0, NULL, (void*) &appData.oneClick, "", NULL, CheckBox, N_("One-Click Moving") },
396 { 0, 0, 0, NULL, (void*) &appData.periodicUpdates, "", NULL, CheckBox, N_("Periodic Updates (in Analysis Mode)") },
397 { 0, 0, 0, NULL, (void*) &appData.ponderNextMove, "", NULL, CheckBox, N_("Ponder Next Move") },
398 { 0, 0, 0, NULL, (void*) &appData.popupExitMessage, "", NULL, CheckBox, N_("Popup Exit Messages") },
399 { 0, 0, 0, NULL, (void*) &appData.popupMoveErrors, "", NULL, CheckBox, N_("Popup Move Errors") },
400 { 0, 0, 0, NULL, (void*) &appData.showEvalInMoveHistory, "", NULL, CheckBox, N_("Scores in Move List") },
401 { 0, 0, 0, NULL, (void*) &appData.showCoords, "", NULL, CheckBox, N_("Show Coordinates") },
402 { 0, 0, 0, NULL, (void*) &appData.markers, "", NULL, CheckBox, N_("Show Target Squares") },
403 { 0, 0, 0, NULL, (void*) &appData.testLegality, "", NULL, CheckBox, N_("Test Legality") },
404 { 0, 0, 10, NULL, (void*) &appData.flashCount, "", NULL, Spin, N_("Flash Moves (0 = no flashing):") },
405 { 0, 1, 10, NULL, (void*) &appData.flashRate, "", NULL, Spin, N_("Flash Rate (high = fast):") },
406 { 0, 5, 100,NULL, (void*) &appData.animSpeed, "", NULL, Spin, N_("Animation Speed (high = slow):") },
407 { 0, 1, 5, NULL, (void*) &appData.zoom, "", NULL, Spin, N_("Zoom factor in Evaluation Graph:") },
408 { 0, 0, 0, NULL, (void*) &GeneralOptionsOK, "", NULL, EndMark , "" }
413 VariantClass v = currentOption[n].value;
414 if(!appData.noChessProgram) {
415 char *name = VariantName(v), buf[MSG_SIZ];
416 if (first.protocolVersion > 1 && StrStr(first.variants, name) == NULL) {
417 /* [HGM] in protocol 2 we check if variant is suported by engine */
418 snprintf(buf, MSG_SIZ, _("Variant %s not supported by %s"), name, first.tidy);
419 DisplayError(buf, 0);
420 return; /* ignore OK if first engine does not support it */
422 if (second.initDone && second.protocolVersion > 1 && StrStr(second.variants, name) == NULL) {
423 snprintf(buf, MSG_SIZ, _("Warning: second engine (%s) does not support this!"), second.tidy);
424 DisplayError(buf, 0); /* use of second engine is optional; only warn user */
428 GenericReadout(-1); // make sure ranks and file settings are read
430 gameInfo.variant = v;
431 appData.variant = VariantName(v);
433 shuffleOpenings = FALSE; /* [HGM] shuffle: possible shuffle reset when we switch */
434 startedFromPositionFile = FALSE; /* [HGM] loadPos: no longer valid in new variant */
435 appData.pieceToCharTable = NULL;
436 appData.pieceNickNames = "";
437 appData.colorNickNames = "";
443 Option variantDescriptors[] = {
444 { VariantNormal, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("normal")},
445 { VariantFairy, 1, 135, NULL, (void*) &Pick, "#BFBFBF", NULL, Button, N_("fairy")},
446 { VariantFischeRandom, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("FRC")},
447 { VariantSChess, 1, 135, NULL, (void*) &Pick, "#FFBFBF", NULL, Button, N_("Seirawan")},
448 { VariantWildCastle, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("wild castle")},
449 { VariantSuper, 1, 135, NULL, (void*) &Pick, "#FFBFBF", NULL, Button, N_("Superchess")},
450 { VariantNoCastle, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("no castle")},
451 { VariantCrazyhouse, 1, 135, NULL, (void*) &Pick, "#FFBFBF", NULL, Button, N_("crazyhouse")},
452 { VariantKnightmate, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("knightmate")},
453 { VariantBughouse, 1, 135, NULL, (void*) &Pick, "#FFBFBF", NULL, Button, N_("bughouse")},
454 { VariantBerolina, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("berolina")},
455 { VariantShogi, 1, 135, NULL, (void*) &Pick, "#BFFFFF", NULL, Button, N_("shogi (9x9)")},
456 { VariantCylinder, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("cylinder")},
457 { VariantXiangqi, 1, 135, NULL, (void*) &Pick, "#BFFFFF", NULL, Button, N_("xiangqi (9x10)")},
458 { VariantShatranj, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("shatranj")},
459 { VariantCourier, 1, 135, NULL, (void*) &Pick, "#BFFFBF", NULL, Button, N_("courier (12x8)")},
460 { VariantMakruk, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("makruk")},
461 { VariantGreat, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("Great Shatranj (10x8)")},
462 { VariantAtomic, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("atomic")},
463 { VariantFalcon, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("falcon (10x8)")},
464 { VariantTwoKings, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("two kings")},
465 { VariantCapablanca, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("Capablanca (10x8)")},
466 { Variant3Check, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("3-checks")},
467 { VariantGothic, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("Gothic (10x8)")},
468 { VariantSuicide, 0, 135, NULL, (void*) &Pick, "#FFFFBF", NULL, Button, N_("suicide")},
469 { VariantJanus, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("janus (10x8)")},
470 { VariantGiveaway, 0, 135, NULL, (void*) &Pick, "#FFFFBF", NULL, Button, N_("give-away")},
471 { VariantCapaRandom, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("CRC (10x8)")},
472 { VariantLosers, 0, 135, NULL, (void*) &Pick, "#FFFFBF", NULL, Button, N_("losers")},
473 { VariantGrand, 1, 135, NULL, (void*) &Pick, "#5070FF", NULL, Button, N_("grand (10x10)")},
474 { VariantSpartan, 0, 135, NULL, (void*) &Pick, "#FF0000", NULL, Button, N_("Spartan")},
475 { 0, 0, 0, NULL, NULL, NULL, NULL, Label, N_("Board size ( -1 = default for selected variant):")},
476 { 0, -1, BOARD_RANKS-1, NULL, (void*) &appData.NrRanks, "", NULL, Spin, N_("Number of Board Ranks:") },
477 { 0, -1, BOARD_FILES, NULL, (void*) &appData.NrFiles, "", NULL, Spin, N_("Number of Board Files:") },
478 { 0, -1, BOARD_RANKS-1, NULL, (void*) &appData.holdingsSize, "", NULL, Spin, N_("Holdings Size:") },
479 { 0, 0, 0, NULL, NULL, NULL, NULL, Label,
480 N_("WARNING: variants with un-orthodox\n"
481 "pieces only have built-in bitmaps\n"
482 "for -boardSize middling, bulky and\n"
483 "petite, and substitute king or amazon\n"
484 "for missing bitmaps. (See manual.)")},
485 { 0, 2, 0, NULL, NULL, "", NULL, EndMark , "" }
488 int CommonOptionsOK(int n)
490 int newPonder = appData.ponderNextMove;
491 // make sure changes are sent to first engine by re-initializing it
492 // if it was already started pre-emptively at end of previous game
493 if(gameMode == BeginningOfGame) Reset(True, True); else {
494 // Some changed setting need immediate sending always.
495 if(oldCores != appData.smpCores)
496 NewSettingEvent(False, &(first.maxCores), "cores", appData.smpCores);
497 appData.ponderNextMove = oldPonder;
498 PonderNextMoveEvent(newPonder);
503 Option commonEngineOptions[] = {
504 { 0, 0, 0, NULL, (void*) &appData.ponderNextMove, "", NULL, CheckBox, N_("Ponder Next Move") },
505 { 0, 0, 1000, NULL, (void*) &appData.smpCores, "", NULL, Spin, N_("Maximum Number of CPUs per Engine:") },
506 { 0, 0, 0, NULL, (void*) &appData.polyglotDir, "", NULL, PathName, N_("Polygot Directory:") },
507 { 0, 0, 16000, NULL, (void*) &appData.defaultHashSize, "", NULL, Spin, N_("Hash-Table Size (MB):") },
508 { 0, 0, 0, NULL, (void*) &appData.defaultPathEGTB, "", NULL, PathName, N_("Nalimov EGTB Path:") },
509 { 0, 0, 1000, NULL, (void*) &appData.defaultCacheSizeEGTB, "", NULL, Spin, N_("EGTB Cache Size (MB):") },
510 { 0, 0, 0, NULL, (void*) &appData.usePolyglotBook, "", NULL, CheckBox, N_("Use GUI Book") },
511 { 0, 0, 0, NULL, (void*) &appData.polyglotBook, ".bin", NULL, FileName, N_("Opening-Book Filename:") },
512 { 0, 0, 100, NULL, (void*) &appData.bookDepth, "", NULL, Spin, N_("Book Depth (moves):") },
513 { 0, 0, 100, NULL, (void*) &appData.bookStrength, "", NULL, Spin, N_("Book Variety (0) vs. Strength (100):") },
514 { 0, 0, 0, NULL, (void*) &appData.firstHasOwnBookUCI, "", NULL, CheckBox, N_("Engine #1 Has Own Book") },
515 { 0, 0, 0, NULL, (void*) &appData.secondHasOwnBookUCI, "", NULL, CheckBox, N_("Engine #2 Has Own Book ") },
516 { 0, 1, 0, NULL, (void*) &CommonOptionsOK, "", NULL, EndMark , "" }
519 Option adjudicationOptions[] = {
520 { 0, 0, 0, NULL, (void*) &appData.checkMates, "", NULL, CheckBox, N_("Detect all Mates") },
521 { 0, 0, 0, NULL, (void*) &appData.testClaims, "", NULL, CheckBox, N_("Verify Engine Result Claims") },
522 { 0, 0, 0, NULL, (void*) &appData.materialDraws, "", NULL, CheckBox, N_("Draw if Insufficient Mating Material") },
523 { 0, 0, 0, NULL, (void*) &appData.trivialDraws, "", NULL, CheckBox, N_("Adjudicate Trivial Draws (3-Move Delay)") },
524 { 0, 0, 100, NULL, (void*) &appData.ruleMoves, "", NULL, Spin, N_("N-Move Rule:") },
525 { 0, 0, 6, NULL, (void*) &appData.drawRepeats, "", NULL, Spin, N_("N-fold Repeats:") },
526 { 0, 0, 1000, NULL, (void*) &appData.adjudicateDrawMoves, "", NULL, Spin, N_("Draw after N Moves Total:") },
527 { 0,-5000, 0, NULL, (void*) &appData.adjudicateLossThreshold, "", NULL, Spin, N_("Win / Loss Threshold:") },
528 { 0, 0, 0, NULL, (void*) &first.scoreIsAbsolute, "", NULL, CheckBox, N_("Negate Score of Engine #1") },
529 { 0, 0, 0, NULL, (void*) &second.scoreIsAbsolute, "", NULL, CheckBox, N_("Negate Score of Engine #2") },
530 { 0, 1, 0, NULL, NULL, "", NULL, EndMark , "" }
533 int IcsOptionsOK(int n)
535 ParseIcsTextColors();
539 Option icsOptions[] = {
540 { 0, 0, 0, NULL, (void*) &appData.autoKibitz, "", NULL, CheckBox, N_("Auto-Kibitz") },
541 { 0, 0, 0, NULL, (void*) &appData.autoComment, "", NULL, CheckBox, N_("Auto-Comment") },
542 { 0, 0, 0, NULL, (void*) &appData.autoObserve, "", NULL, CheckBox, N_("Auto-Observe") },
543 { 0, 0, 0, NULL, (void*) &appData.autoRaiseBoard, "", NULL, CheckBox, N_("Auto-Raise Board") },
544 { 0, 0, 0, NULL, (void*) &appData.bgObserve, "", NULL, CheckBox, N_("Background Observe while Playing") },
545 { 0, 0, 0, NULL, (void*) &appData.dualBoard, "", NULL, CheckBox, N_("Dual Board for Background-Observed Game") },
546 { 0, 0, 0, NULL, (void*) &appData.getMoveList, "", NULL, CheckBox, N_("Get Move List") },
547 { 0, 0, 0, NULL, (void*) &appData.quietPlay, "", NULL, CheckBox, N_("Quiet Play") },
548 { 0, 0, 0, NULL, (void*) &appData.seekGraph, "", NULL, CheckBox, N_("Seek Graph") },
549 { 0, 0, 0, NULL, (void*) &appData.autoRefresh, "", NULL, CheckBox, N_("Auto-Refresh Seek Graph") },
550 { 0, 0, 0, NULL, (void*) &appData.premove, "", NULL, CheckBox, N_("Premove") },
551 { 0, 0, 0, NULL, (void*) &appData.premoveWhite, "", NULL, CheckBox, N_("Premove for White") },
552 { 0, 0, 0, NULL, (void*) &appData.premoveWhiteText, "", NULL, TextBox, N_("First White Move:") },
553 { 0, 0, 0, NULL, (void*) &appData.premoveBlack, "", NULL, CheckBox, N_("Premove for Black") },
554 { 0, 0, 0, NULL, (void*) &appData.premoveBlackText, "", NULL, TextBox, N_("First Black Move:") },
555 { 0, 0, 0, NULL, NULL, NULL, NULL, Break, "" },
556 { 0, 0, 0, NULL, (void*) &appData.icsAlarm, "", NULL, CheckBox, N_("Alarm") },
557 { 0, 0, 100000000, NULL, (void*) &appData.icsAlarmTime, "", NULL, Spin, N_("Alarm Time (msec):") },
558 //{ 0, 0, 0, NULL, (void*) &appData.chatBoxes, "", NULL, TextBox, N_("Startup Chat Boxes:") },
559 { 0, 0, 0, NULL, (void*) &appData.colorize, "", NULL, CheckBox, N_("Colorize Messages") },
560 { 0, 0, 0, NULL, (void*) &appData.colorShout, "", NULL, TextBox, N_("Shout Text Colors:") },
561 { 0, 0, 0, NULL, (void*) &appData.colorSShout, "", NULL, TextBox, N_("S-Shout Text Colors:") },
562 { 0, 0, 0, NULL, (void*) &appData.colorChannel1, "", NULL, TextBox, N_("Channel #1 Text Colors:") },
563 { 0, 0, 0, NULL, (void*) &appData.colorChannel, "", NULL, TextBox, N_("Other Channel Text Colors:") },
564 { 0, 0, 0, NULL, (void*) &appData.colorKibitz, "", NULL, TextBox, N_("Kibitz Text Colors:") },
565 { 0, 0, 0, NULL, (void*) &appData.colorTell, "", NULL, TextBox, N_("Tell Text Colors:") },
566 { 0, 0, 0, NULL, (void*) &appData.colorChallenge, "", NULL, TextBox, N_("Challenge Text Colors:") },
567 { 0, 0, 0, NULL, (void*) &appData.colorRequest, "", NULL, TextBox, N_("Request Text Colors:") },
568 { 0, 0, 0, NULL, (void*) &appData.colorSeek, "", NULL, TextBox, N_("Seek Text Colors:") },
569 { 0, 0, 0, NULL, (void*) &IcsOptionsOK, "", NULL, EndMark , "" }
572 char *modeNames[] = { N_("Exact position match"), N_("Shown position is subset"), N_("Same material with exactly same Pawn chain"),
573 N_("Same material"), N_("Material range (top board half optional)"), N_("Material difference (optional stuff balanced)"), NULL };
574 char *modeValues[] = { "1", "2", "3", "4", "5", "6" };
579 appData.searchMode = atoi(searchMode);
583 Option loadOptions[] = {
584 { 0, 0, 0, NULL, (void*) &appData.autoDisplayTags, "", NULL, CheckBox, N_("Auto-Display Tags") },
585 { 0, 0, 0, NULL, (void*) &appData.autoDisplayComment, "", NULL, CheckBox, N_("Auto-Display Comment") },
586 { 0, 0, 0, NULL, NULL, NULL, NULL, Label, N_("Auto-Play speed of loaded games\n(0 = instant, -1 = off):") },
587 { 0, -1, 10000000, NULL, (void*) &appData.timeDelay, "", NULL, Fractional, N_("Seconds per Move:") },
588 { 0, 0, 0, NULL, NULL, NULL, NULL, Label, N_("\nThresholds for position filtering in game list:") },
589 { 0, 0, 5000, NULL, (void*) &appData.eloThreshold1, "", NULL, Spin, N_("Elo of strongest player at least:") },
590 { 0, 0, 5000, NULL, (void*) &appData.eloThreshold2, "", NULL, Spin, N_("Elo of weakest player at least:") },
591 { 0, 0, 5000, NULL, (void*) &appData.dateThreshold, "", NULL, Spin, N_("No games before year:") },
592 { 0, 1, 50, NULL, (void*) &appData.stretch, "", NULL, Spin, N_("Minimum nr consecutive positions:") },
593 { 1, 0, 180, NULL, (void*) &searchMode, (char*) modeNames, modeValues, ComboBox, N_("Seach mode:") },
594 { 0, 0, 0, NULL, (void*) &appData.ignoreColors, "", NULL, CheckBox, N_("Also match reversed colors") },
595 { 0, 0, 0, NULL, (void*) &appData.findMirror, "", NULL, CheckBox, N_("Also match left-right flipped position") },
596 { 0, 0, 0, NULL, (void*) &LoadOptionsOK, "", NULL, EndMark , "" }
599 Option saveOptions[] = {
600 { 0, 0, 0, NULL, (void*) &appData.autoSaveGames, "", NULL, CheckBox, N_("Auto-Save Games") },
601 { 0, 0, 0, NULL, (void*) &appData.saveGameFile, ".pgn", NULL, FileName, N_("Save Games on File:") },
602 { 0, 0, 0, NULL, (void*) &appData.savePositionFile, ".fen", NULL, FileName, N_("Save Final Positions on File:") },
603 { 0, 0, 0, NULL, (void*) &appData.pgnEventHeader, "", NULL, TextBox, N_("PGN Event Header:") },
604 { 0, 0, 0, NULL, (void*) &appData.oldSaveStyle, "", NULL, CheckBox, N_("Old Save Style (as opposed to PGN)") },
605 { 0, 0, 0, NULL, (void*) &appData.saveExtendedInfoInPGN, "", NULL, CheckBox, N_("Save Score/Depth Info in PGN") },
606 { 0, 0, 0, NULL, (void*) &appData.saveOutOfBookInfo, "", NULL, CheckBox, N_("Save Out-of-Book Info in PGN ") },
607 { 0, 1, 0, NULL, NULL, "", NULL, EndMark , "" }
610 char *soundNames[] = {
613 N_("Above WAV File"),
628 char *soundFiles[] = { // sound files corresponding to above names
631 "*", // kludge alert: as first thing in the dialog readout this is replaced with the user-given .WAV filename
649 if(soundFiles[values[3]]) PlaySound(soundFiles[values[3]]);
652 Option soundOptions[] = {
653 { 0, 0, 0, NULL, (void*) &appData.soundProgram, "", NULL, TextBox, N_("Sound Program:") },
654 { 0, 0, 0, NULL, (void*) &appData.soundDirectory, "", NULL, PathName, N_("Sounds Directory:") },
655 { 0, 0, 0, NULL, (void*) (soundFiles+2) /* kludge! */, ".wav", NULL, FileName, N_("User WAV File:") },
656 { 0, 0, 0, NULL, (void*) &trialSound, (char*) soundNames, soundFiles, ComboBox, N_("Try-Out Sound:") },
657 { 0, 1, 0, NULL, (void*) &Test, NULL, NULL, Button, N_("Play") },
658 { 0, 0, 0, NULL, (void*) &appData.soundMove, (char*) soundNames, soundFiles, ComboBox, N_("Move:") },
659 { 0, 0, 0, NULL, (void*) &appData.soundIcsWin, (char*) soundNames, soundFiles, ComboBox, N_("Win:") },
660 { 0, 0, 0, NULL, (void*) &appData.soundIcsLoss, (char*) soundNames, soundFiles, ComboBox, N_("Lose:") },
661 { 0, 0, 0, NULL, (void*) &appData.soundIcsDraw, (char*) soundNames, soundFiles, ComboBox, N_("Draw:") },
662 { 0, 0, 0, NULL, (void*) &appData.soundIcsUnfinished, (char*) soundNames, soundFiles, ComboBox, N_("Unfinished:") },
663 { 0, 0, 0, NULL, (void*) &appData.soundIcsAlarm, (char*) soundNames, soundFiles, ComboBox, N_("Alarm:") },
664 { 0, 0, 0, NULL, (void*) &appData.soundShout, (char*) soundNames, soundFiles, ComboBox, N_("Shout:") },
665 { 0, 0, 0, NULL, (void*) &appData.soundSShout, (char*) soundNames, soundFiles, ComboBox, N_("S-Shout:") },
666 { 0, 0, 0, NULL, (void*) &appData.soundChannel, (char*) soundNames, soundFiles, ComboBox, N_("Channel:") },
667 { 0, 0, 0, NULL, (void*) &appData.soundChannel1, (char*) soundNames, soundFiles, ComboBox, N_("Channel 1:") },
668 { 0, 0, 0, NULL, (void*) &appData.soundTell, (char*) soundNames, soundFiles, ComboBox, N_("Tell:") },
669 { 0, 0, 0, NULL, (void*) &appData.soundKibitz, (char*) soundNames, soundFiles, ComboBox, N_("Kibitz:") },
670 { 0, 0, 0, NULL, (void*) &appData.soundChallenge, (char*) soundNames, soundFiles, ComboBox, N_("Challenge:") },
671 { 0, 0, 0, NULL, (void*) &appData.soundRequest, (char*) soundNames, soundFiles, ComboBox, N_("Request:") },
672 { 0, 0, 0, NULL, (void*) &appData.soundSeek, (char*) soundNames, soundFiles, ComboBox, N_("Seek:") },
673 { 0, 1, 0, NULL, NULL, "", NULL, EndMark , "" }
676 void SetColor(char *colorName, Option *box)
681 if (!appData.monoMode) {
682 vFrom.addr = (caddr_t) colorName;
683 vFrom.size = strlen(colorName);
684 XtConvert(shellWidget, XtRString, &vFrom, XtRPixel, &vTo);
685 if (vTo.addr == NULL) {
686 buttonColor = (Pixel) -1;
688 buttonColor = *(Pixel *) vTo.addr;
690 } else buttonColor = (Pixel) 0;
691 XtSetArg(args[0], XtNbackground, buttonColor);;
692 XtSetValues(box->handle, args, 1);
695 void SetColorText(int n, char *buf)
697 SetWidgetText(¤tOption[n-1], buf, 0);
698 SetColor(buf, ¤tOption[n]);
703 SetColorText(n, (char*) currentOption[n].choice);
706 void RefreshColor(int source, int n)
708 int col, j, r, g, b, step = 10;
709 char *s, buf[MSG_SIZ]; // color string
710 GetWidgetText(¤tOption[source], &s);
711 if(sscanf(s, "#%x", &col) != 1) return; // malformed
712 b = col & 0xFF; g = col & 0xFF00; r = col & 0xFF0000;
714 case 1: r += 0x10000*step;break;
715 case 2: g += 0x100*step; break;
716 case 3: b += step; break;
717 case 4: r -= 0x10000*step; g -= 0x100*step; b -= step; break;
719 if(r < 0) r = 0; if(g < 0) g = 0; if(b < 0) b = 0;
720 if(r > 0xFF0000) r = 0xFF0000; if(g > 0xFF00) g = 0xFF00; if(b > 0xFF) b = 0xFF;
722 snprintf(buf, MSG_SIZ, "#%06x", col);
723 for(j=1; j<7; j++) if(buf[j] >= 'a') buf[j] -= 32; // capitalize
724 SetColorText(source+1, buf);
727 void ColorChanged(Widget w, XtPointer data, XEvent *event, Boolean *b)
730 if ( (XLookupString(&(event->xkey), buf, 2, NULL, NULL) == 1) && *buf == '\r' )
731 RefreshColor((int)(intptr_t) data, 0);
734 void AdjustColor(int i)
736 int n = currentOption[i].value;
737 RefreshColor(i-n-1, n);
740 int BoardOptionsOK(int n)
742 if(appData.overrideLineGap >= 0) lineGap = appData.overrideLineGap; else lineGap = defaultLineGap;
743 useImages = useImageSqs = 0;
744 MakeColors(); CreateGCs(True);
746 InitDrawingSizes(-1, 0);
747 DrawPosition(True, NULL);
751 Option boardOptions[] = {
752 { 0, 0, 70, NULL, (void*) &appData.whitePieceColor, "", NULL, TextBox, N_("White Piece Color:") },
753 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#FFFFCC", Button, " " },
754 { 1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("R") },
755 { 2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("G") },
756 { 3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("B") },
757 { 4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("D") },
758 { 0, 0, 70, NULL, (void*) &appData.blackPieceColor, "", NULL, TextBox, N_("Black Piece Color:") },
759 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#202020", Button, " " },
760 { 1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("R") },
761 { 2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("G") },
762 { 3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("B") },
763 { 4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("D") },
764 { 0, 0, 70, NULL, (void*) &appData.lightSquareColor, "", NULL, TextBox, N_("Light Square Color:") },
765 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#C8C365", Button, " " },
766 { 1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("R") },
767 { 2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("G") },
768 { 3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("B") },
769 { 4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("D") },
770 { 0, 0, 70, NULL, (void*) &appData.darkSquareColor, "", NULL, TextBox, N_("Dark Square Color:") },
771 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#77A26D", Button, " " },
772 { 1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("R") },
773 { 2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("G") },
774 { 3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("B") },
775 { 4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("D") },
776 { 0, 0, 70, NULL, (void*) &appData.highlightSquareColor, "", NULL, TextBox, N_("Highlight Color:") },
777 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#FFFF00", Button, " " },
778 { 1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("R") },
779 { 2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("G") },
780 { 3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("B") },
781 { 4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("D") },
782 { 0, 0, 70, NULL, (void*) &appData.premoveHighlightColor, "", NULL, TextBox, N_("Premove Highlight Color:") },
783 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#FF0000", Button, " " },
784 { 1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("R") },
785 { 2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("G") },
786 { 3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("B") },
787 { 4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("D") },
788 { 0, 0, 0, NULL, (void*) &appData.upsideDown, "", NULL, CheckBox, N_("Flip Pieces Shogi Style (Colored buttons restore default)") },
789 //{ 0, 0, 0, NULL, (void*) &appData.allWhite, "", NULL, CheckBox, N_("Use Outline Pieces for Black") },
790 { 0, 0, 0, NULL, (void*) &appData.monoMode, "", NULL, CheckBox, N_("Mono Mode") },
791 { 0,-1, 5, NULL, (void*) &appData.overrideLineGap, "", NULL, Spin, N_("Line Gap ( -1 = default for board size):") },
792 { 0, 0, 0, NULL, (void*) &appData.useBitmaps, "", NULL, CheckBox, N_("Use Board Textures") },
793 { 0, 0, 0, NULL, (void*) &appData.liteBackTextureFile, ".xpm", NULL, FileName, N_("Light-Squares Texture File:") },
794 { 0, 0, 0, NULL, (void*) &appData.darkBackTextureFile, ".xpm", NULL, FileName, N_("Dark-Squares Texture File:") },
795 { 0, 0, 0, NULL, (void*) &appData.bitmapDirectory, "", NULL, PathName, N_("Directory with Bitmap Pieces:") },
796 { 0, 0, 0, NULL, (void*) &appData.pixmapDirectory, "", NULL, PathName, N_("Directory with Pixmap Pieces:") },
797 { 0, 0, 0, NULL, (void*) &BoardOptionsOK, "", NULL, EndMark , "" }
800 int GenericReadout(int selected)
805 char buf[MSG_SIZ], **dest;
807 for(i=0; ; i++) { // send all options that had to be OK-ed to engine
808 if(selected >= 0) { if(i < selected) continue; else if(i > selected) break; }
809 switch(currentOption[i].type) {
813 XtSetArg(args[0], XtNstring, &val);
814 XtGetValues(currentOption[i].handle, args, 1);
815 dest = currentCps ? &(currentOption[i].textValue) : (char**) currentOption[i].target;
816 if(*dest == NULL || strcmp(*dest, val)) {
818 snprintf(buf, MSG_SIZ, "option %s=%s\n", currentOption[i].name, val);
819 SendToProgram(buf, currentCps);
821 if(*dest) free(*dest);
822 *dest = malloc(strlen(val)+1);
824 safeStrCpy(*dest, val, MSG_SIZ - (*dest - currentOption[i].name)); // copy text there
829 XtSetArg(args[0], XtNstring, &val);
830 XtGetValues(currentOption[i].handle, args, 1);
831 sscanf(val, "%f", &x);
832 if(x > currentOption[i].max) x = currentOption[i].max;
833 if(x < currentOption[i].min) x = currentOption[i].min;
834 if(currentOption[i].type == Fractional)
835 *(float*) currentOption[i].target = x; // engines never have float options!
836 else if(currentOption[i].value != x) {
837 currentOption[i].value = x;
839 snprintf(buf, MSG_SIZ, "option %s=%.0f\n", currentOption[i].name, x);
840 SendToProgram(buf, currentCps);
841 } else *(int*) currentOption[i].target = x;
846 XtSetArg(args[0], XtNstate, &j);
847 XtGetValues(currentOption[i].handle, args, 1);
848 if(currentOption[i].value != j) {
849 currentOption[i].value = j;
851 snprintf(buf, MSG_SIZ, "option %s=%d\n", currentOption[i].name, j);
852 SendToProgram(buf, currentCps);
853 } else *(Boolean*) currentOption[i].target = j;
857 val = ((char**)currentOption[i].choice)[values[i]];
859 if(currentOption[i].value == values[i]) break; // not changed
860 currentOption[i].value = values[i];
861 snprintf(buf, MSG_SIZ, "option %s=%s\n", currentOption[i].name,
862 ((char**)currentOption[i].textValue)[values[i]]);
863 SendToProgram(buf, currentCps);
864 } else if(val && (*(char**) currentOption[i].target == NULL || strcmp(*(char**) currentOption[i].target, val))) {
865 if(*(char**) currentOption[i].target) free(*(char**) currentOption[i].target);
866 *(char**) currentOption[i].target = strdup(val);
870 if(currentOption[i].target) // callback for implementing necessary actions on OK (like redraw)
871 res = ((OKCallback*) currentOption[i].target)(i);
874 printf("GenericReadout: unexpected case in switch.\n");
881 if(currentOption[i].type == EndMark) break;
886 void GenericCallback(w, client_data, call_data)
888 XtPointer client_data, call_data;
893 int data = (intptr_t) client_data;
895 currentOption = dialogOptions[data>>16]; data &= 0xFFFF;
897 XtSetArg(args[0], XtNlabel, &name);
898 XtGetValues(w, args, 1);
900 if (strcmp(name, _("cancel")) == 0) {
904 if (strcmp(name, _("OK")) == 0) { // save buttons imply OK
905 if(GenericReadout(-1)) PopDown(data);
909 if(currentOption[data].type == SaveButton) GenericReadout(-1);
910 snprintf(buf, MSG_SIZ, "option %s\n", name);
911 SendToProgram(buf, currentCps);
912 } else ((ButtonCallback*) currentOption[data].target)(data);
915 static char *oneLiner = "<Key>Return: redraw-display()\n";
918 GenericPopUp(Option *option, char *title, int dlgNr)
921 Widget popup, layout, dialog=NULL, edit=NULL, form, last, b_ok, b_cancel, leftMargin = NULL, textField = NULL;
923 int x, y, i, j, height=999, width=1, h, c, w;
924 int win_x, win_y, maxWidth, maxTextWidth;
926 char def[MSG_SIZ], *msg;
927 static char pane[6] = "paneX";
928 Widget texts[100], forelast = NULL, anchor, widest, lastrow = NULL;
930 if(shellUp[dlgNr]) return 0; // already up
931 if(dlgNr && shells[dlgNr]) {
932 XtPopup(shells[dlgNr], XtGrabNone);
933 shellUp[dlgNr] = True;
937 dialogOptions[dlgNr] = option; // make available to callback
938 // post currentOption globally, so Spin and Combo callbacks can already use it
939 // WARNING: this kludge does not work for persistent dialogs, so that these cannot have spin or combo controls!
940 currentOption = option;
942 if(currentCps) { // Settings popup for engine: format through heuristic
943 int n = currentCps->nrOptions;
944 if(!n) { DisplayNote(_("Engine has no options")); currentCps = NULL; return 0; }
945 if(n > 50) width = 4; else if(n>24) width = 2; else width = 1;
946 height = n / width + 1;
947 if(n && (currentOption[n-1].type == Button || currentOption[n-1].type == SaveButton)) currentOption[n].min = 1; // OK on same line
948 currentOption[n].type = EndMark; currentOption[n].target = NULL; // delimit list by callback-less end mark
951 XtSetArg(args[i], XtNresizable, True); i++;
952 popup = shells[dlgNr] =
953 XtCreatePopupShell(title, transientShellWidgetClass,
954 shellWidget, args, i);
957 XtCreateManagedWidget(layoutName, formWidgetClass, popup,
958 layoutArgs, XtNumber(layoutArgs));
959 for(c=0; c<width; c++) {
962 XtCreateManagedWidget(pane, formWidgetClass, layout,
963 formArgs, XtNumber(formArgs));
965 XtSetArg(args[j], XtNfromHoriz, leftMargin); j++;
966 XtSetValues(form, args, j);
969 last = widest = NULL; anchor = lastrow;
970 for(h=0; h<height; h++) {
972 if(option[i].type == EndMark) break;
975 switch(option[i].type) {
977 snprintf(def, MSG_SIZ, "%.2f", *(float*)option[i].target);
978 option[i].value = *(float*)option[i].target;
981 if(!currentCps) option[i].value = *(int*)option[i].target;
982 snprintf(def, MSG_SIZ, "%d", option[i].value);
987 if(option[i].name[0]) {
989 XtSetArg(args[j], XtNfromVert, last); j++;
990 XtSetArg(args[j], XtNleft, XtChainLeft); j++;
991 XtSetArg(args[j], XtNright, XtChainLeft); j++;
992 XtSetArg(args[j], XtNborderWidth, 0); j++;
993 XtSetArg(args[j], XtNjustify, XtJustifyLeft); j++;
994 XtSetArg(args[j], XtNlabel, _(option[i].name)); j++;
996 dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
997 } else texts[h] = dialog = NULL;
998 w = option[i].type == Spin || option[i].type == Fractional ? 70 : option[i].max ? option[i].max : 205;
999 if(option[i].type == FileName || option[i].type == PathName) w -= 55;
1001 XtSetArg(args[j], XtNfromVert, last); j++;
1002 XtSetArg(args[j], XtNfromHoriz, dialog); j++;
1003 XtSetArg(args[j], XtNborderWidth, 1); j++;
1004 XtSetArg(args[j], XtNwidth, w); j++;
1005 if(option[i].type == TextBox && option[i].min) {
1006 XtSetArg(args[j], XtNheight, option[i].min); j++;
1007 if(option[i].value & 1) { XtSetArg(args[j], XtNscrollVertical, XawtextScrollAlways); j++; }
1008 if(option[i].value & 2) { XtSetArg(args[j], XtNscrollHorizontal, XawtextScrollAlways); j++; }
1009 if(option[i].value & 4) { XtSetArg(args[j], XtNautoFill, True); j++; }
1010 if(option[i].value & 8) { XtSetArg(args[j], XtNwrap, XawtextWrapWord); j++; }
1012 XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1013 XtSetArg(args[j], XtNeditType, XawtextEdit); j++;
1014 XtSetArg(args[j], XtNuseStringInPlace, False); j++;
1015 XtSetArg(args[j], XtNdisplayCaret, False); j++;
1016 XtSetArg(args[j], XtNright, XtChainRight); j++;
1017 XtSetArg(args[j], XtNresizable, True); j++;
1018 XtSetArg(args[j], XtNinsertPosition, 9999); j++;
1019 XtSetArg(args[j], XtNstring, option[i].type==Spin || option[i].type==Fractional ? def :
1020 currentCps ? option[i].textValue : *(char**)option[i].target); j++;
1022 option[i].handle = (void*)
1023 (textField = last = XtCreateManagedWidget("text", asciiTextWidgetClass, form, args, j));
1024 XtAddEventHandler(last, ButtonPressMask, False, SetFocus, (XtPointer) popup);
1025 if(option[i].min == 0 || option[i].type != TextBox)
1026 XtOverrideTranslations(last, XtParseTranslationTable(oneLiner));
1028 if(option[i].type == TextBox || option[i].type == Fractional) break;
1030 // add increment and decrement controls for spin
1032 XtSetArg(args[j], XtNfromVert, edit); j++;
1033 XtSetArg(args[j], XtNfromHoriz, last); j++;
1034 XtSetArg(args[j], XtNleft, XtChainRight); j++;
1035 XtSetArg(args[j], XtNright, XtChainRight); j++;
1036 if(option[i].type == FileName || option[i].type == PathName) {
1037 w = 50; msg = _("browse");
1039 XtSetArg(args[j], XtNheight, 10); j++;
1042 XtSetArg(args[j], XtNwidth, w); j++;
1043 edit = XtCreateManagedWidget(msg, commandWidgetClass, form, args, j);
1044 XtAddCallback(edit, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i);
1046 if(option[i].type != Spin) break;
1049 XtSetArg(args[j], XtNfromVert, edit); j++;
1050 XtSetArg(args[j], XtNfromHoriz, last); j++;
1051 XtSetArg(args[j], XtNheight, 10); j++;
1052 XtSetArg(args[j], XtNwidth, 20); j++;
1053 XtSetArg(args[j], XtNleft, XtChainRight); j++;
1054 XtSetArg(args[j], XtNright, XtChainRight); j++;
1055 last = XtCreateManagedWidget("-", commandWidgetClass, form, args, j);
1056 XtAddCallback(last, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i);
1059 if(!currentCps) option[i].value = *(Boolean*)option[i].target;
1061 XtSetArg(args[j], XtNfromVert, last); j++;
1062 XtSetArg(args[j], XtNwidth, 10); j++;
1063 XtSetArg(args[j], XtNheight, 10); j++;
1064 XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1065 XtSetArg(args[j], XtNright, XtChainLeft); j++;
1066 XtSetArg(args[j], XtNstate, option[i].value); j++;
1067 option[i].handle = (void*)
1068 (dialog = XtCreateManagedWidget(" ", toggleWidgetClass, form, args, j));
1070 msg = option[i].name;
1071 if(*msg == NULLCHAR) msg = option[i].textValue;
1074 XtSetArg(args[j], XtNfromVert, last); j++;
1075 XtSetArg(args[j], XtNfromHoriz, option[i].type != Label ? dialog : NULL); j++;
1076 XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1077 XtSetArg(args[j], XtNborderWidth, 0); j++;
1078 XtSetArg(args[j], XtNjustify, XtJustifyLeft); j++;
1079 XtSetArg(args[j], XtNlabel, _(msg)); j++;
1080 last = XtCreateManagedWidget(msg, labelWidgetClass, form, args, j);
1081 if(option[i].type == CheckBox)
1082 XtAddEventHandler(last, ButtonPressMask, False, CheckCallback, (XtPointer)(intptr_t) i);
1087 XtSetArg(args[j], XtNfromVert, option[i].min & 1 ? lastrow : last); j++;
1088 XtSetArg(args[j], XtNlabel, _(option[i].name)); j++;
1089 if(option[i].min & 1) { XtSetArg(args[j], XtNfromHoriz, last); j++; }
1090 else { XtSetArg(args[j], XtNfromHoriz, NULL); j++; lastrow = forelast; }
1091 if(option[i].max) { XtSetArg(args[j], XtNwidth, option[i].max); j++; }
1092 if(option[i].textValue) { // special for buttons of New Variant dialog
1093 XtSetArg(args[j], XtNsensitive, appData.noChessProgram || option[i].value < 0
1094 || strstr(first.variants, VariantName(option[i].value))); j++;
1095 XtSetArg(args[j], XtNborderWidth, (gameInfo.variant == option[i].value)+1); j++;
1097 option[i].handle = (void*)
1098 (dialog = last = XtCreateManagedWidget(option[i].name, commandWidgetClass, form, args, j));
1099 if(option[i].choice && ((char*)option[i].choice)[0] == '#' && !currentCps) {
1100 SetColor( *(char**) option[i-1].target, &option[i]);
1101 XtAddEventHandler(option[i-1].handle, KeyReleaseMask, False, ColorChanged, (XtPointer)(intptr_t) i-1);
1103 XtAddCallback(last, XtNcallback, GenericCallback,
1104 (XtPointer)(intptr_t) i + (dlgNr<<16));
1105 if(option[i].textValue) SetColor( option[i].textValue, &option[i]);
1106 forelast = lastrow; // next button can go on same row
1110 XtSetArg(args[j], XtNfromVert, last); j++;
1111 XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1112 XtSetArg(args[j], XtNright, XtChainLeft); j++;
1113 XtSetArg(args[j], XtNborderWidth, 0); j++;
1114 XtSetArg(args[j], XtNjustify, XtJustifyLeft); j++;
1115 XtSetArg(args[j], XtNlabel, _(option[i].name)); j++;
1116 texts[h] = dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
1118 if(currentCps) option[i].choice = (char**) option[i].textValue; else {
1119 for(j=0; option[i].choice[j]; j++)
1120 if(*(char**)option[i].target && !strcmp(*(char**)option[i].target, option[i].choice[j])) break;
1121 option[i].value = j + (option[i].choice[j] == NULL);
1125 XtSetArg(args[j], XtNfromVert, last); j++;
1126 XtSetArg(args[j], XtNfromHoriz, dialog); j++;
1127 XtSetArg(args[j], XtNwidth, option[i].max && !currentCps ? option[i].max : 100); j++;
1128 XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1129 XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name)); j++;
1130 XtSetArg(args[j], XtNlabel, _(((char**)option[i].textValue)[option[i].value])); j++;
1131 option[i].handle = (void*)
1132 (last = XtCreateManagedWidget(" ", menuButtonWidgetClass, form, args, j));
1133 CreateComboPopup(last, option[i].name, i, (char **) option[i].textValue);
1134 values[i] = option[i].value;
1141 printf("GenericPopUp: unexpected case in switch.\n");
1146 // make an attempt to align all spins and textbox controls
1147 maxWidth = maxTextWidth = 0;
1148 for(h=0; h<height; h++) {
1150 if(option[i].type == EndMark) break;
1151 if(option[i].type == Spin || option[i].type == TextBox || option[i].type == ComboBox
1152 || option[i].type == PathName || option[i].type == FileName) {
1154 if(!texts[h]) continue;
1156 XtSetArg(args[j], XtNwidth, &w); j++;
1157 XtGetValues(texts[h], args, j);
1158 if(option[i].type == Spin) {
1159 if(w > maxWidth) maxWidth = w;
1162 if(w > maxTextWidth) maxTextWidth = w;
1163 if(!widest) widest = texts[h];
1167 if(maxTextWidth + 110 < maxWidth)
1168 maxTextWidth = maxWidth - 110;
1169 else maxWidth = maxTextWidth + 110;
1170 for(h=0; h<height; h++) {
1172 if(option[i].type == EndMark) break;
1173 if(!texts[h]) continue;
1175 if(option[i].type == Spin) {
1176 XtSetArg(args[j], XtNwidth, maxWidth); j++;
1177 XtSetValues(texts[h], args, j);
1179 if(option[i].type == TextBox || option[i].type == ComboBox || option[i].type == PathName || option[i].type == FileName) {
1180 XtSetArg(args[j], XtNwidth, maxTextWidth); j++;
1181 XtSetValues(texts[h], args, j);
1186 if(!(option[i].min & 2)) {
1188 if(option[i].min & 1) {
1189 for(j=i-1; option[j+1].min&1 && option[j].type == Button; j--) {
1190 XtSetArg(args[0], XtNtop, XtChainBottom);
1191 XtSetArg(args[1], XtNbottom, XtChainBottom);
1192 XtSetValues(option[j].handle, args, 2);
1194 if(option[j].type == TextBox && option[j].name[0] == NULLCHAR) {
1195 XtSetArg(args[0], XtNbottom, XtChainBottom);
1196 XtSetValues(option[j].handle, args, 1);
1199 XtSetArg(args[j], XtNfromHoriz, last); last = forelast;
1201 XtSetArg(args[j], XtNfromHoriz, widest ? widest : dialog); j++;
1202 XtSetArg(args[j], XtNfromVert, anchor ? anchor : last); j++;
1203 XtSetArg(args[j], XtNbottom, XtChainBottom); j++;
1204 XtSetArg(args[j], XtNtop, XtChainBottom); j++;
1205 XtSetArg(args[j], XtNleft, XtChainRight); j++;
1206 XtSetArg(args[j], XtNright, XtChainRight); j++;
1207 b_ok = XtCreateManagedWidget(_("OK"), commandWidgetClass, form, args, j);
1208 XtAddCallback(b_ok, XtNcallback, GenericCallback, (XtPointer)(intptr_t) dlgNr + (dlgNr<<16));
1210 XtSetArg(args[0], XtNfromHoriz, b_ok);
1211 b_cancel = XtCreateManagedWidget(_("cancel"), commandWidgetClass, form, args, j);
1212 XtAddCallback(b_cancel, XtNcallback, GenericCallback, (XtPointer)(intptr_t) dlgNr);
1215 XtRealizeWidget(popup);
1216 XSetWMProtocols(xDisplay, XtWindow(popup), &wm_delete_window, 1);
1217 snprintf(def, MSG_SIZ, "<Message>WM_PROTOCOLS: GenericPopDown(\"%d\") \n", dlgNr);
1218 XtAugmentTranslations(popup, XtParseTranslationTable(def));
1219 XQueryPointer(xDisplay, xBoardWindow, &root, &child,
1220 &x, &y, &win_x, &win_y, &mask);
1222 XtSetArg(args[0], XtNx, x - 10);
1223 XtSetArg(args[1], XtNy, y - 30);
1224 XtSetValues(popup, args, 2);
1226 XtPopup(popup, dlgNr ? XtGrabNone : XtGrabExclusive);
1227 shellUp[dlgNr] = True;
1229 if(textField)SetFocus(textField, popup, (XEvent*) NULL, False);
1230 if(dlgNr && wp[dlgNr] && wp[dlgNr]->width > 0) { // if persistent window-info available, reposition
1232 XtSetArg(args[j], XtNheight, (Dimension) (wp[dlgNr]->height)); j++;
1233 XtSetArg(args[j], XtNwidth, (Dimension) (wp[dlgNr]->width)); j++;
1234 XtSetArg(args[j], XtNx, (Position) (wp[dlgNr]->x)); j++;
1235 XtSetArg(args[j], XtNy, (Position) (wp[dlgNr]->y)); j++;
1236 XtSetValues(popup, args, j);
1242 void IcsOptionsProc(w, event, prms, nprms)
1248 GenericPopUp(icsOptions, _("ICS Options"), 0);
1251 void LoadOptionsProc(w, event, prms, nprms)
1257 ASSIGN(searchMode, modeValues[appData.searchMode-1]);
1258 GenericPopUp(loadOptions, _("Load Game Options"), 0);
1261 void SaveOptionsProc(w, event, prms, nprms)
1267 GenericPopUp(saveOptions, _("Save Game Options"), 0);
1270 void SoundOptionsProc(w, event, prms, nprms)
1276 soundFiles[2] = "*";
1277 GenericPopUp(soundOptions, _("Sound Options"), 0);
1280 void BoardOptionsProc(w, event, prms, nprms)
1286 GenericPopUp(boardOptions, _("Board Options"), 0);
1289 void EngineMenuProc(w, event, prms, nprms)
1295 GenericPopUp(adjudicationOptions, _("Adjudicate non-ICS Games"), 0);
1298 void UciMenuProc(w, event, prms, nprms)
1304 oldCores = appData.smpCores;
1305 oldPonder = appData.ponderNextMove;
1306 GenericPopUp(commonEngineOptions, _("Common Engine Settings"), 0);
1309 void NewVariantProc(w, event, prms, nprms)
1315 GenericPopUp(variantDescriptors, _("New Variant"), 0);
1318 void OptionsProc(w, event, prms, nprms)
1324 oldPonder = appData.ponderNextMove;
1325 GenericPopUp(generalOptions, _("General Options"), 0);
1328 void MatchOptionsProc(w, event, prms, nprms)
1334 NamesToList(firstChessProgramNames, engineList, engineMnemonic);
1335 comboCallback = &AddToTourney;
1336 matchOptions[5].min = -(appData.pairingEngine[0] != NULLCHAR); // with pairing engine, allow Swiss
1337 ASSIGN(tfName, appData.tourneyFile[0] ? appData.tourneyFile : MakeName(appData.defName));
1338 ASSIGN(engineName, appData.participants);
1339 GenericPopUp(matchOptions, _("Match Options"), 0);
1342 Option textOptions[100];
1343 void PutText P((char *text, int pos));
1345 void SendString(char *p)
1347 char buf[MSG_SIZ], *q;
1348 if(q = strstr(p, "$input")) {
1349 if(!shellUp[4]) return;
1350 strncpy(buf, p, MSG_SIZ);
1351 strncpy(buf + (q-p), q+6, MSG_SIZ-(q-p));
1355 snprintf(buf, MSG_SIZ, "%s\n", p);
1359 /* function called when the data to Paste is ready */
1361 SendTextCB(Widget w, XtPointer client_data, Atom *selection,
1362 Atom *type, XtPointer value, unsigned long *len, int *format)
1364 char buf[MSG_SIZ], *p = (char*) textOptions[(int)(intptr_t) client_data].choice, *name = (char*) value, *q;
1365 if (value==NULL || *len==0) return; /* nothing selected, abort */
1367 strncpy(buf, p, MSG_SIZ);
1368 q = strstr(p, "$name");
1369 snprintf(buf + (q-p), MSG_SIZ -(q-p), "%s%s", name, q+5);
1374 void SendText(int n)
1376 char *p = (char*) textOptions[n].choice;
1377 if(strstr(p, "$name")) {
1378 XtGetSelectionValue(menuBarWidget,
1379 XA_PRIMARY, XA_STRING,
1380 /* (XtSelectionCallbackProc) */ SendTextCB,
1381 (XtPointer) (intptr_t) n, /* client_data passed to PastePositionCB */
1384 } else SendString(p);
1387 void IcsTextProc(w, event, prms, nprms)
1395 if((p = icsTextMenuString) == NULL) return;
1397 q = r = p; while(*p && *p != ';') p++;
1398 for(j=0; j<p-q; j++) textOptions[i].name[j] = *r++;
1399 textOptions[i].name[j++] = 0;
1401 if(*++p == '\n') p++; // optional linefeed after button-text terminating semicolon
1403 textOptions[i].choice = (char**) (r = textOptions[i].name + j);
1404 while(*p && (*p != ';' || p[1] != '\n')) textOptions[i].name[j++] = *p++;
1405 textOptions[i].name[j++] = 0;
1407 textOptions[i].max = 135;
1408 textOptions[i].min = i&1;
1409 textOptions[i].handle = NULL;
1410 textOptions[i].target = &SendText;
1411 textOptions[i].textValue = strstr(r, "$input") ? "#80FF80" : strstr(r, "$name") ? "#FF8080" : "#FFFFFF";
1412 textOptions[i].type = Button;
1413 } while(++i < 99 && *p);
1415 textOptions[i].type = EndMark;
1416 textOptions[i].target = NULL;
1417 textOptions[i].min = 2;
1418 MarkMenu("menuView.ICStex", 3);
1419 GenericPopUp(textOptions, _("ICS text menu"), 3);
1422 static char *commentText;
1423 static int commentIndex;
1424 void ClearComment P((int n));
1425 extern char commentTranslations[];
1427 int NewComCallback(int n)
1429 ReplaceComment(commentIndex, commentText);
1433 void SaveChanges(int n)
1436 ReplaceComment(commentIndex, commentText);
1439 Option commentOptions[] = {
1440 { 0xD, 200, 250, NULL, (void*) &commentText, "", NULL, TextBox, "" },
1441 { 0, 0, 50, NULL, (void*) &ClearComment, NULL, NULL, Button, N_("clear") },
1442 { 0, 1, 100, NULL, (void*) &SaveChanges, NULL, NULL, Button, N_("save changes") },
1443 { 0, 1, 0, NULL, (void*) &NewComCallback, "", NULL, EndMark , "" }
1446 void ClearTextWidget(Option *opt)
1448 // XtCallActionProc(opt->handle, "select-all", NULL, NULL, 0);
1449 // XtCallActionProc(opt->handle, "kill-selection", NULL, NULL, 0);
1451 XtSetArg(arg, XtNstring, ""); // clear without disturbing selection!
1452 XtSetValues(opt->handle, &arg, 1);
1455 void ClearComment(int n)
1457 ClearTextWidget(&commentOptions[0]);
1460 void NewCommentPopup(char *title, char *text, int index)
1464 if(shells[1]) { // if already exists, alter title and content
1465 XtSetArg(args[0], XtNtitle, title);
1466 XtSetValues(shells[1], args, 1);
1467 SetWidgetText(&commentOptions[0], text, 1);
1469 if(commentText) free(commentText); commentText = strdup(text);
1470 commentIndex = index;
1471 MarkMenu("menuView.Show Comments", 1);
1472 if(GenericPopUp(commentOptions, title, 1))
1473 XtOverrideTranslations(commentOptions[0].handle, XtParseTranslationTable(commentTranslations));
1476 static char *tagsText;
1478 int NewTagsCallback(int n)
1480 ReplaceTags(tagsText, &gameInfo);
1484 void changeTags(int n)
1487 if(bookUp) SaveToBook(tagsText); else
1488 ReplaceTags(tagsText, &gameInfo);
1491 Option tagsOptions[] = {
1492 { 0, 0, 0, NULL, NULL, NULL, NULL, Label, "" },
1493 { 0xD, 200, 200, NULL, (void*) &tagsText, "", NULL, TextBox, "" },
1494 { 0, 0, 100, NULL, (void*) &changeTags, NULL, NULL, Button, N_("save changes") },
1495 { 0, 1, 0, NULL, (void*) &NewTagsCallback, "", NULL, EndMark , "" }
1498 void NewTagsPopup(char *text, char *msg)
1501 char *title = bookUp ? _("Edit book") : _("Tags");
1503 if(shells[2]) { // if already exists, alter title and content
1504 SetWidgetText(&tagsOptions[1], text, 2);
1505 XtSetArg(args[0], XtNtitle, title);
1506 XtSetValues(shells[2], args, 1);
1508 if(tagsText) free(tagsText); tagsText = strdup(text);
1509 tagsOptions[0].textValue = msg;
1510 MarkMenu("menuView.Show Tags", 2);
1511 GenericPopUp(tagsOptions, title, 2);
1516 Option boxOptions[] = {
1517 { 0, 30, 400, NULL, (void*) &icsText, "", NULL, TextBox, "" },
1518 { 0, 3, 0, NULL, NULL, "", NULL, EndMark , "" }
1521 void PutText(char *text, int pos)
1524 char buf[MSG_SIZ], *p;
1526 if(strstr(text, "$add ") == text) {
1527 GetWidgetText(&boxOptions[0], &p);
1528 snprintf(buf, MSG_SIZ, "%s%s", p, text+5); text = buf;
1529 pos += strlen(p) - 5;
1531 SetWidgetText(&boxOptions[0], text, 4);
1532 XtSetArg(args[0], XtNinsertPosition, pos);
1533 XtSetValues(boxOptions[0].handle, args, 1);
1534 // SetFocus(boxOptions[0].handle, shells[4], NULL, False); // No idea why this does not work, and the following is needed:
1535 XSetInputFocus(xDisplay, XtWindow(boxOptions[0].handle), RevertToPointerRoot, CurrentTime);
1538 void InputBoxPopup()
1540 MarkMenu("menuView.ICS Input Box", 4);
1541 if(GenericPopUp(boxOptions, _("ICS input box"), 4))
1542 XtOverrideTranslations(boxOptions[0].handle, XtParseTranslationTable(ICSInputTranslations));
1545 void TypeInProc(w, event, prms, nprms)
1553 if(prms[0][0] == '1') {
1554 GetWidgetText(&boxOptions[0], &val);
1555 TypeInDoneEvent(val);
1560 char moveTypeInTranslations[] =
1561 "<Key>Return: TypeInProc(1) \n"
1562 "<Key>Escape: TypeInProc(0) \n";
1564 void PopUpMoveDialog(char firstchar)
1567 buf[0] = firstchar; icsText = buf;
1568 if(GenericPopUp(boxOptions, _("Type a move"), 0))
1569 XtOverrideTranslations(boxOptions[0].handle, XtParseTranslationTable(moveTypeInTranslations));
1572 void MoveTypeInProc(Widget widget, caddr_t unused, XEvent *event)
1574 char buf[10], keys[32];
1576 KeyCode metaL, metaR;
1577 int n = XLookupString(&(event->xkey), buf, 10, &sym, NULL);
1578 XQueryKeymap(xDisplay,keys);
1579 metaL = XKeysymToKeycode(xDisplay, XK_Meta_L);
1580 metaR = XKeysymToKeycode(xDisplay, XK_Meta_R);
1581 if ( n == 1 && *buf >= 32 && !(keys[metaL>>3]&1<<(metaL&7)) && !(keys[metaR>>3]&1<<(metaR&7))) { // printable, no alt
1582 if(appData.icsActive) { // text typed to board in ICS mode: divert to ICS input box
1583 if(shells[4]) { // box already exists: append to current contents
1584 char *p, newText[MSG_SIZ];
1585 GetWidgetText(&boxOptions[0], &p);
1586 snprintf(newText, MSG_SIZ, "%s%c", p, *buf);
1587 SetWidgetText(&boxOptions[0], newText, 4);
1588 if(shellUp[4]) XSetInputFocus(xDisplay, XtWindow(boxOptions[0].handle), RevertToPointerRoot, CurrentTime); //why???
1589 } else icsText = buf; // box did not exist: make sure it pops up with char in it
1591 } else PopUpMoveDialog(*buf);
1596 SettingsPopUp(ChessProgramState *cps)
1599 GenericPopUp(cps->option, _("Engine Settings"), 0);
1602 void FirstSettingsProc(w, event, prms, nprms)
1608 SettingsPopUp(&first);
1611 void SecondSettingsProc(w, event, prms, nprms)
1617 if(WaitForEngine(&second, SettingsMenuIfReady)) return;
1618 SettingsPopUp(&second);
1621 int InstallOK(int n)
1623 PopDown(0); // early popdown, to allow FreezeUI to instate grab
1624 if(engineChoice[0] == engineNr[0][0]) Load(&first, 0); else Load(&second, 1);
1628 Option installOptions[] = {
1629 { 0, 0, 0, NULL, (void*) &engineLine, (char*) engineMnemonic, engineList, ComboBox, N_("Select engine from list:") },
1630 { 0, 0, 0, NULL, NULL, NULL, NULL, Label, N_("or specify one below:") },
1631 { 0, 0, 0, NULL, (void*) &nickName, NULL, NULL, TextBox, N_("Nickname (optional):") },
1632 { 0, 0, 0, NULL, (void*) &useNick, NULL, NULL, CheckBox, N_("Use nickname in PGN player tags of engine-engine games") },
1633 { 0, 0, 0, NULL, (void*) &engineDir, NULL, NULL, PathName, N_("Engine Directory:") },
1634 { 0, 0, 0, NULL, (void*) &engineName, NULL, NULL, FileName, N_("Engine Command:") },
1635 { 0, 0, 0, NULL, NULL, NULL, NULL, Label, N_("(Directory will be derived from engine path when empty)") },
1636 { 0, 0, 0, NULL, (void*) &isUCI, NULL, NULL, CheckBox, N_("UCI") },
1637 { 0, 0, 0, NULL, (void*) &v1, NULL, NULL, CheckBox, N_("WB protocol v1 (do not wait for engine features)") },
1638 { 0, 0, 0, NULL, (void*) &hasBook, NULL, NULL, CheckBox, N_("Must not use GUI book") },
1639 { 0, 0, 0, NULL, (void*) &addToList, NULL, NULL, CheckBox, N_("Add this engine to the list") },
1640 { 0, 0, 0, NULL, (void*) &storeVariant, NULL, NULL, CheckBox, N_("Force current variant with this engine") },
1641 { 0, 0, 0, NULL, (void*) &engineChoice, (char*) engineNr, engineNr, ComboBox, N_("Load mentioned engine as") },
1642 { 0, 1, 0, NULL, (void*) &InstallOK, "", NULL, EndMark , "" }
1645 void LoadEngineProc(w, event, prms, nprms)
1651 isUCI = storeVariant = v1 = useNick = False; addToList = hasBook = True; // defaults
1652 if(engineChoice) free(engineChoice); engineChoice = strdup(engineNr[0]);
1653 if(engineLine) free(engineLine); engineLine = strdup("");
1654 if(engineDir) free(engineDir); engineDir = strdup("");
1655 if(nickName) free(nickName); nickName = strdup("");
1656 if(params) free(params); params = strdup("");
1657 NamesToList(firstChessProgramNames, engineList, engineMnemonic);
1658 GenericPopUp(installOptions, _("Load engine"), 0);
1661 void EditBookProc(w, event, prms, nprms)
1670 void SetRandom P((int n));
1672 int ShuffleOK(int n)
1678 Option shuffleOptions[] = {
1679 { 0, 0, 50, NULL, (void*) &shuffleOpenings, NULL, NULL, CheckBox, N_("shuffle") },
1680 { 0,-1,2000000000, NULL, (void*) &appData.defaultFrcPosition, "", NULL, Spin, N_("Start-position number:") },
1681 { 0, 0, 0, NULL, (void*) &SetRandom, NULL, NULL, Button, N_("randomize") },
1682 { 0, 1, 0, NULL, (void*) &SetRandom, NULL, NULL, Button, N_("pick fixed") },
1683 { 0, 1, 0, NULL, (void*) &ShuffleOK, "", NULL, EndMark , "" }
1686 void SetRandom(int n)
1688 int r = n==2 ? -1 : random() & (1<<30)-1;
1690 snprintf(buf, MSG_SIZ, "%d", r);
1691 SetWidgetText(&shuffleOptions[1], buf, 0);
1692 SetWidgetState(&shuffleOptions[0], True);
1695 void ShuffleMenuProc(w, event, prms, nprms)
1701 GenericPopUp(shuffleOptions, _("New Shuffle Game"), 0);
1704 int tmpMoves, tmpTc, tmpInc, tmpOdds1, tmpOdds2, tcType;
1710 void SetTcType P((int n));
1714 static char buf[MSG_SIZ];
1715 snprintf(buf, MSG_SIZ, "%d", n);
1722 if(tcType == 0 && tmpMoves <= 0) return 0;
1723 if(tcType == 2 && tmpInc <= 0) return 0;
1724 GetWidgetText(¤tOption[4], &tc); // get original text, in case it is min:sec
1728 if(!ParseTimeControl(tc, -1, tmpMoves)) return 0;
1729 appData.movesPerSession = tmpMoves;
1730 ASSIGN(appData.timeControl, tc);
1731 appData.timeIncrement = -1;
1734 if(!ParseTimeControl(tc, tmpInc, 0)) return 0;
1735 ASSIGN(appData.timeControl, tc);
1736 appData.timeIncrement = tmpInc;
1739 searchTime = tmpInc;
1741 appData.firstTimeOdds = first.timeOdds = tmpOdds1;
1742 appData.secondTimeOdds = second.timeOdds = tmpOdds2;
1747 Option tcOptions[] = {
1748 { 0, 0, 0, NULL, (void*) &SetTcType, NULL, NULL, Button, N_("classical") },
1749 { 0, 1, 0, NULL, (void*) &SetTcType, NULL, NULL, Button, N_("incremental") },
1750 { 0, 1, 0, NULL, (void*) &SetTcType, NULL, NULL, Button, N_("fixed max") },
1751 { 0, 0, 200, NULL, (void*) &tmpMoves, NULL, NULL, Spin, N_("Moves per session:") },
1752 { 0, 0,10000, NULL, (void*) &tmpTc, NULL, NULL, Spin, N_("Initial time (min):") },
1753 { 0, 0, 10000, NULL, (void*) &tmpInc, NULL, NULL, Spin, N_("Increment or max (sec/move):") },
1754 { 0, 0, 0, NULL, NULL, NULL, NULL, Label, N_("Time-Odds factors:") },
1755 { 0, 1, 1000, NULL, (void*) &tmpOdds1, NULL, NULL, Spin, N_("Engine #1") },
1756 { 0, 1, 1000, NULL, (void*) &tmpOdds2, NULL, NULL, Spin, N_("Engine #2 / Human") },
1757 { 0, 0, 0, NULL, (void*) &TcOK, "", NULL, EndMark , "" }
1760 void SetTcType(int n)
1762 switch(tcType = n) {
1764 SetWidgetText(&tcOptions[3], Value(tmpMoves), 0);
1765 SetWidgetText(&tcOptions[4], Value(tmpTc), 0);
1766 SetWidgetText(&tcOptions[5], _("Unused"), 0);
1769 SetWidgetText(&tcOptions[3], _("Unused"), 0);
1770 SetWidgetText(&tcOptions[4], Value(tmpTc), 0);
1771 SetWidgetText(&tcOptions[5], Value(tmpInc), 0);
1774 SetWidgetText(&tcOptions[3], _("Unused"), 0);
1775 SetWidgetText(&tcOptions[4], _("Unused"), 0);
1776 SetWidgetText(&tcOptions[5], Value(tmpInc), 0);
1780 void TimeControlProc(w, event, prms, nprms)
1786 tmpMoves = appData.movesPerSession;
1787 tmpInc = appData.timeIncrement; if(tmpInc < 0) tmpInc = 0;
1788 tmpOdds1 = tmpOdds2 = 1; tcType = 0;
1789 tmpTc = atoi(appData.timeControl);
1790 GenericPopUp(tcOptions, _("Time Control"), 0);
1793 //---------------------------- Chat Windows ----------------------------------------------
1795 void OutputChatMessage(int partner, char *mess)