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