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