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