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