Add logo widgets in main board window
[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   { "logoSize", ArgInt, (void *) &appData.logoSize, XBOARD, INVALID },
618   { "logoDir", ArgFilename, (void *) &appData.logoDir, XBOARD, (ArgIniType) "." },
619   { "firstLogo", ArgFilename, (void *) &appData.firstLogo, FALSE, (ArgIniType) "" },
620   { "secondLogo", ArgFilename, (void *) &appData.secondLogo, FALSE, (ArgIniType) "" },
621   { "autoLogo", ArgBoolean, (void *) &appData.autoLogo, TRUE, INVALID },
622   { "firstOptions", ArgString, (void *) &appData.firstOptions, FALSE, (ArgIniType) "" },
623   { "secondOptions", ArgString, (void *) &appData.secondOptions, FALSE, (ArgIniType) "" },
624   { "firstFeatures", ArgString, (void *) &appData.features[0], FALSE, (ArgIniType) "" },
625   { "secondFeatures", ArgString, (void *) &appData.features[1], FALSE, (ArgIniType) "" },
626   { "featureDefaults", ArgString, (void *) &appData.featureDefaults, TRUE, (ArgIniType) "" },
627   { "firstNeedsNoncompliantFEN", ArgString, (void *) &appData.fenOverride1, FALSE, (ArgIniType) NULL },
628   { "secondNeedsNoncompliantFEN", ArgString, (void *) &appData.fenOverride2, FALSE, (ArgIniType) NULL },
629   { "keepAlive", ArgInt, (void *) &appData.keepAlive, FALSE, INVALID },
630   { "icstype", ArgInt, (void *) &ics_type, FALSE, INVALID },
631   { "forceIllegalMoves", ArgTrue, (void *) &appData.forceIllegal, FALSE, INVALID },
632   { "showTargetSquares", ArgBoolean, (void *) &appData.markers, TRUE, (ArgIniType) FALSE },
633   { "firstPgnName", ArgString, (void *) &appData.pgnName[0], FALSE, (ArgIniType) "" },
634   { "fn", ArgString, (void *) &appData.pgnName[0], FALSE, INVALID },
635   { "secondPgnName", ArgString, (void *) &appData.pgnName[1], FALSE, (ArgIniType) "" },
636   { "sn", ArgString, (void *) &appData.pgnName[1], FALSE, INVALID },
637   { "absoluteAnalysisScores", ArgBoolean, (void *) &appData.whitePOV, TRUE, FALSE },
638   { "scoreWhite", ArgBoolean, (void *) &appData.scoreWhite, TRUE, FALSE },
639   { "evalZoom", ArgInt, (void *) &appData.zoom, TRUE, (ArgIniType) 1 },
640   { "evalThreshold", ArgInt, (void *) &appData.evalThreshold, TRUE, (ArgIniType) 25 },
641   { "fSAN", ArgTrue, (void *) &appData.pvSAN[0], FALSE, FALSE },
642   { "sSAN", ArgTrue, (void *) &appData.pvSAN[1], FALSE, FALSE },
643   { "pairingEngine", ArgFilename, (void *) &appData.pairingEngine, TRUE, "" },
644   { "defaultTourneyName", ArgFilename, (void *) &appData.defName, TRUE, "" },
645   { "eloThresholdAny", ArgInt, (void *) &appData.eloThreshold1, FALSE, (ArgIniType) 0 },
646   { "eloThresholdBoth", ArgInt, (void *) &appData.eloThreshold2, FALSE, (ArgIniType) 0 },
647   { "dateThreshold", ArgInt, (void *) &appData.dateThreshold, FALSE, (ArgIniType) 0 },
648   { "searchMode", ArgInt, (void *) &appData.searchMode, FALSE, (ArgIniType) 1 },
649   { "stretch", ArgInt, (void *) &appData.stretch, FALSE, (ArgIniType) 1 },
650   { "ignoreColors", ArgBoolean, (void *) &appData.ignoreColors, FALSE, FALSE },
651   { "findMirrorImage", ArgBoolean, (void *) &appData.findMirror, FALSE, FALSE },
652   { "viewer", ArgTrue, (void *) &appData.viewer, FALSE, FALSE },
653   { "viewerOptions", ArgString, (void *) &appData.viewerOptions, TRUE, (ArgIniType) "-ncp -engineOutputUp false -saveSettingsOnExit false" },
654   { "autoCopyPV", ArgBoolean, (void *) &appData.autoCopyPV, TRUE, FALSE },
655   { "topLevel", ArgBoolean, (void *) &appData.topLevel, XBOARD, (ArgIniType) TOPLEVEL },
656   { "dialogColor", ArgString, (void *) &appData.dialogColor, XBOARD, (ArgIniType) "" },
657   { "buttonColor", ArgString, (void *) &appData.buttonColor, XBOARD, (ArgIniType) "" },
658
659 #if ZIPPY
660   { "zippyTalk", ArgBoolean, (void *) &appData.zippyTalk, FALSE, (ArgIniType) ZIPPY_TALK },
661   { "zt", ArgTrue, (void *) &appData.zippyTalk, FALSE, INVALID },
662   { "xzt", ArgFalse, (void *) &appData.zippyTalk, FALSE, INVALID },
663   { "-zt", ArgFalse, (void *) &appData.zippyTalk, FALSE, INVALID },
664   { "zippyPlay", ArgBoolean, (void *) &appData.zippyPlay, FALSE, (ArgIniType) ZIPPY_PLAY },
665   { "zp", ArgTrue, (void *) &appData.zippyPlay, FALSE, INVALID },
666   { "xzp", ArgFalse, (void *) &appData.zippyPlay, FALSE, INVALID },
667   { "-zp", ArgFalse, (void *) &appData.zippyPlay, FALSE, INVALID },
668   { "zippyLines", ArgFilename, (void *) &appData.zippyLines, FALSE, (ArgIniType) ZIPPY_LINES },
669   { "zippyPinhead", ArgString, (void *) &appData.zippyPinhead, FALSE, (ArgIniType) ZIPPY_PINHEAD },
670   { "zippyPassword", ArgString, (void *) &appData.zippyPassword, FALSE, (ArgIniType) ZIPPY_PASSWORD },
671   { "zippyPassword2", ArgString, (void *) &appData.zippyPassword2, FALSE, (ArgIniType) ZIPPY_PASSWORD2 },
672   { "zippyWrongPassword", ArgString, (void *) &appData.zippyWrongPassword,
673     FALSE, (ArgIniType) ZIPPY_WRONG_PASSWORD },
674   { "zippyAcceptOnly", ArgString, (void *) &appData.zippyAcceptOnly, FALSE, (ArgIniType) ZIPPY_ACCEPT_ONLY },
675   { "zippyUseI", ArgBoolean, (void *) &appData.zippyUseI, FALSE, (ArgIniType) ZIPPY_USE_I },
676   { "zui", ArgTrue, (void *) &appData.zippyUseI, FALSE, INVALID },
677   { "xzui", ArgFalse, (void *) &appData.zippyUseI, FALSE, INVALID },
678   { "-zui", ArgFalse, (void *) &appData.zippyUseI, FALSE, INVALID },
679   { "zippyBughouse", ArgInt, (void *) &appData.zippyBughouse, FALSE, (ArgIniType) ZIPPY_BUGHOUSE },
680   { "zippyNoplayCrafty", ArgBoolean, (void *) &appData.zippyNoplayCrafty,
681     FALSE, (ArgIniType) ZIPPY_NOPLAY_CRAFTY },
682   { "znc", ArgTrue, (void *) &appData.zippyNoplayCrafty, FALSE, INVALID },
683   { "xznc", ArgFalse, (void *) &appData.zippyNoplayCrafty, FALSE, INVALID },
684   { "-znc", ArgFalse, (void *) &appData.zippyNoplayCrafty, FALSE, INVALID },
685   { "zippyGameEnd", ArgString, (void *) &appData.zippyGameEnd, FALSE, (ArgIniType) ZIPPY_GAME_END },
686   { "zippyGameStart", ArgString, (void *) &appData.zippyGameStart, FALSE, (ArgIniType) ZIPPY_GAME_START },
687   { "zippyAdjourn", ArgBoolean, (void *) &appData.zippyAdjourn, FALSE, (ArgIniType) ZIPPY_ADJOURN },
688   { "zadj", ArgTrue, (void *) &appData.zippyAdjourn, FALSE, INVALID },
689   { "xzadj", ArgFalse, (void *) &appData.zippyAdjourn, FALSE, INVALID },
690   { "-zadj", ArgFalse, (void *) &appData.zippyAdjourn, FALSE, INVALID },
691   { "zippyAbort", ArgBoolean, (void *) &appData.zippyAbort, FALSE, (ArgIniType) ZIPPY_ABORT },
692   { "zab", ArgTrue, (void *) &appData.zippyAbort, FALSE, INVALID },
693   { "xzab", ArgFalse, (void *) &appData.zippyAbort, FALSE, INVALID },
694   { "-zab", ArgFalse, (void *) &appData.zippyAbort, FALSE, INVALID },
695   { "zippyVariants", ArgString, (void *) &appData.zippyVariants, FALSE, (ArgIniType) ZIPPY_VARIANTS },
696   { "zippyMaxGames", ArgInt, (void *)&appData.zippyMaxGames, FALSE, (ArgIniType) ZIPPY_MAX_GAMES},
697   { "zippyReplayTimeout", ArgInt, (void *)&appData.zippyReplayTimeout, FALSE, (ArgIniType) ZIPPY_REPLAY_TIMEOUT },
698   { "zippyShortGame", ArgInt, (void *)&appData.zippyShortGame, FALSE, INVALID },
699   /* Kludge to allow winboard.ini files from buggy 4.0.4 to be read: */
700   { "zippyReplyTimeout", ArgInt, (void *)&junk, FALSE, INVALID },
701 #endif
702   /* [HGM] options for broadcasting and time odds */
703   { "chatBoxes", ArgString, (void *) &appData.chatBoxes, !XBOARD, (ArgIniType) NULL },
704   { "serverMoves", ArgString, (void *) &appData.serverMovesName, FALSE, (ArgIniType) NULL },
705   { "serverFile", ArgString, (void *) &appData.serverFileName, FALSE, (ArgIniType) NULL },
706   { "suppressLoadMoves", ArgBoolean, (void *) &appData.suppressLoadMoves, FALSE, (ArgIniType) FALSE },
707   { "serverPause", ArgInt, (void *) &appData.serverPause, FALSE, (ArgIniType) 15 },
708   { "firstTimeOdds", ArgInt, (void *) &appData.firstTimeOdds, FALSE, (ArgIniType) 1 },
709   { "secondTimeOdds", ArgInt, (void *) &appData.secondTimeOdds, FALSE, (ArgIniType) 1 },
710   { "timeOddsMode", ArgInt, (void *) &appData.timeOddsMode, TRUE, INVALID },
711   { "firstAccumulateTC", ArgInt, (void *) &appData.firstAccumulateTC, FALSE, (ArgIniType) 1 },
712   { "secondAccumulateTC", ArgInt, (void *) &appData.secondAccumulateTC, FALSE, (ArgIniType) 1 },
713   { "firstNPS", ArgInt, (void *) &appData.firstNPS, FALSE, (ArgIniType) -1 },
714   { "secondNPS", ArgInt, (void *) &appData.secondNPS, FALSE, (ArgIniType) -1 },
715   { "noGUI", ArgTrue, (void *) &appData.noGUI, FALSE, INVALID },
716   { "keepLineBreaksICS", ArgBoolean, (void *) &appData.noJoin, TRUE, INVALID },
717   { "wrapContinuationSequence", ArgString, (void *) &appData.wrapContSeq, FALSE, INVALID },
718   { "useInternalWrap", ArgTrue, (void *) &appData.useInternalWrap, FALSE, INVALID }, /* noJoin usurps this if set */
719   { "openCommand", ArgString, (void *) &appData.sysOpen, FALSE, "xdg-open" },
720
721   // [HGM] placement: put all window layouts last in ini file, but man X,Y before all others
722   { "minX", ArgZ, (void *) &minX, FALSE, INVALID }, // [HGM] placement: to make sure auxiliary windows can be placed
723   { "minY", ArgZ, (void *) &minY, FALSE, INVALID },
724   { "winWidth",  ArgInt, (void *) &wpMain.width,  TRUE, INVALID }, // [HGM] placement: dummies to remember right & bottom
725   { "winHeight", ArgInt, (void *) &wpMain.height, TRUE, INVALID }, //       for attaching auxiliary windows to them
726   { "x", ArgInt, (void *) &wpMain.x, TRUE, (ArgIniType) CW_USEDEFAULT },
727   { "y", ArgInt, (void *) &wpMain.y, TRUE, (ArgIniType) CW_USEDEFAULT },
728   { "icsX", ArgX,   (void *) &wpConsole.x, TRUE, (ArgIniType) CW_USEDEFAULT },
729   { "icsY", ArgY,   (void *) &wpConsole.y, TRUE, (ArgIniType) CW_USEDEFAULT },
730   { "icsW", ArgInt, (void *) &wpConsole.width, TRUE, (ArgIniType) CW_USEDEFAULT },
731   { "icsH", ArgInt, (void *) &wpConsole.height, TRUE, (ArgIniType) CW_USEDEFAULT },
732   { "analysisX", ArgX,   (void *) &junk, FALSE, INVALID }, // [HGM] placement: analysis window no longer exists
733   { "analysisY", ArgY,   (void *) &junk, FALSE, INVALID }, //       provided for compatibility with old ini files
734   { "analysisW", ArgInt, (void *) &junk, FALSE, INVALID },
735   { "analysisH", ArgInt, (void *) &junk, FALSE, INVALID },
736   { "commentX", ArgX,   (void *) &wpComment.x, TRUE, (ArgIniType) CW_USEDEFAULT },
737   { "commentY", ArgY,   (void *) &wpComment.y, TRUE, (ArgIniType) CW_USEDEFAULT },
738   { "commentW", ArgInt, (void *) &wpComment.width, TRUE, (ArgIniType) CW_USEDEFAULT },
739   { "commentH", ArgInt, (void *) &wpComment.height, TRUE, (ArgIniType) CW_USEDEFAULT },
740   { "tagsX", ArgX,   (void *) &wpTags.x, TRUE, (ArgIniType) CW_USEDEFAULT },
741   { "tagsY", ArgY,   (void *) &wpTags.y, TRUE, (ArgIniType) CW_USEDEFAULT },
742   { "tagsW", ArgInt, (void *) &wpTags.width, TRUE, (ArgIniType) CW_USEDEFAULT },
743   { "tagsH", ArgInt, (void *) &wpTags.height, TRUE, (ArgIniType) CW_USEDEFAULT },
744   { "gameListX", ArgX,   (void *) &wpGameList.x, TRUE, (ArgIniType) CW_USEDEFAULT },
745   { "gameListY", ArgY,   (void *) &wpGameList.y, TRUE, (ArgIniType) CW_USEDEFAULT },
746   { "gameListW", ArgInt, (void *) &wpGameList.width, TRUE, (ArgIniType) CW_USEDEFAULT },
747   { "gameListH", ArgInt, (void *) &wpGameList.height, TRUE, (ArgIniType) CW_USEDEFAULT },
748   /* [AS] Layout stuff */
749   { "moveHistoryUp", ArgBoolean, (void *) &wpMoveHistory.visible, TRUE, (ArgIniType) TRUE },
750   { "moveHistoryX", ArgX,   (void *) &wpMoveHistory.x, TRUE, (ArgIniType) CW_USEDEFAULT },
751   { "moveHistoryY", ArgY,   (void *) &wpMoveHistory.y, TRUE, (ArgIniType) CW_USEDEFAULT },
752   { "moveHistoryW", ArgInt, (void *) &wpMoveHistory.width, TRUE, (ArgIniType) CW_USEDEFAULT },
753   { "moveHistoryH", ArgInt, (void *) &wpMoveHistory.height, TRUE, (ArgIniType) CW_USEDEFAULT },
754
755   { "evalGraphUp", ArgBoolean, (void *) &wpEvalGraph.visible, TRUE, (ArgIniType) TRUE },
756   { "evalGraphX", ArgX,   (void *) &wpEvalGraph.x, TRUE, (ArgIniType) CW_USEDEFAULT },
757   { "evalGraphY", ArgY,   (void *) &wpEvalGraph.y, TRUE, (ArgIniType) CW_USEDEFAULT },
758   { "evalGraphW", ArgInt, (void *) &wpEvalGraph.width, TRUE, (ArgIniType) CW_USEDEFAULT },
759   { "evalGraphH", ArgInt, (void *) &wpEvalGraph.height, TRUE, (ArgIniType) CW_USEDEFAULT },
760
761   { "engineOutputUp", ArgBoolean, (void *) &wpEngineOutput.visible, TRUE, (ArgIniType) TRUE },
762   { "engineOutputX", ArgX,   (void *) &wpEngineOutput.x, TRUE, (ArgIniType) CW_USEDEFAULT },
763   { "engineOutputY", ArgY,   (void *) &wpEngineOutput.y, TRUE, (ArgIniType) CW_USEDEFAULT },
764   { "engineOutputW", ArgInt, (void *) &wpEngineOutput.width, TRUE, (ArgIniType) CW_USEDEFAULT },
765   { "engineOutputH", ArgInt, (void *) &wpEngineOutput.height, TRUE, (ArgIniType) CW_USEDEFAULT },
766
767   { NULL, ArgNone, NULL, FALSE, INVALID }
768 };
769
770
771 /* Kludge for indirection files on command line */
772 char* lastIndirectionFilename;
773 ArgDescriptor argDescriptorIndirection =
774 { "", ArgSettingsFilename, (void *) NULL, FALSE };
775
776 void
777 ExitArgError(char *msg, char *badArg, Boolean quit)
778 {
779   char buf[MSG_SIZ];
780   int len;
781
782   len = snprintf(buf, MSG_SIZ, msg, badArg);
783   if( (len >= MSG_SIZ) && appData.debugMode )
784     fprintf(debugFP, "ExitArgError: buffer truncated. Input: msg=%s badArg=%s\n", msg, badArg);
785
786   if(!quit) { printf(_("%s in settings file\n"), buf); return; } // DisplayError does not work yet at this stage...
787   DisplayFatalError(buf, 0, 2);
788   exit(2);
789 }
790
791 int
792 ValidateInt(char *s)
793 {
794   char *p = s;
795   if(*p == '-' || *p == '+') p++;
796   while(*p) if(!isdigit(*p++)) ExitArgError(_("Bad integer value %s"), s, TRUE);
797   return atoi(s);
798 }
799
800 char
801 StringGet(void *getClosure)
802 {
803   char **p = (char **) getClosure;
804   return *((*p)++);
805 }
806
807 char
808 FileGet(void *getClosure)
809 {
810   int c;
811   FILE* f = (FILE*) getClosure;
812
813   c = getc(f);
814   if (c == '\r') c = getc(f); // work around DOS format files by bypassing the '\r' completely
815   if (c == EOF)
816     return NULLCHAR;
817   else
818     return (char) c;
819 }
820
821 /* Parse settings file named "name". If file found, return the
822    full name in fullname and return TRUE; else return FALSE */
823 Boolean
824 ParseSettingsFile(char *name, char **addr)
825 {
826   FILE *f;
827   int ok,len;
828   char buf[MSG_SIZ], fullname[MSG_SIZ];
829
830
831   ok = MySearchPath(installDir, name, fullname);
832   if(!ok && strchr(name, '.') == NULL)
833     { // append default file-name extension '.ini' when needed
834       len = snprintf(buf,MSG_SIZ, "%s.ini", name);
835       if( (len >= MSG_SIZ) && appData.debugMode )
836         fprintf(debugFP, "ParseSettingsFile: buffer truncated. Input: name=%s \n",name);
837
838       ok = MySearchPath(installDir, buf, fullname);
839     }
840   if (ok) {
841     f = fopen(fullname, "r");
842     if (f != NULL) {
843       if (addr != NULL) {
844             ASSIGN(*addr, fullname);
845       }
846       ParseArgs(FileGet, f);
847       fclose(f);
848       return TRUE;
849     }
850   }
851   return FALSE;
852 }
853
854 void
855 ParseArgs(GetFunc get, void *cl)
856 {
857   char argName[MAX_ARG_LEN];
858   char argValue[MAX_ARG_LEN];
859   ArgDescriptor *ad;
860   char start;
861   char *q;
862   int i, octval;
863   char ch;
864   int posarg = 0;
865
866   ch = get(cl);
867   for (;;) {
868     while (ch == ' ' || ch == '\n' || ch == '\t') ch = get(cl);
869     if (ch == NULLCHAR) break;
870     if (ch == ';') {
871       /* Comment to end of line */
872       ch = get(cl);
873       while (ch != '\n' && ch != NULLCHAR) ch = get(cl);
874       continue;
875     } else if (ch == '/' || ch == '-') {
876       /* Switch */
877       q = argName;
878       while (ch != ' ' && ch != '=' && ch != ':' && ch != NULLCHAR &&
879              ch != '\n' && ch != '\t') {
880         *q++ = ch;
881         ch = get(cl);
882       }
883       *q = NULLCHAR;
884       for (ad = argDescriptors; ad->argName != NULL; ad++)
885         if (strcmp(ad->argName, argName + 1) == 0) break;
886       if (ad->argName == NULL) {
887         ExitArgError(_("Unrecognized argument %s"), argName, get != &FileGet); // [HGM] make unknown argument non-fatal
888         while (ch != '\n' && ch != NULLCHAR) ch = get(cl); // but skip rest of line it is on
889         continue; // so that when it is in a settings file, it is the only setting that will be purged from it
890       }
891     } else if (ch == '@') {
892       /* Indirection file */
893       ad = &argDescriptorIndirection;
894       ch = get(cl);
895     } else {
896       /* Positional argument */
897       ad = &argDescriptors[posarg++];
898       strncpy(argName, ad->argName,sizeof(argName)/sizeof(argName[0]));
899     }
900
901     if (ad->argType == ArgTwo) { // [HGM] kludgey arg type, not suitable for saving
902       *(Boolean *) ad->argLoc = 2;
903       continue;
904     }
905     if (ad->argType == ArgTrue) {
906       *(Boolean *) ad->argLoc = TRUE;
907       continue;
908     }
909     if (ad->argType == ArgFalse) {
910       *(Boolean *) ad->argLoc = FALSE;
911       continue;
912     }
913
914     while (ch == ' ' || ch == '=' || ch == ':' || ch == '\t') ch = get(cl);
915     if (ch == NULLCHAR || ch == '\n') {
916       ExitArgError(_("No value provided for argument %s"), argName, TRUE);
917     }
918     q = argValue;
919     if (ch == '{') {
920       // Quoting with { }.  No characters have to (or can) be escaped.
921       // Thus the string cannot contain a '}' character.
922       start = ch;
923       ch = get(cl);
924       while (start) {
925         switch (ch) {
926         case NULLCHAR:
927           start = NULLCHAR;
928           break;
929
930         case '}':
931           ch = get(cl);
932           start = NULLCHAR;
933           break;
934
935         default:
936           *q++ = ch;
937           ch = get(cl);
938           break;
939         }
940       }
941     } else if (ch == '\'' || ch == '"') {
942       // Quoting with ' ' or " ", with \ as escape character.
943       // Inconvenient for long strings that may contain Windows filenames.
944       start = ch;
945       ch = get(cl);
946       while (start) {
947         switch (ch) {
948         case NULLCHAR:
949           start = NULLCHAR;
950           break;
951
952         default:
953         not_special:
954           *q++ = ch;
955           ch = get(cl);
956           break;
957
958         case '\'':
959         case '\"':
960           if (ch == start) {
961             ch = get(cl);
962             start = NULLCHAR;
963             break;
964           } else {
965             goto not_special;
966           }
967
968         case '\\':
969           if (ad->argType == ArgFilename
970               || ad->argType == ArgSettingsFilename) {
971               goto not_special;
972           }
973           ch = get(cl);
974           switch (ch) {
975           case NULLCHAR:
976             ExitArgError(_("Incomplete \\ escape in value for %s"), argName, TRUE);
977             break;
978           case 'n':
979             *q++ = '\n';
980             ch = get(cl);
981             break;
982           case 'r':
983             *q++ = '\r';
984             ch = get(cl);
985             break;
986           case 't':
987             *q++ = '\t';
988             ch = get(cl);
989             break;
990           case 'b':
991             *q++ = '\b';
992             ch = get(cl);
993             break;
994           case 'f':
995             *q++ = '\f';
996             ch = get(cl);
997             break;
998           default:
999             octval = 0;
1000             for (i = 0; i < 3; i++) {
1001               if (ch >= '0' && ch <= '7') {
1002                 octval = octval*8 + (ch - '0');
1003                 ch = get(cl);
1004               } else {
1005                 break;
1006               }
1007             }
1008             if (i > 0) {
1009               *q++ = (char) octval;
1010             } else {
1011               *q++ = ch;
1012               ch = get(cl);
1013             }
1014             break;
1015           }
1016           break;
1017         }
1018       }
1019     } else {
1020       while (ch != ' ' && ch != NULLCHAR && ch != '\t' && ch != '\n') {
1021         *q++ = ch;
1022         ch = get(cl);
1023       }
1024     }
1025     *q = NULLCHAR;
1026
1027     switch (ad->argType) {
1028     case ArgInt:
1029       *(int *) ad->argLoc = ValidateInt(argValue);
1030       break;
1031
1032     case ArgX:
1033       *(int *) ad->argLoc = ValidateInt(argValue) + wpMain.x; // [HGM] placement: translate stored relative to absolute
1034       break;
1035
1036     case ArgY:
1037       *(int *) ad->argLoc = ValidateInt(argValue) + wpMain.y; // (this is really kludgey, it should be done where used...)
1038       break;
1039
1040     case ArgZ:
1041       *(int *) ad->argLoc = ValidateInt(argValue);
1042       EnsureOnScreen(&wpMain.x, &wpMain.y, minX, minY);
1043       break;
1044
1045     case ArgFloat:
1046       *(float *) ad->argLoc = (float) atof(argValue);
1047       break;
1048
1049     case ArgString:
1050     case ArgFilename:
1051       ASSIGN(*(char **) ad->argLoc, argValue);
1052       break;
1053
1054     case ArgSettingsFilename:
1055       {
1056         if (ParseSettingsFile(argValue, (char**)ad->argLoc)) {
1057         } else {
1058           if (ad->argLoc != NULL) {
1059           } else {
1060             ExitArgError(_("Failed to open indirection file %s"), argValue, TRUE);
1061           }
1062         }
1063       }
1064       break;
1065
1066     case ArgBoolean:
1067       switch (argValue[0]) {
1068       case 't':
1069       case 'T':
1070         *(Boolean *) ad->argLoc = TRUE;
1071         break;
1072       case 'f':
1073       case 'F':
1074         *(Boolean *) ad->argLoc = FALSE;
1075         break;
1076       default:
1077         ExitArgError(_("Unrecognized boolean argument value %s"), argValue, TRUE);
1078         break;
1079       }
1080       break;
1081
1082     case ArgColor:
1083       ParseColor((int)(intptr_t)ad->argLoc, argValue);
1084       break;
1085
1086     case ArgAttribs: {
1087       ColorClass cc = (ColorClass)ad->argLoc;
1088         ParseTextAttribs(cc, argValue); // [HGM] wrapper for platform independency
1089       }
1090       break;
1091
1092     case ArgBoardSize:
1093       ParseBoardSize(ad->argLoc, argValue);
1094       break;
1095
1096     case ArgFont:
1097       ParseFont(argValue, (int)(intptr_t)ad->argLoc);
1098       break;
1099
1100     case ArgCommSettings:
1101       ParseCommPortSettings(argValue);
1102       break;
1103
1104     case ArgNone:
1105       ExitArgError(_("Unrecognized argument %s"), argValue, TRUE);
1106       break;
1107     case ArgTwo:
1108     case ArgTrue:
1109     case ArgFalse: ;
1110     }
1111   }
1112 }
1113
1114 void
1115 ParseArgsFromString(char *p)
1116 {
1117     ParseArgs(StringGet, &p);
1118 }
1119
1120 void
1121 ParseArgsFromFile(FILE *f)
1122 {
1123     ParseArgs(FileGet, f);
1124 }
1125
1126 void
1127 ParseIcsTextMenu(char *icsTextMenuString)
1128 {
1129 //  int flags = 0;
1130   IcsTextMenuEntry *e = icsTextMenuEntry;
1131   char *p = icsTextMenuString;
1132   while (e->item != NULL && e < icsTextMenuEntry + ICS_TEXT_MENU_SIZE) {
1133     free(e->item);
1134     e->item = NULL;
1135     if (e->command != NULL) {
1136       free(e->command);
1137       e->command = NULL;
1138     }
1139     e++;
1140   }
1141   e = icsTextMenuEntry;
1142   while (*p && e < icsTextMenuEntry + ICS_TEXT_MENU_SIZE) {
1143     if (*p == ';' || *p == '\n') {
1144       e->item = strdup("-");
1145       e->command = NULL;
1146       p++;
1147     } else if (*p == '-') {
1148       e->item = strdup("-");
1149       e->command = NULL;
1150       p++;
1151       if (*p) p++;
1152     } else {
1153       char *q, *r, *s, *t;
1154       char c;
1155       q = strchr(p, ',');
1156       if (q == NULL) break;
1157       *q = NULLCHAR;
1158       r = strchr(q + 1, ',');
1159       if (r == NULL) break;
1160       *r = NULLCHAR;
1161       s = strchr(r + 1, ',');
1162       if (s == NULL) break;
1163       *s = NULLCHAR;
1164       c = ';';
1165       t = strchr(s + 1, c);
1166       if (t == NULL) {
1167         c = '\n';
1168         t = strchr(s + 1, c);
1169       }
1170       if (t != NULL) *t = NULLCHAR;
1171       e->item = strdup(p);
1172       e->command = strdup(q + 1);
1173       e->getname = *(r + 1) != '0';
1174       e->immediate = *(s + 1) != '0';
1175       *q = ',';
1176       *r = ',';
1177       *s = ',';
1178       if (t == NULL) break;
1179       *t = c;
1180       p = t + 1;
1181     }
1182     e++;
1183   }
1184 }
1185
1186 void
1187 SetDefaultTextAttribs()
1188 {
1189   ColorClass cc;
1190   for (cc = (ColorClass)0; cc < ColorNone; cc++) {
1191     ParseTextAttribs(cc, defaultTextAttribs[cc]);
1192   }
1193 }
1194
1195 void
1196 SetDefaultsFromList()
1197 { // [HGM] ini: take defaults from argDescriptor list
1198   int i;
1199
1200   for(i=0; argDescriptors[i].argName != NULL; i++) {
1201     if(argDescriptors[i].defaultValue != INVALID)
1202       switch(argDescriptors[i].argType) {
1203         case ArgBoolean:
1204         case ArgTwo:
1205         case ArgTrue:
1206         case ArgFalse:
1207           *(Boolean *) argDescriptors[i].argLoc = (int)(intptr_t)argDescriptors[i].defaultValue;
1208           break;
1209         case ArgInt:
1210         case ArgX:
1211         case ArgY:
1212         case ArgZ:
1213           *(int *) argDescriptors[i].argLoc = (int)(intptr_t)argDescriptors[i].defaultValue;
1214           break;
1215         case ArgString:
1216         case ArgFilename:
1217         case ArgSettingsFilename:
1218           if((char *)argDescriptors[i].defaultValue)
1219           *(char **) argDescriptors[i].argLoc = strdup((char *)argDescriptors[i].defaultValue);
1220           break;
1221         case ArgBoardSize:
1222           *(int *) argDescriptors[i].argLoc = (int)(intptr_t)argDescriptors[i].defaultValue;
1223           break;
1224         case ArgColor:
1225           ParseColor((int)(intptr_t)argDescriptors[i].argLoc, (char*)argDescriptors[i].defaultValue);
1226           break;
1227         case ArgFloat: // floats cannot be casted to int without precision loss
1228         default: ; // some arg types cannot be initialized through table
1229     }
1230   }
1231 }
1232
1233 void
1234 InitAppData(char *lpCmdLine)
1235 {
1236   int i;
1237   char buf[MAX_ARG_LEN], currDir[MSG_SIZ];
1238   char *p;
1239
1240   /* Initialize to defaults */
1241   SetDefaultsFromList(); // this sets most defaults
1242
1243   // some parameters for which there are no options!
1244   appData.Iconic = FALSE; /*unused*/
1245   appData.icsEngineAnalyze = FALSE;
1246
1247   // float: casting to int is not harmless, so default cannot be contained in table
1248   appData.timeDelay = TIME_DELAY;
1249   appData.timeIncrement = TIME_INCREMENT;
1250
1251   // some complex, platform-dependent stuff that could not be handled from table
1252   SetDefaultTextAttribs();
1253   SetFontDefaults();
1254   SetCommPortDefaults();
1255
1256   /* Parse default settings file if any */
1257   ParseSettingsFile(settingsFileName, &settingsFileName);
1258
1259   /* Parse command line */
1260   ParseArgs(StringGet, &lpCmdLine);
1261
1262   if(appData.viewer && appData.viewerOptions[0]) ParseArgsFromString(appData.viewerOptions);
1263
1264   /* [HGM] make sure board size is acceptable */
1265   if(appData.NrFiles > BOARD_FILES ||
1266      appData.NrRanks > BOARD_RANKS   )
1267       DisplayFatalError("Recompile with BOARD_RANKS or BOARD_FILES, to support this size", 0, 2);
1268
1269   /* [HGM] After parsing the options from the .ini file, and overruling them
1270    * with options from the command line, we now make an even higher priority
1271    * overrule by WB options attached to the engine command line. This so that
1272    * tournament managers can use WB options (such as /timeOdds) that follow
1273    * the engines.
1274    */
1275   if(appData.firstChessProgram != NULL) {
1276       char *p = StrStr(appData.firstChessProgram, "WBopt");
1277       static char *f = "first";
1278       char buf[MSG_SIZ], *q = buf;
1279       int len;
1280
1281       if(p != NULL)
1282         { // engine command line contains WinBoard options
1283           len = snprintf(buf, MSG_SIZ, p+6, f, f, f, f, f, f, f, f, f, f); // replace %s in them by "first"
1284           if( (len >= MSG_SIZ) && appData.debugMode )
1285             fprintf(debugFP, "InitAppData: buffer truncated.\n");
1286
1287           ParseArgs(StringGet, &q);
1288           p[-1] = 0; // cut them offengine command line
1289         }
1290   }
1291   // now do same for second chess program
1292   if(appData.secondChessProgram != NULL) {
1293       char *p = StrStr(appData.secondChessProgram, "WBopt");
1294       static char *s = "second";
1295       char buf[MSG_SIZ], *q = buf;
1296       int len;
1297
1298       if(p != NULL)
1299         { // engine command line contains WinBoard options
1300           len = snprintf(buf,MSG_SIZ, p+6, s, s, s, s, s, s, s, s, s, s); // replace %s in them by "first"
1301           if( (len >= MSG_SIZ) && appData.debugMode )
1302             fprintf(debugFP, "InitAppData: buffer truncated.\n");
1303
1304           ParseArgs(StringGet, &q);
1305           p[-1] = 0; // cut them offengine command line
1306         }
1307   }
1308
1309   /* Propagate options that affect others */
1310   if (appData.matchMode || appData.matchGames) chessProgram = TRUE;
1311   if (appData.icsActive || appData.noChessProgram) {
1312      chessProgram = FALSE;  /* not local chess program mode */
1313   }
1314
1315   /* Open startup dialog if needed */
1316   if ((!appData.noChessProgram && !chessProgram && !appData.icsActive) ||
1317       (appData.icsActive && *appData.icsHost == NULLCHAR) ||
1318       (chessProgram && (*appData.firstChessProgram == NULLCHAR ||
1319                         *appData.secondChessProgram == NULLCHAR)))
1320                 PopUpStartupDialog();
1321
1322   /* Make sure save files land in the right (?) directory */
1323   if (MyGetFullPathName(appData.saveGameFile, buf)) {
1324     appData.saveGameFile = strdup(buf);
1325   }
1326   if (MyGetFullPathName(appData.savePositionFile, buf)) {
1327     appData.savePositionFile = strdup(buf);
1328   }
1329
1330   /* Finish initialization for fonts and sounds */
1331   CreateFonts();
1332
1333   GetCurrentDirectory(MSG_SIZ, currDir);
1334   SetCurrentDirectory(installDir);
1335   LoadAllSounds();
1336   SetCurrentDirectory(currDir);
1337
1338   p = icsTextMenuString;
1339   if (p[0] == '@') {
1340     FILE* f = fopen(p + 1, "r");
1341     if (f == NULL) {
1342       DisplayFatalError(p + 1, errno, 2);
1343       return;
1344     }
1345     i = fread(buf, 1, sizeof(buf)-1, f);
1346     fclose(f);
1347     buf[i] = NULLCHAR;
1348     p = buf;
1349   }
1350   ParseIcsTextMenu(strdup(p));
1351 }
1352
1353 void
1354 SaveSettings(char* name)
1355 {
1356   FILE *f;
1357   ArgDescriptor *ad;
1358   char dir[MSG_SIZ], buf[MSG_SIZ];
1359
1360   if (!MainWindowUp()) return;
1361
1362   GetCurrentDirectory(MSG_SIZ, dir);
1363   if(MySearchPath(installDir, name, buf)) {
1364     f = fopen(buf, "w");
1365   } else {
1366     SetCurrentDirectory(installDir);
1367     f = fopen(name, "w");
1368     SetCurrentDirectory(dir);
1369   }
1370   if (f == NULL) {
1371     DisplayError(name, errno);
1372     return;
1373   }
1374
1375   fprintf(f, ";\n");
1376   fprintf(f, "; %s Save Settings file\n", PACKAGE_STRING);
1377   fprintf(f, ";\n");
1378   fprintf(f, "; You can edit the values of options that are already set in this file,\n");
1379   fprintf(f, "; but if you add other options, the next Save Settings will not save them.\n");
1380   fprintf(f, "; Use a shortcut, an @indirection file, or a .bat file instead.\n");
1381   fprintf(f, ";\n");
1382
1383   GetWindowCoords();
1384
1385   /* [AS] Move history */
1386   wpMoveHistory.visible = MoveHistoryIsUp();
1387
1388   /* [AS] Eval graph */
1389   wpEvalGraph.visible = EvalGraphIsUp();
1390
1391   /* [AS] Engine output */
1392   wpEngineOutput.visible = EngineOutputIsUp();
1393
1394   // [HGM] in WB we have to copy sound names to appData first
1395   ExportSounds();
1396
1397   for (ad = argDescriptors; ad->argName != NULL; ad++) {
1398     if (!ad->save) continue;
1399     switch (ad->argType) {
1400     case ArgString:
1401       {
1402         char *p = *(char **)ad->argLoc;
1403         if(p == NULL) break; // just in case
1404         if ((strchr(p, '\\') || strchr(p, '\n')) && !strchr(p, '}')) {
1405           /* Quote multiline values or \-containing values
1406              with { } if possible */
1407           fprintf(f, OPTCHAR "%s" SEPCHAR "{%s}\n", ad->argName, p);
1408         } else {
1409           /* Else quote with " " */
1410           fprintf(f, OPTCHAR "%s" SEPCHAR "\"", ad->argName);
1411           while (*p) {
1412             if (*p == '\n') fprintf(f, "\n");
1413             else if (*p == '\r') fprintf(f, "\\r");
1414             else if (*p == '\t') fprintf(f, "\\t");
1415             else if (*p == '\b') fprintf(f, "\\b");
1416             else if (*p == '\f') fprintf(f, "\\f");
1417             else if (*p < ' ') fprintf(f, "\\%03o", *p);
1418             else if (*p == '\"') fprintf(f, "\\\"");
1419             else if (*p == '\\') fprintf(f, "\\\\");
1420             else putc(*p, f);
1421             p++;
1422           }
1423           fprintf(f, "\"\n");
1424         }
1425       }
1426       break;
1427     case ArgInt:
1428     case ArgZ:
1429       fprintf(f, OPTCHAR "%s" SEPCHAR "%d\n", ad->argName, *(int *)ad->argLoc);
1430       break;
1431     case ArgX:
1432       fprintf(f, OPTCHAR "%s" SEPCHAR "%d\n", ad->argName, *(int *)ad->argLoc - wpMain.x); // [HGM] placement: store relative value
1433       break;
1434     case ArgY:
1435       fprintf(f, OPTCHAR "%s" SEPCHAR "%d\n", ad->argName, *(int *)ad->argLoc - wpMain.y);
1436       break;
1437     case ArgFloat:
1438       fprintf(f, OPTCHAR "%s" SEPCHAR "%g\n", ad->argName, *(float *)ad->argLoc);
1439       break;
1440     case ArgBoolean:
1441       fprintf(f, OPTCHAR "%s" SEPCHAR "%s\n", ad->argName,
1442         (*(Boolean *)ad->argLoc) ? "true" : "false");
1443       break;
1444     case ArgTrue:
1445       if (*(Boolean *)ad->argLoc) fprintf(f, OPTCHAR "%s\n", ad->argName);
1446       break;
1447     case ArgFalse:
1448       if (!*(Boolean *)ad->argLoc) fprintf(f, OPTCHAR "%s\n", ad->argName);
1449       break;
1450     case ArgColor:
1451       SaveColor(f, ad);
1452       break;
1453     case ArgAttribs:
1454       SaveAttribsArg(f, ad);
1455       break;
1456     case ArgFilename:
1457       if(*(char**)ad->argLoc == NULL) break; // just in case
1458       if (strchr(*(char **)ad->argLoc, '\"')) {
1459         fprintf(f, OPTCHAR "%s" SEPCHAR "'%s'\n", ad->argName, *(char **)ad->argLoc);
1460       } else {
1461         fprintf(f, OPTCHAR "%s" SEPCHAR "\"%s\"\n", ad->argName, *(char **)ad->argLoc);
1462       }
1463       break;
1464     case ArgBoardSize:
1465       SaveBoardSize(f, ad->argName, ad->argLoc);
1466       break;
1467     case ArgFont:
1468       SaveFontArg(f, ad);
1469       break;
1470     case ArgCommSettings:
1471       PrintCommPortSettings(f, ad->argName);
1472     case ArgTwo:
1473     case ArgNone:
1474     case ArgSettingsFilename: ;
1475     }
1476   }
1477   fclose(f);
1478 }
1479
1480 Boolean
1481 GetArgValue(char *name)
1482 { // retrieve (as text) current value of string or int argument given by name
1483   // (this is used for maing the values available in the adapter command)
1484   ArgDescriptor *ad;
1485   int len;
1486
1487   for (ad = argDescriptors; ad->argName != NULL; ad++)
1488     if (strcmp(ad->argName, name) == 0) break;
1489
1490   if (ad->argName == NULL) return FALSE;
1491
1492   switch(ad->argType) {
1493     case ArgString:
1494     case ArgFilename:
1495       strncpy(name, *(char**) ad->argLoc, MSG_SIZ);
1496
1497       return TRUE;
1498     case ArgInt:
1499       len = snprintf(name, MSG_SIZ, "%d", *(int*) ad->argLoc);
1500       if( (len >= MSG_SIZ) && appData.debugMode )
1501         fprintf(debugFP, "GetArgValue: buffer truncated.\n");
1502
1503       return TRUE;
1504     case ArgBoolean:
1505       len = snprintf(name, MSG_SIZ, "%s", *(Boolean*) ad->argLoc ? "true" : "false");
1506       if( (len >= MSG_SIZ) && appData.debugMode )
1507         fprintf(debugFP, "GetArgValue: buffer truncated.\n");
1508
1509       return TRUE;
1510     default: ;
1511   }
1512
1513   return FALSE;
1514 }