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