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