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