Make option to draw second engine from first list
[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
613 #if ZIPPY
614   { "zippyTalk", ArgBoolean, (void *) &appData.zippyTalk, FALSE, (ArgIniType) ZIPPY_TALK },
615   { "zt", ArgTrue, (void *) &appData.zippyTalk, FALSE, INVALID },
616   { "xzt", ArgFalse, (void *) &appData.zippyTalk, FALSE, INVALID },
617   { "-zt", ArgFalse, (void *) &appData.zippyTalk, FALSE, INVALID },
618   { "zippyPlay", ArgBoolean, (void *) &appData.zippyPlay, FALSE, (ArgIniType) ZIPPY_PLAY },
619   { "zp", ArgTrue, (void *) &appData.zippyPlay, FALSE, INVALID },
620   { "xzp", ArgFalse, (void *) &appData.zippyPlay, FALSE, INVALID },
621   { "-zp", ArgFalse, (void *) &appData.zippyPlay, FALSE, INVALID },
622   { "zippyLines", ArgFilename, (void *) &appData.zippyLines, FALSE, (ArgIniType) ZIPPY_LINES },
623   { "zippyPinhead", ArgString, (void *) &appData.zippyPinhead, FALSE, (ArgIniType) ZIPPY_PINHEAD },
624   { "zippyPassword", ArgString, (void *) &appData.zippyPassword, FALSE, (ArgIniType) ZIPPY_PASSWORD },
625   { "zippyPassword2", ArgString, (void *) &appData.zippyPassword2, FALSE, (ArgIniType) ZIPPY_PASSWORD2 },
626   { "zippyWrongPassword", ArgString, (void *) &appData.zippyWrongPassword,
627     FALSE, (ArgIniType) ZIPPY_WRONG_PASSWORD },
628   { "zippyAcceptOnly", ArgString, (void *) &appData.zippyAcceptOnly, FALSE, (ArgIniType) ZIPPY_ACCEPT_ONLY },
629   { "zippyUseI", ArgBoolean, (void *) &appData.zippyUseI, FALSE, (ArgIniType) ZIPPY_USE_I },
630   { "zui", ArgTrue, (void *) &appData.zippyUseI, FALSE, INVALID },
631   { "xzui", ArgFalse, (void *) &appData.zippyUseI, FALSE, INVALID },
632   { "-zui", ArgFalse, (void *) &appData.zippyUseI, FALSE, INVALID },
633   { "zippyBughouse", ArgInt, (void *) &appData.zippyBughouse, FALSE, (ArgIniType) ZIPPY_BUGHOUSE },
634   { "zippyNoplayCrafty", ArgBoolean, (void *) &appData.zippyNoplayCrafty,
635     FALSE, (ArgIniType) ZIPPY_NOPLAY_CRAFTY },
636   { "znc", ArgTrue, (void *) &appData.zippyNoplayCrafty, FALSE, INVALID },
637   { "xznc", ArgFalse, (void *) &appData.zippyNoplayCrafty, FALSE, INVALID },
638   { "-znc", ArgFalse, (void *) &appData.zippyNoplayCrafty, FALSE, INVALID },
639   { "zippyGameEnd", ArgString, (void *) &appData.zippyGameEnd, FALSE, (ArgIniType) ZIPPY_GAME_END },
640   { "zippyGameStart", ArgString, (void *) &appData.zippyGameStart, FALSE, (ArgIniType) ZIPPY_GAME_START },
641   { "zippyAdjourn", ArgBoolean, (void *) &appData.zippyAdjourn, FALSE, (ArgIniType) ZIPPY_ADJOURN },
642   { "zadj", ArgTrue, (void *) &appData.zippyAdjourn, FALSE, INVALID },
643   { "xzadj", ArgFalse, (void *) &appData.zippyAdjourn, FALSE, INVALID },
644   { "-zadj", ArgFalse, (void *) &appData.zippyAdjourn, FALSE, INVALID },
645   { "zippyAbort", ArgBoolean, (void *) &appData.zippyAbort, FALSE, (ArgIniType) ZIPPY_ABORT },
646   { "zab", ArgTrue, (void *) &appData.zippyAbort, FALSE, INVALID },
647   { "xzab", ArgFalse, (void *) &appData.zippyAbort, FALSE, INVALID },
648   { "-zab", ArgFalse, (void *) &appData.zippyAbort, FALSE, INVALID },
649   { "zippyVariants", ArgString, (void *) &appData.zippyVariants, FALSE, (ArgIniType) ZIPPY_VARIANTS },
650   { "zippyMaxGames", ArgInt, (void *)&appData.zippyMaxGames, FALSE, (ArgIniType) ZIPPY_MAX_GAMES},
651   { "zippyReplayTimeout", ArgInt, (void *)&appData.zippyReplayTimeout, FALSE, (ArgIniType) ZIPPY_REPLAY_TIMEOUT },
652   { "zippyShortGame", ArgInt, (void *)&appData.zippyShortGame, FALSE, INVALID },
653   /* Kludge to allow winboard.ini files from buggy 4.0.4 to be read: */
654   { "zippyReplyTimeout", ArgInt, (void *)&junk, FALSE, INVALID },
655 #endif
656   /* [HGM] options for broadcasting and time odds */
657   { "chatBoxes", ArgString, (void *) &appData.chatBoxes, !XBOARD, (ArgIniType) NULL },
658   { "serverMoves", ArgString, (void *) &appData.serverMovesName, FALSE, (ArgIniType) NULL },
659   { "suppressLoadMoves", ArgBoolean, (void *) &appData.suppressLoadMoves, FALSE, (ArgIniType) FALSE },
660   { "serverPause", ArgInt, (void *) &appData.serverPause, FALSE, (ArgIniType) 15 },
661   { "firstTimeOdds", ArgInt, (void *) &appData.firstTimeOdds, FALSE, (ArgIniType) 1 },
662   { "secondTimeOdds", ArgInt, (void *) &appData.secondTimeOdds, FALSE, (ArgIniType) 1 },
663   { "timeOddsMode", ArgInt, (void *) &appData.timeOddsMode, TRUE, INVALID },
664   { "firstAccumulateTC", ArgInt, (void *) &appData.firstAccumulateTC, FALSE, (ArgIniType) 1 },
665   { "secondAccumulateTC", ArgInt, (void *) &appData.secondAccumulateTC, FALSE, (ArgIniType) 1 },
666   { "firstNPS", ArgInt, (void *) &appData.firstNPS, FALSE, (ArgIniType) -1 },
667   { "secondNPS", ArgInt, (void *) &appData.secondNPS, FALSE, (ArgIniType) -1 },
668   { "noGUI", ArgTrue, (void *) &appData.noGUI, FALSE, INVALID },
669   { "keepLineBreaksICS", ArgBoolean, (void *) &appData.noJoin, TRUE, INVALID },
670   { "wrapContinuationSequence", ArgString, (void *) &appData.wrapContSeq, FALSE, INVALID },
671   { "useInternalWrap", ArgTrue, (void *) &appData.useInternalWrap, FALSE, INVALID }, /* noJoin usurps this if set */
672
673   // [HGM] placement: put all window layouts last in ini file, but man X,Y before all others
674   { "minX", ArgZ, (void *) &minX, FALSE, INVALID }, // [HGM] placement: to make suer auxialary windows can be placed
675   { "minY", ArgZ, (void *) &minY, FALSE, INVALID },
676   { "winWidth",  ArgInt, (void *) &wpMain.width,  TRUE, INVALID }, // [HGM] placement: dummies to remember right & bottom
677   { "winHeight", ArgInt, (void *) &wpMain.height, TRUE, INVALID }, //       for attaching auxiliary windows to them
678   { "x", ArgInt, (void *) &wpMain.x, TRUE, (ArgIniType) CW_USEDEFAULT },
679   { "y", ArgInt, (void *) &wpMain.y, TRUE, (ArgIniType) CW_USEDEFAULT },
680   { "icsX", ArgX,   (void *) &wpConsole.x, TRUE, (ArgIniType) CW_USEDEFAULT },
681   { "icsY", ArgY,   (void *) &wpConsole.y, TRUE, (ArgIniType) CW_USEDEFAULT },
682   { "icsW", ArgInt, (void *) &wpConsole.width, TRUE, (ArgIniType) CW_USEDEFAULT },
683   { "icsH", ArgInt, (void *) &wpConsole.height, TRUE, (ArgIniType) CW_USEDEFAULT },
684   { "analysisX", ArgX,   (void *) &junk, FALSE, INVALID }, // [HGM] placement: analysis window no longer exists
685   { "analysisY", ArgY,   (void *) &junk, FALSE, INVALID }, //       provided for compatibility with old ini files
686   { "analysisW", ArgInt, (void *) &junk, FALSE, INVALID },
687   { "analysisH", ArgInt, (void *) &junk, FALSE, INVALID },
688   { "commentX", ArgX,   (void *) &wpComment.x, TRUE, (ArgIniType) CW_USEDEFAULT },
689   { "commentY", ArgY,   (void *) &wpComment.y, TRUE, (ArgIniType) CW_USEDEFAULT },
690   { "commentW", ArgInt, (void *) &wpComment.width, TRUE, (ArgIniType) CW_USEDEFAULT },
691   { "commentH", ArgInt, (void *) &wpComment.height, TRUE, (ArgIniType) CW_USEDEFAULT },
692   { "tagsX", ArgX,   (void *) &wpTags.x, TRUE, (ArgIniType) CW_USEDEFAULT },
693   { "tagsY", ArgY,   (void *) &wpTags.y, TRUE, (ArgIniType) CW_USEDEFAULT },
694   { "tagsW", ArgInt, (void *) &wpTags.width, TRUE, (ArgIniType) CW_USEDEFAULT },
695   { "tagsH", ArgInt, (void *) &wpTags.height, TRUE, (ArgIniType) CW_USEDEFAULT },
696   { "gameListX", ArgX,   (void *) &wpGameList.x, TRUE, (ArgIniType) CW_USEDEFAULT },
697   { "gameListY", ArgY,   (void *) &wpGameList.y, TRUE, (ArgIniType) CW_USEDEFAULT },
698   { "gameListW", ArgInt, (void *) &wpGameList.width, TRUE, (ArgIniType) CW_USEDEFAULT },
699   { "gameListH", ArgInt, (void *) &wpGameList.height, TRUE, (ArgIniType) CW_USEDEFAULT },
700   /* [AS] Layout stuff */
701   { "moveHistoryUp", ArgBoolean, (void *) &wpMoveHistory.visible, TRUE, (ArgIniType) TRUE },
702   { "moveHistoryX", ArgX,   (void *) &wpMoveHistory.x, TRUE, (ArgIniType) CW_USEDEFAULT },
703   { "moveHistoryY", ArgY,   (void *) &wpMoveHistory.y, TRUE, (ArgIniType) CW_USEDEFAULT },
704   { "moveHistoryW", ArgInt, (void *) &wpMoveHistory.width, TRUE, (ArgIniType) CW_USEDEFAULT },
705   { "moveHistoryH", ArgInt, (void *) &wpMoveHistory.height, TRUE, (ArgIniType) CW_USEDEFAULT },
706
707   { "evalGraphUp", ArgBoolean, (void *) &wpEvalGraph.visible, TRUE, (ArgIniType) TRUE },
708   { "evalGraphX", ArgX,   (void *) &wpEvalGraph.x, TRUE, (ArgIniType) CW_USEDEFAULT },
709   { "evalGraphY", ArgY,   (void *) &wpEvalGraph.y, TRUE, (ArgIniType) CW_USEDEFAULT },
710   { "evalGraphW", ArgInt, (void *) &wpEvalGraph.width, TRUE, (ArgIniType) CW_USEDEFAULT },
711   { "evalGraphH", ArgInt, (void *) &wpEvalGraph.height, TRUE, (ArgIniType) CW_USEDEFAULT },
712
713   { "engineOutputUp", ArgBoolean, (void *) &wpEngineOutput.visible, TRUE, (ArgIniType) TRUE },
714   { "engineOutputX", ArgX,   (void *) &wpEngineOutput.x, TRUE, (ArgIniType) CW_USEDEFAULT },
715   { "engineOutputY", ArgY,   (void *) &wpEngineOutput.y, TRUE, (ArgIniType) CW_USEDEFAULT },
716   { "engineOutputW", ArgInt, (void *) &wpEngineOutput.width, TRUE, (ArgIniType) CW_USEDEFAULT },
717   { "engineOutputH", ArgInt, (void *) &wpEngineOutput.height, TRUE, (ArgIniType) CW_USEDEFAULT },
718
719   { NULL, ArgNone, NULL, FALSE, INVALID }
720 };
721
722
723 /* Kludge for indirection files on command line */
724 char* lastIndirectionFilename;
725 ArgDescriptor argDescriptorIndirection =
726 { "", ArgSettingsFilename, (void *) NULL, FALSE };
727
728 void
729 ExitArgError(char *msg, char *badArg)
730 {
731   char buf[MSG_SIZ];
732   int len;
733
734   len = snprintf(buf,MSG_SIZ, "%s %s", msg, badArg);
735   if( (len > MSG_SIZ) && appData.debugMode )
736     fprintf(debugFP, "ExitArgError: buffer truncated. Input: msg=%s badArg=%s\n", msg, badArg);
737
738   DisplayFatalError(buf, 0, 2);
739   exit(2);
740 }
741
742 int
743 ValidateInt(char *s)
744 {
745   char *p = s;
746   if(*p == '-' || *p == '+') p++;
747   while(*p) if(!isdigit(*p++)) ExitArgError("Bad integer value", s);
748   return atoi(s);
749 }
750
751 char
752 StringGet(void *getClosure)
753 {
754   char **p = (char **) getClosure;
755   return *((*p)++);
756 }
757
758 char
759 FileGet(void *getClosure)
760 {
761   int c;
762   FILE* f = (FILE*) getClosure;
763
764   c = getc(f);
765   if (c == '\r') c = getc(f); // work around DOS format files by bypassing the '\r' completely
766   if (c == EOF)
767     return NULLCHAR;
768   else
769     return (char) c;
770 }
771
772 /* Parse settings file named "name". If file found, return the
773    full name in fullname and return TRUE; else return FALSE */
774 Boolean
775 ParseSettingsFile(char *name, char **addr)
776 {
777   FILE *f;
778   int ok,len;
779   char buf[MSG_SIZ], fullname[MSG_SIZ];
780
781
782   ok = MySearchPath(installDir, name, fullname);
783   if(!ok && strchr(name, '.') == NULL)
784     { // append default file-name extension '.ini' when needed
785       len = snprintf(buf,MSG_SIZ, "%s.ini", name);
786       if( (len > MSG_SIZ) && appData.debugMode )
787         fprintf(debugFP, "ParseSettingsFile: buffer truncated. Input: name=%s \n",name);
788
789       ok = MySearchPath(installDir, buf, fullname);
790     }
791   if (ok) {
792     f = fopen(fullname, "r");
793     if (f != NULL) {
794       if (addr != NULL) {
795             *addr = strdup(fullname);
796       }
797       ParseArgs(FileGet, f);
798       fclose(f);
799       return TRUE;
800     }
801   }
802   return FALSE;
803 }
804
805 void
806 ParseArgs(GetFunc get, void *cl)
807 {
808   char argName[MAX_ARG_LEN];
809   char argValue[MAX_ARG_LEN];
810   ArgDescriptor *ad;
811   char start;
812   char *q;
813   int i, octval;
814   char ch;
815   int posarg = 0;
816
817   ch = get(cl);
818   for (;;) {
819     while (ch == ' ' || ch == '\n' || ch == '\t') ch = get(cl);
820     if (ch == NULLCHAR) break;
821     if (ch == ';') {
822       /* Comment to end of line */
823       ch = get(cl);
824       while (ch != '\n' && ch != NULLCHAR) ch = get(cl);
825       continue;
826     } else if (ch == '/' || ch == '-') {
827       /* Switch */
828       q = argName;
829       while (ch != ' ' && ch != '=' && ch != ':' && ch != NULLCHAR &&
830              ch != '\n' && ch != '\t') {
831         *q++ = ch;
832         ch = get(cl);
833       }
834       *q = NULLCHAR;
835       for (ad = argDescriptors; ad->argName != NULL; ad++)
836         if (strcmp(ad->argName, argName + 1) == 0) break;
837       if (ad->argName == NULL)
838         ExitArgError("Unrecognized argument", argName);
839
840     } else if (ch == '@') {
841       /* Indirection file */
842       ad = &argDescriptorIndirection;
843       ch = get(cl);
844     } else {
845       /* Positional argument */
846       ad = &argDescriptors[posarg++];
847       strncpy(argName, ad->argName,sizeof(argName)/sizeof(argName[0]));
848     }
849
850     if (ad->argType == ArgTrue) {
851       *(Boolean *) ad->argLoc = TRUE;
852       continue;
853     }
854     if (ad->argType == ArgFalse) {
855       *(Boolean *) ad->argLoc = FALSE;
856       continue;
857     }
858
859     while (ch == ' ' || ch == '=' || ch == ':' || ch == '\t') ch = get(cl);
860     if (ch == NULLCHAR || ch == '\n') {
861       ExitArgError("No value provided for argument", argName);
862     }
863     q = argValue;
864     if (ch == '{') {
865       // Quoting with { }.  No characters have to (or can) be escaped.
866       // Thus the string cannot contain a '}' character.
867       start = ch;
868       ch = get(cl);
869       while (start) {
870         switch (ch) {
871         case NULLCHAR:
872           start = NULLCHAR;
873           break;
874
875         case '}':
876           ch = get(cl);
877           start = NULLCHAR;
878           break;
879
880         default:
881           *q++ = ch;
882           ch = get(cl);
883           break;
884         }
885       }
886     } else if (ch == '\'' || ch == '"') {
887       // Quoting with ' ' or " ", with \ as escape character.
888       // Inconvenient for long strings that may contain Windows filenames.
889       start = ch;
890       ch = get(cl);
891       while (start) {
892         switch (ch) {
893         case NULLCHAR:
894           start = NULLCHAR;
895           break;
896
897         default:
898         not_special:
899           *q++ = ch;
900           ch = get(cl);
901           break;
902
903         case '\'':
904         case '\"':
905           if (ch == start) {
906             ch = get(cl);
907             start = NULLCHAR;
908             break;
909           } else {
910             goto not_special;
911           }
912
913         case '\\':
914           if (ad->argType == ArgFilename
915               || ad->argType == ArgSettingsFilename) {
916               goto not_special;
917           }
918           ch = get(cl);
919           switch (ch) {
920           case NULLCHAR:
921             ExitArgError("Incomplete \\ escape in value for", argName);
922             break;
923           case 'n':
924             *q++ = '\n';
925             ch = get(cl);
926             break;
927           case 'r':
928             *q++ = '\r';
929             ch = get(cl);
930             break;
931           case 't':
932             *q++ = '\t';
933             ch = get(cl);
934             break;
935           case 'b':
936             *q++ = '\b';
937             ch = get(cl);
938             break;
939           case 'f':
940             *q++ = '\f';
941             ch = get(cl);
942             break;
943           default:
944             octval = 0;
945             for (i = 0; i < 3; i++) {
946               if (ch >= '0' && ch <= '7') {
947                 octval = octval*8 + (ch - '0');
948                 ch = get(cl);
949               } else {
950                 break;
951               }
952             }
953             if (i > 0) {
954               *q++ = (char) octval;
955             } else {
956               *q++ = ch;
957               ch = get(cl);
958             }
959             break;
960           }
961           break;
962         }
963       }
964     } else {
965       while (ch != ' ' && ch != NULLCHAR && ch != '\t' && ch != '\n') {
966         *q++ = ch;
967         ch = get(cl);
968       }
969     }
970     *q = NULLCHAR;
971
972     switch (ad->argType) {
973     case ArgInt:
974       *(int *) ad->argLoc = ValidateInt(argValue);
975       break;
976
977     case ArgX:
978       *(int *) ad->argLoc = ValidateInt(argValue) + wpMain.x; // [HGM] placement: translate stored relative to absolute
979       break;
980
981     case ArgY:
982       *(int *) ad->argLoc = ValidateInt(argValue) + wpMain.y; // (this is really kludgey, it should be done where used...)
983       break;
984
985     case ArgZ:
986       *(int *) ad->argLoc = ValidateInt(argValue);
987       EnsureOnScreen(&wpMain.x, &wpMain.y, minX, minY);
988       break;
989
990     case ArgFloat:
991       *(float *) ad->argLoc = (float) atof(argValue);
992       break;
993
994     case ArgString:
995     case ArgFilename:
996       *(char **) ad->argLoc = strdup(argValue);
997       break;
998
999     case ArgSettingsFilename:
1000       {
1001         if (ParseSettingsFile(argValue, (char**)ad->argLoc)) {
1002         } else {
1003           if (ad->argLoc != NULL) {
1004           } else {
1005             ExitArgError("Failed to open indirection file", argValue);
1006           }
1007         }
1008       }
1009       break;
1010
1011     case ArgBoolean:
1012       switch (argValue[0]) {
1013       case 't':
1014       case 'T':
1015         *(Boolean *) ad->argLoc = TRUE;
1016         break;
1017       case 'f':
1018       case 'F':
1019         *(Boolean *) ad->argLoc = FALSE;
1020         break;
1021       default:
1022         ExitArgError("Unrecognized boolean argument value", argValue);
1023         break;
1024       }
1025       break;
1026
1027     case ArgColor:
1028       ParseColor((int)(intptr_t)ad->argLoc, argValue);
1029       break;
1030
1031     case ArgAttribs: {
1032       ColorClass cc = (ColorClass)ad->argLoc;
1033         ParseTextAttribs(cc, argValue); // [HGM] wrapper for platform independency
1034       }
1035       break;
1036
1037     case ArgBoardSize:
1038       ParseBoardSize(ad->argLoc, argValue);
1039       break;
1040
1041     case ArgFont:
1042       ParseFont(argValue, (int)(intptr_t)ad->argLoc);
1043       break;
1044
1045     case ArgCommSettings:
1046       ParseCommPortSettings(argValue);
1047       break;
1048
1049     case ArgNone:
1050       ExitArgError("Unrecognized argument", argValue);
1051       break;
1052     case ArgTrue:
1053     case ArgFalse: ;
1054     }
1055   }
1056 }
1057
1058 void
1059 ParseArgsFromString(char *p)
1060 {
1061     ParseArgs(StringGet, &p);
1062 }
1063
1064 void
1065 ParseArgsFromFile(FILE *f)
1066 {
1067     ParseArgs(FileGet, f);
1068 }
1069
1070 void
1071 ParseIcsTextMenu(char *icsTextMenuString)
1072 {
1073 //  int flags = 0;
1074   IcsTextMenuEntry *e = icsTextMenuEntry;
1075   char *p = icsTextMenuString;
1076   while (e->item != NULL && e < icsTextMenuEntry + ICS_TEXT_MENU_SIZE) {
1077     free(e->item);
1078     e->item = NULL;
1079     if (e->command != NULL) {
1080       free(e->command);
1081       e->command = NULL;
1082     }
1083     e++;
1084   }
1085   e = icsTextMenuEntry;
1086   while (*p && e < icsTextMenuEntry + ICS_TEXT_MENU_SIZE) {
1087     if (*p == ';' || *p == '\n') {
1088       e->item = strdup("-");
1089       e->command = NULL;
1090       p++;
1091     } else if (*p == '-') {
1092       e->item = strdup("-");
1093       e->command = NULL;
1094       p++;
1095       if (*p) p++;
1096     } else {
1097       char *q, *r, *s, *t;
1098       char c;
1099       q = strchr(p, ',');
1100       if (q == NULL) break;
1101       *q = NULLCHAR;
1102       r = strchr(q + 1, ',');
1103       if (r == NULL) break;
1104       *r = NULLCHAR;
1105       s = strchr(r + 1, ',');
1106       if (s == NULL) break;
1107       *s = NULLCHAR;
1108       c = ';';
1109       t = strchr(s + 1, c);
1110       if (t == NULL) {
1111         c = '\n';
1112         t = strchr(s + 1, c);
1113       }
1114       if (t != NULL) *t = NULLCHAR;
1115       e->item = strdup(p);
1116       e->command = strdup(q + 1);
1117       e->getname = *(r + 1) != '0';
1118       e->immediate = *(s + 1) != '0';
1119       *q = ',';
1120       *r = ',';
1121       *s = ',';
1122       if (t == NULL) break;
1123       *t = c;
1124       p = t + 1;
1125     }
1126     e++;
1127   }
1128 }
1129
1130 void
1131 SetDefaultTextAttribs()
1132 {
1133   ColorClass cc;
1134   for (cc = (ColorClass)0; cc < ColorNone; cc++) {
1135     ParseTextAttribs(cc, defaultTextAttribs[cc]);
1136   }
1137 }
1138
1139 void
1140 SetDefaultsFromList()
1141 { // [HGM] ini: take defaults from argDescriptor list
1142   int i;
1143
1144   for(i=0; argDescriptors[i].argName != NULL; i++) {
1145     if(argDescriptors[i].defaultValue != INVALID)
1146       switch(argDescriptors[i].argType) {
1147         case ArgBoolean:
1148         case ArgTrue:
1149         case ArgFalse:
1150           *(Boolean *) argDescriptors[i].argLoc = (int)(intptr_t)argDescriptors[i].defaultValue;
1151           break;
1152         case ArgInt:
1153         case ArgX:
1154         case ArgY:
1155         case ArgZ:
1156           *(int *) argDescriptors[i].argLoc = (int)(intptr_t)argDescriptors[i].defaultValue;
1157           break;
1158         case ArgString:
1159         case ArgFilename:
1160         case ArgSettingsFilename:
1161           *(char **) argDescriptors[i].argLoc = (char *)argDescriptors[i].defaultValue;
1162           break;
1163         case ArgBoardSize:
1164           *(int *) argDescriptors[i].argLoc = (int)(intptr_t)argDescriptors[i].defaultValue;
1165           break;
1166         case ArgColor:
1167           ParseColor((int)(intptr_t)argDescriptors[i].argLoc, (char*)argDescriptors[i].defaultValue);
1168           break;
1169         case ArgFloat: // floats cannot be casted to int without precision loss
1170         default: ; // some arg types cannot be initialized through table
1171     }
1172   }
1173 }
1174
1175 void
1176 InitAppData(char *lpCmdLine)
1177 {
1178   int i;
1179   char buf[MAX_ARG_LEN], currDir[MSG_SIZ];
1180   char *p;
1181
1182   /* Initialize to defaults */
1183   SetDefaultsFromList(); // this sets most defaults
1184
1185   // some parameters for which there are no options!
1186   appData.Iconic = FALSE; /*unused*/
1187   appData.icsEngineAnalyze = FALSE;
1188
1189   // float: casting to int is not harmless, so default cannot be contained in table
1190   appData.timeDelay = TIME_DELAY;
1191   appData.timeIncrement = TIME_INCREMENT;
1192
1193   // some complex, platform-dependent stuff that could not be handled from table
1194   SetDefaultTextAttribs();
1195   SetFontDefaults();
1196   SetCommPortDefaults();
1197
1198   /* Parse default settings file if any */
1199   ParseSettingsFile(settingsFileName, &settingsFileName);
1200
1201   /* Parse command line */
1202   ParseArgs(StringGet, &lpCmdLine);
1203
1204   /* [HGM] make sure board size is acceptable */
1205   if(appData.NrFiles > BOARD_FILES ||
1206      appData.NrRanks > BOARD_RANKS   )
1207       DisplayFatalError("Recompile with BOARD_RANKS or BOARD_FILES, to support this size", 0, 2);
1208
1209   /* [HGM] After parsing the options from the .ini file, and overruling them
1210    * with options from the command line, we now make an even higher priority
1211    * overrule by WB options attached to the engine command line. This so that
1212    * tournament managers can use WB options (such as /timeOdds) that follow
1213    * the engines.
1214    */
1215   if(appData.firstChessProgram != NULL) {
1216       char *p = StrStr(appData.firstChessProgram, "WBopt");
1217       static char *f = "first";
1218       char buf[MSG_SIZ], *q = buf;
1219       int len;
1220
1221       if(p != NULL)
1222         { // engine command line contains WinBoard options
1223           len = snprintf(buf, MSG_SIZ, p+6, f, f, f, f, f, f, f, f, f, f); // replace %s in them by "first"
1224           if( (len > MSG_SIZ) && appData.debugMode )
1225             fprintf(debugFP, "InitAppData: buffer truncated.\n");
1226
1227           ParseArgs(StringGet, &q);
1228           p[-1] = 0; // cut them offengine command line
1229         }
1230   }
1231   // now do same for second chess program
1232   if(appData.secondChessProgram != NULL) {
1233       char *p = StrStr(appData.secondChessProgram, "WBopt");
1234       static char *s = "second";
1235       char buf[MSG_SIZ], *q = buf;
1236       int len;
1237
1238       if(p != NULL)
1239         { // engine command line contains WinBoard options
1240           len = snprintf(buf,MSG_SIZ, p+6, s, s, s, s, s, s, s, s, s, s); // replace %s in them by "first"
1241           if( (len > MSG_SIZ) && appData.debugMode )
1242             fprintf(debugFP, "InitAppData: buffer truncated.\n");
1243
1244           ParseArgs(StringGet, &q);
1245           p[-1] = 0; // cut them offengine command line
1246         }
1247   }
1248
1249   /* Propagate options that affect others */
1250   if (appData.matchMode || appData.matchGames) chessProgram = TRUE;
1251   if (appData.icsActive || appData.noChessProgram) {
1252      chessProgram = FALSE;  /* not local chess program mode */
1253   }
1254
1255   /* Open startup dialog if needed */
1256   if ((!appData.noChessProgram && !chessProgram && !appData.icsActive) ||
1257       (appData.icsActive && *appData.icsHost == NULLCHAR) ||
1258       (chessProgram && (*appData.firstChessProgram == NULLCHAR ||
1259                         *appData.secondChessProgram == NULLCHAR)))
1260                 PopUpStartupDialog();
1261
1262   /* Make sure save files land in the right (?) directory */
1263   if (MyGetFullPathName(appData.saveGameFile, buf)) {
1264     appData.saveGameFile = strdup(buf);
1265   }
1266   if (MyGetFullPathName(appData.savePositionFile, buf)) {
1267     appData.savePositionFile = strdup(buf);
1268   }
1269
1270   /* Finish initialization for fonts and sounds */
1271   CreateFonts();
1272
1273   GetCurrentDirectory(MSG_SIZ, currDir);
1274   SetCurrentDirectory(installDir);
1275   LoadAllSounds();
1276   SetCurrentDirectory(currDir);
1277
1278   p = icsTextMenuString;
1279   if (p[0] == '@') {
1280     FILE* f = fopen(p + 1, "r");
1281     if (f == NULL) {
1282       DisplayFatalError(p + 1, errno, 2);
1283       return;
1284     }
1285     i = fread(buf, 1, sizeof(buf)-1, f);
1286     fclose(f);
1287     buf[i] = NULLCHAR;
1288     p = buf;
1289   }
1290   ParseIcsTextMenu(strdup(p));
1291 }
1292
1293 void
1294 SaveSettings(char* name)
1295 {
1296   FILE *f;
1297   ArgDescriptor *ad;
1298   char dir[MSG_SIZ], buf[MSG_SIZ];
1299
1300   if (!MainWindowUp()) return;
1301
1302   GetCurrentDirectory(MSG_SIZ, dir);
1303   if(MySearchPath(installDir, name, buf)) {
1304     f = fopen(buf, "w");
1305   } else {
1306     SetCurrentDirectory(installDir);
1307     f = fopen(name, "w");
1308     SetCurrentDirectory(dir);
1309   }
1310   if (f == NULL) {
1311     DisplayError(name, errno);
1312     return;
1313   }
1314
1315   fprintf(f, ";\n");
1316   fprintf(f, "; %s Save Settings file\n", PACKAGE_STRING);
1317   fprintf(f, ";\n");
1318   fprintf(f, "; You can edit the values of options that are already set in this file,\n");
1319   fprintf(f, "; but if you add other options, the next Save Settings will not save them.\n");
1320   fprintf(f, "; Use a shortcut, an @indirection file, or a .bat file instead.\n");
1321   fprintf(f, ";\n");
1322
1323   GetWindowCoords();
1324
1325   /* [AS] Move history */
1326   wpMoveHistory.visible = MoveHistoryIsUp();
1327
1328   /* [AS] Eval graph */
1329   wpEvalGraph.visible = EvalGraphIsUp();
1330
1331   /* [AS] Engine output */
1332   wpEngineOutput.visible = EngineOutputIsUp();
1333
1334   // [HGM] in WB we have to copy sound names to appData first
1335   ExportSounds();
1336
1337   for (ad = argDescriptors; ad->argName != NULL; ad++) {
1338     if (!ad->save) continue;
1339     switch (ad->argType) {
1340     case ArgString:
1341       {
1342         char *p = *(char **)ad->argLoc;
1343         if(p == NULL) break; // just in case
1344         if ((strchr(p, '\\') || strchr(p, '\n')) && !strchr(p, '}')) {
1345           /* Quote multiline values or \-containing values
1346              with { } if possible */
1347           fprintf(f, OPTCHAR "%s" SEPCHAR "{%s}\n", ad->argName, p);
1348         } else {
1349           /* Else quote with " " */
1350           fprintf(f, OPTCHAR "%s" SEPCHAR "\"", ad->argName);
1351           while (*p) {
1352             if (*p == '\n') fprintf(f, "\n");
1353             else if (*p == '\r') fprintf(f, "\\r");
1354             else if (*p == '\t') fprintf(f, "\\t");
1355             else if (*p == '\b') fprintf(f, "\\b");
1356             else if (*p == '\f') fprintf(f, "\\f");
1357             else if (*p < ' ') fprintf(f, "\\%03o", *p);
1358             else if (*p == '\"') fprintf(f, "\\\"");
1359             else if (*p == '\\') fprintf(f, "\\\\");
1360             else putc(*p, f);
1361             p++;
1362           }
1363           fprintf(f, "\"\n");
1364         }
1365       }
1366       break;
1367     case ArgInt:
1368     case ArgZ:
1369       fprintf(f, OPTCHAR "%s" SEPCHAR "%d\n", ad->argName, *(int *)ad->argLoc);
1370       break;
1371     case ArgX:
1372       fprintf(f, OPTCHAR "%s" SEPCHAR "%d\n", ad->argName, *(int *)ad->argLoc - wpMain.x); // [HGM] placement: store relative value
1373       break;
1374     case ArgY:
1375       fprintf(f, OPTCHAR "%s" SEPCHAR "%d\n", ad->argName, *(int *)ad->argLoc - wpMain.y);
1376       break;
1377     case ArgFloat:
1378       fprintf(f, OPTCHAR "%s" SEPCHAR "%g\n", ad->argName, *(float *)ad->argLoc);
1379       break;
1380     case ArgBoolean:
1381       fprintf(f, OPTCHAR "%s" SEPCHAR "%s\n", ad->argName,
1382         (*(Boolean *)ad->argLoc) ? "true" : "false");
1383       break;
1384     case ArgTrue:
1385       if (*(Boolean *)ad->argLoc) fprintf(f, OPTCHAR "%s\n", ad->argName);
1386       break;
1387     case ArgFalse:
1388       if (!*(Boolean *)ad->argLoc) fprintf(f, OPTCHAR "%s\n", ad->argName);
1389       break;
1390     case ArgColor:
1391       SaveColor(f, ad);
1392       break;
1393     case ArgAttribs:
1394       SaveAttribsArg(f, ad);
1395       break;
1396     case ArgFilename:
1397       if(*(char**)ad->argLoc == NULL) break; // just in case
1398       if (strchr(*(char **)ad->argLoc, '\"')) {
1399         fprintf(f, OPTCHAR "%s" SEPCHAR "'%s'\n", ad->argName, *(char **)ad->argLoc);
1400       } else {
1401         fprintf(f, OPTCHAR "%s" SEPCHAR "\"%s\"\n", ad->argName, *(char **)ad->argLoc);
1402       }
1403       break;
1404     case ArgBoardSize:
1405       SaveBoardSize(f, ad->argName, ad->argLoc);
1406       break;
1407     case ArgFont:
1408       SaveFontArg(f, ad);
1409       break;
1410     case ArgCommSettings:
1411       PrintCommPortSettings(f, ad->argName);
1412     case ArgNone:
1413     case ArgSettingsFilename: ;
1414     }
1415   }
1416   fclose(f);
1417 }
1418
1419 Boolean
1420 GetArgValue(char *name)
1421 { // retrieve (as text) current value of string or int argument given by name
1422   // (this is used for maing the values available in the adapter command)
1423   ArgDescriptor *ad;
1424   int len;
1425
1426   for (ad = argDescriptors; ad->argName != NULL; ad++)
1427     if (strcmp(ad->argName, name) == 0) break;
1428
1429   if (ad->argName == NULL) return FALSE;
1430
1431   switch(ad->argType) {
1432     case ArgString:
1433     case ArgFilename:
1434       strncpy(name, *(char**) ad->argLoc, MSG_SIZ);
1435
1436       return TRUE;
1437     case ArgInt:
1438       len = snprintf(name, MSG_SIZ, "%d", *(int*) ad->argLoc);
1439       if( (len > MSG_SIZ) && appData.debugMode )
1440         fprintf(debugFP, "GetArgValue: buffer truncated.\n");
1441
1442       return TRUE;
1443     case ArgBoolean:
1444       len = snprintf(name, MSG_SIZ, "%s", *(Boolean*) ad->argLoc ? "true" : "false");
1445       if( (len > MSG_SIZ) && appData.debugMode )
1446         fprintf(debugFP, "GetArgValue: buffer truncated.\n");
1447
1448       return TRUE;
1449     default: ;
1450   }
1451
1452   return FALSE;
1453 }