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