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