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