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