Implement -installEngine option
[xboard.git] / args.h
1 /*
2  * args.c -- Option parsing and saving for X and Windows versions of XBoard
3  *
4  * Copyright 1991 by Digital Equipment Corporation, Maynard,
5  * Massachusetts.
6  *
7  * Enhancements Copyright 1992-2001, 2002, 2003, 2004, 2005, 2006,
8  * 2007, 2008, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc.
9  *
10  * Enhancements Copyright 2005 Alessandro Scotti
11  *
12  * The following terms apply to Digital Equipment Corporation's copyright
13  * interest in XBoard:
14  * ------------------------------------------------------------------------
15  * All Rights Reserved
16  *
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.
24  *
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
31  * SOFTWARE.
32  * ------------------------------------------------------------------------
33  *
34  * The following terms apply to the enhanced version of XBoard
35  * distributed by the Free Software Foundation:
36  * ------------------------------------------------------------------------
37  *
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.
42  *
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.
47  *
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/.  *
50  *
51  *------------------------------------------------------------------------
52  ** See the file ChangeLog for a revision history.
53 */
54
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.
59
60 typedef enum {
61   ArgString, ArgInt, ArgFloat, ArgBoolean, ArgTrue, ArgFalse, ArgNone,
62   ArgColor, ArgAttribs, ArgFilename, ArgBoardSize, ArgFont, ArgCommSettings,
63   ArgSettingsFilename, ArgBackupSettingsFile, ArgTwo, ArgInstall,
64   ArgX, ArgY, ArgZ // [HGM] placement: for window-placement options stored relative to main window
65 } ArgType;
66
67 typedef void *ArgIniType;
68
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! */
71
72 typedef struct {
73   char *argName;
74   ArgType argType;
75   /***
76   union {
77     String *pString;       // ArgString
78     int *pInt;             // ArgInt
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
88   } argLoc;
89   ***/
90   void *argLoc;
91   Boolean save;
92   ArgIniType defaultValue;
93 } ArgDescriptor;
94
95 typedef struct {
96   char *item;
97   char *command;
98   Boolean getname;
99   Boolean immediate;
100 } IcsTextMenuEntry;
101
102 IcsTextMenuEntry icsTextMenuEntry[ICS_TEXT_MENU_SIZE];
103
104 int junk;
105 Boolean singleList;
106 char *homeDir;
107 char *firstEngineLine;
108 char *secondEngineLine;
109 char *icsNick;
110 char *theme;
111
112 void EnsureOnScreen(int *x, int *y, int minX, int minY);
113 char StringGet(void *getClosure);
114 void ParseFont(char *name, int number);
115 void SetFontDefaults();
116 void CreateFonts();
117 void ParseColor(int n, char *name);
118 void ParseTextAttribs(ColorClass cc, char *s);
119 void ParseBoardSize(void * addr, char *name);
120 void ParseCommPortSettings(char *name);
121 void LoadAllSounds();
122 void SetCommPortDefaults();
123 void SaveFontArg(FILE *f, ArgDescriptor *ad);
124 void ExportSounds();
125 void SaveAttribsArg(FILE *f, ArgDescriptor *ad);
126 void SaveColor(FILE *f, ArgDescriptor *ad);
127 void SaveBoardSize(FILE *f, char *name, void *addr);
128 void PrintCommPortSettings(FILE *f, char *name);
129 void GetWindowCoords();
130 int  MainWindowUp();
131 void PopUpStartupDialog();
132 typedef char GetFunc(void *getClosure);
133 void ParseArgs(GetFunc get, void *cl);
134
135 // [HGM] this is an exact duplicate of something in winboard.c. Move to backend.c?
136 char *defaultTextAttribs[] =
137 {
138   COLOR_SHOUT, COLOR_SSHOUT, COLOR_CHANNEL1, COLOR_CHANNEL, COLOR_KIBITZ,
139   COLOR_TELL, COLOR_CHALLENGE, COLOR_REQUEST, COLOR_SEEK, COLOR_NORMAL,
140   "#000000"
141 };
142
143 ArgDescriptor argDescriptors[] = {
144   /* positional arguments */
145   { "opt", ArgSettingsFilename, (void *) NULL, FALSE, INVALID },
146   { "loadPositionFile", ArgFilename, (void *) &appData.loadPositionFile, FALSE, INVALID },
147   { "tourneyFile", ArgFilename, (void *) &appData.tourneyFile, FALSE, INVALID },
148   { "is", ArgString, (void *) &icsNick, FALSE, INVALID },
149   { "loadGameFile", ArgFilename, (void *) &appData.loadGameFile, FALSE, INVALID },
150   { "", ArgNone, NULL, FALSE, INVALID },
151   /* keyword arguments */
152   JAWS_ARGS
153   { "whitePieceColor", ArgColor, (void *) 0, TRUE, (ArgIniType) WHITE_PIECE_COLOR },
154   { "wpc", ArgColor, (void *) 0, FALSE, INVALID },
155   { "blackPieceColor", ArgColor, (void *) 1, TRUE, (ArgIniType) BLACK_PIECE_COLOR },
156   { "bpc", ArgColor, (void *) 1, FALSE, INVALID },
157   { "lightSquareColor", ArgColor, (void *) 2, TRUE, (ArgIniType) LIGHT_SQUARE_COLOR },
158   { "lsc", ArgColor, (void *) 2, FALSE, INVALID },
159   { "darkSquareColor", ArgColor, (void *) 3, TRUE, (ArgIniType) DARK_SQUARE_COLOR },
160   { "dsc", ArgColor, (void *) 3, FALSE, INVALID },
161   { "highlightSquareColor", ArgColor, (void *) 4, TRUE, (ArgIniType) HIGHLIGHT_SQUARE_COLOR },
162   { "hsc", ArgColor, (void *) 4, FALSE, INVALID },
163   { "premoveHighlightColor", ArgColor, (void *) 5, TRUE, (ArgIniType) PREMOVE_HIGHLIGHT_COLOR },
164   { "phc", ArgColor, (void *) 5, FALSE, INVALID },
165   { "movesPerSession", ArgInt, (void *) &appData.movesPerSession, TRUE, (ArgIniType) MOVES_PER_SESSION },
166   { "mps", ArgInt, (void *) &appData.movesPerSession, FALSE, INVALID },
167   { "initString", ArgString, (void *) &appData.firstInitString, FALSE, INVALID },
168   { "firstInitString", ArgString, (void *) &appData.firstInitString, FALSE, (ArgIniType) INIT_STRING },
169   { "secondInitString", ArgString, (void *) &appData.secondInitString, FALSE, (ArgIniType) INIT_STRING },
170   { "firstComputerString", ArgString, (void *) &appData.firstComputerString,
171     FALSE, (ArgIniType) COMPUTER_STRING },
172   { "secondComputerString", ArgString, (void *) &appData.secondComputerString,
173     FALSE, (ArgIniType) COMPUTER_STRING },
174   { "firstChessProgram", ArgFilename, (void *) &appData.firstChessProgram,
175     FALSE, (ArgIniType) FIRST_CHESS_PROGRAM },
176   { "fcp", ArgFilename, (void *) &appData.firstChessProgram, FALSE, INVALID },
177   { "secondChessProgram", ArgFilename, (void *) &appData.secondChessProgram,
178     FALSE, (ArgIniType) SECOND_CHESS_PROGRAM },
179   { "scp", ArgFilename, (void *) &appData.secondChessProgram, FALSE, INVALID },
180   { "fe", ArgString, (void *) &firstEngineLine, FALSE, "" },
181   { "se", ArgString, (void *) &secondEngineLine, FALSE, "" },
182   { "firstPlaysBlack", ArgBoolean, (void *) &appData.firstPlaysBlack, FALSE, FALSE },
183   { "fb", ArgTrue, (void *) &appData.firstPlaysBlack, FALSE, FALSE },
184   { "xfb", ArgFalse, (void *) &appData.firstPlaysBlack, FALSE, INVALID },
185   { "-fb", ArgFalse, (void *) &appData.firstPlaysBlack, FALSE, INVALID },
186   { "noChessProgram", ArgBoolean, (void *) &appData.noChessProgram, FALSE, FALSE },
187   { "ncp", ArgTrue, (void *) &appData.noChessProgram, FALSE, INVALID },
188   { "xncp", ArgFalse, (void *) &appData.noChessProgram, FALSE, INVALID },
189   { "-ncp", ArgFalse, (void *) &appData.noChessProgram, FALSE, INVALID },
190   { "firstHost", ArgString, (void *) &appData.firstHost, FALSE, (ArgIniType) FIRST_HOST },
191   { "fh", ArgString, (void *) &appData.firstHost, FALSE, INVALID },
192   { "secondHost", ArgString, (void *) &appData.secondHost, FALSE, (ArgIniType) SECOND_HOST },
193   { "sh", ArgString, (void *) &appData.secondHost, FALSE, INVALID },
194   { "firstDirectory", ArgFilename, (void *) &appData.firstDirectory, FALSE, (ArgIniType) FIRST_DIRECTORY },
195   { "fd", ArgFilename, (void *) &appData.firstDirectory, FALSE, INVALID },
196   { "secondDirectory", ArgFilename, (void *) &appData.secondDirectory, FALSE, (ArgIniType) SECOND_DIRECTORY },
197   { "sd", ArgFilename, (void *) &appData.secondDirectory, FALSE, INVALID },
198   { "variations", ArgBoolean, (void *) &appData.variations, TRUE, (ArgIniType) FALSE },
199   { "appendPV", ArgBoolean, (void *) &appData.autoExtend, TRUE, (ArgIniType) FALSE },
200   { "theme", ArgString, (void *) &theme, FALSE, (ArgIniType) "" },
201
202   /* some options only used by the XBoard front end, and ignored in WinBoard         */
203   /* Their saving is controlled by XBOARD, which in WinBoard is defined as FALSE */
204   { "internetChessServerInputBox", ArgBoolean, (void *) &appData.icsInputBox, XBOARD, (ArgIniType) FALSE },
205   { "icsinput", ArgTrue, (void *) &appData.icsInputBox, FALSE, INVALID },
206   { "xicsinput", ArgFalse, (void *) &appData.icsInputBox, FALSE, INVALID },
207   { "cmail", ArgString, (void *) &appData.cmailGameName, FALSE, (ArgIniType) "" },
208   { "soundProgram", ArgFilename, (void *) &appData.soundProgram, XBOARD, (ArgIniType) "play" },
209   { "fontSizeTolerance", ArgInt, (void *) &appData.fontSizeTolerance, XBOARD, (ArgIniType) 4 },
210   { "lowTimeWarningColor", ArgColor, (void *) 6, XBOARD, (ArgIniType) LOWTIMEWARNING_COLOR },
211   { "lowTimeWarning", ArgBoolean, (void *) &appData.lowTimeWarning, XBOARD, (ArgIniType) FALSE },
212   { "titleInWindow", ArgBoolean, (void *) &appData.titleInWindow, XBOARD, (ArgIniType) FALSE },
213   { "title", ArgTrue, (void *) &appData.titleInWindow, FALSE, INVALID },
214   { "xtitle", ArgFalse, (void *) &appData.titleInWindow, FALSE, INVALID },
215   { "flashCount", ArgInt, (void *) &appData.flashCount, XBOARD, INVALID }, // let X handle this
216   { "flashRate", ArgInt, (void *) &appData.flashRate, XBOARD, (ArgIniType) FLASH_RATE },
217   { "pieceImageDirectory", ArgFilename, (void *) &appData.pieceDirectory, TRUE, (ArgIniType) "" },
218   { "pid", ArgFilename, (void *) &appData.pieceDirectory, FALSE, INVALID },
219   { "trueColors", ArgBoolean, (void *) &appData.trueColors, TRUE, (ArgIniType) FALSE },
220   { "soundDirectory", ArgFilename, (void *) &appData.soundDirectory, XBOARD, (ArgIniType) "" },
221   { "msLoginDelay", ArgInt, (void *) &appData.msLoginDelay, XBOARD, (ArgIniType) MS_LOGIN_DELAY },
222   { "pasteSelection", ArgBoolean, (void *) &appData.pasteSelection, XBOARD, (ArgIniType) FALSE },
223
224   { "dropMenu", ArgBoolean, (void *) &appData.dropMenu, TRUE, (ArgIniType) FALSE },
225   { "pieceMenu", ArgBoolean, (void *) &appData.pieceMenu, TRUE, (ArgIniType) TRUE },
226   { "sweepPromotions", ArgBoolean, (void *) &appData.sweepSelect, TRUE, (ArgIniType) FALSE },
227   { "remoteShell", ArgFilename, (void *) &appData.remoteShell, FALSE, (ArgIniType) REMOTE_SHELL },
228   { "rsh", ArgFilename, (void *) &appData.remoteShell, FALSE, INVALID },
229   { "remoteUser", ArgString, (void *) &appData.remoteUser, FALSE, (ArgIniType) "" },
230   { "ruser", ArgString, (void *) &appData.remoteUser, FALSE, INVALID },
231   { "timeDelay", ArgFloat, (void *) &appData.timeDelay, TRUE, INVALID },
232   { "td", ArgFloat, (void *) &appData.timeDelay, FALSE, INVALID },
233   { "timeControl", ArgString, (void *) &appData.timeControl, TRUE, (ArgIniType) TIME_CONTROL },
234   { "tc", ArgString, (void *) &appData.timeControl, FALSE, INVALID },
235   { "timeIncrement", ArgFloat, (void *) &appData.timeIncrement, FALSE, INVALID },
236   { "inc", ArgFloat, (void *) &appData.timeIncrement, FALSE, INVALID },
237   { "internetChessServerMode", ArgBoolean, (void *) &appData.icsActive, FALSE, INVALID },
238   { "ics", ArgTrue, (void *) &appData.icsActive, FALSE, (ArgIniType) FALSE },
239   { "xics", ArgFalse, (void *) &appData.icsActive, FALSE, INVALID },
240   { "-ics", ArgFalse, (void *) &appData.icsActive, FALSE, INVALID },
241   { "is", ArgString, (void *) &icsNick, FALSE, "" },
242   { "internetChessServerHost", ArgString, (void *) &appData.icsHost, FALSE, (ArgIniType) "" },
243   { "icshost", ArgString, (void *) &appData.icsHost, FALSE, INVALID },
244   { "internetChessServerPort", ArgString, (void *) &appData.icsPort, FALSE, (ArgIniType) ICS_PORT },
245   { "icsport", ArgString, (void *) &appData.icsPort, FALSE, INVALID },
246   { "internetChessServerCommPort", ArgString, (void *) &appData.icsCommPort, FALSE, (ArgIniType) ICS_COMM_PORT },
247   { "icscomm", ArgString, (void *) &appData.icsCommPort, FALSE, INVALID },
248   { "internetChessServerComPort", ArgString, (void *) &appData.icsCommPort, FALSE, INVALID },
249   { "icscom", ArgString, (void *) &appData.icsCommPort, FALSE, INVALID },
250   { "internetChessServerLogonScript", ArgFilename, (void *) &appData.icsLogon, FALSE, (ArgIniType) ICS_LOGON },
251   { "icslogon", ArgFilename, (void *) &appData.icsLogon, FALSE, INVALID },
252   { "useTelnet", ArgBoolean, (void *) &appData.useTelnet, FALSE, INVALID },
253   { "telnet", ArgTrue, (void *) &appData.useTelnet, FALSE, INVALID },
254   { "xtelnet", ArgFalse, (void *) &appData.useTelnet, FALSE, INVALID },
255   { "-telnet", ArgFalse, (void *) &appData.useTelnet, FALSE, INVALID },
256   { "telnetProgram", ArgFilename, (void *) &appData.telnetProgram, FALSE, (ArgIniType) TELNET_PROGRAM },
257   { "internetChessserverHelper", ArgFilename, (void *) &appData.icsHelper,
258         FALSE, INVALID }, // for XB
259   { "icshelper", ArgFilename, (void *) &appData.icsHelper, FALSE, (ArgIniType) "" },
260   { "seekGraph", ArgBoolean, (void *) &appData.seekGraph, TRUE, (ArgIniType) FALSE },
261   { "sg", ArgTrue, (void *) &appData.seekGraph, FALSE, INVALID },
262   { "autoRefresh", ArgBoolean, (void *) &appData.autoRefresh, TRUE, (ArgIniType) FALSE },
263   { "autoBox", ArgBoolean, (void *) &appData.autoBox, XBOARD, (ArgIniType) TRUE },
264   { "gateway", ArgString, (void *) &appData.gateway, FALSE, (ArgIniType) "" },
265   { "loadGameFile", ArgFilename, (void *) &appData.loadGameFile, FALSE, (ArgIniType) "" },
266   { "lgf", ArgFilename, (void *) &appData.loadGameFile, FALSE, INVALID },
267   { "loadGameIndex", ArgInt, (void *) &appData.loadGameIndex, FALSE, (ArgIniType) 0 },
268   { "lgi", ArgInt, (void *) &appData.loadGameIndex, FALSE, INVALID },
269   { "saveGameFile", ArgFilename, (void *) &appData.saveGameFile, TRUE, (ArgIniType) "" },
270   { "sgf", ArgFilename, (void *) &appData.saveGameFile, FALSE, INVALID },
271   { "autoSaveGames", ArgBoolean, (void *) &appData.autoSaveGames, TRUE, (ArgIniType) FALSE },
272   { "autosave", ArgTrue, (void *) &appData.autoSaveGames, FALSE, INVALID },
273   { "xautosave", ArgFalse, (void *) &appData.autoSaveGames, FALSE, INVALID },
274   { "-autosave", ArgFalse, (void *) &appData.autoSaveGames, FALSE, INVALID },
275   { "onlyOwnGames", ArgBoolean, (void *) &appData.onlyOwn, TRUE, (ArgIniType) FALSE },
276   { "loadPositionFile", ArgFilename, (void *) &appData.loadPositionFile, FALSE, (ArgIniType) "" },
277   { "lpf", ArgFilename, (void *) &appData.loadPositionFile, FALSE, INVALID },
278   { "loadPositionIndex", ArgInt, (void *) &appData.loadPositionIndex, FALSE, (ArgIniType) 1 },
279   { "lpi", ArgInt, (void *) &appData.loadPositionIndex, FALSE, INVALID },
280   { "savePositionFile", ArgFilename, (void *) &appData.savePositionFile, FALSE, (ArgIniType) "" },
281   { "spf", ArgFilename, (void *) &appData.savePositionFile, FALSE, INVALID },
282   { "matchMode", ArgBoolean, (void *) &appData.matchMode, FALSE, (ArgIniType) FALSE },
283   { "mm", ArgTrue, (void *) &appData.matchMode, FALSE, INVALID },
284   { "xmm", ArgFalse, (void *) &appData.matchMode, FALSE, INVALID },
285   { "-mm", ArgFalse, (void *) &appData.matchMode, FALSE, INVALID },
286   { "matchGames", ArgInt, (void *) &appData.matchGames, FALSE, (ArgIniType) 0 },
287   { "mg", ArgInt, (void *) &appData.matchGames, FALSE, INVALID },
288   { "monoMode", ArgBoolean, (void *) &appData.monoMode, TRUE, (ArgIniType) FALSE },
289   { "mono", ArgTrue, (void *) &appData.monoMode, FALSE, INVALID },
290   { "xmono", ArgFalse, (void *) &appData.monoMode, FALSE, INVALID },
291   { "-mono", ArgFalse, (void *) &appData.monoMode, FALSE, INVALID },
292   { "debugMode", ArgBoolean, (void *) &appData.debugMode, FALSE, (ArgIniType) FALSE },
293   { "debug", ArgTrue, (void *) &appData.debugMode, FALSE, INVALID },
294   { "xdebug", ArgFalse, (void *) &appData.debugMode, FALSE, INVALID },
295   { "-debug", ArgFalse, (void *) &appData.debugMode, FALSE, INVALID },
296   { "clockMode", ArgBoolean, (void *) &appData.clockMode, FALSE, (ArgIniType) TRUE },
297   { "clock", ArgTrue, (void *) &appData.clockMode, FALSE, INVALID },
298   { "xclock", ArgFalse, (void *) &appData.clockMode, FALSE, INVALID },
299   { "-clock", ArgFalse, (void *) &appData.clockMode, FALSE, INVALID },
300   { "searchTime", ArgString, (void *) &appData.searchTime, FALSE, (ArgIniType) "" },
301   { "st", ArgString, (void *) &appData.searchTime, FALSE, INVALID },
302   { "searchDepth", ArgInt, (void *) &appData.searchDepth, FALSE, (ArgIniType) 0 },
303   { "depth", ArgInt, (void *) &appData.searchDepth, FALSE, INVALID },
304   { "showCoords", ArgBoolean, (void *) &appData.showCoords, TRUE, (ArgIniType) FALSE },
305   { "coords", ArgTrue, (void *) &appData.showCoords, FALSE, INVALID },
306   { "xcoords", ArgFalse, (void *) &appData.showCoords, FALSE, INVALID },
307   { "-coords", ArgFalse, (void *) &appData.showCoords, FALSE, INVALID },
308   { "showThinking", ArgBoolean, (void *) &appData.showThinking, TRUE, (ArgIniType) FALSE },
309   { "thinking", ArgTrue, (void *) &appData.showThinking, FALSE, INVALID },
310   { "xthinking", ArgFalse, (void *) &appData.showThinking, FALSE, INVALID },
311   { "-thinking", ArgFalse, (void *) &appData.showThinking, FALSE, INVALID },
312   { "ponderNextMove", ArgBoolean, (void *) &appData.ponderNextMove, TRUE, (ArgIniType) TRUE },
313   { "ponder", ArgTrue, (void *) &appData.ponderNextMove, FALSE, INVALID },
314   { "xponder", ArgFalse, (void *) &appData.ponderNextMove, FALSE, INVALID },
315   { "-ponder", ArgFalse, (void *) &appData.ponderNextMove, FALSE, INVALID },
316   { "periodicUpdates", ArgBoolean, (void *) &appData.periodicUpdates, TRUE, (ArgIniType) TRUE },
317   { "periodic", ArgTrue, (void *) &appData.periodicUpdates, FALSE, INVALID },
318   { "xperiodic", ArgFalse, (void *) &appData.periodicUpdates, FALSE, INVALID },
319   { "-periodic", ArgFalse, (void *) &appData.periodicUpdates, FALSE, INVALID },
320   { "popupExitMessage", ArgBoolean, (void *) &appData.popupExitMessage, TRUE, (ArgIniType) TRUE },
321   { "exit", ArgTrue, (void *) &appData.popupExitMessage, FALSE, INVALID },
322   { "xexit", ArgFalse, (void *) &appData.popupExitMessage, FALSE, INVALID },
323   { "-exit", ArgFalse, (void *) &appData.popupExitMessage, FALSE, INVALID },
324   { "popupMoveErrors", ArgBoolean, (void *) &appData.popupMoveErrors, TRUE, (ArgIniType) FALSE },
325   { "popup", ArgTrue, (void *) &appData.popupMoveErrors, FALSE, INVALID },
326   { "xpopup", ArgFalse, (void *) &appData.popupMoveErrors, FALSE, INVALID },
327   { "-popup", ArgFalse, (void *) &appData.popupMoveErrors, FALSE, INVALID },
328   { "popUpErrors", ArgBoolean, (void *) &appData.popupMoveErrors,
329     FALSE, INVALID }, /* only so that old WinBoard.ini files from betas can be read */
330   { "clockFont", ArgFont, (void *) CLOCK_FONT, TRUE, INVALID },
331   { "messageFont", ArgFont, (void *) MESSAGE_FONT, TRUE, INVALID },
332   { "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. */
333   { "coordFont", ArgFont, (void *) COORD_FONT, TRUE, INVALID },
334   { "tagsFont", ArgFont, (void *) EDITTAGS_FONT, TRUE, INVALID },
335   { "commentFont", ArgFont, (void *) COMMENT_FONT, TRUE, INVALID },
336   { "icsFont", ArgFont, (void *) CONSOLE_FONT, TRUE, INVALID },
337   { "moveHistoryFont", ArgFont, (void *) MOVEHISTORY_FONT, TRUE, INVALID }, /* [AS] */
338   { "gameListFont", ArgFont, (void *) GAMELIST_FONT, TRUE, INVALID }, /* [HGM] */
339   { "boardSize", ArgBoardSize, (void *) &boardSize,
340     TRUE, (ArgIniType) -1 }, /* must come after all fonts */
341   { "size", ArgBoardSize, (void *) &boardSize, FALSE, INVALID },
342   { "ringBellAfterMoves", ArgBoolean, (void *) &appData.ringBellAfterMoves,
343     FALSE, (ArgIniType) TRUE }, /* historical; kept only so old winboard.ini files will parse */
344   { "bell", ArgTrue, (void *) &appData.ringBellAfterMoves, FALSE, INVALID }, // for XB
345   { "xbell", ArgFalse, (void *) &appData.ringBellAfterMoves, FALSE, INVALID }, // for XB
346   { "movesound", ArgTrue, (void *) &appData.ringBellAfterMoves, FALSE, INVALID }, // for XB
347   { "xmovesound", ArgFalse, (void *) &appData.ringBellAfterMoves, FALSE, INVALID }, // for XB
348   { "alwaysOnTop", ArgBoolean, (void *) &alwaysOnTop, TRUE, INVALID },
349   { "top", ArgTrue, (void *) &alwaysOnTop, FALSE, INVALID },
350   { "xtop", ArgFalse, (void *) &alwaysOnTop, FALSE, INVALID },
351   { "-top", ArgFalse, (void *) &alwaysOnTop, FALSE, INVALID },
352   { "autoCallFlag", ArgBoolean, (void *) &appData.autoCallFlag, TRUE, (ArgIniType) FALSE },
353   { "autoflag", ArgTrue, (void *) &appData.autoCallFlag, FALSE, INVALID },
354   { "xautoflag", ArgFalse, (void *) &appData.autoCallFlag, FALSE, INVALID },
355   { "-autoflag", ArgFalse, (void *) &appData.autoCallFlag, FALSE, INVALID },
356   { "autoComment", ArgBoolean, (void *) &appData.autoComment, TRUE, (ArgIniType) FALSE },
357   { "autocomm", ArgTrue, (void *) &appData.autoComment, FALSE, INVALID },
358   { "xautocomm", ArgFalse, (void *) &appData.autoComment, FALSE, INVALID },
359   { "-autocomm", ArgFalse, (void *) &appData.autoComment, FALSE, INVALID },
360   { "autoCreateLogon", ArgBoolean, (void *) &appData.autoCreateLogon, TRUE, (ArgIniType) FALSE },
361   { "autoObserve", ArgBoolean, (void *) &appData.autoObserve, TRUE, (ArgIniType) FALSE },
362   { "autobs", ArgTrue, (void *) &appData.autoObserve, FALSE, INVALID },
363   { "xautobs", ArgFalse, (void *) &appData.autoObserve, FALSE, INVALID },
364   { "-autobs", ArgFalse, (void *) &appData.autoObserve, FALSE, INVALID },
365   { "flipView", ArgBoolean, (void *) &appData.flipView, FALSE, (ArgIniType) FALSE },
366   { "flip", ArgTrue, (void *) &appData.flipView, FALSE, INVALID },
367   { "xflip", ArgFalse, (void *) &appData.flipView, FALSE, INVALID },
368   { "-flip", ArgFalse, (void *) &appData.flipView, FALSE, INVALID },
369   { "autoFlipView", ArgBoolean, (void *) &appData.autoFlipView, TRUE, (ArgIniType) TRUE },
370   { "autoflip", ArgTrue, (void *) &appData.autoFlipView, FALSE, INVALID },
371   { "xautoflip", ArgFalse, (void *) &appData.autoFlipView, FALSE, INVALID },
372   { "-autoflip", ArgFalse, (void *) &appData.autoFlipView, FALSE, INVALID },
373   { "autoRaiseBoard", ArgBoolean, (void *) &appData.autoRaiseBoard, TRUE, (ArgIniType) TRUE },
374   { "autoraise", ArgTrue, (void *) &appData.autoRaiseBoard, FALSE, INVALID },
375   { "xautoraise", ArgFalse, (void *) &appData.autoRaiseBoard, FALSE, INVALID },
376   { "-autoraise", ArgFalse, (void *) &appData.autoRaiseBoard, FALSE, INVALID },
377   { "alwaysPromoteToQueen", ArgBoolean, (void *) &appData.alwaysPromoteToQueen, TRUE, (ArgIniType) FALSE },
378   { "queen", ArgTrue, (void *) &appData.alwaysPromoteToQueen, FALSE, INVALID },
379   { "xqueen", ArgFalse, (void *) &appData.alwaysPromoteToQueen, FALSE, INVALID },
380   { "-queen", ArgFalse, (void *) &appData.alwaysPromoteToQueen, FALSE, INVALID },
381   { "oldSaveStyle", ArgBoolean, (void *) &appData.oldSaveStyle, TRUE, (ArgIniType) FALSE },
382   { "oldsave", ArgTrue, (void *) &appData.oldSaveStyle, FALSE, INVALID },
383   { "xoldsave", ArgFalse, (void *) &appData.oldSaveStyle, FALSE, INVALID },
384   { "-oldsave", ArgFalse, (void *) &appData.oldSaveStyle, FALSE, INVALID },
385   { "quietPlay", ArgBoolean, (void *) &appData.quietPlay, TRUE, (ArgIniType) FALSE },
386   { "quiet", ArgTrue, (void *) &appData.quietPlay, FALSE, INVALID },
387   { "xquiet", ArgFalse, (void *) &appData.quietPlay, FALSE, INVALID },
388   { "-quiet", ArgFalse, (void *) &appData.quietPlay, FALSE, INVALID },
389   { "getMoveList", ArgBoolean, (void *) &appData.getMoveList, TRUE, (ArgIniType) TRUE },
390   { "moves", ArgTrue, (void *) &appData.getMoveList, FALSE, INVALID },
391   { "xmoves", ArgFalse, (void *) &appData.getMoveList, FALSE, INVALID },
392   { "-moves", ArgFalse, (void *) &appData.getMoveList, FALSE, INVALID },
393   { "testLegality", ArgBoolean, (void *) &appData.testLegality, TRUE, (ArgIniType) TRUE },
394   { "legal", ArgTrue, (void *) &appData.testLegality, FALSE, INVALID },
395   { "xlegal", ArgFalse, (void *) &appData.testLegality, FALSE, INVALID },
396   { "-legal", ArgFalse, (void *) &appData.testLegality, FALSE, INVALID },
397   { "premove", ArgBoolean, (void *) &appData.premove, TRUE, (ArgIniType) TRUE },
398   { "pre", ArgTrue, (void *) &appData.premove, FALSE, INVALID },
399   { "xpre", ArgFalse, (void *) &appData.premove, FALSE, INVALID },
400   { "-pre", ArgFalse, (void *) &appData.premove, FALSE, INVALID },
401   { "premoveWhite", ArgBoolean, (void *) &appData.premoveWhite, TRUE, (ArgIniType) FALSE },
402   { "prewhite", ArgTrue, (void *) &appData.premoveWhite, FALSE, INVALID },
403   { "xprewhite", ArgFalse, (void *) &appData.premoveWhite, FALSE, INVALID },
404   { "-prewhite", ArgFalse, (void *) &appData.premoveWhite, FALSE, INVALID },
405   { "premoveWhiteText", ArgString, (void *) &appData.premoveWhiteText, TRUE, (ArgIniType) "" },
406   { "premoveBlack", ArgBoolean, (void *) &appData.premoveBlack, TRUE, (ArgIniType) FALSE },
407   { "preblack", ArgTrue, (void *) &appData.premoveBlack, FALSE, INVALID },
408   { "xpreblack", ArgFalse, (void *) &appData.premoveBlack, FALSE, INVALID },
409   { "-preblack", ArgFalse, (void *) &appData.premoveBlack, FALSE, INVALID },
410   { "premoveBlackText", ArgString, (void *) &appData.premoveBlackText, TRUE, (ArgIniType) "" },
411   { "icsAlarm", ArgBoolean, (void *) &appData.icsAlarm, TRUE, (ArgIniType) TRUE},
412   { "alarm", ArgTrue, (void *) &appData.icsAlarm, FALSE},
413   { "xalarm", ArgFalse, (void *) &appData.icsAlarm, FALSE},
414   { "-alarm", ArgFalse, (void *) &appData.icsAlarm, FALSE},
415   { "icsAlarmTime", ArgInt, (void *) &appData.icsAlarmTime, TRUE, (ArgIniType) 5000},
416   { "localLineEditing", ArgBoolean, (void *) &appData.localLineEditing, FALSE, (ArgIniType) TRUE},
417   { "edit", ArgTrue, (void *) &appData.localLineEditing, FALSE, INVALID },
418   { "xedit", ArgFalse, (void *) &appData.localLineEditing, FALSE, INVALID },
419   { "-edit", ArgFalse, (void *) &appData.localLineEditing, FALSE, INVALID },
420   { "animateMoving", ArgBoolean, (void *) &appData.animate, TRUE, (ArgIniType) TRUE },
421   { "animate", ArgTrue, (void *) &appData.animate, FALSE, INVALID },
422   { "xanimate", ArgFalse, (void *) &appData.animate, FALSE, INVALID },
423   { "-animate", ArgFalse, (void *) &appData.animate, FALSE, INVALID },
424   { "animateSpeed", ArgInt, (void *) &appData.animSpeed, TRUE, (ArgIniType) 10 },
425   { "animateDragging", ArgBoolean, (void *) &appData.animateDragging, TRUE, (ArgIniType) TRUE },
426   { "drag", ArgTrue, (void *) &appData.animateDragging, FALSE, INVALID },
427   { "xdrag", ArgFalse, (void *) &appData.animateDragging, FALSE, INVALID },
428   { "-drag", ArgFalse, (void *) &appData.animateDragging, FALSE, INVALID },
429   { "blindfold", ArgBoolean, (void *) &appData.blindfold, TRUE, (ArgIniType) FALSE },
430   { "blind", ArgTrue, (void *) &appData.blindfold, FALSE, INVALID },
431   { "xblind", ArgFalse, (void *) &appData.blindfold, FALSE, INVALID },
432   { "-blind", ArgFalse, (void *) &appData.blindfold, FALSE, INVALID },
433   { "highlightLastMove", ArgBoolean,
434     (void *) &appData.highlightLastMove, TRUE, (ArgIniType) TRUE },
435   { "highlight", ArgTrue, (void *) &appData.highlightLastMove, FALSE, INVALID },
436   { "xhighlight", ArgFalse, (void *) &appData.highlightLastMove, FALSE, INVALID },
437   { "-highlight", ArgFalse, (void *) &appData.highlightLastMove, FALSE, INVALID },
438   { "highlightDragging", ArgBoolean,
439     (void *) &appData.highlightDragging, !XBOARD, (ArgIniType) TRUE },
440   { "highdrag", ArgTrue, (void *) &appData.highlightDragging, FALSE, INVALID },
441   { "xhighdrag", ArgFalse, (void *) &appData.highlightDragging, FALSE, INVALID },
442   { "-highdrag", ArgFalse, (void *) &appData.highlightDragging, FALSE, INVALID },
443   { "colorizeMessages", ArgBoolean, (void *) &appData.colorize, TRUE, (ArgIniType) TRUE },
444   { "colorize", ArgTrue, (void *) &appData.colorize, FALSE, INVALID },
445   { "xcolorize", ArgFalse, (void *) &appData.colorize, FALSE, INVALID },
446   { "-colorize", ArgFalse, (void *) &appData.colorize, FALSE, INVALID },
447   { "colorShout", ArgAttribs, (void *) ColorShout, TRUE, INVALID },
448   { "colorSShout", ArgAttribs, (void *) ColorSShout, TRUE, INVALID },
449   { "colorCShout", ArgAttribs, (void *) ColorSShout, FALSE, INVALID }, // for XB
450   { "colorChannel1", ArgAttribs, (void *) ColorChannel1, TRUE, INVALID },
451   { "colorChannel", ArgAttribs, (void *) ColorChannel, TRUE, INVALID },
452   { "colorKibitz", ArgAttribs, (void *) ColorKibitz, TRUE, INVALID },
453   { "colorTell", ArgAttribs, (void *) ColorTell, TRUE, INVALID },
454   { "colorChallenge", ArgAttribs, (void *) ColorChallenge, TRUE, INVALID },
455   { "colorRequest", ArgAttribs, (void *) ColorRequest, TRUE, INVALID },
456   { "colorSeek", ArgAttribs, (void *) ColorSeek, TRUE, INVALID },
457   { "colorNormal", ArgAttribs, (void *) ColorNormal, TRUE, INVALID },
458   { "colorBackground", ArgColor, (void *) 7, TRUE, COLOR_BKGD },
459   { "soundShout", ArgFilename, (void *) &appData.soundShout, TRUE, (ArgIniType) "" },
460   { "soundSShout", ArgFilename, (void *) &appData.soundSShout, TRUE, (ArgIniType) "" },
461   { "soundCShout", ArgFilename, (void *) &appData.soundSShout, FALSE, (ArgIniType) "" }, // for XB
462   { "soundChannel1", ArgFilename, (void *) &appData.soundChannel1, TRUE, (ArgIniType) "" },
463   { "soundChannel", ArgFilename, (void *) &appData.soundChannel, TRUE, (ArgIniType) "" },
464   { "soundKibitz", ArgFilename, (void *) &appData.soundKibitz, TRUE, (ArgIniType) "" },
465   { "soundTell", ArgFilename, (void *) &appData.soundTell, TRUE, (ArgIniType) "" },
466   { "soundChallenge", ArgFilename, (void *) &appData.soundChallenge, TRUE, (ArgIniType) "" },
467   { "soundRequest", ArgFilename, (void *) &appData.soundRequest, TRUE, (ArgIniType) "" },
468   { "soundSeek", ArgFilename, (void *) &appData.soundSeek, TRUE, (ArgIniType) "" },
469   { "soundMove", ArgFilename, (void *) &appData.soundMove, TRUE, (ArgIniType) "" },
470   { "soundBell", ArgFilename, (void *) &appData.soundBell, TRUE, (ArgIniType) SOUND_BELL },
471   { "soundRoar", ArgFilename, (void *) &appData.soundRoar, TRUE, (ArgIniType) "" },
472   { "soundIcsWin", ArgFilename, (void *) &appData.soundIcsWin, TRUE, (ArgIniType) "" },
473   { "soundIcsLoss", ArgFilename, (void *) &appData.soundIcsLoss, TRUE, (ArgIniType) "" },
474   { "soundIcsDraw", ArgFilename, (void *) &appData.soundIcsDraw, TRUE, (ArgIniType) "" },
475   { "soundIcsUnfinished", ArgFilename, (void *) &appData.soundIcsUnfinished, TRUE, (ArgIniType) "" },
476   { "soundIcsAlarm", ArgFilename, (void *) &appData.soundIcsAlarm, TRUE, (ArgIniType) "" },
477   { "disguisePromotedPieces", ArgBoolean, (void *) &appData.disguise, TRUE, (ArgIniType) TRUE },
478   { "reuseFirst", ArgBoolean, (void *) &appData.reuseFirst, FALSE, (ArgIniType) TRUE },
479   { "reuse", ArgTrue, (void *) &appData.reuseFirst, FALSE, INVALID },
480   { "xreuse", ArgFalse, (void *) &appData.reuseFirst, FALSE, INVALID },
481   { "-reuse", ArgFalse, (void *) &appData.reuseFirst, FALSE, INVALID },
482   { "reuseChessPrograms", ArgBoolean,
483     (void *) &appData.reuseFirst, FALSE, INVALID }, /* backward compat only */
484   { "reuseSecond", ArgBoolean, (void *) &appData.reuseSecond, FALSE, (ArgIniType) TRUE },
485   { "reuse2", ArgTrue, (void *) &appData.reuseSecond, FALSE, INVALID },
486   { "xreuse2", ArgFalse, (void *) &appData.reuseSecond, FALSE, INVALID },
487   { "-reuse2", ArgFalse, (void *) &appData.reuseSecond, FALSE, INVALID },
488   { "comPortSettings", ArgCommSettings, (void *) /*&dcb*/ 0, TRUE, INVALID },
489   { "settingsFile", ArgSettingsFilename, (void *) &settingsFileName, FALSE, (ArgIniType) SETTINGS_FILE },
490   { "ini", ArgSettingsFilename, (void *) &settingsFileName, FALSE, INVALID },
491   { "at", ArgSettingsFilename, (void *) NULL, FALSE, INVALID },
492   { "opt", ArgSettingsFilename, (void *) NULL, FALSE, INVALID },
493   { "saveSettingsFile", ArgFilename, (void *) &settingsFileName, FALSE, INVALID },
494   { "backupSettingsFile", ArgBackupSettingsFile, (void *) &settingsFileName, FALSE, INVALID },
495   { "saveSettingsOnExit", ArgBoolean, (void *) &saveSettingsOnExit, TRUE, (ArgIniType) TRUE },
496   { "chessProgram", ArgBoolean, (void *) &chessProgram, FALSE, (ArgIniType) FALSE },
497   { "cp", ArgTrue, (void *) &chessProgram, FALSE, INVALID },
498   { "xcp", ArgFalse, (void *) &chessProgram, FALSE, INVALID },
499   { "-cp", ArgFalse, (void *) &chessProgram, FALSE, INVALID },
500   { "icsMenu", ArgString, (void *) &icsTextMenuString, TRUE, (ArgIniType) ICS_TEXT_MENU_DEFAULT },
501   { "icsNames", ArgString, (void *) &icsNames, TRUE, (ArgIniType) ICS_NAMES },
502   { "singleEngineList", ArgBoolean, (void *) &singleList, !XBOARD, (ArgIniType) FALSE },
503   { "recentEngines", ArgInt, (void *) &appData.recentEngines, TRUE, (ArgIniType) 6 },
504   { "recentEngineList", ArgString, (void *) &appData.recentEngineList, TRUE, (ArgIniType) "" },
505   { "firstChessProgramNames", ArgString, (void *) &firstChessProgramNames,
506     TRUE, (ArgIniType) FCP_NAMES },
507   { "secondChessProgramNames", ArgString, (void *) &secondChessProgramNames,
508     !XBOARD, (ArgIniType) SCP_NAMES },
509   { "themeNames", ArgString, (void *) &appData.themeNames, !XBOARD, (ArgIniType) "native -upf false -ub false -ubt false -pid \"\"\n" },
510   { "installEngine", ArgInstall, (void *) &firstChessProgramNames, FALSE, (ArgIniType) "" },
511   { "initialMode", ArgString, (void *) &appData.initialMode, FALSE, (ArgIniType) "" },
512   { "mode", ArgString, (void *) &appData.initialMode, FALSE, INVALID },
513   { "variant", ArgString, (void *) &appData.variant, FALSE, (ArgIniType) "normal" },
514   { "firstProtocolVersion", ArgInt, (void *) &appData.firstProtocolVersion, FALSE, (ArgIniType) PROTOVER },
515   { "secondProtocolVersion", ArgInt, (void *) &appData.secondProtocolVersion,FALSE, (ArgIniType) PROTOVER },
516   { "showButtonBar", ArgBoolean, (void *) &appData.showButtonBar, TRUE, (ArgIniType) TRUE },
517   { "buttons", ArgTrue, (void *) &appData.showButtonBar, FALSE, INVALID },
518   { "xbuttons", ArgFalse, (void *) &appData.showButtonBar, FALSE, INVALID },
519   { "-buttons", ArgFalse, (void *) &appData.showButtonBar, FALSE, INVALID },
520
521   /* [AS] New features */
522   { "firstScoreAbs", ArgBoolean, (void *) &appData.firstScoreIsAbsolute, FALSE, (ArgIniType) FALSE },
523   { "secondScoreAbs", ArgBoolean, (void *) &appData.secondScoreIsAbsolute, FALSE, (ArgIniType) FALSE },
524   { "pgnExtendedInfo", ArgBoolean, (void *) &appData.saveExtendedInfoInPGN, TRUE, (ArgIniType) FALSE },
525   { "hideThinkingFromHuman", ArgBoolean, (void *) &appData.hideThinkingFromHuman, TRUE, (ArgIniType) FALSE },
526   { "liteBackTextureFile", ArgFilename, (void *) &appData.liteBackTextureFile, TRUE, (ArgIniType) "" },
527   { "lbtf", ArgFilename, (void *) &appData.liteBackTextureFile, FALSE, INVALID },
528   { "darkBackTextureFile", ArgFilename, (void *) &appData.darkBackTextureFile, TRUE, (ArgIniType) "" },
529   { "dbtf", ArgFilename, (void *) &appData.darkBackTextureFile, FALSE, INVALID },
530   { "liteBackTextureMode", ArgInt, (void *) &appData.liteBackTextureMode, TRUE, (ArgIniType) BACK_TEXTURE_MODE_PLAIN },
531   { "lbtm", ArgInt, (void *) &appData.liteBackTextureMode, FALSE, INVALID },
532   { "darkBackTextureMode", ArgInt, (void *) &appData.darkBackTextureMode, TRUE, (ArgIniType) BACK_TEXTURE_MODE_PLAIN },
533   { "dbtm", ArgInt, (void *) &appData.darkBackTextureMode, FALSE, INVALID },
534   { "renderPiecesWithFont", ArgString, (void *) &appData.renderPiecesWithFont, TRUE, (ArgIniType) "" },
535   { "pf", ArgString, (void *) &appData.renderPiecesWithFont, FALSE, INVALID },
536   { "fontPieceToCharTable", ArgString, (void *) &appData.fontToPieceTable, TRUE, (ArgIniType) "" },
537   { "fptc", ArgString, (void *) &appData.fontToPieceTable, FALSE, INVALID },
538   { "fontPieceBackColorWhite", ArgColor, (void *) 8, TRUE, (ArgIniType) WHITE_PIECE_COLOR },
539   { "fontPieceForeColorWhite", ArgColor, (void *) 9, TRUE, (ArgIniType) WHITE_PIECE_COLOR },
540   { "fontPieceBackColorBlack", ArgColor, (void *) 10, TRUE, (ArgIniType) BLACK_PIECE_COLOR },
541   { "fontPieceForeColorBlack", ArgColor, (void *) 11, TRUE, (ArgIniType) BLACK_PIECE_COLOR },
542   { "fpfcw", ArgColor, (void *) 9, FALSE, INVALID },
543   { "fpbcb", ArgColor, (void *) 10, FALSE, INVALID },
544   { "fontPieceSize", ArgInt, (void *) &appData.fontPieceSize, TRUE, (ArgIniType) 80 },
545   { "overrideLineGap", ArgInt, (void *) &appData.overrideLineGap, TRUE, (ArgIniType) 1 },
546   { "adjudicateLossThreshold", ArgInt, (void *) &appData.adjudicateLossThreshold, TRUE, (ArgIniType) 0 },
547   { "delayBeforeQuit", ArgInt, (void *) &appData.delayBeforeQuit, TRUE, (ArgIniType) 0 },
548   { "delayAfterQuit", ArgInt, (void *) &appData.delayAfterQuit, TRUE, (ArgIniType) 0 },
549   { "nameOfDebugFile", ArgFilename, (void *) &appData.nameOfDebugFile, FALSE, (ArgIniType) DEBUG_FILE },
550   { "debugfile", ArgFilename, (void *) &appData.nameOfDebugFile, FALSE, INVALID },
551   { "pgnEventHeader", ArgString, (void *) &appData.pgnEventHeader, TRUE, (ArgIniType) "Computer Chess Game" },
552   { "defaultFrcPosition", ArgInt, (void *) &appData.defaultFrcPosition, TRUE, (ArgIniType) -1 },
553   { "shuffleOpenings", ArgTrue, (void *) &shuffleOpenings, FALSE, INVALID },
554   { "gameListTags", ArgString, (void *) &appData.gameListTags, TRUE, (ArgIniType) GLT_DEFAULT_TAGS },
555   { "saveOutOfBookInfo", ArgBoolean, (void *) &appData.saveOutOfBookInfo, TRUE, (ArgIniType) TRUE },
556   { "showEvalInMoveHistory", ArgBoolean, (void *) &appData.showEvalInMoveHistory, TRUE, (ArgIniType) TRUE },
557   { "evalHistColorWhite", ArgColor, (void *) 12, TRUE, (ArgIniType) "#FFFFB0" },
558   { "evalHistColorBlack", ArgColor, (void *) 13, TRUE, (ArgIniType) "#AD5D3D" },
559   { "highlightMoveWithArrow", ArgBoolean, (void *) &appData.highlightMoveWithArrow, TRUE, (ArgIniType) FALSE },
560   { "highlightArrowColor", ArgColor, (void *) 14, TRUE, (ArgIniType) "#FFFF80" },
561   { "stickyWindows", ArgBoolean, (void *) &appData.useStickyWindows, TRUE, (ArgIniType) TRUE },
562   { "adjudicateDrawMoves", ArgInt, (void *) &appData.adjudicateDrawMoves, TRUE, (ArgIniType) 0 },
563   { "autoDisplayComment", ArgBoolean, (void *) &appData.autoDisplayComment, TRUE, (ArgIniType) TRUE },
564   { "autoDisplayTags", ArgBoolean, (void *) &appData.autoDisplayTags, TRUE, (ArgIniType) TRUE },
565   { "firstIsUCI", ArgBoolean, (void *) &appData.firstIsUCI, FALSE, (ArgIniType) FALSE },
566   { "fUCI", ArgTrue, (void *) &appData.firstIsUCI, FALSE, INVALID },
567   { "firstUCI", ArgTrue, (void *) &appData.firstIsUCI, FALSE, INVALID },
568   { "secondIsUCI", ArgBoolean, (void *) &appData.secondIsUCI, FALSE, (ArgIniType) FALSE },
569   { "secondUCI", ArgTrue, (void *) &appData.secondIsUCI, FALSE, INVALID },
570   { "sUCI", ArgTrue, (void *) &appData.secondIsUCI, FALSE, INVALID },
571   { "fUCCI", ArgTwo, (void *) &appData.firstIsUCI, FALSE, INVALID },
572   { "sUCCI", ArgTwo, (void *) &appData.secondIsUCI, FALSE, INVALID },
573   { "fUSI", ArgTwo, (void *) &appData.firstIsUCI, FALSE, INVALID },
574   { "sUSI", ArgTwo, (void *) &appData.secondIsUCI, FALSE, INVALID },
575   { "firstHasOwnBookUCI", ArgBoolean, (void *) &appData.firstHasOwnBookUCI, FALSE, (ArgIniType) TRUE },
576   { "fNoOwnBookUCI", ArgFalse, (void *) &appData.firstHasOwnBookUCI, FALSE, INVALID },
577   { "firstXBook", ArgFalse, (void *) &appData.firstHasOwnBookUCI, FALSE, INVALID },
578   { "secondHasOwnBookUCI", ArgBoolean, (void *) &appData.secondHasOwnBookUCI, FALSE, (ArgIniType) TRUE },
579   { "sNoOwnBookUCI", ArgFalse, (void *) &appData.secondHasOwnBookUCI, FALSE, INVALID },
580   { "secondXBook", ArgFalse, (void *) &appData.secondHasOwnBookUCI, FALSE, INVALID },
581   { "adapterCommand", ArgFilename, (void *) &appData.adapterCommand, TRUE, (ArgIniType) "polyglot -noini -ec \"%fcp\" -ed \"%fd\"" },
582   { "uxiAdapter", ArgFilename, (void *) &appData.ucciAdapter, TRUE, (ArgIniType) "" },
583   { "polyglotDir", ArgFilename, (void *) &appData.polyglotDir, TRUE, (ArgIniType) "" },
584   { "usePolyglotBook", ArgBoolean, (void *) &appData.usePolyglotBook, TRUE, (ArgIniType) FALSE },
585   { "polyglotBook", ArgFilename, (void *) &appData.polyglotBook, TRUE, (ArgIniType) "" },
586   { "bookDepth", ArgInt, (void *) &appData.bookDepth, TRUE, (ArgIniType) 12 },
587   { "bookVariation", ArgInt, (void *) &appData.bookStrength, TRUE, (ArgIniType) 50 },
588   { "discourageOwnBooks", ArgBoolean, (void *) &appData.defNoBook, TRUE, (ArgIniType) FALSE },
589   { "mcBookMode", ArgTrue, (void *) &mcMode, FALSE, (ArgIniType) FALSE },
590   { "defaultHashSize", ArgInt, (void *) &appData.defaultHashSize, TRUE, (ArgIniType) 64 },
591   { "defaultCacheSizeEGTB", ArgInt, (void *) &appData.defaultCacheSizeEGTB, TRUE, (ArgIniType) 4 },
592   { "defaultPathEGTB", ArgFilename, (void *) &appData.defaultPathEGTB, TRUE, (ArgIniType) "c:\\egtb" },
593   { "language", ArgFilename, (void *) &appData.language, TRUE, (ArgIniType) "" },
594   { "userFileDirectory", ArgFilename, (void *) &homeDir, FALSE, (ArgIniType) installDir },
595   { "usePieceFont", ArgBoolean, (void *) &appData.useFont, TRUE, (ArgIniType) FALSE },
596   { "upf", ArgBoolean, (void *) &appData.useFont, FALSE, INVALID },
597   { "useBoardTexture", ArgBoolean, (void *) &appData.useBitmaps, TRUE, (ArgIniType) FALSE },
598   { "ubt", ArgBoolean, (void *) &appData.useBitmaps, FALSE, INVALID },
599   { "useBorder", ArgBoolean, (void *) &appData.useBorder, TRUE, (ArgIniType) FALSE },
600   { "ub", ArgBoolean, (void *) &appData.useBorder, FALSE, INVALID },
601   { "border", ArgFilename, (void *) &appData.border, TRUE, (ArgIniType) "" },
602   { "finger", ArgFilename, (void *) &appData.finger, FALSE, (ArgIniType) "" },
603
604   // [HGM] tournament options
605   { "tourneyFile", ArgFilename, (void *) &appData.tourneyFile, FALSE, (ArgIniType) "" },
606   { "tf", ArgFilename, (void *) &appData.tourneyFile, FALSE, INVALID },
607   { "participants", ArgString, (void *) &appData.participants, FALSE, (ArgIniType) "" },
608   { "tourneyType", ArgInt, (void *) &appData.tourneyType, FALSE, (ArgIniType) 0 },
609   { "tt", ArgInt, (void *) &appData.tourneyType, FALSE, INVALID },
610   { "tourneyCycles", ArgInt, (void *) &appData.tourneyCycles, FALSE, (ArgIniType) 1 },
611   { "cy", ArgInt, (void *) &appData.tourneyCycles, FALSE, INVALID },
612   { "results", ArgString, (void *) &appData.results, FALSE, (ArgIniType) "" },
613   { "syncAfterRound", ArgBoolean, (void *) &appData.roundSync, FALSE, (ArgIniType) FALSE },
614   { "syncAfterCycle", ArgBoolean, (void *) &appData.cycleSync, FALSE, (ArgIniType) TRUE },
615   { "seedBase", ArgInt, (void *) &appData.seedBase, FALSE, (ArgIniType) 1 },
616   { "pgnNumberTag", ArgBoolean, (void *) &appData.numberTag, TRUE, (ArgIniType) FALSE },
617   { "afterGame", ArgString, (void *) &appData.afterGame, FALSE, INVALID },
618   { "afterTourney", ArgString, (void *) &appData.afterTourney, FALSE, INVALID },
619
620   /* [HGM] board-size, adjudication and misc. options */
621   { "oneClickMove", ArgBoolean, (void *) &appData.oneClick, TRUE, (ArgIniType) FALSE },
622   { "boardWidth", ArgInt, (void *) &appData.NrFiles, FALSE, (ArgIniType) -1 },
623   { "boardHeight", ArgInt, (void *) &appData.NrRanks, FALSE, (ArgIniType) -1 },
624   { "holdingsSize", ArgInt, (void *) &appData.holdingsSize, FALSE, (ArgIniType) -1 },
625   { "defaultMatchGames", ArgInt, (void *) &appData.defaultMatchGames, TRUE, (ArgIniType) 10 },
626   { "matchPause", ArgInt, (void *) &appData.matchPause, TRUE, (ArgIniType) 10000 },
627   { "pieceToCharTable", ArgString, (void *) &appData.pieceToCharTable, FALSE, INVALID },
628   { "pieceNickNames", ArgString, (void *) &appData.pieceNickNames, FALSE, INVALID },
629   { "colorNickNames", ArgString, (void *) &appData.colorNickNames, FALSE, INVALID },
630   { "flipBlack", ArgBoolean, (void *) &appData.upsideDown, FALSE, (ArgIniType) FALSE },
631   { "allWhite", ArgBoolean, (void *) &appData.allWhite, FALSE, (ArgIniType) FALSE },
632   { "alphaRank", ArgBoolean, (void *) &appData.alphaRank, FALSE, (ArgIniType) FALSE },
633   { "firstAlphaRank", ArgBoolean, (void *) &first.alphaRank, FALSE, (ArgIniType) FALSE },
634   { "secondAlphaRank", ArgBoolean, (void *) &second.alphaRank, FALSE, (ArgIniType) FALSE },
635   { "testClaims", ArgBoolean, (void *) &appData.testClaims, TRUE, (ArgIniType) FALSE },
636   { "checkMates", ArgBoolean, (void *) &appData.checkMates, TRUE, (ArgIniType) FALSE },
637   { "materialDraws", ArgBoolean, (void *) &appData.materialDraws, TRUE, (ArgIniType) FALSE },
638   { "trivialDraws", ArgBoolean, (void *) &appData.trivialDraws, TRUE, (ArgIniType) FALSE },
639   { "ruleMoves", ArgInt, (void *) &appData.ruleMoves, TRUE, (ArgIniType) 51 },
640   { "repeatsToDraw", ArgInt, (void *) &appData.drawRepeats, TRUE, (ArgIniType) 6 },
641   { "backgroundObserve", ArgBoolean, (void *) &appData.bgObserve, TRUE, (ArgIniType) FALSE },
642   { "dualBoard", ArgBoolean, (void *) &appData.dualBoard, TRUE, (ArgIniType) FALSE },
643   { "autoKibitz", ArgTrue, (void *) &appData.autoKibitz, FALSE, INVALID },
644   { "engineDebugOutput", ArgInt, (void *) &appData.engineComments, FALSE, (ArgIniType) 1 },
645   { "userName", ArgString, (void *) &appData.userName, FALSE, INVALID },
646   { "rewindIndex", ArgInt, (void *) &appData.rewindIndex, FALSE, INVALID },
647   { "sameColorGames", ArgInt, (void *) &appData.sameColorGames, FALSE, INVALID },
648   { "smpCores", ArgInt, (void *) &appData.smpCores, TRUE, (ArgIniType) 1 },
649   { "egtFormats", ArgString, (void *) &appData.egtFormats, TRUE, (ArgIniType) "" },
650   { "niceEngines", ArgInt, (void *) &appData.niceEngines, TRUE, INVALID },
651   { "logoSize", ArgInt, (void *) &appData.logoSize, XBOARD, INVALID },
652   { "logoDir", ArgFilename, (void *) &appData.logoDir, XBOARD, (ArgIniType) "." },
653   { "firstLogo", ArgFilename, (void *) &appData.firstLogo, FALSE, (ArgIniType) "" },
654   { "secondLogo", ArgFilename, (void *) &appData.secondLogo, FALSE, (ArgIniType) "" },
655   { "autoLogo", ArgBoolean, (void *) &appData.autoLogo, TRUE, INVALID },
656   { "firstOptions", ArgString, (void *) &appData.firstOptions, FALSE, (ArgIniType) "" },
657   { "secondOptions", ArgString, (void *) &appData.secondOptions, FALSE, (ArgIniType) "" },
658   { "firstFeatures", ArgString, (void *) &appData.features[0], FALSE, (ArgIniType) "" },
659   { "secondFeatures", ArgString, (void *) &appData.features[1], FALSE, (ArgIniType) "" },
660   { "featureDefaults", ArgString, (void *) &appData.featureDefaults, TRUE, (ArgIniType) "" },
661   { "firstNeedsNoncompliantFEN", ArgString, (void *) &appData.fenOverride1, FALSE, (ArgIniType) NULL },
662   { "secondNeedsNoncompliantFEN", ArgString, (void *) &appData.fenOverride2, FALSE, (ArgIniType) NULL },
663   { "keepAlive", ArgInt, (void *) &appData.keepAlive, FALSE, INVALID },
664   { "icstype", ArgInt, (void *) &ics_type, FALSE, INVALID },
665   { "forceIllegalMoves", ArgTrue, (void *) &appData.forceIllegal, FALSE, INVALID },
666   { "showTargetSquares", ArgBoolean, (void *) &appData.markers, TRUE, (ArgIniType) FALSE },
667   { "firstPgnName", ArgString, (void *) &appData.pgnName[0], FALSE, (ArgIniType) "" },
668   { "fn", ArgString, (void *) &appData.pgnName[0], FALSE, INVALID },
669   { "secondPgnName", ArgString, (void *) &appData.pgnName[1], FALSE, (ArgIniType) "" },
670   { "sn", ArgString, (void *) &appData.pgnName[1], FALSE, INVALID },
671   { "absoluteAnalysisScores", ArgBoolean, (void *) &appData.whitePOV, TRUE, FALSE },
672   { "scoreWhite", ArgBoolean, (void *) &appData.scoreWhite, TRUE, FALSE },
673   { "evalZoom", ArgInt, (void *) &appData.zoom, TRUE, (ArgIniType) 1 },
674   { "evalThreshold", ArgInt, (void *) &appData.evalThreshold, TRUE, (ArgIniType) 25 },
675   { "fSAN", ArgTrue, (void *) &appData.pvSAN[0], FALSE, FALSE },
676   { "sSAN", ArgTrue, (void *) &appData.pvSAN[1], FALSE, FALSE },
677   { "pairingEngine", ArgFilename, (void *) &appData.pairingEngine, TRUE, "" },
678   { "defaultTourneyName", ArgFilename, (void *) &appData.defName, TRUE, "" },
679   { "eloThresholdAny", ArgInt, (void *) &appData.eloThreshold1, FALSE, (ArgIniType) 0 },
680   { "eloThresholdBoth", ArgInt, (void *) &appData.eloThreshold2, FALSE, (ArgIniType) 0 },
681   { "dateThreshold", ArgInt, (void *) &appData.dateThreshold, FALSE, (ArgIniType) 0 },
682   { "searchMode", ArgInt, (void *) &appData.searchMode, FALSE, (ArgIniType) 1 },
683   { "stretch", ArgInt, (void *) &appData.stretch, FALSE, (ArgIniType) 1 },
684   { "ignoreColors", ArgBoolean, (void *) &appData.ignoreColors, FALSE, FALSE },
685   { "findMirrorImage", ArgBoolean, (void *) &appData.findMirror, FALSE, FALSE },
686   { "viewer", ArgTrue, (void *) &appData.viewer, FALSE, FALSE },
687   { "viewerOptions", ArgString, (void *) &appData.viewerOptions, TRUE, (ArgIniType) "-ncp -engineOutputUp false -saveSettingsOnExit false" },
688   { "tourneyOptions", ArgString, (void *) &appData.tourneyOptions, TRUE, (ArgIniType) "-ncp -mm -saveSettingsOnExit false" },
689   { "autoCopyPV", ArgBoolean, (void *) &appData.autoCopyPV, TRUE, FALSE },
690   { "topLevel", ArgBoolean, (void *) &appData.topLevel, XBOARD, (ArgIniType) TOPLEVEL },
691   { "dialogColor", ArgString, (void *) &appData.dialogColor, XBOARD, (ArgIniType) "" },
692   { "buttonColor", ArgString, (void *) &appData.buttonColor, XBOARD, (ArgIniType) "" },
693
694 #if ZIPPY
695   { "zippyTalk", ArgBoolean, (void *) &appData.zippyTalk, FALSE, (ArgIniType) ZIPPY_TALK },
696   { "zt", ArgTrue, (void *) &appData.zippyTalk, FALSE, INVALID },
697   { "xzt", ArgFalse, (void *) &appData.zippyTalk, FALSE, INVALID },
698   { "-zt", ArgFalse, (void *) &appData.zippyTalk, FALSE, INVALID },
699   { "zippyPlay", ArgBoolean, (void *) &appData.zippyPlay, FALSE, (ArgIniType) ZIPPY_PLAY },
700   { "zp", ArgTrue, (void *) &appData.zippyPlay, FALSE, INVALID },
701   { "xzp", ArgFalse, (void *) &appData.zippyPlay, FALSE, INVALID },
702   { "-zp", ArgFalse, (void *) &appData.zippyPlay, FALSE, INVALID },
703   { "zippyLines", ArgFilename, (void *) &appData.zippyLines, FALSE, (ArgIniType) ZIPPY_LINES },
704   { "zippyPinhead", ArgString, (void *) &appData.zippyPinhead, FALSE, (ArgIniType) ZIPPY_PINHEAD },
705   { "zippyPassword", ArgString, (void *) &appData.zippyPassword, FALSE, (ArgIniType) ZIPPY_PASSWORD },
706   { "zippyPassword2", ArgString, (void *) &appData.zippyPassword2, FALSE, (ArgIniType) ZIPPY_PASSWORD2 },
707   { "zippyWrongPassword", ArgString, (void *) &appData.zippyWrongPassword,
708     FALSE, (ArgIniType) ZIPPY_WRONG_PASSWORD },
709   { "zippyAcceptOnly", ArgString, (void *) &appData.zippyAcceptOnly, FALSE, (ArgIniType) ZIPPY_ACCEPT_ONLY },
710   { "zippyUseI", ArgBoolean, (void *) &appData.zippyUseI, FALSE, (ArgIniType) ZIPPY_USE_I },
711   { "zui", ArgTrue, (void *) &appData.zippyUseI, FALSE, INVALID },
712   { "xzui", ArgFalse, (void *) &appData.zippyUseI, FALSE, INVALID },
713   { "-zui", ArgFalse, (void *) &appData.zippyUseI, FALSE, INVALID },
714   { "zippyBughouse", ArgInt, (void *) &appData.zippyBughouse, FALSE, (ArgIniType) ZIPPY_BUGHOUSE },
715   { "zippyNoplayCrafty", ArgBoolean, (void *) &appData.zippyNoplayCrafty,
716     FALSE, (ArgIniType) ZIPPY_NOPLAY_CRAFTY },
717   { "znc", ArgTrue, (void *) &appData.zippyNoplayCrafty, FALSE, INVALID },
718   { "xznc", ArgFalse, (void *) &appData.zippyNoplayCrafty, FALSE, INVALID },
719   { "-znc", ArgFalse, (void *) &appData.zippyNoplayCrafty, FALSE, INVALID },
720   { "zippyGameEnd", ArgString, (void *) &appData.zippyGameEnd, FALSE, (ArgIniType) ZIPPY_GAME_END },
721   { "zippyGameStart", ArgString, (void *) &appData.zippyGameStart, FALSE, (ArgIniType) ZIPPY_GAME_START },
722   { "zippyAdjourn", ArgBoolean, (void *) &appData.zippyAdjourn, FALSE, (ArgIniType) ZIPPY_ADJOURN },
723   { "zadj", ArgTrue, (void *) &appData.zippyAdjourn, FALSE, INVALID },
724   { "xzadj", ArgFalse, (void *) &appData.zippyAdjourn, FALSE, INVALID },
725   { "-zadj", ArgFalse, (void *) &appData.zippyAdjourn, FALSE, INVALID },
726   { "zippyAbort", ArgBoolean, (void *) &appData.zippyAbort, FALSE, (ArgIniType) ZIPPY_ABORT },
727   { "zab", ArgTrue, (void *) &appData.zippyAbort, FALSE, INVALID },
728   { "xzab", ArgFalse, (void *) &appData.zippyAbort, FALSE, INVALID },
729   { "-zab", ArgFalse, (void *) &appData.zippyAbort, FALSE, INVALID },
730   { "zippyVariants", ArgString, (void *) &appData.zippyVariants, FALSE, (ArgIniType) ZIPPY_VARIANTS },
731   { "zippyMaxGames", ArgInt, (void *)&appData.zippyMaxGames, FALSE, (ArgIniType) ZIPPY_MAX_GAMES},
732   { "zippyReplayTimeout", ArgInt, (void *)&appData.zippyReplayTimeout, FALSE, (ArgIniType) ZIPPY_REPLAY_TIMEOUT },
733   { "zippyShortGame", ArgInt, (void *)&appData.zippyShortGame, FALSE, INVALID },
734   /* Kludge to allow winboard.ini files from buggy 4.0.4 to be read: */
735   { "zippyReplyTimeout", ArgInt, (void *)&junk, FALSE, INVALID },
736 #endif
737   /* [HGM] options for broadcasting and time odds */
738   { "chatBoxes", ArgString, (void *) &appData.chatBoxes, !XBOARD, (ArgIniType) NULL },
739   { "serverMoves", ArgString, (void *) &appData.serverMovesName, FALSE, (ArgIniType) NULL },
740   { "serverFile", ArgString, (void *) &appData.serverFileName, FALSE, (ArgIniType) NULL },
741   { "suppressLoadMoves", ArgBoolean, (void *) &appData.suppressLoadMoves, FALSE, (ArgIniType) FALSE },
742   { "serverPause", ArgInt, (void *) &appData.serverPause, FALSE, (ArgIniType) 15 },
743   { "firstTimeOdds", ArgInt, (void *) &appData.firstTimeOdds, FALSE, (ArgIniType) 1 },
744   { "secondTimeOdds", ArgInt, (void *) &appData.secondTimeOdds, FALSE, (ArgIniType) 1 },
745   { "timeOddsMode", ArgInt, (void *) &appData.timeOddsMode, TRUE, INVALID },
746   { "firstAccumulateTC", ArgInt, (void *) &appData.firstAccumulateTC, FALSE, (ArgIniType) 1 },
747   { "secondAccumulateTC", ArgInt, (void *) &appData.secondAccumulateTC, FALSE, (ArgIniType) 1 },
748   { "firstNPS", ArgInt, (void *) &appData.firstNPS, FALSE, (ArgIniType) -1 },
749   { "secondNPS", ArgInt, (void *) &appData.secondNPS, FALSE, (ArgIniType) -1 },
750   { "noGUI", ArgTrue, (void *) &appData.noGUI, FALSE, INVALID },
751   { "keepLineBreaksICS", ArgBoolean, (void *) &appData.noJoin, TRUE, INVALID },
752   { "wrapContinuationSequence", ArgString, (void *) &appData.wrapContSeq, FALSE, INVALID },
753   { "useInternalWrap", ArgTrue, (void *) &appData.useInternalWrap, FALSE, INVALID }, /* noJoin usurps this if set */
754   { "openCommand", ArgString, (void *) &appData.sysOpen, FALSE, "xdg-open" },
755
756   // [HGM] placement: put all window layouts last in ini file, but man X,Y before all others
757   { "minX", ArgZ, (void *) &minX, FALSE, INVALID }, // [HGM] placement: to make sure auxiliary windows can be placed
758   { "minY", ArgZ, (void *) &minY, FALSE, INVALID },
759   { "winWidth",  ArgInt, (void *) &wpMain.width,  TRUE, INVALID }, // [HGM] placement: dummies to remember right & bottom
760   { "winHeight", ArgInt, (void *) &wpMain.height, TRUE, INVALID }, //       for attaching auxiliary windows to them
761   { "x", ArgInt, (void *) &wpMain.x, TRUE, (ArgIniType) CW_USEDEFAULT },
762   { "y", ArgInt, (void *) &wpMain.y, TRUE, (ArgIniType) CW_USEDEFAULT },
763   { "icsX", ArgX,   (void *) &wpConsole.x, TRUE, (ArgIniType) CW_USEDEFAULT },
764   { "icsY", ArgY,   (void *) &wpConsole.y, TRUE, (ArgIniType) CW_USEDEFAULT },
765   { "icsW", ArgInt, (void *) &wpConsole.width, TRUE, (ArgIniType) CW_USEDEFAULT },
766   { "icsH", ArgInt, (void *) &wpConsole.height, TRUE, (ArgIniType) CW_USEDEFAULT },
767   { "commentX", ArgX,   (void *) &wpComment.x, TRUE, (ArgIniType) CW_USEDEFAULT },
768   { "commentY", ArgY,   (void *) &wpComment.y, TRUE, (ArgIniType) CW_USEDEFAULT },
769   { "commentW", ArgInt, (void *) &wpComment.width, TRUE, (ArgIniType) CW_USEDEFAULT },
770   { "commentH", ArgInt, (void *) &wpComment.height, TRUE, (ArgIniType) CW_USEDEFAULT },
771   { "tagsX", ArgX,   (void *) &wpTags.x, TRUE, (ArgIniType) CW_USEDEFAULT },
772   { "tagsY", ArgY,   (void *) &wpTags.y, TRUE, (ArgIniType) CW_USEDEFAULT },
773   { "tagsW", ArgInt, (void *) &wpTags.width, TRUE, (ArgIniType) CW_USEDEFAULT },
774   { "tagsH", ArgInt, (void *) &wpTags.height, TRUE, (ArgIniType) CW_USEDEFAULT },
775   { "gameListX", ArgX,   (void *) &wpGameList.x, TRUE, (ArgIniType) CW_USEDEFAULT },
776   { "gameListY", ArgY,   (void *) &wpGameList.y, TRUE, (ArgIniType) CW_USEDEFAULT },
777   { "gameListW", ArgInt, (void *) &wpGameList.width, TRUE, (ArgIniType) CW_USEDEFAULT },
778   { "gameListH", ArgInt, (void *) &wpGameList.height, TRUE, (ArgIniType) CW_USEDEFAULT },
779 #if XBOARD
780   { "slaveX", ArgX,   (void *) &wpDualBoard.x, TRUE, (ArgIniType) CW_USEDEFAULT },
781   { "slaveY", ArgY,   (void *) &wpDualBoard.y, TRUE, (ArgIniType) CW_USEDEFAULT },
782   { "slaveW", ArgInt, (void *) &wpDualBoard.width, FALSE, (ArgIniType) CW_USEDEFAULT },
783   { "slaveH", ArgInt, (void *) &wpDualBoard.height, FALSE, (ArgIniType) CW_USEDEFAULT },
784 #endif
785   /* [AS] Layout stuff */
786   { "moveHistoryUp", ArgBoolean, (void *) &wpMoveHistory.visible, TRUE, (ArgIniType) TRUE },
787   { "moveHistoryX", ArgX,   (void *) &wpMoveHistory.x, TRUE, (ArgIniType) CW_USEDEFAULT },
788   { "moveHistoryY", ArgY,   (void *) &wpMoveHistory.y, TRUE, (ArgIniType) CW_USEDEFAULT },
789   { "moveHistoryW", ArgInt, (void *) &wpMoveHistory.width, TRUE, (ArgIniType) CW_USEDEFAULT },
790   { "moveHistoryH", ArgInt, (void *) &wpMoveHistory.height, TRUE, (ArgIniType) CW_USEDEFAULT },
791
792   { "evalGraphUp", ArgBoolean, (void *) &wpEvalGraph.visible, TRUE, (ArgIniType) TRUE },
793   { "evalGraphX", ArgX,   (void *) &wpEvalGraph.x, TRUE, (ArgIniType) CW_USEDEFAULT },
794   { "evalGraphY", ArgY,   (void *) &wpEvalGraph.y, TRUE, (ArgIniType) CW_USEDEFAULT },
795   { "evalGraphW", ArgInt, (void *) &wpEvalGraph.width, TRUE, (ArgIniType) CW_USEDEFAULT },
796   { "evalGraphH", ArgInt, (void *) &wpEvalGraph.height, TRUE, (ArgIniType) CW_USEDEFAULT },
797
798   { "engineOutputUp", ArgBoolean, (void *) &wpEngineOutput.visible, TRUE, (ArgIniType) TRUE },
799   { "engineOutputX", ArgX,   (void *) &wpEngineOutput.x, TRUE, (ArgIniType) CW_USEDEFAULT },
800   { "engineOutputY", ArgY,   (void *) &wpEngineOutput.y, TRUE, (ArgIniType) CW_USEDEFAULT },
801   { "engineOutputW", ArgInt, (void *) &wpEngineOutput.width, TRUE, (ArgIniType) CW_USEDEFAULT },
802   { "engineOutputH", ArgInt, (void *) &wpEngineOutput.height, TRUE, (ArgIniType) CW_USEDEFAULT },
803
804   { NULL, ArgNone, NULL, FALSE, INVALID }
805 };
806
807
808 /* Kludge for indirection files on command line */
809 char* lastIndirectionFilename;
810 ArgDescriptor argDescriptorIndirection =
811 { "", ArgSettingsFilename, (void *) NULL, FALSE };
812
813 void
814 ExitArgError(char *msg, char *badArg, Boolean quit)
815 {
816   char buf[MSG_SIZ];
817   int len;
818
819   len = snprintf(buf, MSG_SIZ, msg, badArg);
820   if( (len >= MSG_SIZ) && appData.debugMode )
821     fprintf(debugFP, "ExitArgError: buffer truncated. Input: msg=%s badArg=%s\n", msg, badArg);
822
823   if(!quit) { printf(_("%s in settings file\n"), buf); return; } // DisplayError does not work yet at this stage...
824   DisplayFatalError(buf, 0, 2);
825   exit(2);
826 }
827
828 int
829 ValidateInt(char *s)
830 {
831   char *p = s;
832   if(*p == '-' || *p == '+') p++;
833   while(*p) if(!isdigit(*p++)) ExitArgError(_("Bad integer value %s"), s, TRUE);
834   return atoi(s);
835 }
836
837 char
838 StringGet(void *getClosure)
839 {
840   char **p = (char **) getClosure;
841   return *((*p)++);
842 }
843
844 char
845 FileGet(void *getClosure)
846 {
847   int c;
848   FILE* f = (FILE*) getClosure;
849
850   c = getc(f);
851   if (c == '\r') c = getc(f); // work around DOS format files by bypassing the '\r' completely
852   if (c == EOF)
853     return NULLCHAR;
854   else
855     return (char) c;
856 }
857
858 /* Parse settings file named "name". If file found, return the
859    full name in fullname and return TRUE; else return FALSE */
860 Boolean
861 ParseSettingsFile(char *name, char **addr)
862 {
863   FILE *f;
864   int ok,len;
865   char buf[MSG_SIZ], fullname[MSG_SIZ];
866
867
868   ok = MySearchPath(installDir, name, fullname);
869   if(!ok && strchr(name, '.') == NULL)
870     { // append default file-name extension '.ini' when needed
871       len = snprintf(buf,MSG_SIZ, "%s.ini", name);
872       if( (len >= MSG_SIZ) && appData.debugMode )
873         fprintf(debugFP, "ParseSettingsFile: buffer truncated. Input: name=%s \n",name);
874
875       ok = MySearchPath(installDir, buf, fullname);
876     }
877   if (ok) {
878     f = fopen(fullname, "r");
879 #ifdef DATADIR
880     if(f == NULL && *fullname != '/') {         // when a relative name did not work
881         MySearchPath(DATADIR "/themes/conf", name, fullname); // also look in standard place
882         f = fopen(fullname, "r");
883     }
884 #endif
885     if (f != NULL) {
886       if (addr != NULL) {
887             ASSIGN(*addr, fullname);
888       }
889       ParseArgs(FileGet, f);
890       fclose(f);
891       return TRUE;
892     }
893   }
894   return FALSE;
895 }
896
897 void
898 ParseArgs(GetFunc get, void *cl)
899 {
900   char argName[MAX_ARG_LEN];
901   char argValue[MAX_ARG_LEN];
902   ArgDescriptor *ad;
903   char start;
904   char *q;
905   int i, octval;
906   char ch;
907   int posarg = 4; // default is game file
908
909   ch = get(cl);
910   for (;;) {
911     int posflag = 0;
912     while (ch == ' ' || ch == '\n' || ch == '\t') ch = get(cl);
913     if (ch == NULLCHAR) break;
914     if (ch == ';') {
915       /* Comment to end of line */
916       ch = get(cl);
917       while (ch != '\n' && ch != NULLCHAR) ch = get(cl);
918       continue;
919     } else if (ch == '/' || ch == '-') {
920       /* Switch */
921       q = argName;
922       while (ch != ' ' && ch != '=' && ch != ':' && ch != NULLCHAR &&
923              ch != '\n' && ch != '\t') {
924         *q++ = ch;
925         ch = get(cl);
926       }
927       *q = NULLCHAR;
928       for (ad = argDescriptors; ad->argName != NULL; ad++)
929         if (strcmp(ad->argName, argName + 1) == 0) break;
930       if (ad->argName == NULL) {
931         char endChar = (ch && ch != '\n' && (ch = get(cl)) == '{' ? '}' : '\n');
932         ExitArgError(_("Unrecognized argument %s"), argName, get != &FileGet); // [HGM] make unknown argument non-fatal
933         while (ch != endChar && ch != NULLCHAR) ch = get(cl); // but skip rest of line it is on (or until closing '}' )
934         if(ch == '}') ch = get(cl);
935         continue; // so that when it is in a settings file, it is the only setting that will be purged from it
936       }
937     } else if (ch == '@') {
938       /* Indirection file */
939       ad = &argDescriptorIndirection;
940       ch = get(cl);
941     } else {
942       /* Positional argument */
943       ad = &argDescriptors[posarg++];
944       posflag++;
945       strncpy(argName, ad->argName,sizeof(argName)/sizeof(argName[0]));
946     }
947
948     if (ad->argType == ArgTwo) { // [HGM] kludgey arg type, not suitable for saving
949       *(Boolean *) ad->argLoc = 2;
950       continue;
951     }
952     if (ad->argType == ArgTrue) {
953       *(Boolean *) ad->argLoc = TRUE;
954       continue;
955     }
956     if (ad->argType == ArgFalse) {
957       *(Boolean *) ad->argLoc = FALSE;
958       continue;
959     }
960
961     while (ch == ' ' || ch == '=' || ch == ':' || ch == '\t') ch = get(cl);
962     if (ch == NULLCHAR || ch == '\n') {
963       ExitArgError(_("No value provided for argument %s"), argName, TRUE);
964     }
965     q = argValue;
966     if (ch == '{') {
967       // Quoting with { }.  No characters have to (or can) be escaped.
968       // Thus the string cannot contain a '}' character.
969       start = ch;
970       ch = get(cl);
971       while (start) {
972         switch (ch) {
973         case NULLCHAR:
974           start = NULLCHAR;
975           break;
976
977         case '}':
978           ch = get(cl);
979           start = NULLCHAR;
980           break;
981
982         default:
983           *q++ = ch;
984           ch = get(cl);
985           break;
986         }
987       }
988     } else if (ch == '\'' || ch == '"') {
989       // Quoting with ' ' or " ", with \ as escape character.
990       // Inconvenient for long strings that may contain Windows filenames.
991       start = ch;
992       ch = get(cl);
993       while (start) {
994         switch (ch) {
995         case NULLCHAR:
996           start = NULLCHAR;
997           break;
998
999         default:
1000         not_special:
1001           *q++ = ch;
1002           ch = get(cl);
1003           break;
1004
1005         case '\'':
1006         case '\"':
1007           if (ch == start) {
1008             ch = get(cl);
1009             start = NULLCHAR;
1010             break;
1011           } else {
1012             goto not_special;
1013           }
1014
1015         case '\\':
1016           if (ad->argType == ArgFilename
1017               || ad->argType == ArgSettingsFilename) {
1018               goto not_special;
1019           }
1020           ch = get(cl);
1021           switch (ch) {
1022           case NULLCHAR:
1023             ExitArgError(_("Incomplete \\ escape in value for %s"), argName, TRUE);
1024             break;
1025           case 'n':
1026             *q++ = '\n';
1027             ch = get(cl);
1028             break;
1029           case 'r':
1030             *q++ = '\r';
1031             ch = get(cl);
1032             break;
1033           case 't':
1034             *q++ = '\t';
1035             ch = get(cl);
1036             break;
1037           case 'b':
1038             *q++ = '\b';
1039             ch = get(cl);
1040             break;
1041           case 'f':
1042             *q++ = '\f';
1043             ch = get(cl);
1044             break;
1045           default:
1046             octval = 0;
1047             for (i = 0; i < 3; i++) {
1048               if (ch >= '0' && ch <= '7') {
1049                 octval = octval*8 + (ch - '0');
1050                 ch = get(cl);
1051               } else {
1052                 break;
1053               }
1054             }
1055             if (i > 0) {
1056               *q++ = (char) octval;
1057             } else {
1058               *q++ = ch;
1059               ch = get(cl);
1060             }
1061             break;
1062           }
1063           break;
1064         }
1065       }
1066     } else {
1067       while ((ch != ' ' || posflag) && ch != NULLCHAR && ch != '\t' && ch != '\n') { // space allowed in positional arg
1068         *q++ = ch;
1069         ch = get(cl);
1070       }
1071     }
1072     *q = NULLCHAR;
1073
1074     if(posflag) { // positional argument: the argName was implied, and per default set as -lgf
1075       int len = strlen(argValue) - 4; // start of filename extension
1076       if(len < 0) len = 0;
1077       if(!strcasecmp(argValue + len, ".trn")) {
1078         ad = &argDescriptors[2]; // correct implied type to -tf
1079         appData.tourney = TRUE; // let it parse -tourneyOptions later
1080       } else if(!strcasecmp(argValue + len, ".fen") || !strcasecmp(argValue + len, ".epd")) {
1081         ad = &argDescriptors[1]; // correct implied type to -lpf
1082         appData.viewer = TRUE;
1083       } else if(!strcasecmp(argValue + len, ".ini") || !strcasecmp(argValue + len, ".xop")) {
1084         ad = &argDescriptors[0]; // correct implied type to -opt
1085       } else if(GetEngineLine(argValue, 11)) {
1086         ad = &argDescriptors[3]; // correct implied type to -is
1087       } else { // keep default -lgf, but let it imply viewer mode as well
1088         appData.viewer = TRUE;
1089       }
1090       strncpy(argName, ad->argName,sizeof(argName)/sizeof(argName[0]));
1091     }
1092
1093     switch (ad->argType) {
1094     case ArgInt:
1095       *(int *) ad->argLoc = ValidateInt(argValue);
1096       break;
1097
1098     case ArgX:
1099       *(int *) ad->argLoc = ValidateInt(argValue) + wpMain.x; // [HGM] placement: translate stored relative to absolute
1100       break;
1101
1102     case ArgY:
1103       *(int *) ad->argLoc = ValidateInt(argValue) + wpMain.y; // (this is really kludgey, it should be done where used...)
1104       break;
1105
1106     case ArgZ:
1107       *(int *) ad->argLoc = ValidateInt(argValue);
1108       EnsureOnScreen(&wpMain.x, &wpMain.y, minX, minY);
1109       break;
1110
1111     case ArgFloat:
1112       *(float *) ad->argLoc = (float) atof(argValue);
1113       break;
1114
1115     case ArgString:
1116     case ArgFilename:
1117 #ifdef DATADIR
1118       if(argValue[0] == '~' && argValue[1] == '~') {
1119         char buf[4*MSG_SIZ]; // expand ~~
1120         snprintf(buf, 4*MSG_SIZ, DATADIR "%s", argValue+2);
1121         ASSIGN(*(char **) ad->argLoc, buf);
1122         break;
1123       }
1124 #endif
1125       ASSIGN(*(char **) ad->argLoc, argValue);
1126       break;
1127
1128     case ArgBackupSettingsFile: // no-op if non-default settings-file already successfully read
1129         if(strcmp(*(char**)ad->argLoc, SETTINGS_FILE)) break;
1130     case ArgSettingsFilename:
1131       {
1132         if (ParseSettingsFile(argValue, (char**)ad->argLoc)) {
1133         } else {
1134           if (ad->argLoc != NULL) {
1135           } else {
1136             ExitArgError(_("Failed to open indirection file %s"), argValue, TRUE);
1137           }
1138         }
1139       }
1140       break;
1141
1142     case ArgBoolean:
1143       switch (argValue[0]) {
1144       case 't':
1145       case 'T':
1146         *(Boolean *) ad->argLoc = TRUE;
1147         break;
1148       case 'f':
1149       case 'F':
1150         *(Boolean *) ad->argLoc = FALSE;
1151         break;
1152       default:
1153         ExitArgError(_("Unrecognized boolean argument value %s"), argValue, TRUE);
1154         break;
1155       }
1156       break;
1157
1158     case ArgColor:
1159       ParseColor((int)(intptr_t)ad->argLoc, argValue);
1160       break;
1161
1162     case ArgAttribs: {
1163       ColorClass cc = (ColorClass)ad->argLoc;
1164         ParseTextAttribs(cc, argValue); // [HGM] wrapper for platform independency
1165       }
1166       break;
1167
1168     case ArgBoardSize:
1169       ParseBoardSize(ad->argLoc, argValue);
1170       break;
1171
1172     case ArgFont:
1173       ParseFont(argValue, (int)(intptr_t)ad->argLoc);
1174       break;
1175
1176     case ArgCommSettings:
1177       ParseCommPortSettings(argValue);
1178       break;
1179
1180     case ArgInstall:
1181       q = *(char **) ad->argLoc;
1182       if((strcmp(version, VERSION) || autoClose) && !strstr(q, argValue) ) {
1183         int l = strlen(q) + strlen(argValue);
1184         *(char **) ad->argLoc = malloc(l+2);
1185         snprintf(*(char **) ad->argLoc, l+2, "%s%s\n", q, argValue);
1186         free(q);
1187       }
1188       break;
1189
1190     case ArgNone:
1191       ExitArgError(_("Unrecognized argument %s"), argValue, TRUE);
1192       break;
1193     case ArgTwo:
1194     case ArgTrue:
1195     case ArgFalse: ;
1196     }
1197   }
1198 }
1199
1200 void
1201 ParseArgsFromString(char *p)
1202 {
1203     ParseArgs(StringGet, &p);
1204 }
1205
1206 void
1207 ParseArgsFromFile(FILE *f)
1208 {
1209     ParseArgs(FileGet, f);
1210 }
1211
1212 void
1213 ParseIcsTextMenu(char *icsTextMenuString)
1214 {
1215 //  int flags = 0;
1216   IcsTextMenuEntry *e = icsTextMenuEntry;
1217   char *p = icsTextMenuString;
1218   while (e->item != NULL && e < icsTextMenuEntry + ICS_TEXT_MENU_SIZE) {
1219     free(e->item);
1220     e->item = NULL;
1221     if (e->command != NULL) {
1222       free(e->command);
1223       e->command = NULL;
1224     }
1225     e++;
1226   }
1227   e = icsTextMenuEntry;
1228   while (*p && e < icsTextMenuEntry + ICS_TEXT_MENU_SIZE) {
1229     if (*p == ';' || *p == '\n') {
1230       e->item = strdup("-");
1231       e->command = NULL;
1232       p++;
1233     } else if (*p == '-') {
1234       e->item = strdup("-");
1235       e->command = NULL;
1236       p++;
1237       if (*p) p++;
1238     } else {
1239       char *q, *r, *s, *t;
1240       char c;
1241       q = strchr(p, ',');
1242       if (q == NULL) break;
1243       *q = NULLCHAR;
1244       r = strchr(q + 1, ',');
1245       if (r == NULL) break;
1246       *r = NULLCHAR;
1247       s = strchr(r + 1, ',');
1248       if (s == NULL) break;
1249       *s = NULLCHAR;
1250       c = ';';
1251       t = strchr(s + 1, c);
1252       if (t == NULL) {
1253         c = '\n';
1254         t = strchr(s + 1, c);
1255       }
1256       if (t != NULL) *t = NULLCHAR;
1257       e->item = strdup(p);
1258       e->command = strdup(q + 1);
1259       e->getname = *(r + 1) != '0';
1260       e->immediate = *(s + 1) != '0';
1261       *q = ',';
1262       *r = ',';
1263       *s = ',';
1264       if (t == NULL) break;
1265       *t = c;
1266       p = t + 1;
1267     }
1268     e++;
1269   }
1270 }
1271
1272 void
1273 SetDefaultTextAttribs()
1274 {
1275   ColorClass cc;
1276   for (cc = (ColorClass)0; cc < ColorNone; cc++) {
1277     ParseTextAttribs(cc, defaultTextAttribs[cc]);
1278   }
1279 }
1280
1281 void
1282 SetDefaultsFromList()
1283 { // [HGM] ini: take defaults from argDescriptor list
1284   int i;
1285
1286   for(i=0; argDescriptors[i].argName != NULL; i++) {
1287     if(argDescriptors[i].defaultValue != INVALID)
1288       switch(argDescriptors[i].argType) {
1289         case ArgBoolean:
1290         case ArgTwo:
1291         case ArgTrue:
1292         case ArgFalse:
1293           *(Boolean *) argDescriptors[i].argLoc = (int)(intptr_t)argDescriptors[i].defaultValue;
1294           break;
1295         case ArgInt:
1296         case ArgX:
1297         case ArgY:
1298         case ArgZ:
1299           *(int *) argDescriptors[i].argLoc = (int)(intptr_t)argDescriptors[i].defaultValue;
1300           break;
1301         case ArgString:
1302         case ArgFilename:
1303         case ArgSettingsFilename:
1304           if((char *)argDescriptors[i].defaultValue)
1305           *(char **) argDescriptors[i].argLoc = strdup((char *)argDescriptors[i].defaultValue);
1306           break;
1307         case ArgBoardSize:
1308           *(int *) argDescriptors[i].argLoc = (int)(intptr_t)argDescriptors[i].defaultValue;
1309           break;
1310         case ArgColor:
1311           ParseColor((int)(intptr_t)argDescriptors[i].argLoc, (char*)argDescriptors[i].defaultValue);
1312           break;
1313         case ArgFloat: // floats cannot be casted to int without precision loss
1314         default: ; // some arg types cannot be initialized through table
1315     }
1316   }
1317 }
1318
1319 void
1320 InitAppData(char *lpCmdLine)
1321 {
1322   int i;
1323   char buf[MAX_ARG_LEN], currDir[MSG_SIZ];
1324   char *p;
1325
1326   /* Initialize to defaults */
1327   SetDefaultsFromList(); // this sets most defaults
1328
1329   // some parameters for which there are no options!
1330   appData.Iconic = FALSE; /*unused*/
1331   appData.icsEngineAnalyze = FALSE;
1332
1333   // float: casting to int is not harmless, so default cannot be contained in table
1334   appData.timeDelay = TIME_DELAY;
1335   appData.timeIncrement = -314159;
1336
1337   // some complex, platform-dependent stuff that could not be handled from table
1338   SetDefaultTextAttribs();
1339   SetFontDefaults();
1340   SetCommPortDefaults();
1341
1342   /* Parse default settings file if any */
1343   ParseSettingsFile(settingsFileName, &settingsFileName);
1344
1345   /* Parse command line */
1346   ParseArgs(StringGet, &lpCmdLine);
1347
1348   if(appData.viewer && appData.viewerOptions[0]) ParseArgsFromString(appData.viewerOptions);
1349   if(appData.tourney && appData.tourneyOptions[0]) ParseArgsFromString(appData.tourneyOptions);
1350   chessProgram |= GetEngineLine(firstEngineLine, 0) || GetEngineLine(secondEngineLine, 1);
1351   appData.icsActive |= GetEngineLine(icsNick, 10);
1352
1353   /* [HGM] make sure board size is acceptable */
1354   if(appData.NrFiles > BOARD_FILES ||
1355      appData.NrRanks > BOARD_RANKS   )
1356       DisplayFatalError("Recompile with BOARD_RANKS or BOARD_FILES, to support this size", 0, 2);
1357
1358   /* [HGM] After parsing the options from the .ini file, and overruling them
1359    * with options from the command line, we now make an even higher priority
1360    * overrule by WB options attached to the engine command line. This so that
1361    * tournament managers can use WB options (such as /timeOdds) that follow
1362    * the engines.
1363    */
1364   if(appData.firstChessProgram != NULL) {
1365       char *p = StrStr(appData.firstChessProgram, "WBopt");
1366       static char *f = "first";
1367       char buf[MSG_SIZ], *q = buf;
1368       int len;
1369
1370       if(p != NULL)
1371         { // engine command line contains WinBoard options
1372           len = snprintf(buf, MSG_SIZ, p+6, f, f, f, f, f, f, f, f, f, f); // replace %s in them by "first"
1373           if( (len >= MSG_SIZ) && appData.debugMode )
1374             fprintf(debugFP, "InitAppData: buffer truncated.\n");
1375
1376           ParseArgs(StringGet, &q);
1377           p[-1] = 0; // cut them offengine command line
1378         }
1379   }
1380   // now do same for second chess program
1381   if(appData.secondChessProgram != NULL) {
1382       char *p = StrStr(appData.secondChessProgram, "WBopt");
1383       static char *s = "second";
1384       char buf[MSG_SIZ], *q = buf;
1385       int len;
1386
1387       if(p != NULL)
1388         { // engine command line contains WinBoard options
1389           len = snprintf(buf,MSG_SIZ, p+6, s, s, s, s, s, s, s, s, s, s); // replace %s in them by "first"
1390           if( (len >= MSG_SIZ) && appData.debugMode )
1391             fprintf(debugFP, "InitAppData: buffer truncated.\n");
1392
1393           ParseArgs(StringGet, &q);
1394           p[-1] = 0; // cut them offengine command line
1395         }
1396   }
1397
1398   /* Propagate options that affect others */
1399   if (appData.matchMode || appData.matchGames) chessProgram = TRUE;
1400   if (appData.icsActive || appData.noChessProgram) {
1401      chessProgram = FALSE;  /* not local chess program mode */
1402   }
1403   if(appData.timeIncrement == -314159) { // new storage mechanism of (mps,inc) in use and no -inc on command line
1404     if(appData.movesPerSession <= 0) { // new encoding of incremental mode
1405       appData.timeIncrement = -appData.movesPerSession/1000.;
1406     } else appData.timeIncrement = -1;
1407   }
1408   if(appData.movesPerSession <= 0) appData.movesPerSession = MOVES_PER_SESSION; // mps <= 0 is invalid in any case
1409
1410   /* Open startup dialog if needed */
1411   if ((!appData.noChessProgram && !chessProgram && !appData.icsActive) ||
1412       (appData.icsActive && *appData.icsHost == NULLCHAR) ||
1413       (chessProgram && (*appData.firstChessProgram == NULLCHAR ||
1414                         *appData.secondChessProgram == NULLCHAR)))
1415                 PopUpStartupDialog();
1416
1417   /* Make sure save files land in the right (?) directory */
1418   if (MyGetFullPathName(appData.saveGameFile, buf)) {
1419     appData.saveGameFile = strdup(buf);
1420   }
1421   if (MyGetFullPathName(appData.savePositionFile, buf)) {
1422     appData.savePositionFile = strdup(buf);
1423   }
1424
1425   /* Finish initialization for fonts and sounds */
1426   CreateFonts();
1427
1428   GetCurrentDirectory(MSG_SIZ, currDir);
1429   SetCurrentDirectory(installDir);
1430   LoadAllSounds();
1431   SetCurrentDirectory(currDir);
1432
1433   p = icsTextMenuString;
1434   if (p[0] == '@') {
1435     FILE* f = fopen(p + 1, "r");
1436     if (f == NULL) {
1437       DisplayFatalError(p + 1, errno, 2);
1438       return;
1439     }
1440     i = fread(buf, 1, sizeof(buf)-1, f);
1441     fclose(f);
1442     buf[i] = NULLCHAR;
1443     p = buf;
1444   }
1445   ParseIcsTextMenu(strdup(p));
1446 }
1447
1448 void
1449 SaveSettings(char* name)
1450 {
1451   FILE *f;
1452   ArgDescriptor *ad;
1453   char dir[MSG_SIZ], buf[MSG_SIZ];
1454   int mps = appData.movesPerSession;
1455
1456   if (!MainWindowUp()) return;
1457
1458   GetCurrentDirectory(MSG_SIZ, dir);
1459   if(MySearchPath(installDir, name, buf)) {
1460     f = fopen(buf, "w");
1461   } else {
1462     SetCurrentDirectory(installDir);
1463     f = fopen(name, "w");
1464     SetCurrentDirectory(dir);
1465   }
1466   if (f == NULL) {
1467     DisplayError(name, errno);
1468     return;
1469   }
1470
1471   fprintf(f, ";\n");
1472   fprintf(f, "; %s Save Settings file\n", PACKAGE_STRING);
1473   fprintf(f, ";\n");
1474   fprintf(f, "; You can edit the values of options that are already set in this file,\n");
1475   fprintf(f, "; but if you add other options, the next Save Settings will not save them.\n");
1476   fprintf(f, "; Use a shortcut, an @indirection file, or a .bat file instead.\n");
1477   fprintf(f, ";\n");
1478
1479   GetWindowCoords();
1480
1481   /* [AS] Move history */
1482   wpMoveHistory.visible = MoveHistoryIsUp();
1483
1484   /* [AS] Eval graph */
1485   wpEvalGraph.visible = EvalGraphIsUp();
1486
1487   /* [AS] Engine output */
1488   wpEngineOutput.visible = EngineOutputIsUp();
1489
1490   // [HGM] in WB we have to copy sound names to appData first
1491   ExportSounds();
1492
1493   if(appData.timeIncrement >= 0) appData.movesPerSession = -1000*appData.timeIncrement; // kludge to store mps & inc as one
1494
1495   for (ad = argDescriptors; ad->argName != NULL; ad++) {
1496     if (!ad->save) continue;
1497     switch (ad->argType) {
1498     case ArgString:
1499       {
1500         char *p = *(char **)ad->argLoc;
1501         if(p == NULL) break; // just in case
1502         if ((strchr(p, '\\') || strchr(p, '\n')) && !strchr(p, '}')) {
1503           /* Quote multiline values or \-containing values
1504              with { } if possible */
1505           fprintf(f, OPTCHAR "%s" SEPCHAR "{%s}\n", ad->argName, p);
1506         } else {
1507           /* Else quote with " " */
1508           fprintf(f, OPTCHAR "%s" SEPCHAR "\"", ad->argName);
1509           while (*p) {
1510             if (*p == '\n') fprintf(f, "\n");
1511             else if (*p == '\r') fprintf(f, "\\r");
1512             else if (*p == '\t') fprintf(f, "\\t");
1513             else if (*p == '\b') fprintf(f, "\\b");
1514             else if (*p == '\f') fprintf(f, "\\f");
1515             else if (*p < ' ') fprintf(f, "\\%03o", *p);
1516             else if (*p == '\"') fprintf(f, "\\\"");
1517             else if (*p == '\\') fprintf(f, "\\\\");
1518             else putc(*p, f);
1519             p++;
1520           }
1521           fprintf(f, "\"\n");
1522         }
1523       }
1524       break;
1525     case ArgInt:
1526     case ArgZ:
1527       fprintf(f, OPTCHAR "%s" SEPCHAR "%d\n", ad->argName, *(int *)ad->argLoc);
1528       break;
1529     case ArgX:
1530       fprintf(f, OPTCHAR "%s" SEPCHAR "%d\n", ad->argName, *(int *)ad->argLoc - wpMain.x); // [HGM] placement: store relative value
1531       break;
1532     case ArgY:
1533       fprintf(f, OPTCHAR "%s" SEPCHAR "%d\n", ad->argName, *(int *)ad->argLoc - wpMain.y);
1534       break;
1535     case ArgFloat:
1536       fprintf(f, OPTCHAR "%s" SEPCHAR "%g\n", ad->argName, *(float *)ad->argLoc);
1537       break;
1538     case ArgBoolean:
1539       fprintf(f, OPTCHAR "%s" SEPCHAR "%s\n", ad->argName,
1540         (*(Boolean *)ad->argLoc) ? "true" : "false");
1541       break;
1542     case ArgTrue:
1543       if (*(Boolean *)ad->argLoc) fprintf(f, OPTCHAR "%s\n", ad->argName);
1544       break;
1545     case ArgFalse:
1546       if (!*(Boolean *)ad->argLoc) fprintf(f, OPTCHAR "%s\n", ad->argName);
1547       break;
1548     case ArgColor:
1549       SaveColor(f, ad);
1550       break;
1551     case ArgAttribs:
1552       SaveAttribsArg(f, ad);
1553       break;
1554     case ArgFilename:
1555       if(*(char**)ad->argLoc == NULL) break; // just in case
1556       if (strchr(*(char **)ad->argLoc, '\"')) {
1557         fprintf(f, OPTCHAR "%s" SEPCHAR "'%s'\n", ad->argName, *(char **)ad->argLoc);
1558       } else {
1559         fprintf(f, OPTCHAR "%s" SEPCHAR "\"%s\"\n", ad->argName, *(char **)ad->argLoc);
1560       }
1561       break;
1562     case ArgBoardSize:
1563       SaveBoardSize(f, ad->argName, ad->argLoc);
1564       break;
1565     case ArgFont:
1566       SaveFontArg(f, ad);
1567       break;
1568     case ArgCommSettings:
1569       PrintCommPortSettings(f, ad->argName);
1570     case ArgTwo:
1571     case ArgNone:
1572     case ArgBackupSettingsFile:
1573     case ArgSettingsFilename: ;
1574     case ArgInstall: ;
1575     }
1576   }
1577   fclose(f);
1578   appData.movesPerSession = mps;
1579 }
1580
1581 Boolean
1582 GetArgValue(char *name)
1583 { // retrieve (as text) current value of string or int argument given by name
1584   // (this is used for maing the values available in the adapter command)
1585   ArgDescriptor *ad;
1586   int len;
1587
1588   for (ad = argDescriptors; ad->argName != NULL; ad++)
1589     if (strcmp(ad->argName, name) == 0) break;
1590
1591   if (ad->argName == NULL) return FALSE;
1592
1593   switch(ad->argType) {
1594     case ArgString:
1595     case ArgFilename:
1596       strncpy(name, *(char**) ad->argLoc, MSG_SIZ);
1597
1598       return TRUE;
1599     case ArgInt:
1600       len = snprintf(name, MSG_SIZ, "%d", *(int*) ad->argLoc);
1601       if( (len >= MSG_SIZ) && appData.debugMode )
1602         fprintf(debugFP, "GetArgValue: buffer truncated.\n");
1603
1604       return TRUE;
1605     case ArgBoolean:
1606       len = snprintf(name, MSG_SIZ, "%s", *(Boolean*) ad->argLoc ? "true" : "false");
1607       if( (len >= MSG_SIZ) && appData.debugMode )
1608         fprintf(debugFP, "GetArgValue: buffer truncated.\n");
1609
1610       return TRUE;
1611     default: ;
1612   }
1613
1614   return FALSE;
1615 }