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