2 * args.c -- Option parsing and saving for X and Windows versions of XBoard
4 * Copyright 1991 by Digital Equipment Corporation, Maynard,
7 * Enhancements Copyright 1992-2001, 2002, 2003, 2004, 2005, 2006,
8 * 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015 Free Software Foundation, Inc.
10 * Enhancements Copyright 2005 Alessandro Scotti
12 * The following terms apply to Digital Equipment Corporation's copyright
14 * ------------------------------------------------------------------------
17 * Permission to use, copy, modify, and distribute this software and its
18 * documentation for any purpose and without fee is hereby granted,
19 * provided that the above copyright notice appear in all copies and that
20 * both that copyright notice and this permission notice appear in
21 * supporting documentation, and that the name of Digital not be
22 * used in advertising or publicity pertaining to distribution of the
23 * software without specific, written prior permission.
25 * DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
26 * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
27 * DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
28 * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
29 * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
30 * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
32 * ------------------------------------------------------------------------
34 * The following terms apply to the enhanced version of XBoard
35 * distributed by the Free Software Foundation:
36 * ------------------------------------------------------------------------
38 * GNU XBoard is free software: you can redistribute it and/or modify
39 * it under the terms of the GNU General Public License as published by
40 * the Free Software Foundation, either version 3 of the License, or (at
41 * your option) any later version.
43 * GNU XBoard is distributed in the hope that it will be useful, but
44 * WITHOUT ANY WARRANTY; without even the implied warranty of
45 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
46 * General Public License for more details.
48 * You should have received a copy of the GNU General Public License
49 * along with this program. If not, see http://www.gnu.org/licenses/. *
51 *------------------------------------------------------------------------
52 ** See the file ChangeLog for a revision history.
55 // Note: this file is not a normal header, but contains executable code
56 // for #inclusion in winboard.c and xboard.c, rather than separate compilation,
57 // so that it can make use of the proper context of #defined symbols and
58 // declarations in those files.
61 ArgString, ArgInt, ArgFloat, ArgBoolean, ArgTrue, ArgFalse, ArgNone,
62 ArgColor, ArgAttribs, ArgFilename, ArgBoardSize, ArgFont, ArgCommSettings,
63 ArgSettingsFilename, ArgBackupSettingsFile, ArgTwo, ArgInstall, ArgMaster,
64 ArgX, ArgY, ArgZ // [HGM] placement: for window-placement options stored relative to main window
67 typedef void *ArgIniType;
69 #define INVALID (ArgIniType) 6915 /* Some number unlikely to be needed as default for anything */
70 #define MAX_ARG_LEN 128*1024 /* [AS] For Roger Brown's very long list! */
77 String *pString; // ArgString
79 float *pFloat; // ArgFloat
80 Boolean *pBoolean; // ArgBoolean
81 COLORREF *pColor; // ArgColor
82 ColorClass cc; // ArgAttribs
83 String *pFilename; // ArgFilename
84 BoardSize *pBoardSize; // ArgBoardSize
85 int whichFont; // ArgFont
86 DCB *pDCB; // ArgCommSettings
87 String *pFilename; // ArgSettingsFilename
92 ArgIniType defaultValue;
102 IcsTextMenuEntry icsTextMenuEntry[ICS_TEXT_MENU_SIZE];
110 char *firstEngineLine;
111 char *secondEngineLine;
115 void EnsureOnScreen(int *x, int *y, int minX, int minY);
116 char StringGet(void *getClosure);
117 void ParseFont(char *name, int number);
118 void SetFontDefaults();
120 void ParseColor(int n, char *name);
121 void ParseTextAttribs(ColorClass cc, char *s);
122 void ParseBoardSize(void * addr, char *name);
123 void ParseCommPortSettings(char *name);
124 void LoadAllSounds();
125 void SetCommPortDefaults();
126 void SaveFontArg(FILE *f, ArgDescriptor *ad);
128 void SaveAttribsArg(FILE *f, ArgDescriptor *ad);
129 void SaveColor(FILE *f, ArgDescriptor *ad);
130 void SaveBoardSize(FILE *f, char *name, void *addr);
131 void PrintCommPortSettings(FILE *f, char *name);
132 void GetWindowCoords();
134 void PopUpStartupDialog();
135 typedef char GetFunc(void *getClosure);
136 void ParseArgs(GetFunc get, void *cl);
138 // [HGM] this is an exact duplicate of something in winboard.c. Move to backend.c?
139 char *defaultTextAttribs[] =
141 COLOR_SHOUT, COLOR_SSHOUT, COLOR_CHANNEL1, COLOR_CHANNEL, COLOR_KIBITZ,
142 COLOR_TELL, COLOR_CHALLENGE, COLOR_REQUEST, COLOR_SEEK, COLOR_NORMAL,
146 ArgDescriptor argDescriptors[] = {
147 /* positional arguments */
148 { "opt", ArgSettingsFilename, (void *) NULL, FALSE, INVALID },
149 { "loadPositionFile", ArgFilename, (void *) &appData.loadPositionFile, FALSE, INVALID },
150 { "tourneyFile", ArgFilename, (void *) &appData.tourneyFile, FALSE, INVALID },
151 { "is", ArgString, (void *) &icsNick, FALSE, INVALID },
152 { "loadGameFile", ArgFilename, (void *) &appData.loadGameFile, FALSE, INVALID },
153 { "", ArgNone, NULL, FALSE, INVALID },
154 /* keyword arguments */
155 { "saveDate", ArgInt, (void *) &saveDate, TRUE, 0 },
156 { "date", ArgInt, (void *) &dateStamp, FALSE, 0 },
157 { "autoClose", ArgTrue, (void *) &autoClose, FALSE, FALSE },
159 { "whitePieceColor", ArgColor, (void *) 0, TRUE, (ArgIniType) WHITE_PIECE_COLOR },
160 { "wpc", ArgColor, (void *) 0, FALSE, INVALID },
161 { "blackPieceColor", ArgColor, (void *) 1, TRUE, (ArgIniType) BLACK_PIECE_COLOR },
162 { "bpc", ArgColor, (void *) 1, FALSE, INVALID },
163 { "lightSquareColor", ArgColor, (void *) 2, TRUE, (ArgIniType) LIGHT_SQUARE_COLOR },
164 { "lsc", ArgColor, (void *) 2, FALSE, INVALID },
165 { "darkSquareColor", ArgColor, (void *) 3, TRUE, (ArgIniType) DARK_SQUARE_COLOR },
166 { "dsc", ArgColor, (void *) 3, FALSE, INVALID },
167 { "highlightSquareColor", ArgColor, (void *) 4, TRUE, (ArgIniType) HIGHLIGHT_SQUARE_COLOR },
168 { "hsc", ArgColor, (void *) 4, FALSE, INVALID },
169 { "premoveHighlightColor", ArgColor, (void *) 5, TRUE, (ArgIniType) PREMOVE_HIGHLIGHT_COLOR },
170 { "phc", ArgColor, (void *) 5, FALSE, INVALID },
171 { "movesPerSession", ArgInt, (void *) &appData.movesPerSession, TRUE, (ArgIniType) MOVES_PER_SESSION },
172 { "mps", ArgInt, (void *) &appData.movesPerSession, FALSE, INVALID },
173 { "initString", ArgString, (void *) &appData.firstInitString, FALSE, INVALID },
174 { "firstInitString", ArgString, (void *) &appData.firstInitString, FALSE, (ArgIniType) INIT_STRING },
175 { "secondInitString", ArgString, (void *) &appData.secondInitString, FALSE, (ArgIniType) INIT_STRING },
176 { "firstComputerString", ArgString, (void *) &appData.firstComputerString,
177 FALSE, (ArgIniType) COMPUTER_STRING },
178 { "secondComputerString", ArgString, (void *) &appData.secondComputerString,
179 FALSE, (ArgIniType) COMPUTER_STRING },
180 { "firstChessProgram", ArgFilename, (void *) &appData.firstChessProgram,
181 FALSE, (ArgIniType) FIRST_CHESS_PROGRAM },
182 { "fcp", ArgFilename, (void *) &appData.firstChessProgram, FALSE, INVALID },
183 { "secondChessProgram", ArgFilename, (void *) &appData.secondChessProgram,
184 FALSE, (ArgIniType) SECOND_CHESS_PROGRAM },
185 { "scp", ArgFilename, (void *) &appData.secondChessProgram, FALSE, INVALID },
186 { "fe", ArgString, (void *) &firstEngineLine, FALSE, "" },
187 { "se", ArgString, (void *) &secondEngineLine, FALSE, "" },
188 { "firstPlaysBlack", ArgBoolean, (void *) &appData.firstPlaysBlack, FALSE, FALSE },
189 { "fb", ArgTrue, (void *) &appData.firstPlaysBlack, FALSE, FALSE },
190 { "xfb", ArgFalse, (void *) &appData.firstPlaysBlack, FALSE, INVALID },
191 { "-fb", ArgFalse, (void *) &appData.firstPlaysBlack, FALSE, INVALID },
192 { "noChessProgram", ArgBoolean, (void *) &appData.noChessProgram, FALSE, FALSE },
193 { "ncp", ArgTrue, (void *) &appData.noChessProgram, FALSE, INVALID },
194 { "xncp", ArgFalse, (void *) &appData.noChessProgram, FALSE, INVALID },
195 { "-ncp", ArgFalse, (void *) &appData.noChessProgram, FALSE, INVALID },
196 { "firstHost", ArgString, (void *) &appData.firstHost, FALSE, (ArgIniType) FIRST_HOST },
197 { "fh", ArgString, (void *) &appData.firstHost, FALSE, INVALID },
198 { "secondHost", ArgString, (void *) &appData.secondHost, FALSE, (ArgIniType) SECOND_HOST },
199 { "sh", ArgString, (void *) &appData.secondHost, FALSE, INVALID },
200 { "firstDirectory", ArgFilename, (void *) &appData.firstDirectory, FALSE, (ArgIniType) FIRST_DIRECTORY },
201 { "fd", ArgFilename, (void *) &appData.firstDirectory, FALSE, INVALID },
202 { "secondDirectory", ArgFilename, (void *) &appData.secondDirectory, FALSE, (ArgIniType) SECOND_DIRECTORY },
203 { "sd", ArgFilename, (void *) &appData.secondDirectory, FALSE, INVALID },
204 { "variations", ArgBoolean, (void *) &appData.variations, TRUE, (ArgIniType) FALSE },
205 { "appendPV", ArgBoolean, (void *) &appData.autoExtend, TRUE, (ArgIniType) FALSE },
206 { "theme", ArgString, (void *) &theme, FALSE, (ArgIniType) "" },
208 /* some options only used by the XBoard front end, and ignored in WinBoard */
209 /* Their saving is controlled by XBOARD, which in WinBoard is defined as FALSE */
210 { "internetChessServerInputBox", ArgBoolean, (void *) &appData.icsInputBox, XBOARD, (ArgIniType) FALSE },
211 { "icsinput", ArgTrue, (void *) &appData.icsInputBox, FALSE, INVALID },
212 { "xicsinput", ArgFalse, (void *) &appData.icsInputBox, FALSE, INVALID },
213 { "cmail", ArgString, (void *) &appData.cmailGameName, FALSE, (ArgIniType) "" },
214 { "soundProgram", ArgFilename, (void *) &appData.soundProgram, XBOARD, (ArgIniType) "play" },
215 { "fontSizeTolerance", ArgInt, (void *) &appData.fontSizeTolerance, XBOARD, (ArgIniType) 4 },
216 { "lowTimeWarningColor", ArgColor, (void *) 6, XBOARD, (ArgIniType) LOWTIMEWARNING_COLOR },
217 { "lowTimeWarning", ArgBoolean, (void *) &appData.lowTimeWarning, XBOARD, (ArgIniType) FALSE },
218 { "titleInWindow", ArgBoolean, (void *) &appData.titleInWindow, XBOARD, (ArgIniType) FALSE },
219 { "title", ArgTrue, (void *) &appData.titleInWindow, FALSE, INVALID },
220 { "xtitle", ArgFalse, (void *) &appData.titleInWindow, FALSE, INVALID },
221 { "flashCount", ArgInt, (void *) &appData.flashCount, XBOARD, INVALID }, // let X handle this
222 { "flashRate", ArgInt, (void *) &appData.flashRate, XBOARD, (ArgIniType) FLASH_RATE },
223 { "pieceImageDirectory", ArgFilename, (void *) &appData.pieceDirectory, TRUE, (ArgIniType) "" },
224 { "pid", ArgFilename, (void *) &appData.pieceDirectory, FALSE, INVALID },
225 { "trueColors", ArgBoolean, (void *) &appData.trueColors, TRUE, (ArgIniType) FALSE },
226 { "soundDirectory", ArgFilename, (void *) &appData.soundDirectory, XBOARD, (ArgIniType) "" },
227 { "msLoginDelay", ArgInt, (void *) &appData.msLoginDelay, XBOARD, (ArgIniType) MS_LOGIN_DELAY },
228 { "pasteSelection", ArgBoolean, (void *) &appData.pasteSelection, XBOARD, (ArgIniType) FALSE },
230 { "dropMenu", ArgBoolean, (void *) &appData.dropMenu, TRUE, (ArgIniType) FALSE },
231 { "pieceMenu", ArgBoolean, (void *) &appData.pieceMenu, TRUE, (ArgIniType) TRUE },
232 { "sweepPromotions", ArgBoolean, (void *) &appData.sweepSelect, TRUE, (ArgIniType) FALSE },
233 { "monoMouse", ArgBoolean, (void *) &appData.monoMouse, XBOARD, (ArgIniType) FALSE },
234 { "remoteShell", ArgFilename, (void *) &appData.remoteShell, FALSE, (ArgIniType) REMOTE_SHELL },
235 { "rsh", ArgFilename, (void *) &appData.remoteShell, FALSE, INVALID },
236 { "remoteUser", ArgString, (void *) &appData.remoteUser, FALSE, (ArgIniType) "" },
237 { "ruser", ArgString, (void *) &appData.remoteUser, FALSE, INVALID },
238 { "timeDelay", ArgFloat, (void *) &appData.timeDelay, TRUE, INVALID },
239 { "td", ArgFloat, (void *) &appData.timeDelay, FALSE, INVALID },
240 { "timeControl", ArgString, (void *) &appData.timeControl, TRUE, (ArgIniType) TIME_CONTROL },
241 { "tc", ArgString, (void *) &appData.timeControl, FALSE, INVALID },
242 { "timeIncrement", ArgFloat, (void *) &appData.timeIncrement, FALSE, INVALID },
243 { "inc", ArgFloat, (void *) &appData.timeIncrement, FALSE, INVALID },
244 { "internetChessServerMode", ArgBoolean, (void *) &appData.icsActive, FALSE, INVALID },
245 { "ics", ArgTrue, (void *) &appData.icsActive, FALSE, (ArgIniType) FALSE },
246 { "xics", ArgFalse, (void *) &appData.icsActive, FALSE, INVALID },
247 { "-ics", ArgFalse, (void *) &appData.icsActive, FALSE, INVALID },
248 { "is", ArgString, (void *) &icsNick, FALSE, "" },
249 { "internetChessServerHost", ArgString, (void *) &appData.icsHost, FALSE, (ArgIniType) "" },
250 { "icshost", ArgString, (void *) &appData.icsHost, FALSE, INVALID },
251 { "internetChessServerPort", ArgString, (void *) &appData.icsPort, FALSE, (ArgIniType) ICS_PORT },
252 { "icsport", ArgString, (void *) &appData.icsPort, FALSE, INVALID },
253 { "internetChessServerCommPort", ArgString, (void *) &appData.icsCommPort, FALSE, (ArgIniType) ICS_COMM_PORT },
254 { "icscomm", ArgString, (void *) &appData.icsCommPort, FALSE, INVALID },
255 { "internetChessServerComPort", ArgString, (void *) &appData.icsCommPort, FALSE, INVALID },
256 { "icscom", ArgString, (void *) &appData.icsCommPort, FALSE, INVALID },
257 { "internetChessServerLogonScript", ArgFilename, (void *) &appData.icsLogon, FALSE, (ArgIniType) ICS_LOGON },
258 { "icslogon", ArgFilename, (void *) &appData.icsLogon, FALSE, INVALID },
259 { "useTelnet", ArgBoolean, (void *) &appData.useTelnet, FALSE, INVALID },
260 { "telnet", ArgTrue, (void *) &appData.useTelnet, FALSE, INVALID },
261 { "xtelnet", ArgFalse, (void *) &appData.useTelnet, FALSE, INVALID },
262 { "-telnet", ArgFalse, (void *) &appData.useTelnet, FALSE, INVALID },
263 { "telnetProgram", ArgFilename, (void *) &appData.telnetProgram, FALSE, (ArgIniType) TELNET_PROGRAM },
264 { "internetChessserverHelper", ArgFilename, (void *) &appData.icsHelper,
265 FALSE, INVALID }, // for XB
266 { "icshelper", ArgFilename, (void *) &appData.icsHelper, FALSE, (ArgIniType) "" },
267 { "seekGraph", ArgBoolean, (void *) &appData.seekGraph, TRUE, (ArgIniType) FALSE },
268 { "sg", ArgTrue, (void *) &appData.seekGraph, FALSE, INVALID },
269 { "autoRefresh", ArgBoolean, (void *) &appData.autoRefresh, TRUE, (ArgIniType) FALSE },
270 { "autoBox", ArgBoolean, (void *) &appData.autoBox, XBOARD, (ArgIniType) TRUE },
271 { "gateway", ArgString, (void *) &appData.gateway, FALSE, (ArgIniType) "" },
272 { "loadGameFile", ArgFilename, (void *) &appData.loadGameFile, FALSE, (ArgIniType) "" },
273 { "lgf", ArgFilename, (void *) &appData.loadGameFile, FALSE, INVALID },
274 { "loadGameIndex", ArgInt, (void *) &appData.loadGameIndex, FALSE, (ArgIniType) 0 },
275 { "lgi", ArgInt, (void *) &appData.loadGameIndex, FALSE, INVALID },
276 { "saveGameFile", ArgFilename, (void *) &appData.saveGameFile, TRUE, (ArgIniType) "" },
277 { "sgf", ArgFilename, (void *) &appData.saveGameFile, FALSE, INVALID },
278 { "autoSaveGames", ArgBoolean, (void *) &appData.autoSaveGames, TRUE, (ArgIniType) FALSE },
279 { "autosave", ArgTrue, (void *) &appData.autoSaveGames, FALSE, INVALID },
280 { "xautosave", ArgFalse, (void *) &appData.autoSaveGames, FALSE, INVALID },
281 { "-autosave", ArgFalse, (void *) &appData.autoSaveGames, FALSE, INVALID },
282 { "onlyOwnGames", ArgBoolean, (void *) &appData.onlyOwn, TRUE, (ArgIniType) FALSE },
283 { "loadPositionFile", ArgFilename, (void *) &appData.loadPositionFile, FALSE, (ArgIniType) "" },
284 { "lpf", ArgFilename, (void *) &appData.loadPositionFile, FALSE, INVALID },
285 { "loadPositionIndex", ArgInt, (void *) &appData.loadPositionIndex, FALSE, (ArgIniType) 1 },
286 { "lpi", ArgInt, (void *) &appData.loadPositionIndex, FALSE, INVALID },
287 { "positionDir", ArgFilename, (void *) &appData.positionDir, FALSE, (ArgIniType) "" },
288 { "savePositionFile", ArgFilename, (void *) &appData.savePositionFile, FALSE, (ArgIniType) "" },
289 { "spf", ArgFilename, (void *) &appData.savePositionFile, FALSE, INVALID },
290 { "matchMode", ArgBoolean, (void *) &appData.matchMode, FALSE, (ArgIniType) FALSE },
291 { "mm", ArgTrue, (void *) &appData.matchMode, FALSE, INVALID },
292 { "xmm", ArgFalse, (void *) &appData.matchMode, FALSE, INVALID },
293 { "-mm", ArgFalse, (void *) &appData.matchMode, FALSE, INVALID },
294 { "matchGames", ArgInt, (void *) &appData.matchGames, FALSE, (ArgIniType) 0 },
295 { "mg", ArgInt, (void *) &appData.matchGames, FALSE, INVALID },
296 { "monoMode", ArgBoolean, (void *) &appData.monoMode, TRUE, (ArgIniType) FALSE },
297 { "mono", ArgTrue, (void *) &appData.monoMode, FALSE, INVALID },
298 { "xmono", ArgFalse, (void *) &appData.monoMode, FALSE, INVALID },
299 { "-mono", ArgFalse, (void *) &appData.monoMode, FALSE, INVALID },
300 { "debugMode", ArgBoolean, (void *) &appData.debugMode, FALSE, (ArgIniType) FALSE },
301 { "debug", ArgTrue, (void *) &appData.debugMode, FALSE, INVALID },
302 { "xdebug", ArgFalse, (void *) &appData.debugMode, FALSE, INVALID },
303 { "-debug", ArgFalse, (void *) &appData.debugMode, FALSE, INVALID },
304 { "clockMode", ArgBoolean, (void *) &appData.clockMode, FALSE, (ArgIniType) TRUE },
305 { "clock", ArgTrue, (void *) &appData.clockMode, FALSE, INVALID },
306 { "xclock", ArgFalse, (void *) &appData.clockMode, FALSE, INVALID },
307 { "-clock", ArgFalse, (void *) &appData.clockMode, FALSE, INVALID },
308 { "searchTime", ArgString, (void *) &appData.searchTime, FALSE, (ArgIniType) "" },
309 { "st", ArgString, (void *) &appData.searchTime, FALSE, INVALID },
310 { "searchDepth", ArgInt, (void *) &appData.searchDepth, FALSE, (ArgIniType) 0 },
311 { "depth", ArgInt, (void *) &appData.searchDepth, FALSE, INVALID },
312 { "showCoords", ArgBoolean, (void *) &appData.showCoords, TRUE, (ArgIniType) FALSE },
313 { "coords", ArgTrue, (void *) &appData.showCoords, FALSE, INVALID },
314 { "xcoords", ArgFalse, (void *) &appData.showCoords, FALSE, INVALID },
315 { "-coords", ArgFalse, (void *) &appData.showCoords, FALSE, INVALID },
316 { "showThinking", ArgBoolean, (void *) &appData.showThinking, TRUE, (ArgIniType) FALSE },
317 { "thinking", ArgTrue, (void *) &appData.showThinking, FALSE, INVALID },
318 { "xthinking", ArgFalse, (void *) &appData.showThinking, FALSE, INVALID },
319 { "-thinking", ArgFalse, (void *) &appData.showThinking, FALSE, INVALID },
320 { "ponderNextMove", ArgBoolean, (void *) &appData.ponderNextMove, TRUE, (ArgIniType) TRUE },
321 { "ponder", ArgTrue, (void *) &appData.ponderNextMove, FALSE, INVALID },
322 { "xponder", ArgFalse, (void *) &appData.ponderNextMove, FALSE, INVALID },
323 { "-ponder", ArgFalse, (void *) &appData.ponderNextMove, FALSE, INVALID },
324 { "periodicUpdates", ArgBoolean, (void *) &appData.periodicUpdates, TRUE, (ArgIniType) TRUE },
325 { "periodic", ArgTrue, (void *) &appData.periodicUpdates, FALSE, INVALID },
326 { "xperiodic", ArgFalse, (void *) &appData.periodicUpdates, FALSE, INVALID },
327 { "-periodic", ArgFalse, (void *) &appData.periodicUpdates, FALSE, INVALID },
328 { "popupExitMessage", ArgBoolean, (void *) &appData.popupExitMessage, TRUE, (ArgIniType) TRUE },
329 { "exit", ArgTrue, (void *) &appData.popupExitMessage, FALSE, INVALID },
330 { "xexit", ArgFalse, (void *) &appData.popupExitMessage, FALSE, INVALID },
331 { "-exit", ArgFalse, (void *) &appData.popupExitMessage, FALSE, INVALID },
332 { "popupMoveErrors", ArgBoolean, (void *) &appData.popupMoveErrors, TRUE, (ArgIniType) FALSE },
333 { "popup", ArgTrue, (void *) &appData.popupMoveErrors, FALSE, INVALID },
334 { "xpopup", ArgFalse, (void *) &appData.popupMoveErrors, FALSE, INVALID },
335 { "-popup", ArgFalse, (void *) &appData.popupMoveErrors, FALSE, INVALID },
336 { "popUpErrors", ArgBoolean, (void *) &appData.popupMoveErrors,
337 FALSE, INVALID }, /* only so that old WinBoard.ini files from betas can be read */
338 { "clockFont", ArgFont, (void *) CLOCK_FONT, TRUE, INVALID },
339 { "messageFont", ArgFont, (void *) MESSAGE_FONT, TRUE, INVALID },
340 { "font", ArgFont, (void *) MESSAGE_FONT, FALSE, INVALID }, /* only so that old .xboardrc files will parse. -font does not work from the command line because it is captured by the X libraries. */
341 { "coordFont", ArgFont, (void *) COORD_FONT, TRUE, INVALID },
342 { "tagsFont", ArgFont, (void *) EDITTAGS_FONT, TRUE, INVALID },
343 { "commentFont", ArgFont, (void *) COMMENT_FONT, TRUE, INVALID },
344 { "icsFont", ArgFont, (void *) CONSOLE_FONT, TRUE, INVALID },
345 { "moveHistoryFont", ArgFont, (void *) MOVEHISTORY_FONT, TRUE, INVALID }, /* [AS] */
346 { "gameListFont", ArgFont, (void *) GAMELIST_FONT, TRUE, INVALID }, /* [HGM] */
347 { "boardSize", ArgBoardSize, (void *) &boardSize,
348 TRUE, (ArgIniType) -1 }, /* must come after all fonts */
349 { "size", ArgBoardSize, (void *) &boardSize, FALSE, INVALID },
350 { "ringBellAfterMoves", ArgBoolean, (void *) &appData.ringBellAfterMoves,
351 FALSE, (ArgIniType) TRUE }, /* historical; kept only so old winboard.ini files will parse */
352 { "bell", ArgTrue, (void *) &appData.ringBellAfterMoves, FALSE, INVALID }, // for XB
353 { "xbell", ArgFalse, (void *) &appData.ringBellAfterMoves, FALSE, INVALID }, // for XB
354 { "movesound", ArgTrue, (void *) &appData.ringBellAfterMoves, FALSE, INVALID }, // for XB
355 { "xmovesound", ArgFalse, (void *) &appData.ringBellAfterMoves, FALSE, INVALID }, // for XB
356 { "alwaysOnTop", ArgBoolean, (void *) &alwaysOnTop, TRUE, INVALID },
357 { "top", ArgTrue, (void *) &alwaysOnTop, FALSE, INVALID },
358 { "xtop", ArgFalse, (void *) &alwaysOnTop, FALSE, INVALID },
359 { "-top", ArgFalse, (void *) &alwaysOnTop, FALSE, INVALID },
360 { "autoCallFlag", ArgBoolean, (void *) &appData.autoCallFlag, TRUE, (ArgIniType) FALSE },
361 { "autoflag", ArgTrue, (void *) &appData.autoCallFlag, FALSE, INVALID },
362 { "xautoflag", ArgFalse, (void *) &appData.autoCallFlag, FALSE, INVALID },
363 { "-autoflag", ArgFalse, (void *) &appData.autoCallFlag, FALSE, INVALID },
364 { "autoComment", ArgBoolean, (void *) &appData.autoComment, TRUE, (ArgIniType) FALSE },
365 { "autocomm", ArgTrue, (void *) &appData.autoComment, FALSE, INVALID },
366 { "xautocomm", ArgFalse, (void *) &appData.autoComment, FALSE, INVALID },
367 { "-autocomm", ArgFalse, (void *) &appData.autoComment, FALSE, INVALID },
368 { "autoCreateLogon", ArgBoolean, (void *) &appData.autoCreateLogon, TRUE, (ArgIniType) FALSE },
369 { "autoObserve", ArgBoolean, (void *) &appData.autoObserve, TRUE, (ArgIniType) FALSE },
370 { "autobs", ArgTrue, (void *) &appData.autoObserve, FALSE, INVALID },
371 { "xautobs", ArgFalse, (void *) &appData.autoObserve, FALSE, INVALID },
372 { "-autobs", ArgFalse, (void *) &appData.autoObserve, FALSE, INVALID },
373 { "flipView", ArgBoolean, (void *) &appData.flipView, FALSE, (ArgIniType) FALSE },
374 { "flip", ArgTrue, (void *) &appData.flipView, FALSE, INVALID },
375 { "xflip", ArgFalse, (void *) &appData.flipView, FALSE, INVALID },
376 { "-flip", ArgFalse, (void *) &appData.flipView, FALSE, INVALID },
377 { "autoFlipView", ArgBoolean, (void *) &appData.autoFlipView, TRUE, (ArgIniType) TRUE },
378 { "autoflip", ArgTrue, (void *) &appData.autoFlipView, FALSE, INVALID },
379 { "xautoflip", ArgFalse, (void *) &appData.autoFlipView, FALSE, INVALID },
380 { "-autoflip", ArgFalse, (void *) &appData.autoFlipView, FALSE, INVALID },
381 { "autoRaiseBoard", ArgBoolean, (void *) &appData.autoRaiseBoard, TRUE, (ArgIniType) TRUE },
382 { "autoraise", ArgTrue, (void *) &appData.autoRaiseBoard, FALSE, INVALID },
383 { "xautoraise", ArgFalse, (void *) &appData.autoRaiseBoard, FALSE, INVALID },
384 { "-autoraise", ArgFalse, (void *) &appData.autoRaiseBoard, FALSE, INVALID },
385 { "alwaysPromoteToQueen", ArgBoolean, (void *) &appData.alwaysPromoteToQueen, TRUE, (ArgIniType) FALSE },
386 { "queen", ArgTrue, (void *) &appData.alwaysPromoteToQueen, FALSE, INVALID },
387 { "xqueen", ArgFalse, (void *) &appData.alwaysPromoteToQueen, FALSE, INVALID },
388 { "-queen", ArgFalse, (void *) &appData.alwaysPromoteToQueen, FALSE, INVALID },
389 { "oldSaveStyle", ArgBoolean, (void *) &appData.oldSaveStyle, TRUE, (ArgIniType) FALSE },
390 { "oldsave", ArgTrue, (void *) &appData.oldSaveStyle, FALSE, INVALID },
391 { "xoldsave", ArgFalse, (void *) &appData.oldSaveStyle, FALSE, INVALID },
392 { "-oldsave", ArgFalse, (void *) &appData.oldSaveStyle, FALSE, INVALID },
393 { "quietPlay", ArgBoolean, (void *) &appData.quietPlay, TRUE, (ArgIniType) FALSE },
394 { "quiet", ArgTrue, (void *) &appData.quietPlay, FALSE, INVALID },
395 { "xquiet", ArgFalse, (void *) &appData.quietPlay, FALSE, INVALID },
396 { "-quiet", ArgFalse, (void *) &appData.quietPlay, FALSE, INVALID },
397 { "getMoveList", ArgBoolean, (void *) &appData.getMoveList, TRUE, (ArgIniType) TRUE },
398 { "moves", ArgTrue, (void *) &appData.getMoveList, FALSE, INVALID },
399 { "xmoves", ArgFalse, (void *) &appData.getMoveList, FALSE, INVALID },
400 { "-moves", ArgFalse, (void *) &appData.getMoveList, FALSE, INVALID },
401 { "testLegality", ArgBoolean, (void *) &appData.testLegality, TRUE, (ArgIniType) TRUE },
402 { "legal", ArgTrue, (void *) &appData.testLegality, FALSE, INVALID },
403 { "xlegal", ArgFalse, (void *) &appData.testLegality, FALSE, INVALID },
404 { "-legal", ArgFalse, (void *) &appData.testLegality, FALSE, INVALID },
405 { "premove", ArgBoolean, (void *) &appData.premove, TRUE, (ArgIniType) TRUE },
406 { "pre", ArgTrue, (void *) &appData.premove, FALSE, INVALID },
407 { "xpre", ArgFalse, (void *) &appData.premove, FALSE, INVALID },
408 { "-pre", ArgFalse, (void *) &appData.premove, FALSE, INVALID },
409 { "premoveWhite", ArgBoolean, (void *) &appData.premoveWhite, TRUE, (ArgIniType) FALSE },
410 { "prewhite", ArgTrue, (void *) &appData.premoveWhite, FALSE, INVALID },
411 { "xprewhite", ArgFalse, (void *) &appData.premoveWhite, FALSE, INVALID },
412 { "-prewhite", ArgFalse, (void *) &appData.premoveWhite, FALSE, INVALID },
413 { "premoveWhiteText", ArgString, (void *) &appData.premoveWhiteText, TRUE, (ArgIniType) "" },
414 { "premoveBlack", ArgBoolean, (void *) &appData.premoveBlack, TRUE, (ArgIniType) FALSE },
415 { "preblack", ArgTrue, (void *) &appData.premoveBlack, FALSE, INVALID },
416 { "xpreblack", ArgFalse, (void *) &appData.premoveBlack, FALSE, INVALID },
417 { "-preblack", ArgFalse, (void *) &appData.premoveBlack, FALSE, INVALID },
418 { "premoveBlackText", ArgString, (void *) &appData.premoveBlackText, TRUE, (ArgIniType) "" },
419 { "icsAlarm", ArgBoolean, (void *) &appData.icsAlarm, TRUE, (ArgIniType) TRUE},
420 { "alarm", ArgTrue, (void *) &appData.icsAlarm, FALSE},
421 { "xalarm", ArgFalse, (void *) &appData.icsAlarm, FALSE},
422 { "-alarm", ArgFalse, (void *) &appData.icsAlarm, FALSE},
423 { "icsAlarmTime", ArgInt, (void *) &appData.icsAlarmTime, TRUE, (ArgIniType) 5000},
424 { "localLineEditing", ArgBoolean, (void *) &appData.localLineEditing, FALSE, (ArgIniType) TRUE},
425 { "edit", ArgTrue, (void *) &appData.localLineEditing, FALSE, INVALID },
426 { "xedit", ArgFalse, (void *) &appData.localLineEditing, FALSE, INVALID },
427 { "-edit", ArgFalse, (void *) &appData.localLineEditing, FALSE, INVALID },
428 { "animateMoving", ArgBoolean, (void *) &appData.animate, TRUE, (ArgIniType) TRUE },
429 { "animate", ArgTrue, (void *) &appData.animate, FALSE, INVALID },
430 { "xanimate", ArgFalse, (void *) &appData.animate, FALSE, INVALID },
431 { "-animate", ArgFalse, (void *) &appData.animate, FALSE, INVALID },
432 { "animateSpeed", ArgInt, (void *) &appData.animSpeed, TRUE, (ArgIniType) 10 },
433 { "animateDragging", ArgBoolean, (void *) &appData.animateDragging, TRUE, (ArgIniType) TRUE },
434 { "drag", ArgTrue, (void *) &appData.animateDragging, FALSE, INVALID },
435 { "xdrag", ArgFalse, (void *) &appData.animateDragging, FALSE, INVALID },
436 { "-drag", ArgFalse, (void *) &appData.animateDragging, FALSE, INVALID },
437 { "blindfold", ArgBoolean, (void *) &appData.blindfold, TRUE, (ArgIniType) FALSE },
438 { "blind", ArgTrue, (void *) &appData.blindfold, FALSE, INVALID },
439 { "xblind", ArgFalse, (void *) &appData.blindfold, FALSE, INVALID },
440 { "-blind", ArgFalse, (void *) &appData.blindfold, FALSE, INVALID },
441 { "highlightLastMove", ArgBoolean,
442 (void *) &appData.highlightLastMove, TRUE, (ArgIniType) TRUE },
443 { "highlight", ArgTrue, (void *) &appData.highlightLastMove, FALSE, INVALID },
444 { "xhighlight", ArgFalse, (void *) &appData.highlightLastMove, FALSE, INVALID },
445 { "-highlight", ArgFalse, (void *) &appData.highlightLastMove, FALSE, INVALID },
446 { "highlightDragging", ArgBoolean,
447 (void *) &appData.highlightDragging, !XBOARD, (ArgIniType) TRUE },
448 { "highdrag", ArgTrue, (void *) &appData.highlightDragging, FALSE, INVALID },
449 { "xhighdrag", ArgFalse, (void *) &appData.highlightDragging, FALSE, INVALID },
450 { "-highdrag", ArgFalse, (void *) &appData.highlightDragging, FALSE, INVALID },
451 { "colorizeMessages", ArgBoolean, (void *) &appData.colorize, TRUE, (ArgIniType) TRUE },
452 { "colorize", ArgTrue, (void *) &appData.colorize, FALSE, INVALID },
453 { "xcolorize", ArgFalse, (void *) &appData.colorize, FALSE, INVALID },
454 { "-colorize", ArgFalse, (void *) &appData.colorize, FALSE, INVALID },
455 { "colorShout", ArgAttribs, (void *) ColorShout, TRUE, INVALID },
456 { "colorSShout", ArgAttribs, (void *) ColorSShout, TRUE, INVALID },
457 { "colorCShout", ArgAttribs, (void *) ColorSShout, FALSE, INVALID }, // for XB
458 { "colorChannel1", ArgAttribs, (void *) ColorChannel1, TRUE, INVALID },
459 { "colorChannel", ArgAttribs, (void *) ColorChannel, TRUE, INVALID },
460 { "colorKibitz", ArgAttribs, (void *) ColorKibitz, TRUE, INVALID },
461 { "colorTell", ArgAttribs, (void *) ColorTell, TRUE, INVALID },
462 { "colorChallenge", ArgAttribs, (void *) ColorChallenge, TRUE, INVALID },
463 { "colorRequest", ArgAttribs, (void *) ColorRequest, TRUE, INVALID },
464 { "colorSeek", ArgAttribs, (void *) ColorSeek, TRUE, INVALID },
465 { "colorNormal", ArgAttribs, (void *) ColorNormal, TRUE, INVALID },
466 { "colorBackground", ArgColor, (void *) 7, TRUE, COLOR_BKGD },
467 { "soundShout", ArgFilename, (void *) &appData.soundShout, TRUE, (ArgIniType) "" },
468 { "soundSShout", ArgFilename, (void *) &appData.soundSShout, TRUE, (ArgIniType) "" },
469 { "soundCShout", ArgFilename, (void *) &appData.soundSShout, FALSE, (ArgIniType) "" }, // for XB
470 { "soundChannel1", ArgFilename, (void *) &appData.soundChannel1, TRUE, (ArgIniType) "" },
471 { "soundChannel", ArgFilename, (void *) &appData.soundChannel, TRUE, (ArgIniType) "" },
472 { "soundKibitz", ArgFilename, (void *) &appData.soundKibitz, TRUE, (ArgIniType) "" },
473 { "soundTell", ArgFilename, (void *) &appData.soundTell, TRUE, (ArgIniType) "" },
474 { "soundChallenge", ArgFilename, (void *) &appData.soundChallenge, TRUE, (ArgIniType) "" },
475 { "soundRequest", ArgFilename, (void *) &appData.soundRequest, TRUE, (ArgIniType) "" },
476 { "soundSeek", ArgFilename, (void *) &appData.soundSeek, TRUE, (ArgIniType) "" },
477 { "soundMove", ArgFilename, (void *) &appData.soundMove, TRUE, (ArgIniType) "" },
478 { "soundBell", ArgFilename, (void *) &appData.soundBell, TRUE, (ArgIniType) SOUND_BELL },
479 { "soundRoar", ArgFilename, (void *) &appData.soundRoar, TRUE, (ArgIniType) "" },
480 { "soundIcsWin", ArgFilename, (void *) &appData.soundIcsWin, TRUE, (ArgIniType) "" },
481 { "soundIcsLoss", ArgFilename, (void *) &appData.soundIcsLoss, TRUE, (ArgIniType) "" },
482 { "soundIcsDraw", ArgFilename, (void *) &appData.soundIcsDraw, TRUE, (ArgIniType) "" },
483 { "soundIcsUnfinished", ArgFilename, (void *) &appData.soundIcsUnfinished, TRUE, (ArgIniType) "" },
484 { "soundIcsAlarm", ArgFilename, (void *) &appData.soundIcsAlarm, TRUE, (ArgIniType) "" },
485 { "disguisePromotedPieces", ArgBoolean, (void *) &appData.disguise, TRUE, (ArgIniType) TRUE },
486 { "reuseFirst", ArgBoolean, (void *) &appData.reuseFirst, FALSE, (ArgIniType) TRUE },
487 { "reuse", ArgTrue, (void *) &appData.reuseFirst, FALSE, INVALID },
488 { "xreuse", ArgFalse, (void *) &appData.reuseFirst, FALSE, INVALID },
489 { "-reuse", ArgFalse, (void *) &appData.reuseFirst, FALSE, INVALID },
490 { "reuseChessPrograms", ArgBoolean,
491 (void *) &appData.reuseFirst, FALSE, INVALID }, /* backward compat only */
492 { "reuseSecond", ArgBoolean, (void *) &appData.reuseSecond, FALSE, (ArgIniType) TRUE },
493 { "reuse2", ArgTrue, (void *) &appData.reuseSecond, FALSE, INVALID },
494 { "xreuse2", ArgFalse, (void *) &appData.reuseSecond, FALSE, INVALID },
495 { "-reuse2", ArgFalse, (void *) &appData.reuseSecond, FALSE, INVALID },
496 { "comPortSettings", ArgCommSettings, (void *) /*&dcb*/ 0, TRUE, INVALID },
497 { "settingsFile", ArgSettingsFilename, (void *) &settingsFileName, FALSE, (ArgIniType) SETTINGS_FILE },
498 { "ini", ArgSettingsFilename, (void *) &settingsFileName, FALSE, INVALID },
499 { "at", ArgSettingsFilename, (void *) NULL, FALSE, INVALID },
500 { "opt", ArgSettingsFilename, (void *) NULL, FALSE, INVALID },
501 { "saveSettingsFile", ArgFilename, (void *) &settingsFileName, FALSE, INVALID },
502 { "backupSettingsFile", ArgBackupSettingsFile, (void *) &settingsFileName, FALSE, INVALID },
503 { "saveSettingsOnExit", ArgBoolean, (void *) &saveSettingsOnExit, TRUE, (ArgIniType) TRUE },
504 { "chessProgram", ArgBoolean, (void *) &chessProgram, FALSE, (ArgIniType) FALSE },
505 { "cp", ArgTrue, (void *) &chessProgram, FALSE, INVALID },
506 { "xcp", ArgFalse, (void *) &chessProgram, FALSE, INVALID },
507 { "-cp", ArgFalse, (void *) &chessProgram, FALSE, INVALID },
508 { "icsMenu", ArgString, (void *) &icsTextMenuString, TRUE, (ArgIniType) ICS_TEXT_MENU_DEFAULT },
509 { "icsNames", ArgString, (void *) &icsNames, TRUE, (ArgIniType) ICS_NAMES },
510 { "singleEngineList", ArgBoolean, (void *) &singleList, !XBOARD, (ArgIniType) FALSE },
511 { "recentEngines", ArgInt, (void *) &appData.recentEngines, TRUE, (ArgIniType) 6 },
512 { "recentEngineList", ArgString, (void *) &appData.recentEngineList, TRUE, (ArgIniType) "" },
513 { "firstChessProgramNames", ArgString, (void *) &firstChessProgramNames,
514 TRUE, (ArgIniType) FCP_NAMES },
515 { "secondChessProgramNames", ArgString, (void *) &secondChessProgramNames,
516 !XBOARD, (ArgIniType) SCP_NAMES },
517 { "themeNames", ArgString, (void *) &appData.themeNames, TRUE, (ArgIniType) "native -upf false -ub false -ubt false -pid \"\"\n" },
518 { "addMasterOption", ArgMaster, NULL, FALSE, INVALID },
519 { "installEngine", ArgInstall, (void *) &firstChessProgramNames, FALSE, (ArgIniType) "" },
520 { "installTheme", ArgInstall, (void *) &appDatathemeNames, FALSE, (ArgIniType) "" },
521 { "initialMode", ArgString, (void *) &appData.initialMode, FALSE, (ArgIniType) "" },
522 { "mode", ArgString, (void *) &appData.initialMode, FALSE, INVALID },
523 { "variant", ArgString, (void *) &appData.variant, FALSE, (ArgIniType) "normal" },
524 { "firstProtocolVersion", ArgInt, (void *) &appData.firstProtocolVersion, FALSE, (ArgIniType) PROTOVER },
525 { "secondProtocolVersion", ArgInt, (void *) &appData.secondProtocolVersion,FALSE, (ArgIniType) PROTOVER },
526 { "showButtonBar", ArgBoolean, (void *) &appData.showButtonBar, TRUE, (ArgIniType) TRUE },
527 { "buttons", ArgTrue, (void *) &appData.showButtonBar, FALSE, INVALID },
528 { "xbuttons", ArgFalse, (void *) &appData.showButtonBar, FALSE, INVALID },
529 { "-buttons", ArgFalse, (void *) &appData.showButtonBar, FALSE, INVALID },
531 /* [AS] New features */
532 { "firstScoreAbs", ArgBoolean, (void *) &appData.firstScoreIsAbsolute, FALSE, (ArgIniType) FALSE },
533 { "secondScoreAbs", ArgBoolean, (void *) &appData.secondScoreIsAbsolute, FALSE, (ArgIniType) FALSE },
534 { "pgnExtendedInfo", ArgBoolean, (void *) &appData.saveExtendedInfoInPGN, TRUE, (ArgIniType) FALSE },
535 { "hideThinkingFromHuman", ArgBoolean, (void *) &appData.hideThinkingFromHuman, TRUE, (ArgIniType) FALSE },
536 { "liteBackTextureFile", ArgFilename, (void *) &appData.liteBackTextureFile, TRUE, (ArgIniType) "" },
537 { "lbtf", ArgFilename, (void *) &appData.liteBackTextureFile, FALSE, INVALID },
538 { "darkBackTextureFile", ArgFilename, (void *) &appData.darkBackTextureFile, TRUE, (ArgIniType) "" },
539 { "dbtf", ArgFilename, (void *) &appData.darkBackTextureFile, FALSE, INVALID },
540 { "liteBackTextureMode", ArgInt, (void *) &appData.liteBackTextureMode, TRUE, (ArgIniType) BACK_TEXTURE_MODE_PLAIN },
541 { "lbtm", ArgInt, (void *) &appData.liteBackTextureMode, FALSE, INVALID },
542 { "darkBackTextureMode", ArgInt, (void *) &appData.darkBackTextureMode, TRUE, (ArgIniType) BACK_TEXTURE_MODE_PLAIN },
543 { "dbtm", ArgInt, (void *) &appData.darkBackTextureMode, FALSE, INVALID },
544 { "renderPiecesWithFont", ArgString, (void *) &appData.renderPiecesWithFont, TRUE, (ArgIniType) "" },
545 { "pf", ArgString, (void *) &appData.renderPiecesWithFont, FALSE, INVALID },
546 { "fontPieceToCharTable", ArgString, (void *) &appData.fontToPieceTable, TRUE, (ArgIniType) "" },
547 { "fptc", ArgString, (void *) &appData.fontToPieceTable, FALSE, INVALID },
548 { "fontPieceBackColorWhite", ArgColor, (void *) 8, TRUE, (ArgIniType) WHITE_PIECE_COLOR },
549 { "fontPieceForeColorWhite", ArgColor, (void *) 9, TRUE, (ArgIniType) WHITE_PIECE_COLOR },
550 { "fontPieceBackColorBlack", ArgColor, (void *) 10, TRUE, (ArgIniType) BLACK_PIECE_COLOR },
551 { "fontPieceForeColorBlack", ArgColor, (void *) 11, TRUE, (ArgIniType) BLACK_PIECE_COLOR },
552 { "fpfcw", ArgColor, (void *) 9, FALSE, INVALID },
553 { "fpbcb", ArgColor, (void *) 10, FALSE, INVALID },
554 { "fontPieceSize", ArgInt, (void *) &appData.fontPieceSize, TRUE, (ArgIniType) 80 },
555 { "overrideLineGap", ArgInt, (void *) &appData.overrideLineGap, TRUE, (ArgIniType) 1 },
556 { "adjudicateLossThreshold", ArgInt, (void *) &appData.adjudicateLossThreshold, TRUE, (ArgIniType) 0 },
557 { "delayBeforeQuit", ArgInt, (void *) &appData.delayBeforeQuit, TRUE, (ArgIniType) 0 },
558 { "delayAfterQuit", ArgInt, (void *) &appData.delayAfterQuit, TRUE, (ArgIniType) 0 },
559 { "nameOfDebugFile", ArgFilename, (void *) &appData.nameOfDebugFile, FALSE, (ArgIniType) DEBUG_FILE },
560 { "debugfile", ArgFilename, (void *) &appData.nameOfDebugFile, FALSE, INVALID },
561 { "pgnEventHeader", ArgString, (void *) &appData.pgnEventHeader, TRUE, (ArgIniType) "Computer Chess Game" },
562 { "defaultFrcPosition", ArgInt, (void *) &appData.defaultFrcPosition, TRUE, (ArgIniType) -1 },
563 { "shuffleOpenings", ArgTrue, (void *) &shuffleOpenings, FALSE, INVALID },
564 { "fischerCastling", ArgTrue, (void *) &appData.fischerCastling, FALSE, INVALID },
565 { "gameListTags", ArgString, (void *) &appData.gameListTags, TRUE, (ArgIniType) GLT_DEFAULT_TAGS },
566 { "saveOutOfBookInfo", ArgBoolean, (void *) &appData.saveOutOfBookInfo, TRUE, (ArgIniType) TRUE },
567 { "showEvalInMoveHistory", ArgBoolean, (void *) &appData.showEvalInMoveHistory, TRUE, (ArgIniType) TRUE },
568 { "evalHistColorWhite", ArgColor, (void *) 12, TRUE, (ArgIniType) "#FFFFB0" },
569 { "evalHistColorBlack", ArgColor, (void *) 13, TRUE, (ArgIniType) "#AD5D3D" },
570 { "highlightMoveWithArrow", ArgBoolean, (void *) &appData.highlightMoveWithArrow, TRUE, (ArgIniType) FALSE },
571 { "highlightArrowColor", ArgColor, (void *) 14, TRUE, (ArgIniType) "#FFFF80" },
572 { "stickyWindows", ArgBoolean, (void *) &appData.useStickyWindows, TRUE, (ArgIniType) TRUE },
573 { "adjudicateDrawMoves", ArgInt, (void *) &appData.adjudicateDrawMoves, TRUE, (ArgIniType) 0 },
574 { "autoDisplayComment", ArgBoolean, (void *) &appData.autoDisplayComment, TRUE, (ArgIniType) TRUE },
575 { "autoDisplayTags", ArgBoolean, (void *) &appData.autoDisplayTags, TRUE, (ArgIniType) TRUE },
576 { "firstIsUCI", ArgBoolean, (void *) &appData.firstIsUCI, FALSE, (ArgIniType) FALSE },
577 { "fUCI", ArgTrue, (void *) &appData.firstIsUCI, FALSE, INVALID },
578 { "firstUCI", ArgTrue, (void *) &appData.firstIsUCI, FALSE, INVALID },
579 { "secondIsUCI", ArgBoolean, (void *) &appData.secondIsUCI, FALSE, (ArgIniType) FALSE },
580 { "secondUCI", ArgTrue, (void *) &appData.secondIsUCI, FALSE, INVALID },
581 { "sUCI", ArgTrue, (void *) &appData.secondIsUCI, FALSE, INVALID },
582 { "fUCCI", ArgTwo, (void *) &appData.firstIsUCI, FALSE, INVALID },
583 { "sUCCI", ArgTwo, (void *) &appData.secondIsUCI, FALSE, INVALID },
584 { "fUSI", ArgTwo, (void *) &appData.firstIsUCI, FALSE, INVALID },
585 { "sUSI", ArgTwo, (void *) &appData.secondIsUCI, FALSE, INVALID },
586 { "firstHasOwnBookUCI", ArgBoolean, (void *) &appData.firstHasOwnBookUCI, FALSE, (ArgIniType) TRUE },
587 { "fNoOwnBookUCI", ArgFalse, (void *) &appData.firstHasOwnBookUCI, FALSE, INVALID },
588 { "firstXBook", ArgFalse, (void *) &appData.firstHasOwnBookUCI, FALSE, INVALID },
589 { "secondHasOwnBookUCI", ArgBoolean, (void *) &appData.secondHasOwnBookUCI, FALSE, (ArgIniType) TRUE },
590 { "sNoOwnBookUCI", ArgFalse, (void *) &appData.secondHasOwnBookUCI, FALSE, INVALID },
591 { "secondXBook", ArgFalse, (void *) &appData.secondHasOwnBookUCI, FALSE, INVALID },
592 { "adapterCommand", ArgFilename, (void *) &appData.adapterCommand, TRUE, (ArgIniType) "polyglot -noini -ec \"%fcp\" -ed \"%fd\"" },
593 { "uxiAdapter", ArgFilename, (void *) &appData.ucciAdapter, TRUE, (ArgIniType) "" },
594 { "polyglotDir", ArgFilename, (void *) &appData.polyglotDir, TRUE, (ArgIniType) "" },
595 { "usePolyglotBook", ArgBoolean, (void *) &appData.usePolyglotBook, TRUE, (ArgIniType) FALSE },
596 { "polyglotBook", ArgFilename, (void *) &appData.polyglotBook, TRUE, (ArgIniType) "" },
597 { "bookDepth", ArgInt, (void *) &appData.bookDepth, TRUE, (ArgIniType) 12 },
598 { "bookVariation", ArgInt, (void *) &appData.bookStrength, TRUE, (ArgIniType) 50 },
599 { "discourageOwnBooks", ArgBoolean, (void *) &appData.defNoBook, TRUE, (ArgIniType) FALSE },
600 { "mcBookMode", ArgTrue, (void *) &mcMode, FALSE, (ArgIniType) FALSE },
601 { "defaultHashSize", ArgInt, (void *) &appData.defaultHashSize, TRUE, (ArgIniType) 64 },
602 { "defaultCacheSizeEGTB", ArgInt, (void *) &appData.defaultCacheSizeEGTB, TRUE, (ArgIniType) 4 },
603 { "defaultPathEGTB", ArgFilename, (void *) &appData.defaultPathEGTB, TRUE, (ArgIniType) "c:\\egtb" },
604 { "language", ArgFilename, (void *) &appData.language, TRUE, (ArgIniType) "" },
605 { "userFileDirectory", ArgFilename, (void *) &homeDir, FALSE, (ArgIniType) installDir },
606 { "usePieceFont", ArgBoolean, (void *) &appData.useFont, TRUE, (ArgIniType) FALSE },
607 { "upf", ArgBoolean, (void *) &appData.useFont, FALSE, INVALID },
608 { "useBoardTexture", ArgBoolean, (void *) &appData.useBitmaps, TRUE, (ArgIniType) FALSE },
609 { "ubt", ArgBoolean, (void *) &appData.useBitmaps, FALSE, INVALID },
610 { "useBorder", ArgBoolean, (void *) &appData.useBorder, TRUE, (ArgIniType) FALSE },
611 { "ub", ArgBoolean, (void *) &appData.useBorder, FALSE, INVALID },
612 { "border", ArgFilename, (void *) &appData.border, TRUE, (ArgIniType) "" },
613 { "finger", ArgFilename, (void *) &appData.finger, FALSE, (ArgIniType) "" },
614 { "epd", ArgTrue, (void *) &appData.epd, FALSE, INVALID },
615 { "inscriptions", ArgString, (void *) &appData.inscriptions, FALSE, (ArgIniType) "" },
616 { "autoInstall", ArgString, (void *) &appData.autoInstall, XBOARD, (ArgIniType) "" },
617 { "fixedSize", ArgBoolean, (void *) &appData.fixedSize, TRUE, (ArgIniType) FALSE },
619 // [HGM] tournament options
620 { "tourneyFile", ArgFilename, (void *) &appData.tourneyFile, FALSE, (ArgIniType) "" },
621 { "tf", ArgFilename, (void *) &appData.tourneyFile, FALSE, INVALID },
622 { "participants", ArgString, (void *) &appData.participants, FALSE, (ArgIniType) "" },
623 { "tourneyType", ArgInt, (void *) &appData.tourneyType, FALSE, (ArgIniType) 0 },
624 { "tt", ArgInt, (void *) &appData.tourneyType, FALSE, INVALID },
625 { "tourneyCycles", ArgInt, (void *) &appData.tourneyCycles, FALSE, (ArgIniType) 1 },
626 { "cy", ArgInt, (void *) &appData.tourneyCycles, FALSE, INVALID },
627 { "results", ArgString, (void *) &appData.results, FALSE, (ArgIniType) "" },
628 { "syncAfterRound", ArgBoolean, (void *) &appData.roundSync, FALSE, (ArgIniType) FALSE },
629 { "syncAfterCycle", ArgBoolean, (void *) &appData.cycleSync, FALSE, (ArgIniType) TRUE },
630 { "seedBase", ArgInt, (void *) &appData.seedBase, FALSE, (ArgIniType) 1 },
631 { "pgnNumberTag", ArgBoolean, (void *) &appData.numberTag, TRUE, (ArgIniType) FALSE },
632 { "afterGame", ArgString, (void *) &appData.afterGame, FALSE, INVALID },
633 { "afterTourney", ArgString, (void *) &appData.afterTourney, FALSE, INVALID },
635 /* [HGM] board-size, adjudication and misc. options */
636 { "oneClickMove", ArgBoolean, (void *) &appData.oneClick, TRUE, (ArgIniType) FALSE },
637 { "boardWidth", ArgInt, (void *) &appData.NrFiles, FALSE, (ArgIniType) -1 },
638 { "boardHeight", ArgInt, (void *) &appData.NrRanks, FALSE, (ArgIniType) -1 },
639 { "rankOffset", ArgInt, (void *) &appData.rankOffset, FALSE, (ArgIniType) 0 },
640 { "holdingsSize", ArgInt, (void *) &appData.holdingsSize, FALSE, (ArgIniType) -1 },
641 { "defaultMatchGames", ArgInt, (void *) &appData.defaultMatchGames, TRUE, (ArgIniType) 10 },
642 { "matchPause", ArgInt, (void *) &appData.matchPause, TRUE, (ArgIniType) 10000 },
643 { "pieceToCharTable", ArgString, (void *) &appData.pieceToCharTable, FALSE, INVALID },
644 { "pieceNickNames", ArgString, (void *) &appData.pieceNickNames, FALSE, INVALID },
645 { "colorNickNames", ArgString, (void *) &appData.colorNickNames, FALSE, INVALID },
646 { "flipBlack", ArgBoolean, (void *) &appData.upsideDown, FALSE, (ArgIniType) FALSE },
647 { "allWhite", ArgBoolean, (void *) &appData.allWhite, FALSE, (ArgIniType) FALSE },
648 { "alphaRank", ArgBoolean, (void *) &appData.alphaRank, FALSE, (ArgIniType) FALSE },
649 { "firstAlphaRank", ArgBoolean, (void *) &first.alphaRank, FALSE, (ArgIniType) FALSE },
650 { "secondAlphaRank", ArgBoolean, (void *) &second.alphaRank, FALSE, (ArgIniType) FALSE },
651 { "testClaims", ArgBoolean, (void *) &appData.testClaims, TRUE, (ArgIniType) FALSE },
652 { "checkMates", ArgBoolean, (void *) &appData.checkMates, TRUE, (ArgIniType) FALSE },
653 { "materialDraws", ArgBoolean, (void *) &appData.materialDraws, TRUE, (ArgIniType) FALSE },
654 { "trivialDraws", ArgBoolean, (void *) &appData.trivialDraws, TRUE, (ArgIniType) FALSE },
655 { "ruleMoves", ArgInt, (void *) &appData.ruleMoves, TRUE, (ArgIniType) 51 },
656 { "repeatsToDraw", ArgInt, (void *) &appData.drawRepeats, TRUE, (ArgIniType) 6 },
657 { "backgroundObserve", ArgBoolean, (void *) &appData.bgObserve, TRUE, (ArgIniType) FALSE },
658 { "dualBoard", ArgBoolean, (void *) &appData.dualBoard, TRUE, (ArgIniType) FALSE },
659 { "autoKibitz", ArgTrue, (void *) &appData.autoKibitz, FALSE, INVALID },
660 { "engineDebugOutput", ArgInt, (void *) &appData.engineComments, FALSE, (ArgIniType) 1 },
661 { "userName", ArgString, (void *) &appData.userName, FALSE, INVALID },
662 { "rewindIndex", ArgInt, (void *) &appData.rewindIndex, FALSE, INVALID },
663 { "sameColorGames", ArgInt, (void *) &appData.sameColorGames, FALSE, INVALID },
664 { "smpCores", ArgInt, (void *) &appData.smpCores, TRUE, (ArgIniType) 1 },
665 { "egtFormats", ArgString, (void *) &appData.egtFormats, TRUE, (ArgIniType) "" },
666 { "niceEngines", ArgInt, (void *) &appData.niceEngines, TRUE, INVALID },
667 { "logoSize", ArgInt, (void *) &appData.logoSize, XBOARD, INVALID },
668 { "logoDir", ArgFilename, (void *) &appData.logoDir, XBOARD, (ArgIniType) "." },
669 { "firstLogo", ArgFilename, (void *) &appData.firstLogo, FALSE, (ArgIniType) "" },
670 { "secondLogo", ArgFilename, (void *) &appData.secondLogo, FALSE, (ArgIniType) "" },
671 { "autoLogo", ArgBoolean, (void *) &appData.autoLogo, TRUE, INVALID },
672 { "firstOptions", ArgString, (void *) &appData.firstOptions, FALSE, (ArgIniType) "" },
673 { "secondOptions", ArgString, (void *) &appData.secondOptions, FALSE, (ArgIniType) "" },
674 { "firstFeatures", ArgString, (void *) &appData.features[0], FALSE, (ArgIniType) "" },
675 { "secondFeatures", ArgString, (void *) &appData.features[1], FALSE, (ArgIniType) "" },
676 { "featureDefaults", ArgString, (void *) &appData.featureDefaults, TRUE, (ArgIniType) "" },
677 { "firstNeedsNoncompliantFEN", ArgString, (void *) &appData.fenOverride1, FALSE, (ArgIniType) NULL },
678 { "secondNeedsNoncompliantFEN", ArgString, (void *) &appData.fenOverride2, FALSE, (ArgIniType) NULL },
679 { "keepAlive", ArgInt, (void *) &appData.keepAlive, FALSE, INVALID },
680 { "icstype", ArgInt, (void *) &ics_type, FALSE, INVALID },
681 { "forceIllegalMoves", ArgTrue, (void *) &appData.forceIllegal, FALSE, INVALID },
682 { "showTargetSquares", ArgBoolean, (void *) &appData.markers, TRUE, (ArgIniType) FALSE },
683 { "firstPgnName", ArgString, (void *) &appData.pgnName[0], FALSE, (ArgIniType) "" },
684 { "fn", ArgString, (void *) &appData.pgnName[0], FALSE, INVALID },
685 { "secondPgnName", ArgString, (void *) &appData.pgnName[1], FALSE, (ArgIniType) "" },
686 { "sn", ArgString, (void *) &appData.pgnName[1], FALSE, INVALID },
687 { "absoluteAnalysisScores", ArgBoolean, (void *) &appData.whitePOV, TRUE, FALSE },
688 { "scoreWhite", ArgBoolean, (void *) &appData.scoreWhite, TRUE, FALSE },
689 { "evalZoom", ArgInt, (void *) &appData.zoom, TRUE, (ArgIniType) 1 },
690 { "evalThreshold", ArgInt, (void *) &appData.evalThreshold, TRUE, (ArgIniType) 25 },
691 { "firstPseudo", ArgTrue, (void *) &appData.pseudo[0], FALSE, FALSE },
692 { "secondPseudo", ArgTrue, (void *) &appData.pseudo[1], FALSE, FALSE },
693 { "fSAN", ArgTrue, (void *) &appData.pvSAN[0], FALSE, FALSE },
694 { "sSAN", ArgTrue, (void *) &appData.pvSAN[1], FALSE, FALSE },
695 { "pairingEngine", ArgFilename, (void *) &appData.pairingEngine, TRUE, "" },
696 { "defaultTourneyName", ArgFilename, (void *) &appData.defName, TRUE, "" },
697 { "eloThresholdAny", ArgInt, (void *) &appData.eloThreshold1, FALSE, (ArgIniType) 0 },
698 { "eloThresholdBoth", ArgInt, (void *) &appData.eloThreshold2, FALSE, (ArgIniType) 0 },
699 { "dateThreshold", ArgInt, (void *) &appData.dateThreshold, FALSE, (ArgIniType) 0 },
700 { "searchMode", ArgInt, (void *) &appData.searchMode, FALSE, (ArgIniType) 1 },
701 { "stretch", ArgInt, (void *) &appData.stretch, FALSE, (ArgIniType) 1 },
702 { "ignoreColors", ArgBoolean, (void *) &appData.ignoreColors, FALSE, FALSE },
703 { "findMirrorImage", ArgBoolean, (void *) &appData.findMirror, FALSE, FALSE },
704 { "viewer", ArgTrue, (void *) &appData.viewer, FALSE, FALSE },
705 { "viewerOptions", ArgString, (void *) &appData.viewerOptions, TRUE, (ArgIniType) "-ncp -engineOutputUp false -saveSettingsOnExit false" },
706 { "tourneyOptions", ArgString, (void *) &appData.tourneyOptions, TRUE, (ArgIniType) "-ncp -mm -saveSettingsOnExit false" },
707 { "autoCopyPV", ArgBoolean, (void *) &appData.autoCopyPV, TRUE, FALSE },
708 { "topLevel", ArgBoolean, (void *) &appData.topLevel, XBOARD, (ArgIniType) TOPLEVEL },
709 { "dialogColor", ArgString, (void *) &appData.dialogColor, XBOARD, (ArgIniType) "" },
710 { "buttonColor", ArgString, (void *) &appData.buttonColor, XBOARD, (ArgIniType) "" },
711 { "firstDrawDepth", ArgInt, (void *) &appData.drawDepth[0], FALSE, (ArgIniType) 0 },
712 { "secondDrawDepth", ArgInt, (void *) &appData.drawDepth[1], FALSE, (ArgIniType) 0 },
713 { "memoHeaders", ArgBoolean, (void *) &appData.headers, TRUE, (ArgIniType) FALSE },
716 { "zippyTalk", ArgBoolean, (void *) &appData.zippyTalk, FALSE, (ArgIniType) ZIPPY_TALK },
717 { "zt", ArgTrue, (void *) &appData.zippyTalk, FALSE, INVALID },
718 { "xzt", ArgFalse, (void *) &appData.zippyTalk, FALSE, INVALID },
719 { "-zt", ArgFalse, (void *) &appData.zippyTalk, FALSE, INVALID },
720 { "zippyPlay", ArgBoolean, (void *) &appData.zippyPlay, FALSE, (ArgIniType) ZIPPY_PLAY },
721 { "zp", ArgTrue, (void *) &appData.zippyPlay, FALSE, INVALID },
722 { "xzp", ArgFalse, (void *) &appData.zippyPlay, FALSE, INVALID },
723 { "-zp", ArgFalse, (void *) &appData.zippyPlay, FALSE, INVALID },
724 { "zippyLines", ArgFilename, (void *) &appData.zippyLines, FALSE, (ArgIniType) ZIPPY_LINES },
725 { "zippyPinhead", ArgString, (void *) &appData.zippyPinhead, FALSE, (ArgIniType) ZIPPY_PINHEAD },
726 { "zippyPassword", ArgString, (void *) &appData.zippyPassword, FALSE, (ArgIniType) ZIPPY_PASSWORD },
727 { "zippyPassword2", ArgString, (void *) &appData.zippyPassword2, FALSE, (ArgIniType) ZIPPY_PASSWORD2 },
728 { "zippyWrongPassword", ArgString, (void *) &appData.zippyWrongPassword,
729 FALSE, (ArgIniType) ZIPPY_WRONG_PASSWORD },
730 { "zippyAcceptOnly", ArgString, (void *) &appData.zippyAcceptOnly, FALSE, (ArgIniType) ZIPPY_ACCEPT_ONLY },
731 { "zippyUseI", ArgBoolean, (void *) &appData.zippyUseI, FALSE, (ArgIniType) ZIPPY_USE_I },
732 { "zui", ArgTrue, (void *) &appData.zippyUseI, FALSE, INVALID },
733 { "xzui", ArgFalse, (void *) &appData.zippyUseI, FALSE, INVALID },
734 { "-zui", ArgFalse, (void *) &appData.zippyUseI, FALSE, INVALID },
735 { "zippyBughouse", ArgInt, (void *) &appData.zippyBughouse, FALSE, (ArgIniType) ZIPPY_BUGHOUSE },
736 { "zippyNoplayCrafty", ArgBoolean, (void *) &appData.zippyNoplayCrafty,
737 FALSE, (ArgIniType) ZIPPY_NOPLAY_CRAFTY },
738 { "znc", ArgTrue, (void *) &appData.zippyNoplayCrafty, FALSE, INVALID },
739 { "xznc", ArgFalse, (void *) &appData.zippyNoplayCrafty, FALSE, INVALID },
740 { "-znc", ArgFalse, (void *) &appData.zippyNoplayCrafty, FALSE, INVALID },
741 { "zippyGameEnd", ArgString, (void *) &appData.zippyGameEnd, FALSE, (ArgIniType) ZIPPY_GAME_END },
742 { "zippyGameStart", ArgString, (void *) &appData.zippyGameStart, FALSE, (ArgIniType) ZIPPY_GAME_START },
743 { "zippyAdjourn", ArgBoolean, (void *) &appData.zippyAdjourn, FALSE, (ArgIniType) ZIPPY_ADJOURN },
744 { "zadj", ArgTrue, (void *) &appData.zippyAdjourn, FALSE, INVALID },
745 { "xzadj", ArgFalse, (void *) &appData.zippyAdjourn, FALSE, INVALID },
746 { "-zadj", ArgFalse, (void *) &appData.zippyAdjourn, FALSE, INVALID },
747 { "zippyAbort", ArgBoolean, (void *) &appData.zippyAbort, FALSE, (ArgIniType) ZIPPY_ABORT },
748 { "zab", ArgTrue, (void *) &appData.zippyAbort, FALSE, INVALID },
749 { "xzab", ArgFalse, (void *) &appData.zippyAbort, FALSE, INVALID },
750 { "-zab", ArgFalse, (void *) &appData.zippyAbort, FALSE, INVALID },
751 { "zippyVariants", ArgString, (void *) &appData.zippyVariants, FALSE, (ArgIniType) ZIPPY_VARIANTS },
752 { "zippyMaxGames", ArgInt, (void *)&appData.zippyMaxGames, FALSE, (ArgIniType) ZIPPY_MAX_GAMES},
753 { "zippyReplayTimeout", ArgInt, (void *)&appData.zippyReplayTimeout, FALSE, (ArgIniType) ZIPPY_REPLAY_TIMEOUT },
754 { "zippyShortGame", ArgInt, (void *)&appData.zippyShortGame, FALSE, INVALID },
755 /* Kludge to allow winboard.ini files from buggy 4.0.4 to be read: */
756 { "zippyReplyTimeout", ArgInt, (void *)&junk, FALSE, INVALID },
758 /* [HGM] options for broadcasting and time odds */
759 { "chatBoxes", ArgString, (void *) &appData.chatBoxes, !XBOARD, (ArgIniType) NULL },
760 { "serverMoves", ArgString, (void *) &appData.serverMovesName, FALSE, (ArgIniType) NULL },
761 { "serverFile", ArgString, (void *) &appData.serverFileName, FALSE, (ArgIniType) NULL },
762 { "suppressLoadMoves", ArgBoolean, (void *) &appData.suppressLoadMoves, FALSE, (ArgIniType) FALSE },
763 { "serverPause", ArgInt, (void *) &appData.serverPause, FALSE, (ArgIniType) 15 },
764 { "firstTimeOdds", ArgInt, (void *) &appData.firstTimeOdds, FALSE, (ArgIniType) 1 },
765 { "secondTimeOdds", ArgInt, (void *) &appData.secondTimeOdds, FALSE, (ArgIniType) 1 },
766 { "timeOddsMode", ArgInt, (void *) &appData.timeOddsMode, TRUE, INVALID },
767 { "firstAccumulateTC", ArgInt, (void *) &appData.firstAccumulateTC, FALSE, (ArgIniType) 1 },
768 { "secondAccumulateTC", ArgInt, (void *) &appData.secondAccumulateTC, FALSE, (ArgIniType) 1 },
769 { "firstNPS", ArgInt, (void *) &appData.firstNPS, FALSE, (ArgIniType) -1 },
770 { "secondNPS", ArgInt, (void *) &appData.secondNPS, FALSE, (ArgIniType) -1 },
771 { "noGUI", ArgTrue, (void *) &appData.noGUI, FALSE, INVALID },
772 { "keepLineBreaksICS", ArgBoolean, (void *) &appData.noJoin, TRUE, INVALID },
773 { "wrapContinuationSequence", ArgString, (void *) &appData.wrapContSeq, FALSE, INVALID },
774 { "useInternalWrap", ArgTrue, (void *) &appData.useInternalWrap, FALSE, INVALID }, /* noJoin usurps this if set */
775 { "openCommand", ArgString, (void *) &appData.sysOpen, FALSE, "xdg-open" },
777 // [HGM] placement: put all window layouts last in ini file, but man X,Y before all others
778 { "minX", ArgZ, (void *) &minX, FALSE, INVALID }, // [HGM] placement: to make sure auxiliary windows can be placed
779 { "minY", ArgZ, (void *) &minY, FALSE, INVALID },
780 { "winWidth", ArgInt, (void *) &wpMain.width, TRUE, INVALID }, // [HGM] placement: dummies to remember right & bottom
781 { "winHeight", ArgInt, (void *) &wpMain.height, TRUE, INVALID }, // for attaching auxiliary windows to them
782 { "x", ArgInt, (void *) &wpMain.x, TRUE, (ArgIniType) CW_USEDEFAULT },
783 { "y", ArgInt, (void *) &wpMain.y, TRUE, (ArgIniType) CW_USEDEFAULT },
784 { "icsUp", ArgBoolean, (void *) &wpConsole.visible, XBOARD, (ArgIniType) FALSE },
785 { "icsX", ArgX, (void *) &wpConsole.x, TRUE, (ArgIniType) CW_USEDEFAULT },
786 { "icsY", ArgY, (void *) &wpConsole.y, TRUE, (ArgIniType) CW_USEDEFAULT },
787 { "icsW", ArgInt, (void *) &wpConsole.width, TRUE, (ArgIniType) CW_USEDEFAULT },
788 { "icsH", ArgInt, (void *) &wpConsole.height, TRUE, (ArgIniType) CW_USEDEFAULT },
789 { "commentX", ArgX, (void *) &wpComment.x, TRUE, (ArgIniType) CW_USEDEFAULT },
790 { "commentY", ArgY, (void *) &wpComment.y, TRUE, (ArgIniType) CW_USEDEFAULT },
791 { "commentW", ArgInt, (void *) &wpComment.width, TRUE, (ArgIniType) CW_USEDEFAULT },
792 { "commentH", ArgInt, (void *) &wpComment.height, TRUE, (ArgIniType) CW_USEDEFAULT },
793 { "tagsX", ArgX, (void *) &wpTags.x, TRUE, (ArgIniType) CW_USEDEFAULT },
794 { "tagsY", ArgY, (void *) &wpTags.y, TRUE, (ArgIniType) CW_USEDEFAULT },
795 { "tagsW", ArgInt, (void *) &wpTags.width, TRUE, (ArgIniType) CW_USEDEFAULT },
796 { "tagsH", ArgInt, (void *) &wpTags.height, TRUE, (ArgIniType) CW_USEDEFAULT },
797 { "gameListX", ArgX, (void *) &wpGameList.x, TRUE, (ArgIniType) CW_USEDEFAULT },
798 { "gameListY", ArgY, (void *) &wpGameList.y, TRUE, (ArgIniType) CW_USEDEFAULT },
799 { "gameListW", ArgInt, (void *) &wpGameList.width, TRUE, (ArgIniType) CW_USEDEFAULT },
800 { "gameListH", ArgInt, (void *) &wpGameList.height, TRUE, (ArgIniType) CW_USEDEFAULT },
802 { "slaveX", ArgX, (void *) &wpDualBoard.x, TRUE, (ArgIniType) CW_USEDEFAULT },
803 { "slaveY", ArgY, (void *) &wpDualBoard.y, TRUE, (ArgIniType) CW_USEDEFAULT },
804 { "slaveW", ArgInt, (void *) &wpDualBoard.width, FALSE, (ArgIniType) CW_USEDEFAULT },
805 { "slaveH", ArgInt, (void *) &wpDualBoard.height, FALSE, (ArgIniType) CW_USEDEFAULT },
807 /* [AS] Layout stuff */
808 { "moveHistoryUp", ArgBoolean, (void *) &wpMoveHistory.visible, TRUE, (ArgIniType) TRUE },
809 { "moveHistoryX", ArgX, (void *) &wpMoveHistory.x, TRUE, (ArgIniType) CW_USEDEFAULT },
810 { "moveHistoryY", ArgY, (void *) &wpMoveHistory.y, TRUE, (ArgIniType) CW_USEDEFAULT },
811 { "moveHistoryW", ArgInt, (void *) &wpMoveHistory.width, TRUE, (ArgIniType) CW_USEDEFAULT },
812 { "moveHistoryH", ArgInt, (void *) &wpMoveHistory.height, TRUE, (ArgIniType) CW_USEDEFAULT },
814 { "evalGraphUp", ArgBoolean, (void *) &wpEvalGraph.visible, TRUE, (ArgIniType) TRUE },
815 { "evalGraphX", ArgX, (void *) &wpEvalGraph.x, TRUE, (ArgIniType) CW_USEDEFAULT },
816 { "evalGraphY", ArgY, (void *) &wpEvalGraph.y, TRUE, (ArgIniType) CW_USEDEFAULT },
817 { "evalGraphW", ArgInt, (void *) &wpEvalGraph.width, TRUE, (ArgIniType) CW_USEDEFAULT },
818 { "evalGraphH", ArgInt, (void *) &wpEvalGraph.height, TRUE, (ArgIniType) CW_USEDEFAULT },
820 { "engineOutputUp", ArgBoolean, (void *) &wpEngineOutput.visible, TRUE, (ArgIniType) TRUE },
821 { "engineOutputX", ArgX, (void *) &wpEngineOutput.x, TRUE, (ArgIniType) CW_USEDEFAULT },
822 { "engineOutputY", ArgY, (void *) &wpEngineOutput.y, TRUE, (ArgIniType) CW_USEDEFAULT },
823 { "engineOutputW", ArgInt, (void *) &wpEngineOutput.width, TRUE, (ArgIniType) CW_USEDEFAULT },
824 { "engineOutputH", ArgInt, (void *) &wpEngineOutput.height, TRUE, (ArgIniType) CW_USEDEFAULT },
826 { NULL, ArgNone, NULL, FALSE, INVALID }
830 /* Kludge for indirection files on command line */
831 char* lastIndirectionFilename;
832 ArgDescriptor argDescriptorIndirection =
833 { "", ArgSettingsFilename, (void *) NULL, FALSE };
836 ExitArgError(char *msg, char *badArg, Boolean quit)
841 len = snprintf(buf, MSG_SIZ, msg, badArg);
842 if( (len >= MSG_SIZ) && appData.debugMode )
843 fprintf(debugFP, "ExitArgError: buffer truncated. Input: msg=%s badArg=%s\n", msg, badArg);
845 if(!quit) { printf(_("%s in settings file\n"), buf); return; } // DisplayError does not work yet at this stage...
846 DisplayFatalError(buf, 0, 2);
851 AppendToSettingsFile (char *line)
856 if(f = fopen(SETTINGS_FILE, "r")) {
859 while((buf[i] = c = fgetc(f)) != '\n' && c != EOF) if(i < MSG_SIZ-1) i++;
861 if(!strcmp(line, buf)) return; // line occurs
863 // line did not occur; add it
865 if(f = fopen(SETTINGS_FILE, "a")) {
868 fprintf(f, "-date %10lu\n%s\n", now.sec, line);
878 if(*p == '-' || *p == '+') p++;
879 while(*p) if(!isdigit(*p++)) ExitArgError(_("Bad integer value %s"), s, TRUE);
884 StringGet(void *getClosure)
886 char **p = (char **) getClosure;
891 FileGet(void *getClosure)
894 FILE* f = (FILE*) getClosure;
897 if (c == '\r') c = getc(f); // work around DOS format files by bypassing the '\r' completely
904 /* Parse settings file named "name". If file found, return the
905 full name in fullname and return TRUE; else return FALSE */
907 ParseSettingsFile(char *name, char **addr)
911 char buf[MSG_SIZ], fullname[MSG_SIZ];
914 ok = MySearchPath(installDir, name, fullname);
915 if(!ok && strchr(name, '.') == NULL)
916 { // append default file-name extension '.ini' when needed
917 len = snprintf(buf,MSG_SIZ, "%s.ini", name);
918 if( (len >= MSG_SIZ) && appData.debugMode )
919 fprintf(debugFP, "ParseSettingsFile: buffer truncated. Input: name=%s \n",name);
921 ok = MySearchPath(installDir, buf, fullname);
924 f = fopen(fullname, "r");
926 if(f == NULL && *fullname != '/' && !addr) { // when a relative name did not work
928 snprintf(buf, MSG_SIZ, "~/.xboard/themes/conf/%s", name);
929 MySearchPath(installDir, buf, fullname); // first look in user's own files
930 f = fopen(fullname, "r");
932 snprintf(buf, MSG_SIZ, "%s/themes/conf", DATADIR);
933 MySearchPath(buf, name, fullname); // also look in standard place
934 f = fopen(fullname, "r");
940 ASSIGN(*addr, fullname);
942 ParseArgs(FileGet, f);
951 ParseArgs(GetFunc get, void *cl)
953 char argName[MAX_ARG_LEN];
954 char argValue[MAX_ARG_LEN];
960 int posarg = 4; // default is game file
965 while (ch == ' ' || ch == '\n' || ch == '\t') ch = get(cl);
966 if (ch == NULLCHAR) break;
968 /* Comment to end of line */
970 while (ch != '\n' && ch != NULLCHAR) ch = get(cl);
972 } else if (ch == SLASH || ch == '-') {
975 while (ch != ' ' && ch != '=' && ch != ':' && ch != NULLCHAR &&
976 ch != '\n' && ch != '\t') {
981 for (ad = argDescriptors; ad->argName != NULL; ad++)
982 if (strcmp(ad->argName, argName + 1) == 0) break;
983 if (ad->argName == NULL) {
984 char endChar = (ch && ch != '\n' && (ch = get(cl)) == '{' ? '}' : '\n');
985 ExitArgError(_("Unrecognized argument %s"), argName, get != &FileGet); // [HGM] make unknown argument non-fatal
986 while (ch != endChar && ch != NULLCHAR) ch = get(cl); // but skip rest of line it is on (or until closing '}' )
987 if(ch == '}') ch = get(cl);
988 continue; // so that when it is in a settings file, it is the only setting that will be purged from it
990 } else if (ch == '@') {
991 /* Indirection file */
992 ad = &argDescriptorIndirection;
995 /* Positional argument */
996 ad = &argDescriptors[posarg++];
998 strncpy(argName, ad->argName,sizeof(argName)/sizeof(argName[0]));
1001 if (ad->argType == ArgTwo) { // [HGM] kludgey arg type, not suitable for saving
1002 *(Boolean *) ad->argLoc = 2;
1005 if (ad->argType == ArgTrue) {
1006 *(Boolean *) ad->argLoc = TRUE;
1009 if (ad->argType == ArgFalse) {
1010 *(Boolean *) ad->argLoc = FALSE;
1014 while (ch == ' ' || ch == '=' || ch == ':' || ch == '\t') ch = get(cl);
1015 if (ch == NULLCHAR || ch == '\n') {
1016 ExitArgError(_("No value provided for argument %s"), argName, TRUE);
1020 // Quoting with { }. No characters have to (or can) be escaped.
1021 // Thus the string cannot contain a '}' character.
1041 } else if (ch == '\'' || ch == '"') {
1042 // Quoting with ' ' or " ", with \ as escape character.
1043 // Inconvenient for long strings that may contain Windows filenames.
1069 if (ad->argType == ArgFilename
1070 || ad->argType == ArgSettingsFilename) {
1076 ExitArgError(_("Incomplete \\ escape in value for %s"), argName, TRUE);
1100 for (i = 0; i < 3; i++) {
1101 if (ch >= '0' && ch <= '7') {
1102 octval = octval*8 + (ch - '0');
1109 *q++ = (char) octval;
1120 while ((ch != ' ' || posflag) && ch != NULLCHAR && ch != '\t' && ch != '\n') { // space allowed in positional arg
1127 if(posflag) { // positional argument: the argName was implied, and per default set as -lgf
1128 int len = strlen(argValue) - 4; // start of filename extension
1129 if(len < 0) len = 0;
1130 if(!StrCaseCmp(argValue + len, ".trn")) {
1131 ad = &argDescriptors[2]; // correct implied type to -tf
1132 appData.tourney = TRUE; // let it parse -tourneyOptions later
1133 } else if(!StrCaseCmp(argValue + len, ".fen") || !StrCaseCmp(argValue + len, ".epd")) {
1134 ad = &argDescriptors[1]; // correct implied type to -lpf
1135 appData.viewer = TRUE;
1136 } else if(!StrCaseCmp(argValue + len, ".ini") || !StrCaseCmp(argValue + len, ".xop")) {
1137 ad = &argDescriptors[0]; // correct implied type to -opt
1138 } else if(GetEngineLine(argValue, 11)) {
1139 ad = &argDescriptors[3]; // correct implied type to -is
1140 } else { // keep default -lgf, but let it imply viewer mode as well
1141 appData.viewer = TRUE;
1143 strncpy(argName, ad->argName,sizeof(argName)/sizeof(argName[0]));
1146 switch (ad->argType) {
1148 *(int *) ad->argLoc = ValidateInt(argValue);
1152 *(int *) ad->argLoc = ValidateInt(argValue) + wpMain.x; // [HGM] placement: translate stored relative to absolute
1156 *(int *) ad->argLoc = ValidateInt(argValue) + wpMain.y; // (this is really kludgey, it should be done where used...)
1160 *(int *) ad->argLoc = ValidateInt(argValue);
1161 EnsureOnScreen(&wpMain.x, &wpMain.y, minX, minY);
1165 *(float *) ad->argLoc = (float) atof(argValue);
1170 if(argValue[0] == '~' && argValue[1] == '~') {
1171 char buf[4*MSG_SIZ]; // expand ~~
1172 snprintf(buf, 4*MSG_SIZ, "%s%s", DATADIR, argValue+2);
1173 ASSIGN(*(char **) ad->argLoc, buf);
1176 ASSIGN(*(char **) ad->argLoc, argValue);
1179 case ArgBackupSettingsFile: // no-op if non-default settings-file already successfully read
1180 if(strcmp(*(char**)ad->argLoc, SETTINGS_FILE)) break;
1181 case ArgSettingsFilename:
1183 if (ParseSettingsFile(argValue, (char**)ad->argLoc)) {
1185 if (ad->argLoc != NULL) {
1187 ExitArgError(_("Failed to open indirection file %s"), argValue, TRUE);
1194 switch (argValue[0]) {
1197 *(Boolean *) ad->argLoc = TRUE;
1201 *(Boolean *) ad->argLoc = FALSE;
1204 ExitArgError(_("Unrecognized boolean argument value %s"), argValue, TRUE);
1210 ParseColor((int)(intptr_t)ad->argLoc, argValue);
1214 ColorClass cc = (ColorClass)ad->argLoc;
1215 ParseTextAttribs(cc, argValue); // [HGM] wrapper for platform independency
1220 ParseBoardSize(ad->argLoc, argValue);
1224 ParseFont(argValue, (int)(intptr_t)ad->argLoc);
1227 case ArgCommSettings:
1228 ParseCommPortSettings(argValue);
1232 AppendToSettingsFile(argValue);
1236 q = *(char **) ad->argLoc;
1237 if((saveDate == 0 || saveDate - dateStamp < 0) && !strstr(q, argValue) ) {
1238 int l = strlen(q) + strlen(argValue);
1239 *(char **) ad->argLoc = malloc(l+2);
1240 snprintf(*(char **) ad->argLoc, l+2, "%s%s\n", q, argValue);
1246 ExitArgError(_("Unrecognized argument %s"), argValue, TRUE);
1256 ParseArgsFromString(char *p)
1258 ParseArgs(StringGet, &p);
1262 ParseArgsFromFile(FILE *f)
1264 ParseArgs(FileGet, f);
1268 ParseIcsTextMenu(char *icsTextMenuString)
1271 IcsTextMenuEntry *e = icsTextMenuEntry;
1272 char *p = icsTextMenuString;
1273 while (e->item != NULL && e < icsTextMenuEntry + ICS_TEXT_MENU_SIZE) {
1276 if (e->command != NULL) {
1282 e = icsTextMenuEntry;
1283 while (*p && e < icsTextMenuEntry + ICS_TEXT_MENU_SIZE) {
1284 if (*p == ';' || *p == '\n') {
1285 e->item = strdup("-");
1288 } else if (*p == '-') {
1289 e->item = strdup("-");
1294 char *q, *r, *s, *t;
1297 if (q == NULL) break;
1299 r = strchr(q + 1, ',');
1300 if (r == NULL) break;
1302 s = strchr(r + 1, ',');
1303 if (s == NULL) break;
1306 t = strchr(s + 1, c);
1309 t = strchr(s + 1, c);
1311 if (t != NULL) *t = NULLCHAR;
1312 e->item = strdup(p);
1313 e->command = strdup(q + 1);
1314 e->getname = *(r + 1) != '0';
1315 e->immediate = *(s + 1) != '0';
1319 if (t == NULL) break;
1328 SetDefaultTextAttribs()
1331 for (cc = (ColorClass)0; cc < ColorNone; cc++) {
1332 ParseTextAttribs(cc, defaultTextAttribs[cc]);
1337 SetDefaultsFromList()
1338 { // [HGM] ini: take defaults from argDescriptor list
1341 for(i=0; argDescriptors[i].argName != NULL; i++) {
1342 if(argDescriptors[i].defaultValue != INVALID)
1343 switch(argDescriptors[i].argType) {
1348 *(Boolean *) argDescriptors[i].argLoc = (int)(intptr_t)argDescriptors[i].defaultValue;
1354 *(int *) argDescriptors[i].argLoc = (int)(intptr_t)argDescriptors[i].defaultValue;
1358 case ArgSettingsFilename:
1359 if((char *)argDescriptors[i].defaultValue)
1360 *(char **) argDescriptors[i].argLoc = strdup((char *)argDescriptors[i].defaultValue);
1363 *(int *) argDescriptors[i].argLoc = (int)(intptr_t)argDescriptors[i].defaultValue;
1366 ParseColor((int)(intptr_t)argDescriptors[i].argLoc, (char*)argDescriptors[i].defaultValue);
1368 case ArgFloat: // floats cannot be casted to int without precision loss
1369 default: ; // some arg types cannot be initialized through table
1375 InitAppData(char *lpCmdLine)
1378 char buf[MAX_ARG_LEN], currDir[MSG_SIZ];
1381 /* Initialize to defaults */
1382 SetDefaultsFromList(); // this sets most defaults
1384 // some parameters for which there are no options!
1385 appData.Iconic = FALSE; /*unused*/
1386 appData.icsEngineAnalyze = FALSE;
1388 // float: casting to int is not harmless, so default cannot be contained in table
1389 appData.timeDelay = TIME_DELAY;
1390 appData.timeIncrement = -314159;
1392 // some complex, platform-dependent stuff that could not be handled from table
1393 SetDefaultTextAttribs();
1395 SetCommPortDefaults();
1397 /* Parse default settings file if any */
1398 ParseSettingsFile(settingsFileName, &settingsFileName);
1400 /* Parse command line */
1401 ParseArgs(StringGet, &lpCmdLine);
1403 if(appData.viewer && appData.viewerOptions[0]) ParseArgsFromString(appData.viewerOptions);
1404 if(appData.tourney && appData.tourneyOptions[0]) ParseArgsFromString(appData.tourneyOptions);
1405 chessProgram |= GetEngineLine(firstEngineLine, 0) || GetEngineLine(secondEngineLine, 1);
1406 appData.icsActive |= GetEngineLine(icsNick, 10);
1408 /* [HGM] make sure board size is acceptable */
1409 if(appData.NrFiles > BOARD_FILES ||
1410 appData.NrRanks > BOARD_RANKS )
1411 DisplayFatalError("Recompile with BOARD_RANKS or BOARD_FILES, to support this size", 0, 2);
1413 if(!*appData.secondChessProgram) { ASSIGN(appData.secondChessProgram, appData.firstChessProgram); } // [HGM] scp defaults to fcp
1415 /* [HGM] After parsing the options from the .ini file, and overruling them
1416 * with options from the command line, we now make an even higher priority
1417 * overrule by WB options attached to the engine command line. This so that
1418 * tournament managers can use WB options (such as /timeOdds) that follow
1421 if(appData.firstChessProgram != NULL) {
1422 char *p = StrStr(appData.firstChessProgram, "WBopt");
1423 static char *f = "first";
1424 char buf[MSG_SIZ], *q = buf;
1428 { // engine command line contains WinBoard options
1429 len = snprintf(buf, MSG_SIZ, p+6, f, f, f, f, f, f, f, f, f, f); // replace %s in them by "first"
1430 if( (len >= MSG_SIZ) && appData.debugMode )
1431 fprintf(debugFP, "InitAppData: buffer truncated.\n");
1433 ParseArgs(StringGet, &q);
1434 p[-1] = 0; // cut them offengine command line
1437 // now do same for second chess program
1438 if(appData.secondChessProgram != NULL) {
1439 char *p = StrStr(appData.secondChessProgram, "WBopt");
1440 static char *s = "second";
1441 char buf[MSG_SIZ], *q = buf;
1445 { // engine command line contains WinBoard options
1446 len = snprintf(buf,MSG_SIZ, p+6, s, s, s, s, s, s, s, s, s, s); // replace %s in them by "first"
1447 if( (len >= MSG_SIZ) && appData.debugMode )
1448 fprintf(debugFP, "InitAppData: buffer truncated.\n");
1450 ParseArgs(StringGet, &q);
1451 p[-1] = 0; // cut them offengine command line
1455 /* Propagate options that affect others */
1456 if (appData.matchMode || appData.matchGames) chessProgram = TRUE;
1457 if (appData.icsActive || appData.noChessProgram) {
1458 chessProgram = FALSE; /* not local chess program mode */
1460 if(appData.timeIncrement == -314159) { // new storage mechanism of (mps,inc) in use and no -inc on command line
1461 if(appData.movesPerSession <= 0) { // new encoding of incremental mode
1462 appData.timeIncrement = -appData.movesPerSession/1000.;
1463 } else appData.timeIncrement = -1;
1465 if(appData.movesPerSession <= 0) appData.movesPerSession = MOVES_PER_SESSION; // mps <= 0 is invalid in any case
1467 /* Open startup dialog if needed */
1468 if ((!appData.noChessProgram && !chessProgram && !appData.icsActive) ||
1469 (appData.icsActive && *appData.icsHost == NULLCHAR) ||
1470 (chessProgram && (*appData.firstChessProgram == NULLCHAR ||
1471 *appData.secondChessProgram == NULLCHAR)))
1472 PopUpStartupDialog();
1474 /* Make sure save files land in the right (?) directory */
1475 if (MyGetFullPathName(appData.saveGameFile, buf)) {
1476 appData.saveGameFile = strdup(buf);
1478 if (MyGetFullPathName(appData.savePositionFile, buf)) {
1479 appData.savePositionFile = strdup(buf);
1482 if(autoClose) { // was called for updating settingsfile only
1483 if(saveSettingsOnExit) SaveSettings(settingsFileName);
1487 /* Finish initialization for fonts and sounds */
1490 GetCurrentDirectory(MSG_SIZ, currDir);
1491 SetCurrentDirectory(installDir);
1493 SetCurrentDirectory(currDir);
1495 p = icsTextMenuString;
1497 FILE* f = fopen(p + 1, "r");
1499 DisplayFatalError(p + 1, errno, 2);
1502 i = fread(buf, 1, sizeof(buf)-1, f);
1507 ParseIcsTextMenu(strdup(p));
1511 SaveSettings(char* name)
1515 char dir[MSG_SIZ], buf[MSG_SIZ];
1516 int mps = appData.movesPerSession;
1519 if (!MainWindowUp() && !autoClose) return;
1521 GetTimeMark(&now); saveDate = now.sec;
1523 GetCurrentDirectory(MSG_SIZ, dir);
1524 if(MySearchPath(installDir, name, buf)) {
1525 f = fopen(buf, "w");
1527 SetCurrentDirectory(installDir);
1528 f = fopen(name, "w");
1529 SetCurrentDirectory(dir);
1532 DisplayError(name, errno);
1537 fprintf(f, "; %s Save Settings file\n", PACKAGE_STRING);
1539 fprintf(f, "; You can edit the values of options that are already set in this file,\n");
1540 fprintf(f, "; but if you add other options, the next Save Settings will not save them.\n");
1541 fprintf(f, "; Use a shortcut, an @indirection file, or a .bat file instead.\n");
1546 /* [AS] Move history */
1547 wpMoveHistory.visible = MoveHistoryIsUp();
1549 /* [AS] Eval graph */
1550 wpEvalGraph.visible = EvalGraphIsUp();
1552 /* [AS] Engine output */
1553 wpEngineOutput.visible = EngineOutputIsUp();
1555 // [HGM] in WB we have to copy sound names to appData first
1558 if(appData.timeIncrement >= 0) appData.movesPerSession = -1000*appData.timeIncrement; // kludge to store mps & inc as one
1560 for (ad = argDescriptors; ad->argName != NULL; ad++) {
1561 if (!ad->save) continue;
1562 switch (ad->argType) {
1565 char *p = *(char **)ad->argLoc;
1566 if(p == NULL) break; // just in case
1567 if ((strchr(p, '\\') || strchr(p, '\n')) && !strchr(p, '}')) {
1568 /* Quote multiline values or \-containing values
1569 with { } if possible */
1570 fprintf(f, OPTCHAR "%s" SEPCHAR "{%s}\n", ad->argName, p);
1572 /* Else quote with " " */
1573 fprintf(f, OPTCHAR "%s" SEPCHAR "\"", ad->argName);
1575 if (*p == '\n') fprintf(f, "\n");
1576 else if (*p == '\r') fprintf(f, "\\r");
1577 else if (*p == '\t') fprintf(f, "\\t");
1578 else if (*p == '\b') fprintf(f, "\\b");
1579 else if (*p == '\f') fprintf(f, "\\f");
1580 else if (*p < ' ') fprintf(f, "\\%03o", *p);
1581 else if (*p == '\"') fprintf(f, "\\\"");
1582 else if (*p == '\\') fprintf(f, "\\\\");
1592 fprintf(f, OPTCHAR "%s" SEPCHAR "%d\n", ad->argName, *(int *)ad->argLoc);
1595 fprintf(f, OPTCHAR "%s" SEPCHAR "%d\n", ad->argName, *(int *)ad->argLoc - wpMain.x); // [HGM] placement: store relative value
1598 fprintf(f, OPTCHAR "%s" SEPCHAR "%d\n", ad->argName, *(int *)ad->argLoc - wpMain.y);
1601 fprintf(f, OPTCHAR "%s" SEPCHAR "%g\n", ad->argName, *(float *)ad->argLoc);
1604 fprintf(f, OPTCHAR "%s" SEPCHAR "%s\n", ad->argName,
1605 (*(Boolean *)ad->argLoc) ? "true" : "false");
1608 if (*(Boolean *)ad->argLoc) fprintf(f, OPTCHAR "%s\n", ad->argName);
1611 if (!*(Boolean *)ad->argLoc) fprintf(f, OPTCHAR "%s\n", ad->argName);
1617 SaveAttribsArg(f, ad);
1620 if(*(char**)ad->argLoc == NULL) break; // just in case
1621 { char buf[MSG_SIZ];
1622 snprintf(buf, MSG_SIZ, "%s", *(char**)ad->argLoc);
1624 if(strstr(buf, DATADIR) == buf)
1625 snprintf(buf, MSG_SIZ, "~~%s", *(char**)ad->argLoc + strlen(DATADIR));
1627 if (strchr(buf, '\"')) {
1628 fprintf(f, OPTCHAR "%s" SEPCHAR "'%s'\n", ad->argName, buf);
1630 fprintf(f, OPTCHAR "%s" SEPCHAR "\"%s\"\n", ad->argName, buf);
1635 SaveBoardSize(f, ad->argName, ad->argLoc);
1640 case ArgCommSettings:
1641 PrintCommPortSettings(f, ad->argName);
1644 case ArgBackupSettingsFile:
1645 case ArgSettingsFilename: ;
1651 appData.movesPerSession = mps;
1655 GetArgValue(char *name)
1656 { // retrieve (as text) current value of string or int argument given by name
1657 // (this is used for maing the values available in the adapter command)
1661 for (ad = argDescriptors; ad->argName != NULL; ad++)
1662 if (strcmp(ad->argName, name) == 0) break;
1664 if (ad->argName == NULL) return FALSE;
1666 switch(ad->argType) {
1669 strncpy(name, *(char**) ad->argLoc, MSG_SIZ);
1673 len = snprintf(name, MSG_SIZ, "%d", *(int*) ad->argLoc);
1674 if( (len >= MSG_SIZ) && appData.debugMode )
1675 fprintf(debugFP, "GetArgValue: buffer truncated.\n");
1679 len = snprintf(name, MSG_SIZ, "%s", *(Boolean*) ad->argLoc ? "true" : "false");
1680 if( (len >= MSG_SIZ) && appData.debugMode )
1681 fprintf(debugFP, "GetArgValue: buffer truncated.\n");