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