Preserve PGN tags when loading engine
[xboard.git] / backend.c
1 /*
2  * backend.c -- Common back end for X and Windows NT versions of
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, 2013 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 /* [AS] Also useful here for debugging */
55 #ifdef WIN32
56 #include <windows.h>
57
58 int flock(int f, int code);
59 #define LOCK_EX 2
60 #define SLASH '\\'
61
62 #else
63
64 #include <sys/file.h>
65 #define SLASH '/'
66
67 #endif
68
69 #include "config.h"
70
71 #include <assert.h>
72 #include <stdio.h>
73 #include <ctype.h>
74 #include <errno.h>
75 #include <sys/types.h>
76 #include <sys/stat.h>
77 #include <math.h>
78 #include <ctype.h>
79
80 #if STDC_HEADERS
81 # include <stdlib.h>
82 # include <string.h>
83 # include <stdarg.h>
84 #else /* not STDC_HEADERS */
85 # if HAVE_STRING_H
86 #  include <string.h>
87 # else /* not HAVE_STRING_H */
88 #  include <strings.h>
89 # endif /* not HAVE_STRING_H */
90 #endif /* not STDC_HEADERS */
91
92 #if HAVE_SYS_FCNTL_H
93 # include <sys/fcntl.h>
94 #else /* not HAVE_SYS_FCNTL_H */
95 # if HAVE_FCNTL_H
96 #  include <fcntl.h>
97 # endif /* HAVE_FCNTL_H */
98 #endif /* not HAVE_SYS_FCNTL_H */
99
100 #if TIME_WITH_SYS_TIME
101 # include <sys/time.h>
102 # include <time.h>
103 #else
104 # if HAVE_SYS_TIME_H
105 #  include <sys/time.h>
106 # else
107 #  include <time.h>
108 # endif
109 #endif
110
111 #if defined(_amigados) && !defined(__GNUC__)
112 struct timezone {
113     int tz_minuteswest;
114     int tz_dsttime;
115 };
116 extern int gettimeofday(struct timeval *, struct timezone *);
117 #endif
118
119 #if HAVE_UNISTD_H
120 # include <unistd.h>
121 #endif
122
123 #include "common.h"
124 #include "frontend.h"
125 #include "backend.h"
126 #include "parser.h"
127 #include "moves.h"
128 #if ZIPPY
129 # include "zippy.h"
130 #endif
131 #include "backendz.h"
132 #include "evalgraph.h"
133 #include "gettext.h"
134
135 #ifdef ENABLE_NLS
136 # define _(s) gettext (s)
137 # define N_(s) gettext_noop (s)
138 # define T_(s) gettext(s)
139 #else
140 # ifdef WIN32
141 #   define _(s) T_(s)
142 #   define N_(s) s
143 # else
144 #   define _(s) (s)
145 #   define N_(s) s
146 #   define T_(s) s
147 # endif
148 #endif
149
150
151 int establish P((void));
152 void read_from_player P((InputSourceRef isr, VOIDSTAR closure,
153                          char *buf, int count, int error));
154 void read_from_ics P((InputSourceRef isr, VOIDSTAR closure,
155                       char *buf, int count, int error));
156 void SendToICS P((char *s));
157 void SendToICSDelayed P((char *s, long msdelay));
158 void SendMoveToICS P((ChessMove moveType, int fromX, int fromY, int toX, int toY, char promoChar));
159 void HandleMachineMove P((char *message, ChessProgramState *cps));
160 int AutoPlayOneMove P((void));
161 int LoadGameOneMove P((ChessMove readAhead));
162 int LoadGameFromFile P((char *filename, int n, char *title, int useList));
163 int LoadPositionFromFile P((char *filename, int n, char *title));
164 int SavePositionToFile P((char *filename));
165 void MakeMove P((int fromX, int fromY, int toX, int toY, int promoChar));
166 void ShowMove P((int fromX, int fromY, int toX, int toY));
167 int FinishMove P((ChessMove moveType, int fromX, int fromY, int toX, int toY,
168                    /*char*/int promoChar));
169 void BackwardInner P((int target));
170 void ForwardInner P((int target));
171 int Adjudicate P((ChessProgramState *cps));
172 void GameEnds P((ChessMove result, char *resultDetails, int whosays));
173 void EditPositionDone P((Boolean fakeRights));
174 void PrintOpponents P((FILE *fp));
175 void PrintPosition P((FILE *fp, int move));
176 void StartChessProgram P((ChessProgramState *cps));
177 void SendToProgram P((char *message, ChessProgramState *cps));
178 void SendMoveToProgram P((int moveNum, ChessProgramState *cps));
179 void ReceiveFromProgram P((InputSourceRef isr, VOIDSTAR closure,
180                            char *buf, int count, int error));
181 void SendTimeControl P((ChessProgramState *cps,
182                         int mps, long tc, int inc, int sd, int st));
183 char *TimeControlTagValue P((void));
184 void Attention P((ChessProgramState *cps));
185 void FeedMovesToProgram P((ChessProgramState *cps, int upto));
186 int ResurrectChessProgram P((void));
187 void DisplayComment P((int moveNumber, char *text));
188 void DisplayMove P((int moveNumber));
189
190 void ParseGameHistory P((char *game));
191 void ParseBoard12 P((char *string));
192 void KeepAlive P((void));
193 void StartClocks P((void));
194 void SwitchClocks P((int nr));
195 void StopClocks P((void));
196 void ResetClocks P((void));
197 char *PGNDate P((void));
198 void SetGameInfo P((void));
199 int RegisterMove P((void));
200 void MakeRegisteredMove P((void));
201 void TruncateGame P((void));
202 int looking_at P((char *, int *, char *));
203 void CopyPlayerNameIntoFileName P((char **, char *));
204 char *SavePart P((char *));
205 int SaveGameOldStyle P((FILE *));
206 int SaveGamePGN P((FILE *));
207 int CheckFlags P((void));
208 long NextTickLength P((long));
209 void CheckTimeControl P((void));
210 void show_bytes P((FILE *, char *, int));
211 int string_to_rating P((char *str));
212 void ParseFeatures P((char* args, ChessProgramState *cps));
213 void InitBackEnd3 P((void));
214 void FeatureDone P((ChessProgramState* cps, int val));
215 void InitChessProgram P((ChessProgramState *cps, int setup));
216 void OutputKibitz(int window, char *text);
217 int PerpetualChase(int first, int last);
218 int EngineOutputIsUp();
219 void InitDrawingSizes(int x, int y);
220 void NextMatchGame P((void));
221 int NextTourneyGame P((int nr, int *swap));
222 int Pairing P((int nr, int nPlayers, int *w, int *b, int *sync));
223 FILE *WriteTourneyFile P((char *results, FILE *f));
224 void DisplayTwoMachinesTitle P(());
225 static void ExcludeClick P((int index));
226 void ToggleSecond P((void));
227 void PauseEngine P((ChessProgramState *cps));
228
229 #ifdef WIN32
230        extern void ConsoleCreate();
231 #endif
232
233 ChessProgramState *WhitePlayer();
234 void InsertIntoMemo P((int which, char *text)); // [HGM] kibitz: in engineo.c
235 int VerifyDisplayMode P(());
236
237 char *GetInfoFromComment( int, char * ); // [HGM] PV time: returns stripped comment
238 void InitEngineUCI( const char * iniDir, ChessProgramState * cps ); // [HGM] moved here from winboard.c
239 char *ProbeBook P((int moveNr, char *book)); // [HGM] book: returns a book move
240 char *SendMoveToBookUser P((int nr, ChessProgramState *cps, int initial)); // [HGM] book
241 void ics_update_width P((int new_width));
242 extern char installDir[MSG_SIZ];
243 VariantClass startVariant; /* [HGM] nicks: initial variant */
244 Boolean abortMatch;
245
246 extern int tinyLayout, smallLayout;
247 ChessProgramStats programStats;
248 char lastPV[2][2*MSG_SIZ]; /* [HGM] pv: last PV in thinking output of each engine */
249 int endPV = -1;
250 static int exiting = 0; /* [HGM] moved to top */
251 static int setboardSpoiledMachineBlack = 0 /*, errorExitFlag = 0*/;
252 int startedFromPositionFile = FALSE; Board filePosition;       /* [HGM] loadPos */
253 Board partnerBoard;     /* [HGM] bughouse: for peeking at partner game          */
254 int partnerHighlight[2];
255 Boolean partnerBoardValid = 0;
256 char partnerStatus[MSG_SIZ];
257 Boolean partnerUp;
258 Boolean originalFlip;
259 Boolean twoBoards = 0;
260 char endingGame = 0;    /* [HGM] crash: flag to prevent recursion of GameEnds() */
261 int whiteNPS, blackNPS; /* [HGM] nps: for easily making clocks aware of NPS     */
262 VariantClass currentlyInitializedVariant; /* [HGM] variantswitch */
263 int lastIndex = 0;      /* [HGM] autoinc: last game/position used in match mode */
264 Boolean connectionAlive;/* [HGM] alive: ICS connection status from probing      */
265 int opponentKibitzes;
266 int lastSavedGame; /* [HGM] save: ID of game */
267 char chatPartner[MAX_CHAT][MSG_SIZ]; /* [HGM] chat: list of chatting partners */
268 extern int chatCount;
269 int chattingPartner;
270 char marker[BOARD_RANKS][BOARD_FILES]; /* [HGM] marks for target squares */
271 char lastMsg[MSG_SIZ];
272 ChessSquare pieceSweep = EmptySquare;
273 ChessSquare promoSweep = EmptySquare, defaultPromoChoice;
274 int promoDefaultAltered;
275 int keepInfo = 0; /* [HGM] to protect PGN tags in auto-step game analysis */
276
277 /* States for ics_getting_history */
278 #define H_FALSE 0
279 #define H_REQUESTED 1
280 #define H_GOT_REQ_HEADER 2
281 #define H_GOT_UNREQ_HEADER 3
282 #define H_GETTING_MOVES 4
283 #define H_GOT_UNWANTED_HEADER 5
284
285 /* whosays values for GameEnds */
286 #define GE_ICS 0
287 #define GE_ENGINE 1
288 #define GE_PLAYER 2
289 #define GE_FILE 3
290 #define GE_XBOARD 4
291 #define GE_ENGINE1 5
292 #define GE_ENGINE2 6
293
294 /* Maximum number of games in a cmail message */
295 #define CMAIL_MAX_GAMES 20
296
297 /* Different types of move when calling RegisterMove */
298 #define CMAIL_MOVE   0
299 #define CMAIL_RESIGN 1
300 #define CMAIL_DRAW   2
301 #define CMAIL_ACCEPT 3
302
303 /* Different types of result to remember for each game */
304 #define CMAIL_NOT_RESULT 0
305 #define CMAIL_OLD_RESULT 1
306 #define CMAIL_NEW_RESULT 2
307
308 /* Telnet protocol constants */
309 #define TN_WILL 0373
310 #define TN_WONT 0374
311 #define TN_DO   0375
312 #define TN_DONT 0376
313 #define TN_IAC  0377
314 #define TN_ECHO 0001
315 #define TN_SGA  0003
316 #define TN_PORT 23
317
318 char*
319 safeStrCpy (char *dst, const char *src, size_t count)
320 { // [HGM] made safe
321   int i;
322   assert( dst != NULL );
323   assert( src != NULL );
324   assert( count > 0 );
325
326   for(i=0; i<count; i++) if((dst[i] = src[i]) == NULLCHAR) break;
327   if(  i == count && dst[count-1] != NULLCHAR)
328     {
329       dst[ count-1 ] = '\0'; // make sure incomplete copy still null-terminated
330       if(appData.debugMode)
331       fprintf(debugFP, "safeStrCpy: copying %s into %s didn't work, not enough space %d\n",src,dst, (int)count);
332     }
333
334   return dst;
335 }
336
337 /* Some compiler can't cast u64 to double
338  * This function do the job for us:
339
340  * We use the highest bit for cast, this only
341  * works if the highest bit is not
342  * in use (This should not happen)
343  *
344  * We used this for all compiler
345  */
346 double
347 u64ToDouble (u64 value)
348 {
349   double r;
350   u64 tmp = value & u64Const(0x7fffffffffffffff);
351   r = (double)(s64)tmp;
352   if (value & u64Const(0x8000000000000000))
353        r +=  9.2233720368547758080e18; /* 2^63 */
354  return r;
355 }
356
357 /* Fake up flags for now, as we aren't keeping track of castling
358    availability yet. [HGM] Change of logic: the flag now only
359    indicates the type of castlings allowed by the rule of the game.
360    The actual rights themselves are maintained in the array
361    castlingRights, as part of the game history, and are not probed
362    by this function.
363  */
364 int
365 PosFlags (index)
366 {
367   int flags = F_ALL_CASTLE_OK;
368   if ((index % 2) == 0) flags |= F_WHITE_ON_MOVE;
369   switch (gameInfo.variant) {
370   case VariantSuicide:
371     flags &= ~F_ALL_CASTLE_OK;
372   case VariantGiveaway:         // [HGM] moved this case label one down: seems Giveaway does have castling on ICC!
373     flags |= F_IGNORE_CHECK;
374   case VariantLosers:
375     flags |= F_MANDATORY_CAPTURE; //[HGM] losers: sets flag so TestLegality rejects non-capts if capts exist
376     break;
377   case VariantAtomic:
378     flags |= F_IGNORE_CHECK | F_ATOMIC_CAPTURE;
379     break;
380   case VariantKriegspiel:
381     flags |= F_KRIEGSPIEL_CAPTURE;
382     break;
383   case VariantCapaRandom:
384   case VariantFischeRandom:
385     flags |= F_FRC_TYPE_CASTLING; /* [HGM] enable this through flag */
386   case VariantNoCastle:
387   case VariantShatranj:
388   case VariantCourier:
389   case VariantMakruk:
390   case VariantGrand:
391     flags &= ~F_ALL_CASTLE_OK;
392     break;
393   default:
394     break;
395   }
396   return flags;
397 }
398
399 FILE *gameFileFP, *debugFP, *serverFP;
400 char *currentDebugFile; // [HGM] debug split: to remember name
401
402 /*
403     [AS] Note: sometimes, the sscanf() function is used to parse the input
404     into a fixed-size buffer. Because of this, we must be prepared to
405     receive strings as long as the size of the input buffer, which is currently
406     set to 4K for Windows and 8K for the rest.
407     So, we must either allocate sufficiently large buffers here, or
408     reduce the size of the input buffer in the input reading part.
409 */
410
411 char cmailMove[CMAIL_MAX_GAMES][MOVE_LEN], cmailMsg[MSG_SIZ];
412 char bookOutput[MSG_SIZ*10], thinkOutput[MSG_SIZ*10], lastHint[MSG_SIZ];
413 char thinkOutput1[MSG_SIZ*10];
414
415 ChessProgramState first, second, pairing;
416
417 /* premove variables */
418 int premoveToX = 0;
419 int premoveToY = 0;
420 int premoveFromX = 0;
421 int premoveFromY = 0;
422 int premovePromoChar = 0;
423 int gotPremove = 0;
424 Boolean alarmSounded;
425 /* end premove variables */
426
427 char *ics_prefix = "$";
428 enum ICS_TYPE ics_type = ICS_GENERIC;
429
430 int currentMove = 0, forwardMostMove = 0, backwardMostMove = 0;
431 int pauseExamForwardMostMove = 0;
432 int nCmailGames = 0, nCmailResults = 0, nCmailMovesRegistered = 0;
433 int cmailMoveRegistered[CMAIL_MAX_GAMES], cmailResult[CMAIL_MAX_GAMES];
434 int cmailMsgLoaded = FALSE, cmailMailedMove = FALSE;
435 int cmailOldMove = -1, firstMove = TRUE, flipView = FALSE;
436 int blackPlaysFirst = FALSE, startedFromSetupPosition = FALSE;
437 int searchTime = 0, pausing = FALSE, pauseExamInvalid = FALSE;
438 int whiteFlag = FALSE, blackFlag = FALSE;
439 int userOfferedDraw = FALSE;
440 int ics_user_moved = 0, ics_gamenum = -1, ics_getting_history = H_FALSE;
441 int matchMode = FALSE, hintRequested = FALSE, bookRequested = FALSE;
442 int cmailMoveType[CMAIL_MAX_GAMES];
443 long ics_clock_paused = 0;
444 ProcRef icsPR = NoProc, cmailPR = NoProc;
445 InputSourceRef telnetISR = NULL, fromUserISR = NULL, cmailISR = NULL;
446 GameMode gameMode = BeginningOfGame;
447 char moveList[MAX_MOVES][MOVE_LEN], parseList[MAX_MOVES][MOVE_LEN * 2];
448 char *commentList[MAX_MOVES], *cmailCommentList[CMAIL_MAX_GAMES];
449 ChessProgramStats_Move pvInfoList[MAX_MOVES]; /* [AS] Info about engine thinking */
450 int hiddenThinkOutputState = 0; /* [AS] */
451 int adjudicateLossThreshold = 0; /* [AS] Automatic adjudication */
452 int adjudicateLossPlies = 6;
453 char white_holding[64], black_holding[64];
454 TimeMark lastNodeCountTime;
455 long lastNodeCount=0;
456 int shiftKey, controlKey; // [HGM] set by mouse handler
457
458 int have_sent_ICS_logon = 0;
459 int movesPerSession;
460 int suddenDeath, whiteStartMove, blackStartMove; /* [HGM] for implementation of 'any per time' sessions, as in first part of byoyomi TC */
461 long whiteTimeRemaining, blackTimeRemaining, timeControl, timeIncrement, lastWhite, lastBlack, activePartnerTime;
462 Boolean adjustedClock;
463 long timeControl_2; /* [AS] Allow separate time controls */
464 char *fullTimeControlString = NULL, *nextSession, *whiteTC, *blackTC, activePartner; /* [HGM] secondary TC: merge of MPS, TC and inc */
465 long timeRemaining[2][MAX_MOVES];
466 int matchGame = 0, nextGame = 0, roundNr = 0;
467 Boolean waitingForGame = FALSE;
468 TimeMark programStartTime, pauseStart;
469 char ics_handle[MSG_SIZ];
470 int have_set_title = 0;
471
472 /* animateTraining preserves the state of appData.animate
473  * when Training mode is activated. This allows the
474  * response to be animated when appData.animate == TRUE and
475  * appData.animateDragging == TRUE.
476  */
477 Boolean animateTraining;
478
479 GameInfo gameInfo;
480
481 AppData appData;
482
483 Board boards[MAX_MOVES];
484 /* [HGM] Following 7 needed for accurate legality tests: */
485 signed char  castlingRank[BOARD_FILES]; // and corresponding ranks
486 signed char  initialRights[BOARD_FILES];
487 int   nrCastlingRights; // For TwoKings, or to implement castling-unknown status
488 int   initialRulePlies, FENrulePlies;
489 FILE  *serverMoves = NULL; // next two for broadcasting (/serverMoves option)
490 int loadFlag = 0;
491 Boolean shuffleOpenings;
492 int mute; // mute all sounds
493
494 // [HGM] vari: next 12 to save and restore variations
495 #define MAX_VARIATIONS 10
496 int framePtr = MAX_MOVES-1; // points to free stack entry
497 int storedGames = 0;
498 int savedFirst[MAX_VARIATIONS];
499 int savedLast[MAX_VARIATIONS];
500 int savedFramePtr[MAX_VARIATIONS];
501 char *savedDetails[MAX_VARIATIONS];
502 ChessMove savedResult[MAX_VARIATIONS];
503
504 void PushTail P((int firstMove, int lastMove));
505 Boolean PopTail P((Boolean annotate));
506 void PushInner P((int firstMove, int lastMove));
507 void PopInner P((Boolean annotate));
508 void CleanupTail P((void));
509
510 ChessSquare  FIDEArray[2][BOARD_FILES] = {
511     { WhiteRook, WhiteKnight, WhiteBishop, WhiteQueen,
512         WhiteKing, WhiteBishop, WhiteKnight, WhiteRook },
513     { BlackRook, BlackKnight, BlackBishop, BlackQueen,
514         BlackKing, BlackBishop, BlackKnight, BlackRook }
515 };
516
517 ChessSquare twoKingsArray[2][BOARD_FILES] = {
518     { WhiteRook, WhiteKnight, WhiteBishop, WhiteQueen,
519         WhiteKing, WhiteKing, WhiteKnight, WhiteRook },
520     { BlackRook, BlackKnight, BlackBishop, BlackQueen,
521         BlackKing, BlackKing, BlackKnight, BlackRook }
522 };
523
524 ChessSquare  KnightmateArray[2][BOARD_FILES] = {
525     { WhiteRook, WhiteMan, WhiteBishop, WhiteQueen,
526         WhiteUnicorn, WhiteBishop, WhiteMan, WhiteRook },
527     { BlackRook, BlackMan, BlackBishop, BlackQueen,
528         BlackUnicorn, BlackBishop, BlackMan, BlackRook }
529 };
530
531 ChessSquare SpartanArray[2][BOARD_FILES] = {
532     { WhiteRook, WhiteKnight, WhiteBishop, WhiteQueen,
533         WhiteKing, WhiteBishop, WhiteKnight, WhiteRook },
534     { BlackAlfil, BlackMarshall, BlackKing, BlackDragon,
535         BlackDragon, BlackKing, BlackAngel, BlackAlfil }
536 };
537
538 ChessSquare fairyArray[2][BOARD_FILES] = { /* [HGM] Queen side differs from King side */
539     { WhiteRook, WhiteKnight, WhiteBishop, WhiteQueen,
540         WhiteKing, WhiteBishop, WhiteKnight, WhiteRook },
541     { BlackCardinal, BlackAlfil, BlackMarshall, BlackAngel,
542         BlackKing, BlackMarshall, BlackAlfil, BlackCardinal }
543 };
544
545 ChessSquare ShatranjArray[2][BOARD_FILES] = { /* [HGM] (movGen knows about Shatranj Q and P) */
546     { WhiteRook, WhiteKnight, WhiteAlfil, WhiteKing,
547         WhiteFerz, WhiteAlfil, WhiteKnight, WhiteRook },
548     { BlackRook, BlackKnight, BlackAlfil, BlackKing,
549         BlackFerz, BlackAlfil, BlackKnight, BlackRook }
550 };
551
552 ChessSquare makrukArray[2][BOARD_FILES] = { /* [HGM] (movGen knows about Shatranj Q and P) */
553     { WhiteRook, WhiteKnight, WhiteMan, WhiteKing,
554         WhiteFerz, WhiteMan, WhiteKnight, WhiteRook },
555     { BlackRook, BlackKnight, BlackMan, BlackFerz,
556         BlackKing, BlackMan, BlackKnight, BlackRook }
557 };
558
559
560 #if (BOARD_FILES>=10)
561 ChessSquare ShogiArray[2][BOARD_FILES] = {
562     { WhiteQueen, WhiteKnight, WhiteFerz, WhiteWazir,
563         WhiteKing, WhiteWazir, WhiteFerz, WhiteKnight, WhiteQueen },
564     { BlackQueen, BlackKnight, BlackFerz, BlackWazir,
565         BlackKing, BlackWazir, BlackFerz, BlackKnight, BlackQueen }
566 };
567
568 ChessSquare XiangqiArray[2][BOARD_FILES] = {
569     { WhiteRook, WhiteKnight, WhiteAlfil, WhiteFerz,
570         WhiteWazir, WhiteFerz, WhiteAlfil, WhiteKnight, WhiteRook },
571     { BlackRook, BlackKnight, BlackAlfil, BlackFerz,
572         BlackWazir, BlackFerz, BlackAlfil, BlackKnight, BlackRook }
573 };
574
575 ChessSquare CapablancaArray[2][BOARD_FILES] = {
576     { WhiteRook, WhiteKnight, WhiteAngel, WhiteBishop, WhiteQueen,
577         WhiteKing, WhiteBishop, WhiteMarshall, WhiteKnight, WhiteRook },
578     { BlackRook, BlackKnight, BlackAngel, BlackBishop, BlackQueen,
579         BlackKing, BlackBishop, BlackMarshall, BlackKnight, BlackRook }
580 };
581
582 ChessSquare GreatArray[2][BOARD_FILES] = {
583     { WhiteDragon, WhiteKnight, WhiteAlfil, WhiteGrasshopper, WhiteKing,
584         WhiteSilver, WhiteCardinal, WhiteAlfil, WhiteKnight, WhiteDragon },
585     { BlackDragon, BlackKnight, BlackAlfil, BlackGrasshopper, BlackKing,
586         BlackSilver, BlackCardinal, BlackAlfil, BlackKnight, BlackDragon },
587 };
588
589 ChessSquare JanusArray[2][BOARD_FILES] = {
590     { WhiteRook, WhiteAngel, WhiteKnight, WhiteBishop, WhiteKing,
591         WhiteQueen, WhiteBishop, WhiteKnight, WhiteAngel, WhiteRook },
592     { BlackRook, BlackAngel, BlackKnight, BlackBishop, BlackKing,
593         BlackQueen, BlackBishop, BlackKnight, BlackAngel, BlackRook }
594 };
595
596 ChessSquare GrandArray[2][BOARD_FILES] = {
597     { EmptySquare, WhiteKnight, WhiteBishop, WhiteQueen, WhiteKing,
598         WhiteMarshall, WhiteAngel, WhiteBishop, WhiteKnight, EmptySquare },
599     { EmptySquare, BlackKnight, BlackBishop, BlackQueen, BlackKing,
600         BlackMarshall, BlackAngel, BlackBishop, BlackKnight, EmptySquare }
601 };
602
603 #ifdef GOTHIC
604 ChessSquare GothicArray[2][BOARD_FILES] = {
605     { WhiteRook, WhiteKnight, WhiteBishop, WhiteQueen, WhiteMarshall,
606         WhiteKing, WhiteAngel, WhiteBishop, WhiteKnight, WhiteRook },
607     { BlackRook, BlackKnight, BlackBishop, BlackQueen, BlackMarshall,
608         BlackKing, BlackAngel, BlackBishop, BlackKnight, BlackRook }
609 };
610 #else // !GOTHIC
611 #define GothicArray CapablancaArray
612 #endif // !GOTHIC
613
614 #ifdef FALCON
615 ChessSquare FalconArray[2][BOARD_FILES] = {
616     { WhiteRook, WhiteKnight, WhiteBishop, WhiteFalcon, WhiteQueen,
617         WhiteKing, WhiteFalcon, WhiteBishop, WhiteKnight, WhiteRook },
618     { BlackRook, BlackKnight, BlackBishop, BlackFalcon, BlackQueen,
619         BlackKing, BlackFalcon, BlackBishop, BlackKnight, BlackRook }
620 };
621 #else // !FALCON
622 #define FalconArray CapablancaArray
623 #endif // !FALCON
624
625 #else // !(BOARD_FILES>=10)
626 #define XiangqiPosition FIDEArray
627 #define CapablancaArray FIDEArray
628 #define GothicArray FIDEArray
629 #define GreatArray FIDEArray
630 #endif // !(BOARD_FILES>=10)
631
632 #if (BOARD_FILES>=12)
633 ChessSquare CourierArray[2][BOARD_FILES] = {
634     { WhiteRook, WhiteKnight, WhiteAlfil, WhiteBishop, WhiteMan, WhiteKing,
635         WhiteFerz, WhiteWazir, WhiteBishop, WhiteAlfil, WhiteKnight, WhiteRook },
636     { BlackRook, BlackKnight, BlackAlfil, BlackBishop, BlackMan, BlackKing,
637         BlackFerz, BlackWazir, BlackBishop, BlackAlfil, BlackKnight, BlackRook }
638 };
639 #else // !(BOARD_FILES>=12)
640 #define CourierArray CapablancaArray
641 #endif // !(BOARD_FILES>=12)
642
643
644 Board initialPosition;
645
646
647 /* Convert str to a rating. Checks for special cases of "----",
648
649    "++++", etc. Also strips ()'s */
650 int
651 string_to_rating (char *str)
652 {
653   while(*str && !isdigit(*str)) ++str;
654   if (!*str)
655     return 0;   /* One of the special "no rating" cases */
656   else
657     return atoi(str);
658 }
659
660 void
661 ClearProgramStats ()
662 {
663     /* Init programStats */
664     programStats.movelist[0] = 0;
665     programStats.depth = 0;
666     programStats.nr_moves = 0;
667     programStats.moves_left = 0;
668     programStats.nodes = 0;
669     programStats.time = -1;        // [HGM] PGNtime: make invalid to recognize engine output
670     programStats.score = 0;
671     programStats.got_only_move = 0;
672     programStats.got_fail = 0;
673     programStats.line_is_book = 0;
674 }
675
676 void
677 CommonEngineInit ()
678 {   // [HGM] moved some code here from InitBackend1 that has to be done after both engines have contributed their settings
679     if (appData.firstPlaysBlack) {
680         first.twoMachinesColor = "black\n";
681         second.twoMachinesColor = "white\n";
682     } else {
683         first.twoMachinesColor = "white\n";
684         second.twoMachinesColor = "black\n";
685     }
686
687     first.other = &second;
688     second.other = &first;
689
690     { float norm = 1;
691         if(appData.timeOddsMode) {
692             norm = appData.timeOdds[0];
693             if(norm > appData.timeOdds[1]) norm = appData.timeOdds[1];
694         }
695         first.timeOdds  = appData.timeOdds[0]/norm;
696         second.timeOdds = appData.timeOdds[1]/norm;
697     }
698
699     if(programVersion) free(programVersion);
700     if (appData.noChessProgram) {
701         programVersion = (char*) malloc(5 + strlen(PACKAGE_STRING));
702         sprintf(programVersion, "%s", PACKAGE_STRING);
703     } else {
704       /* [HGM] tidy: use tidy name, in stead of full pathname (which was probably a bug due to / vs \ ) */
705       programVersion = (char*) malloc(8 + strlen(PACKAGE_STRING) + strlen(first.tidy));
706       sprintf(programVersion, "%s + %s", PACKAGE_STRING, first.tidy);
707     }
708 }
709
710 void
711 UnloadEngine (ChessProgramState *cps)
712 {
713         /* Kill off first chess program */
714         if (cps->isr != NULL)
715           RemoveInputSource(cps->isr);
716         cps->isr = NULL;
717
718         if (cps->pr != NoProc) {
719             ExitAnalyzeMode();
720             DoSleep( appData.delayBeforeQuit );
721             SendToProgram("quit\n", cps);
722             DoSleep( appData.delayAfterQuit );
723             DestroyChildProcess(cps->pr, cps->useSigterm);
724         }
725         cps->pr = NoProc;
726         if(appData.debugMode) fprintf(debugFP, "Unload %s\n", cps->which);
727 }
728
729 void
730 ClearOptions (ChessProgramState *cps)
731 {
732     int i;
733     cps->nrOptions = cps->comboCnt = 0;
734     for(i=0; i<MAX_OPTIONS; i++) {
735         cps->option[i].min = cps->option[i].max = cps->option[i].value = 0;
736         cps->option[i].textValue = 0;
737     }
738 }
739
740 char *engineNames[] = {
741   /* TRANSLATORS: "first" is the first of possible two chess engines. It is inserted into strings
742      such as "%s engine" / "%s chess program" / "%s machine" - all meaning the same thing */
743 N_("first"),
744   /* TRANSLATORS: "second" is the second of possible two chess engines. It is inserted into strings
745      such as "%s engine" / "%s chess program" / "%s machine" - all meaning the same thing */
746 N_("second")
747 };
748
749 void
750 InitEngine (ChessProgramState *cps, int n)
751 {   // [HGM] all engine initialiation put in a function that does one engine
752
753     ClearOptions(cps);
754
755     cps->which = engineNames[n];
756     cps->maybeThinking = FALSE;
757     cps->pr = NoProc;
758     cps->isr = NULL;
759     cps->sendTime = 2;
760     cps->sendDrawOffers = 1;
761
762     cps->program = appData.chessProgram[n];
763     cps->host = appData.host[n];
764     cps->dir = appData.directory[n];
765     cps->initString = appData.engInitString[n];
766     cps->computerString = appData.computerString[n];
767     cps->useSigint  = TRUE;
768     cps->useSigterm = TRUE;
769     cps->reuse = appData.reuse[n];
770     cps->nps = appData.NPS[n];   // [HGM] nps: copy nodes per second
771     cps->useSetboard = FALSE;
772     cps->useSAN = FALSE;
773     cps->usePing = FALSE;
774     cps->lastPing = 0;
775     cps->lastPong = 0;
776     cps->usePlayother = FALSE;
777     cps->useColors = TRUE;
778     cps->useUsermove = FALSE;
779     cps->sendICS = FALSE;
780     cps->sendName = appData.icsActive;
781     cps->sdKludge = FALSE;
782     cps->stKludge = FALSE;
783     TidyProgramName(cps->program, cps->host, cps->tidy);
784     cps->matchWins = 0;
785     safeStrCpy(cps->variants, appData.variant, MSG_SIZ);
786     cps->analysisSupport = 2; /* detect */
787     cps->analyzing = FALSE;
788     cps->initDone = FALSE;
789     cps->reload = FALSE;
790
791     /* New features added by Tord: */
792     cps->useFEN960 = FALSE;
793     cps->useOOCastle = TRUE;
794     /* End of new features added by Tord. */
795     cps->fenOverride  = appData.fenOverride[n];
796
797     /* [HGM] time odds: set factor for each machine */
798     cps->timeOdds  = appData.timeOdds[n];
799
800     /* [HGM] secondary TC: how to handle sessions that do not fit in 'level'*/
801     cps->accumulateTC = appData.accumulateTC[n];
802     cps->maxNrOfSessions = 1;
803
804     /* [HGM] debug */
805     cps->debug = FALSE;
806
807     cps->supportsNPS = UNKNOWN;
808     cps->memSize = FALSE;
809     cps->maxCores = FALSE;
810     cps->egtFormats[0] = NULLCHAR;
811
812     /* [HGM] options */
813     cps->optionSettings  = appData.engOptions[n];
814
815     cps->scoreIsAbsolute = appData.scoreIsAbsolute[n]; /* [AS] */
816     cps->isUCI = appData.isUCI[n]; /* [AS] */
817     cps->hasOwnBookUCI = appData.hasOwnBookUCI[n]; /* [AS] */
818
819     if (appData.protocolVersion[n] > PROTOVER
820         || appData.protocolVersion[n] < 1)
821       {
822         char buf[MSG_SIZ];
823         int len;
824
825         len = snprintf(buf, MSG_SIZ, _("protocol version %d not supported"),
826                        appData.protocolVersion[n]);
827         if( (len >= MSG_SIZ) && appData.debugMode )
828           fprintf(debugFP, "InitBackEnd1: buffer truncated.\n");
829
830         DisplayFatalError(buf, 0, 2);
831       }
832     else
833       {
834         cps->protocolVersion = appData.protocolVersion[n];
835       }
836
837     InitEngineUCI( installDir, cps );  // [HGM] moved here from winboard.c, to make available in xboard
838     ParseFeatures(appData.featureDefaults, cps);
839 }
840
841 ChessProgramState *savCps;
842
843 GameMode oldMode;
844
845 void
846 LoadEngine ()
847 {
848     int i;
849     if(WaitForEngine(savCps, LoadEngine)) return;
850     CommonEngineInit(); // recalculate time odds
851     if(gameInfo.variant != StringToVariant(appData.variant)) {
852         // we changed variant when loading the engine; this forces us to reset
853         Reset(TRUE, savCps != &first);
854         oldMode = BeginningOfGame; // to prevent restoring old mode
855     }
856     InitChessProgram(savCps, FALSE);
857     if(gameMode == EditGame) SendToProgram("force\n", savCps); // in EditGame mode engine must be in force mode
858     DisplayMessage("", "");
859     if (startedFromSetupPosition) SendBoard(savCps, backwardMostMove);
860     for (i = backwardMostMove; i < currentMove; i++) SendMoveToProgram(i, savCps);
861     ThawUI();
862     SetGNUMode();
863     if(oldMode == AnalyzeMode) AnalyzeModeEvent();
864 }
865
866 void
867 ReplaceEngine (ChessProgramState *cps, int n)
868 {
869     oldMode = gameMode; // remember mode, so it can be restored after loading sequence is complete
870     keepInfo = 1;
871     if(oldMode != BeginningOfGame) EditGameEvent();
872     keepInfo = 0;
873     UnloadEngine(cps);
874     appData.noChessProgram = FALSE;
875     appData.clockMode = TRUE;
876     InitEngine(cps, n);
877     UpdateLogos(TRUE);
878     if(n) return; // only startup first engine immediately; second can wait
879     savCps = cps; // parameter to LoadEngine passed as globals, to allow scheduled calling :-(
880     LoadEngine();
881 }
882
883 extern char *engineName, *engineDir, *engineChoice, *engineLine, *nickName, *params;
884 extern Boolean isUCI, hasBook, storeVariant, v1, addToList, useNick;
885
886 static char resetOptions[] =
887         "-reuse -firstIsUCI false -firstHasOwnBookUCI true -firstTimeOdds 1 "
888         "-firstInitString \"" INIT_STRING "\" -firstComputerString \"" COMPUTER_STRING "\" "
889         "-firstFeatures \"\" -firstLogo \"\" -firstAccumulateTC 1 "
890         "-firstOptions \"\" -firstNPS -1 -fn \"\" -firstScoreAbs false";
891
892 void
893 FloatToFront(char **list, char *engineLine)
894 {
895     char buf[MSG_SIZ], tidy[MSG_SIZ], *p = buf, *q, *r = buf;
896     int i=0;
897     if(appData.recentEngines <= 0) return;
898     TidyProgramName(engineLine, "localhost", tidy+1);
899     tidy[0] = buf[0] = '\n'; strcat(tidy, "\n");
900     strncpy(buf+1, *list, MSG_SIZ-50);
901     if(p = strstr(buf, tidy)) { // tidy name appears in list
902         q = strchr(++p, '\n'); if(q == NULL) return; // malformed, don't touch
903         while(*p++ = *++q); // squeeze out
904     }
905     strcat(tidy, buf+1); // put list behind tidy name
906     p = tidy + 1; while(q = strchr(p, '\n')) i++, r = p, p = q + 1; // count entries in new list
907     if(i > appData.recentEngines) *r = NULLCHAR; // if maximum rached, strip off last
908     ASSIGN(*list, tidy+1);
909 }
910
911 char *insert, *wbOptions; // point in ChessProgramNames were we should insert new engine
912
913 void
914 Load (ChessProgramState *cps, int i)
915 {
916     char *p, *q, buf[MSG_SIZ], command[MSG_SIZ], buf2[MSG_SIZ];
917     if(engineLine && engineLine[0]) { // an engine was selected from the combo box
918         snprintf(buf, MSG_SIZ, "-fcp %s", engineLine);
919         SwapEngines(i); // kludge to parse -f* / -first* like it is -s* / -second*
920         ParseArgsFromString(resetOptions); appData.pvSAN[0] = FALSE;
921         FREE(appData.fenOverride[0]); appData.fenOverride[0] = NULL;
922         appData.firstProtocolVersion = PROTOVER;
923         ParseArgsFromString(buf);
924         SwapEngines(i);
925         ReplaceEngine(cps, i);
926         FloatToFront(&appData.recentEngineList, engineLine);
927         return;
928     }
929     p = engineName;
930     while(q = strchr(p, SLASH)) p = q+1;
931     if(*p== NULLCHAR) { DisplayError(_("You did not specify the engine executable"), 0); return; }
932     if(engineDir[0] != NULLCHAR) {
933         ASSIGN(appData.directory[i], engineDir); p = engineName;
934     } else if(p != engineName) { // derive directory from engine path, when not given
935         p[-1] = 0;
936         ASSIGN(appData.directory[i], engineName);
937         p[-1] = SLASH;
938         if(SLASH == '/' && p - engineName > 1) *(p -= 2) = '.'; // for XBoard use ./exeName as command after split!
939     } else { ASSIGN(appData.directory[i], "."); }
940     if(params[0]) {
941         if(strchr(p, ' ') && !strchr(p, '"')) snprintf(buf2, MSG_SIZ, "\"%s\"", p), p = buf2; // quote if it contains spaces
942         snprintf(command, MSG_SIZ, "%s %s", p, params);
943         p = command;
944     }
945     ASSIGN(appData.chessProgram[i], p);
946     appData.isUCI[i] = isUCI;
947     appData.protocolVersion[i] = v1 ? 1 : PROTOVER;
948     appData.hasOwnBookUCI[i] = hasBook;
949     if(!nickName[0]) useNick = FALSE;
950     if(useNick) ASSIGN(appData.pgnName[i], nickName);
951     if(addToList) {
952         int len;
953         char quote;
954         q = firstChessProgramNames;
955         if(nickName[0]) snprintf(buf, MSG_SIZ, "\"%s\" -fcp ", nickName); else buf[0] = NULLCHAR;
956         quote = strchr(p, '"') ? '\'' : '"'; // use single quotes around engine command if it contains double quotes
957         snprintf(buf+strlen(buf), MSG_SIZ-strlen(buf), "%c%s%c -fd \"%s\"%s%s%s%s%s%s%s%s\n",
958                         quote, p, quote, appData.directory[i],
959                         useNick ? " -fn \"" : "",
960                         useNick ? nickName : "",
961                         useNick ? "\"" : "",
962                         v1 ? " -firstProtocolVersion 1" : "",
963                         hasBook ? "" : " -fNoOwnBookUCI",
964                         isUCI ? (isUCI == TRUE ? " -fUCI" : gameInfo.variant == VariantShogi ? " -fUSI" : " -fUCCI") : "",
965                         storeVariant ? " -variant " : "",
966                         storeVariant ? VariantName(gameInfo.variant) : "");
967         if(wbOptions && wbOptions[0]) snprintf(buf+strlen(buf)-1, MSG_SIZ-strlen(buf), " %s\n", wbOptions);
968         firstChessProgramNames = malloc(len = strlen(q) + strlen(buf) + 1);
969         if(insert != q) insert[-1] = NULLCHAR;
970         snprintf(firstChessProgramNames, len, "%s\n%s%s", q, buf, insert);
971         if(q)   free(q);
972         FloatToFront(&appData.recentEngineList, buf);
973     }
974     ReplaceEngine(cps, i);
975 }
976
977 void
978 InitTimeControls ()
979 {
980     int matched, min, sec;
981     /*
982      * Parse timeControl resource
983      */
984     if (!ParseTimeControl(appData.timeControl, appData.timeIncrement,
985                           appData.movesPerSession)) {
986         char buf[MSG_SIZ];
987         snprintf(buf, sizeof(buf), _("bad timeControl option %s"), appData.timeControl);
988         DisplayFatalError(buf, 0, 2);
989     }
990
991     /*
992      * Parse searchTime resource
993      */
994     if (*appData.searchTime != NULLCHAR) {
995         matched = sscanf(appData.searchTime, "%d:%d", &min, &sec);
996         if (matched == 1) {
997             searchTime = min * 60;
998         } else if (matched == 2) {
999             searchTime = min * 60 + sec;
1000         } else {
1001             char buf[MSG_SIZ];
1002             snprintf(buf, sizeof(buf), _("bad searchTime option %s"), appData.searchTime);
1003             DisplayFatalError(buf, 0, 2);
1004         }
1005     }
1006 }
1007
1008 void
1009 InitBackEnd1 ()
1010 {
1011
1012     ShowThinkingEvent(); // [HGM] thinking: make sure post/nopost state is set according to options
1013     startVariant = StringToVariant(appData.variant); // [HGM] nicks: remember original variant
1014
1015     GetTimeMark(&programStartTime);
1016     srandom((programStartTime.ms + 1000*programStartTime.sec)*0x1001001); // [HGM] book: makes sure random is unpredictabe to msec level
1017     appData.seedBase = random() + (random()<<15);
1018     pauseStart = programStartTime; pauseStart.sec -= 100; // [HGM] matchpause: fake a pause that has long since ended
1019
1020     ClearProgramStats();
1021     programStats.ok_to_send = 1;
1022     programStats.seen_stat = 0;
1023
1024     /*
1025      * Initialize game list
1026      */
1027     ListNew(&gameList);
1028
1029
1030     /*
1031      * Internet chess server status
1032      */
1033     if (appData.icsActive) {
1034         appData.matchMode = FALSE;
1035         appData.matchGames = 0;
1036 #if ZIPPY
1037         appData.noChessProgram = !appData.zippyPlay;
1038 #else
1039         appData.zippyPlay = FALSE;
1040         appData.zippyTalk = FALSE;
1041         appData.noChessProgram = TRUE;
1042 #endif
1043         if (*appData.icsHelper != NULLCHAR) {
1044             appData.useTelnet = TRUE;
1045             appData.telnetProgram = appData.icsHelper;
1046         }
1047     } else {
1048         appData.zippyTalk = appData.zippyPlay = FALSE;
1049     }
1050
1051     /* [AS] Initialize pv info list [HGM] and game state */
1052     {
1053         int i, j;
1054
1055         for( i=0; i<=framePtr; i++ ) {
1056             pvInfoList[i].depth = -1;
1057             boards[i][EP_STATUS] = EP_NONE;
1058             for( j=0; j<BOARD_FILES-2; j++ ) boards[i][CASTLING][j] = NoRights;
1059         }
1060     }
1061
1062     InitTimeControls();
1063
1064     /* [AS] Adjudication threshold */
1065     adjudicateLossThreshold = appData.adjudicateLossThreshold;
1066
1067     InitEngine(&first, 0);
1068     InitEngine(&second, 1);
1069     CommonEngineInit();
1070
1071     pairing.which = "pairing"; // pairing engine
1072     pairing.pr = NoProc;
1073     pairing.isr = NULL;
1074     pairing.program = appData.pairingEngine;
1075     pairing.host = "localhost";
1076     pairing.dir = ".";
1077
1078     if (appData.icsActive) {
1079         appData.clockMode = TRUE;  /* changes dynamically in ICS mode */
1080     } else if (appData.noChessProgram) { // [HGM] st: searchTime mode now also is clockMode
1081         appData.clockMode = FALSE;
1082         first.sendTime = second.sendTime = 0;
1083     }
1084
1085 #if ZIPPY
1086     /* Override some settings from environment variables, for backward
1087        compatibility.  Unfortunately it's not feasible to have the env
1088        vars just set defaults, at least in xboard.  Ugh.
1089     */
1090     if (appData.icsActive && (appData.zippyPlay || appData.zippyTalk)) {
1091       ZippyInit();
1092     }
1093 #endif
1094
1095     if (!appData.icsActive) {
1096       char buf[MSG_SIZ];
1097       int len;
1098
1099       /* Check for variants that are supported only in ICS mode,
1100          or not at all.  Some that are accepted here nevertheless
1101          have bugs; see comments below.
1102       */
1103       VariantClass variant = StringToVariant(appData.variant);
1104       switch (variant) {
1105       case VariantBughouse:     /* need four players and two boards */
1106       case VariantKriegspiel:   /* need to hide pieces and move details */
1107         /* case VariantFischeRandom: (Fabien: moved below) */
1108         len = snprintf(buf,MSG_SIZ, _("Variant %s supported only in ICS mode"), appData.variant);
1109         if( (len >= MSG_SIZ) && appData.debugMode )
1110           fprintf(debugFP, "InitBackEnd1: buffer truncated.\n");
1111
1112         DisplayFatalError(buf, 0, 2);
1113         return;
1114
1115       case VariantUnknown:
1116       case VariantLoadable:
1117       case Variant29:
1118       case Variant30:
1119       case Variant31:
1120       case Variant32:
1121       case Variant33:
1122       case Variant34:
1123       case Variant35:
1124       case Variant36:
1125       default:
1126         len = snprintf(buf, MSG_SIZ, _("Unknown variant name %s"), appData.variant);
1127         if( (len >= MSG_SIZ) && appData.debugMode )
1128           fprintf(debugFP, "InitBackEnd1: buffer truncated.\n");
1129
1130         DisplayFatalError(buf, 0, 2);
1131         return;
1132
1133       case VariantXiangqi:    /* [HGM] repetition rules not implemented */
1134       case VariantFairy:      /* [HGM] TestLegality definitely off! */
1135       case VariantGothic:     /* [HGM] should work */
1136       case VariantCapablanca: /* [HGM] should work */
1137       case VariantCourier:    /* [HGM] initial forced moves not implemented */
1138       case VariantShogi:      /* [HGM] could still mate with pawn drop */
1139       case VariantKnightmate: /* [HGM] should work */
1140       case VariantCylinder:   /* [HGM] untested */
1141       case VariantFalcon:     /* [HGM] untested */
1142       case VariantCrazyhouse: /* holdings not shown, ([HGM] fixed that!)
1143                                  offboard interposition not understood */
1144       case VariantNormal:     /* definitely works! */
1145       case VariantWildCastle: /* pieces not automatically shuffled */
1146       case VariantNoCastle:   /* pieces not automatically shuffled */
1147       case VariantFischeRandom: /* [HGM] works and shuffles pieces */
1148       case VariantLosers:     /* should work except for win condition,
1149                                  and doesn't know captures are mandatory */
1150       case VariantSuicide:    /* should work except for win condition,
1151                                  and doesn't know captures are mandatory */
1152       case VariantGiveaway:   /* should work except for win condition,
1153                                  and doesn't know captures are mandatory */
1154       case VariantTwoKings:   /* should work */
1155       case VariantAtomic:     /* should work except for win condition */
1156       case Variant3Check:     /* should work except for win condition */
1157       case VariantShatranj:   /* should work except for all win conditions */
1158       case VariantMakruk:     /* should work except for draw countdown */
1159       case VariantBerolina:   /* might work if TestLegality is off */
1160       case VariantCapaRandom: /* should work */
1161       case VariantJanus:      /* should work */
1162       case VariantSuper:      /* experimental */
1163       case VariantGreat:      /* experimental, requires legality testing to be off */
1164       case VariantSChess:     /* S-Chess, should work */
1165       case VariantGrand:      /* should work */
1166       case VariantSpartan:    /* should work */
1167         break;
1168       }
1169     }
1170
1171 }
1172
1173 int
1174 NextIntegerFromString (char ** str, long * value)
1175 {
1176     int result = -1;
1177     char * s = *str;
1178
1179     while( *s == ' ' || *s == '\t' ) {
1180         s++;
1181     }
1182
1183     *value = 0;
1184
1185     if( *s >= '0' && *s <= '9' ) {
1186         while( *s >= '0' && *s <= '9' ) {
1187             *value = *value * 10 + (*s - '0');
1188             s++;
1189         }
1190
1191         result = 0;
1192     }
1193
1194     *str = s;
1195
1196     return result;
1197 }
1198
1199 int
1200 NextTimeControlFromString (char ** str, long * value)
1201 {
1202     long temp;
1203     int result = NextIntegerFromString( str, &temp );
1204
1205     if( result == 0 ) {
1206         *value = temp * 60; /* Minutes */
1207         if( **str == ':' ) {
1208             (*str)++;
1209             result = NextIntegerFromString( str, &temp );
1210             *value += temp; /* Seconds */
1211         }
1212     }
1213
1214     return result;
1215 }
1216
1217 int
1218 NextSessionFromString (char ** str, int *moves, long * tc, long *inc, int *incType)
1219 {   /* [HGM] routine added to read '+moves/time' for secondary time control. */
1220     int result = -1, type = 0; long temp, temp2;
1221
1222     if(**str != ':') return -1; // old params remain in force!
1223     (*str)++;
1224     if(**str == '*') type = *(*str)++, temp = 0; // sandclock TC
1225     if( NextIntegerFromString( str, &temp ) ) return -1;
1226     if(type) { *moves = 0; *tc = temp * 500; *inc = temp * 1000; *incType = '*'; return 0; }
1227
1228     if(**str != '/') {
1229         /* time only: incremental or sudden-death time control */
1230         if(**str == '+') { /* increment follows; read it */
1231             (*str)++;
1232             if(**str == '!') type = *(*str)++; // Bronstein TC
1233             if(result = NextIntegerFromString( str, &temp2)) return -1;
1234             *inc = temp2 * 1000;
1235             if(**str == '.') { // read fraction of increment
1236                 char *start = ++(*str);
1237                 if(result = NextIntegerFromString( str, &temp2)) return -1;
1238                 temp2 *= 1000;
1239                 while(start++ < *str) temp2 /= 10;
1240                 *inc += temp2;
1241             }
1242         } else *inc = 0;
1243         *moves = 0; *tc = temp * 1000; *incType = type;
1244         return 0;
1245     }
1246
1247     (*str)++; /* classical time control */
1248     result = NextIntegerFromString( str, &temp2); // NOTE: already converted to seconds by ParseTimeControl()
1249
1250     if(result == 0) {
1251         *moves = temp;
1252         *tc    = temp2 * 1000;
1253         *inc   = 0;
1254         *incType = type;
1255     }
1256     return result;
1257 }
1258
1259 int
1260 GetTimeQuota (int movenr, int lastUsed, char *tcString)
1261 {   /* [HGM] get time to add from the multi-session time-control string */
1262     int incType, moves=1; /* kludge to force reading of first session */
1263     long time, increment;
1264     char *s = tcString;
1265
1266     if(!s || !*s) return 0; // empty TC string means we ran out of the last sudden-death version
1267     do {
1268         if(moves) NextSessionFromString(&s, &moves, &time, &increment, &incType);
1269         nextSession = s; suddenDeath = moves == 0 && increment == 0;
1270         if(movenr == -1) return time;    /* last move before new session     */
1271         if(incType == '*') increment = 0; else // for sandclock, time is added while not thinking
1272         if(incType == '!' && lastUsed < increment) increment = lastUsed;
1273         if(!moves) return increment;     /* current session is incremental   */
1274         if(movenr >= 0) movenr -= moves; /* we already finished this session */
1275     } while(movenr >= -1);               /* try again for next session       */
1276
1277     return 0; // no new time quota on this move
1278 }
1279
1280 int
1281 ParseTimeControl (char *tc, float ti, int mps)
1282 {
1283   long tc1;
1284   long tc2;
1285   char buf[MSG_SIZ], buf2[MSG_SIZ], *mytc = tc;
1286   int min, sec=0;
1287
1288   if(ti >= 0 && !strchr(tc, '+') && !strchr(tc, '/') ) mps = 0;
1289   if(!strchr(tc, '+') && !strchr(tc, '/') && sscanf(tc, "%d:%d", &min, &sec) >= 1)
1290       sprintf(mytc=buf2, "%d", 60*min+sec); // convert 'classical' min:sec tc string to seconds
1291   if(ti > 0) {
1292
1293     if(mps)
1294       snprintf(buf, MSG_SIZ, ":%d/%s+%g", mps, mytc, ti);
1295     else
1296       snprintf(buf, MSG_SIZ, ":%s+%g", mytc, ti);
1297   } else {
1298     if(mps)
1299       snprintf(buf, MSG_SIZ, ":%d/%s", mps, mytc);
1300     else
1301       snprintf(buf, MSG_SIZ, ":%s", mytc);
1302   }
1303   fullTimeControlString = StrSave(buf); // this should now be in PGN format
1304
1305   if( NextTimeControlFromString( &tc, &tc1 ) != 0 ) {
1306     return FALSE;
1307   }
1308
1309   if( *tc == '/' ) {
1310     /* Parse second time control */
1311     tc++;
1312
1313     if( NextTimeControlFromString( &tc, &tc2 ) != 0 ) {
1314       return FALSE;
1315     }
1316
1317     if( tc2 == 0 ) {
1318       return FALSE;
1319     }
1320
1321     timeControl_2 = tc2 * 1000;
1322   }
1323   else {
1324     timeControl_2 = 0;
1325   }
1326
1327   if( tc1 == 0 ) {
1328     return FALSE;
1329   }
1330
1331   timeControl = tc1 * 1000;
1332
1333   if (ti >= 0) {
1334     timeIncrement = ti * 1000;  /* convert to ms */
1335     movesPerSession = 0;
1336   } else {
1337     timeIncrement = 0;
1338     movesPerSession = mps;
1339   }
1340   return TRUE;
1341 }
1342
1343 void
1344 InitBackEnd2 ()
1345 {
1346     if (appData.debugMode) {
1347         fprintf(debugFP, "%s\n", programVersion);
1348     }
1349     ASSIGN(currentDebugFile, appData.nameOfDebugFile); // [HGM] debug split: remember initial name in use
1350
1351     set_cont_sequence(appData.wrapContSeq);
1352     if (appData.matchGames > 0) {
1353         appData.matchMode = TRUE;
1354     } else if (appData.matchMode) {
1355         appData.matchGames = 1;
1356     }
1357     if(appData.matchMode && appData.sameColorGames > 0) /* [HGM] alternate: overrule matchGames */
1358         appData.matchGames = appData.sameColorGames;
1359     if(appData.rewindIndex > 1) { /* [HGM] autoinc: rewind implies auto-increment and overrules given index */
1360         if(appData.loadPositionIndex >= 0) appData.loadPositionIndex = -1;
1361         if(appData.loadGameIndex >= 0) appData.loadGameIndex = -1;
1362     }
1363     Reset(TRUE, FALSE);
1364     if (appData.noChessProgram || first.protocolVersion == 1) {
1365       InitBackEnd3();
1366     } else {
1367       /* kludge: allow timeout for initial "feature" commands */
1368       FreezeUI();
1369       DisplayMessage("", _("Starting chess program"));
1370       ScheduleDelayedEvent(InitBackEnd3, FEATURE_TIMEOUT);
1371     }
1372 }
1373
1374 int
1375 CalculateIndex (int index, int gameNr)
1376 {   // [HGM] autoinc: absolute way to determine load index from game number (taking auto-inc and rewind into account)
1377     int res;
1378     if(index > 0) return index; // fixed nmber
1379     if(index == 0) return 1;
1380     res = (index == -1 ? gameNr : (gameNr-1)/2 + 1); // autoinc
1381     if(appData.rewindIndex > 0) res = (res-1) % appData.rewindIndex + 1; // rewind
1382     return res;
1383 }
1384
1385 int
1386 LoadGameOrPosition (int gameNr)
1387 {   // [HGM] taken out of MatchEvent and NextMatchGame (to combine it)
1388     if (*appData.loadGameFile != NULLCHAR) {
1389         if (!LoadGameFromFile(appData.loadGameFile,
1390                 CalculateIndex(appData.loadGameIndex, gameNr),
1391                               appData.loadGameFile, FALSE)) {
1392             DisplayFatalError(_("Bad game file"), 0, 1);
1393             return 0;
1394         }
1395     } else if (*appData.loadPositionFile != NULLCHAR) {
1396         if (!LoadPositionFromFile(appData.loadPositionFile,
1397                 CalculateIndex(appData.loadPositionIndex, gameNr),
1398                                   appData.loadPositionFile)) {
1399             DisplayFatalError(_("Bad position file"), 0, 1);
1400             return 0;
1401         }
1402     }
1403     return 1;
1404 }
1405
1406 void
1407 ReserveGame (int gameNr, char resChar)
1408 {
1409     FILE *tf = fopen(appData.tourneyFile, "r+");
1410     char *p, *q, c, buf[MSG_SIZ];
1411     if(tf == NULL) { nextGame = appData.matchGames + 1; return; } // kludge to terminate match
1412     safeStrCpy(buf, lastMsg, MSG_SIZ);
1413     DisplayMessage(_("Pick new game"), "");
1414     flock(fileno(tf), LOCK_EX); // lock the tourney file while we are messing with it
1415     ParseArgsFromFile(tf);
1416     p = q = appData.results;
1417     if(appData.debugMode) {
1418       char *r = appData.participants;
1419       fprintf(debugFP, "results = '%s'\n", p);
1420       while(*r) fprintf(debugFP, *r >= ' ' ? "%c" : "\\%03o", *r), r++;
1421       fprintf(debugFP, "\n");
1422     }
1423     while(*q && *q != ' ') q++; // get first un-played game (could be beyond end!)
1424     nextGame = q - p;
1425     q = malloc(strlen(p) + 2); // could be arbitrary long, but allow to extend by one!
1426     safeStrCpy(q, p, strlen(p) + 2);
1427     if(gameNr >= 0) q[gameNr] = resChar; // replace '*' with result
1428     if(appData.debugMode) fprintf(debugFP, "pick next game from '%s': %d\n", q, nextGame);
1429     if(nextGame <= appData.matchGames && resChar != ' ' && !abortMatch) { // reserve next game if tourney not yet done
1430         if(q[nextGame] == NULLCHAR) q[nextGame+1] = NULLCHAR; // append one char
1431         q[nextGame] = '*';
1432     }
1433     fseek(tf, -(strlen(p)+4), SEEK_END);
1434     c = fgetc(tf);
1435     if(c != '"') // depending on DOS or Unix line endings we can be one off
1436          fseek(tf, -(strlen(p)+2), SEEK_END);
1437     else fseek(tf, -(strlen(p)+3), SEEK_END);
1438     fprintf(tf, "%s\"\n", q); fclose(tf); // update, and flush by closing
1439     DisplayMessage(buf, "");
1440     free(p); appData.results = q;
1441     if(nextGame <= appData.matchGames && resChar != ' ' && !abortMatch &&
1442        (gameNr < 0 || nextGame / appData.defaultMatchGames != gameNr / appData.defaultMatchGames)) {
1443       int round = appData.defaultMatchGames * appData.tourneyType;
1444       if(gameNr < 0 || appData.tourneyType < 1 ||  // gauntlet engine can always stay loaded as first engine
1445          appData.tourneyType > 1 && nextGame/round != gameNr/round) // in multi-gauntlet change only after round
1446         UnloadEngine(&first);  // next game belongs to other pairing;
1447         UnloadEngine(&second); // already unload the engines, so TwoMachinesEvent will load new ones.
1448     }
1449     if(appData.debugMode) fprintf(debugFP, "Reserved, next=%d, nr=%d\n", nextGame, gameNr);
1450 }
1451
1452 void
1453 MatchEvent (int mode)
1454 {       // [HGM] moved out of InitBackend3, to make it callable when match starts through menu
1455         int dummy;
1456         if(matchMode) { // already in match mode: switch it off
1457             abortMatch = TRUE;
1458             if(!appData.tourneyFile[0]) appData.matchGames = matchGame; // kludge to let match terminate after next game.
1459             return;
1460         }
1461 //      if(gameMode != BeginningOfGame) {
1462 //          DisplayError(_("You can only start a match from the initial position."), 0);
1463 //          return;
1464 //      }
1465         abortMatch = FALSE;
1466         if(mode == 2) appData.matchGames = appData.defaultMatchGames;
1467         /* Set up machine vs. machine match */
1468         nextGame = 0;
1469         NextTourneyGame(-1, &dummy); // sets appData.matchGames if this is tourney, to make sure ReserveGame knows it
1470         if(appData.tourneyFile[0]) {
1471             ReserveGame(-1, 0);
1472             if(nextGame > appData.matchGames) {
1473                 char buf[MSG_SIZ];
1474                 if(strchr(appData.results, '*') == NULL) {
1475                     FILE *f;
1476                     appData.tourneyCycles++;
1477                     if(f = WriteTourneyFile(appData.results, NULL)) { // make a tourney file with increased number of cycles
1478                         fclose(f);
1479                         NextTourneyGame(-1, &dummy);
1480                         ReserveGame(-1, 0);
1481                         if(nextGame <= appData.matchGames) {
1482                             DisplayNote(_("You restarted an already completed tourney\nOne more cycle will now be added to it\nGames commence in 10 sec"));
1483                             matchMode = mode;
1484                             ScheduleDelayedEvent(NextMatchGame, 10000);
1485                             return;
1486                         }
1487                     }
1488                 }
1489                 snprintf(buf, MSG_SIZ, _("All games in tourney '%s' are already played or playing"), appData.tourneyFile);
1490                 DisplayError(buf, 0);
1491                 appData.tourneyFile[0] = 0;
1492                 return;
1493             }
1494         } else
1495         if (appData.noChessProgram) {  // [HGM] in tourney engines are loaded automatically
1496             DisplayFatalError(_("Can't have a match with no chess programs"),
1497                               0, 2);
1498             return;
1499         }
1500         matchMode = mode;
1501         matchGame = roundNr = 1;
1502         first.matchWins = second.matchWins = 0; // [HGM] match: needed in later matches
1503         NextMatchGame();
1504 }
1505
1506 char *comboLine = NULL; // [HGM] recent: WinBoard's first-engine combobox line
1507
1508 void
1509 InitBackEnd3 P((void))
1510 {
1511     GameMode initialMode;
1512     char buf[MSG_SIZ];
1513     int err, len;
1514
1515     InitChessProgram(&first, startedFromSetupPosition);
1516
1517     if(!appData.noChessProgram) {  /* [HGM] tidy: redo program version to use name from myname feature */
1518         free(programVersion);
1519         programVersion = (char*) malloc(8 + strlen(PACKAGE_STRING) + strlen(first.tidy));
1520         sprintf(programVersion, "%s + %s", PACKAGE_STRING, first.tidy);
1521         FloatToFront(&appData.recentEngineList, comboLine ? comboLine : appData.firstChessProgram);
1522     }
1523
1524     if (appData.icsActive) {
1525 #ifdef WIN32
1526         /* [DM] Make a console window if needed [HGM] merged ifs */
1527         ConsoleCreate();
1528 #endif
1529         err = establish();
1530         if (err != 0)
1531           {
1532             if (*appData.icsCommPort != NULLCHAR)
1533               len = snprintf(buf, MSG_SIZ, _("Could not open comm port %s"),
1534                              appData.icsCommPort);
1535             else
1536               len = snprintf(buf, MSG_SIZ, _("Could not connect to host %s, port %s"),
1537                         appData.icsHost, appData.icsPort);
1538
1539             if( (len >= MSG_SIZ) && appData.debugMode )
1540               fprintf(debugFP, "InitBackEnd3: buffer truncated.\n");
1541
1542             DisplayFatalError(buf, err, 1);
1543             return;
1544         }
1545         SetICSMode();
1546         telnetISR =
1547           AddInputSource(icsPR, FALSE, read_from_ics, &telnetISR);
1548         fromUserISR =
1549           AddInputSource(NoProc, FALSE, read_from_player, &fromUserISR);
1550         if(appData.keepAlive) // [HGM] alive: schedule sending of dummy 'date' command
1551             ScheduleDelayedEvent(KeepAlive, appData.keepAlive*60*1000);
1552     } else if (appData.noChessProgram) {
1553         SetNCPMode();
1554     } else {
1555         SetGNUMode();
1556     }
1557
1558     if (*appData.cmailGameName != NULLCHAR) {
1559         SetCmailMode();
1560         OpenLoopback(&cmailPR);
1561         cmailISR =
1562           AddInputSource(cmailPR, FALSE, CmailSigHandlerCallBack, &cmailISR);
1563     }
1564
1565     ThawUI();
1566     DisplayMessage("", "");
1567     if (StrCaseCmp(appData.initialMode, "") == 0) {
1568       initialMode = BeginningOfGame;
1569       if(!appData.icsActive && appData.noChessProgram) { // [HGM] could be fall-back
1570         gameMode = MachinePlaysBlack; // "Machine Black" might have been implicitly highlighted
1571         ModeHighlight(); // make sure XBoard knows it is highlighted, so it will un-highlight it
1572         gameMode = BeginningOfGame; // in case BeginningOfGame now means "Edit Position"
1573         ModeHighlight();
1574       }
1575     } else if (StrCaseCmp(appData.initialMode, "TwoMachines") == 0) {
1576       initialMode = TwoMachinesPlay;
1577     } else if (StrCaseCmp(appData.initialMode, "AnalyzeFile") == 0) {
1578       initialMode = AnalyzeFile;
1579     } else if (StrCaseCmp(appData.initialMode, "Analysis") == 0) {
1580       initialMode = AnalyzeMode;
1581     } else if (StrCaseCmp(appData.initialMode, "MachineWhite") == 0) {
1582       initialMode = MachinePlaysWhite;
1583     } else if (StrCaseCmp(appData.initialMode, "MachineBlack") == 0) {
1584       initialMode = MachinePlaysBlack;
1585     } else if (StrCaseCmp(appData.initialMode, "EditGame") == 0) {
1586       initialMode = EditGame;
1587     } else if (StrCaseCmp(appData.initialMode, "EditPosition") == 0) {
1588       initialMode = EditPosition;
1589     } else if (StrCaseCmp(appData.initialMode, "Training") == 0) {
1590       initialMode = Training;
1591     } else {
1592       len = snprintf(buf, MSG_SIZ, _("Unknown initialMode %s"), appData.initialMode);
1593       if( (len >= MSG_SIZ) && appData.debugMode )
1594         fprintf(debugFP, "InitBackEnd3: buffer truncated.\n");
1595
1596       DisplayFatalError(buf, 0, 2);
1597       return;
1598     }
1599
1600     if (appData.matchMode) {
1601         if(appData.tourneyFile[0]) { // start tourney from command line
1602             FILE *f;
1603             if(f = fopen(appData.tourneyFile, "r")) {
1604                 ParseArgsFromFile(f); // make sure tourney parmeters re known
1605                 fclose(f);
1606                 appData.clockMode = TRUE;
1607                 SetGNUMode();
1608             } else appData.tourneyFile[0] = NULLCHAR; // for now ignore bad tourney file
1609         }
1610         MatchEvent(TRUE);
1611     } else if (*appData.cmailGameName != NULLCHAR) {
1612         /* Set up cmail mode */
1613         ReloadCmailMsgEvent(TRUE);
1614     } else {
1615         /* Set up other modes */
1616         if (initialMode == AnalyzeFile) {
1617           if (*appData.loadGameFile == NULLCHAR) {
1618             DisplayFatalError(_("AnalyzeFile mode requires a game file"), 0, 1);
1619             return;
1620           }
1621         }
1622         if (*appData.loadGameFile != NULLCHAR) {
1623             (void) LoadGameFromFile(appData.loadGameFile,
1624                                     appData.loadGameIndex,
1625                                     appData.loadGameFile, TRUE);
1626         } else if (*appData.loadPositionFile != NULLCHAR) {
1627             (void) LoadPositionFromFile(appData.loadPositionFile,
1628                                         appData.loadPositionIndex,
1629                                         appData.loadPositionFile);
1630             /* [HGM] try to make self-starting even after FEN load */
1631             /* to allow automatic setup of fairy variants with wtm */
1632             if(initialMode == BeginningOfGame && !blackPlaysFirst) {
1633                 gameMode = BeginningOfGame;
1634                 setboardSpoiledMachineBlack = 1;
1635             }
1636             /* [HGM] loadPos: make that every new game uses the setup */
1637             /* from file as long as we do not switch variant          */
1638             if(!blackPlaysFirst) {
1639                 startedFromPositionFile = TRUE;
1640                 CopyBoard(filePosition, boards[0]);
1641             }
1642         }
1643         if (initialMode == AnalyzeMode) {
1644           if (appData.noChessProgram) {
1645             DisplayFatalError(_("Analysis mode requires a chess engine"), 0, 2);
1646             return;
1647           }
1648           if (appData.icsActive) {
1649             DisplayFatalError(_("Analysis mode does not work with ICS mode"),0,2);
1650             return;
1651           }
1652           AnalyzeModeEvent();
1653         } else if (initialMode == AnalyzeFile) {
1654           appData.showThinking = TRUE; // [HGM] thinking: moved out of ShowThinkingEvent
1655           ShowThinkingEvent();
1656           AnalyzeFileEvent();
1657           AnalysisPeriodicEvent(1);
1658         } else if (initialMode == MachinePlaysWhite) {
1659           if (appData.noChessProgram) {
1660             DisplayFatalError(_("MachineWhite mode requires a chess engine"),
1661                               0, 2);
1662             return;
1663           }
1664           if (appData.icsActive) {
1665             DisplayFatalError(_("MachineWhite mode does not work with ICS mode"),
1666                               0, 2);
1667             return;
1668           }
1669           MachineWhiteEvent();
1670         } else if (initialMode == MachinePlaysBlack) {
1671           if (appData.noChessProgram) {
1672             DisplayFatalError(_("MachineBlack mode requires a chess engine"),
1673                               0, 2);
1674             return;
1675           }
1676           if (appData.icsActive) {
1677             DisplayFatalError(_("MachineBlack mode does not work with ICS mode"),
1678                               0, 2);
1679             return;
1680           }
1681           MachineBlackEvent();
1682         } else if (initialMode == TwoMachinesPlay) {
1683           if (appData.noChessProgram) {
1684             DisplayFatalError(_("TwoMachines mode requires a chess engine"),
1685                               0, 2);
1686             return;
1687           }
1688           if (appData.icsActive) {
1689             DisplayFatalError(_("TwoMachines mode does not work with ICS mode"),
1690                               0, 2);
1691             return;
1692           }
1693           TwoMachinesEvent();
1694         } else if (initialMode == EditGame) {
1695           EditGameEvent();
1696         } else if (initialMode == EditPosition) {
1697           EditPositionEvent();
1698         } else if (initialMode == Training) {
1699           if (*appData.loadGameFile == NULLCHAR) {
1700             DisplayFatalError(_("Training mode requires a game file"), 0, 2);
1701             return;
1702           }
1703           TrainingEvent();
1704         }
1705     }
1706 }
1707
1708 void
1709 HistorySet (char movelist[][2*MOVE_LEN], int first, int last, int current)
1710 {
1711     DisplayBook(current+1);
1712
1713     MoveHistorySet( movelist, first, last, current, pvInfoList );
1714
1715     EvalGraphSet( first, last, current, pvInfoList );
1716
1717     MakeEngineOutputTitle();
1718 }
1719
1720 /*
1721  * Establish will establish a contact to a remote host.port.
1722  * Sets icsPR to a ProcRef for a process (or pseudo-process)
1723  *  used to talk to the host.
1724  * Returns 0 if okay, error code if not.
1725  */
1726 int
1727 establish ()
1728 {
1729     char buf[MSG_SIZ];
1730
1731     if (*appData.icsCommPort != NULLCHAR) {
1732         /* Talk to the host through a serial comm port */
1733         return OpenCommPort(appData.icsCommPort, &icsPR);
1734
1735     } else if (*appData.gateway != NULLCHAR) {
1736         if (*appData.remoteShell == NULLCHAR) {
1737             /* Use the rcmd protocol to run telnet program on a gateway host */
1738             snprintf(buf, sizeof(buf), "%s %s %s",
1739                     appData.telnetProgram, appData.icsHost, appData.icsPort);
1740             return OpenRcmd(appData.gateway, appData.remoteUser, buf, &icsPR);
1741
1742         } else {
1743             /* Use the rsh program to run telnet program on a gateway host */
1744             if (*appData.remoteUser == NULLCHAR) {
1745                 snprintf(buf, sizeof(buf), "%s %s %s %s %s", appData.remoteShell,
1746                         appData.gateway, appData.telnetProgram,
1747                         appData.icsHost, appData.icsPort);
1748             } else {
1749                 snprintf(buf, sizeof(buf), "%s %s -l %s %s %s %s",
1750                         appData.remoteShell, appData.gateway,
1751                         appData.remoteUser, appData.telnetProgram,
1752                         appData.icsHost, appData.icsPort);
1753             }
1754             return StartChildProcess(buf, "", &icsPR);
1755
1756         }
1757     } else if (appData.useTelnet) {
1758         return OpenTelnet(appData.icsHost, appData.icsPort, &icsPR);
1759
1760     } else {
1761         /* TCP socket interface differs somewhat between
1762            Unix and NT; handle details in the front end.
1763            */
1764         return OpenTCP(appData.icsHost, appData.icsPort, &icsPR);
1765     }
1766 }
1767
1768 void
1769 EscapeExpand (char *p, char *q)
1770 {       // [HGM] initstring: routine to shape up string arguments
1771         while(*p++ = *q++) if(p[-1] == '\\')
1772             switch(*q++) {
1773                 case 'n': p[-1] = '\n'; break;
1774                 case 'r': p[-1] = '\r'; break;
1775                 case 't': p[-1] = '\t'; break;
1776                 case '\\': p[-1] = '\\'; break;
1777                 case 0: *p = 0; return;
1778                 default: p[-1] = q[-1]; break;
1779             }
1780 }
1781
1782 void
1783 show_bytes (FILE *fp, char *buf, int count)
1784 {
1785     while (count--) {
1786         if (*buf < 040 || *(unsigned char *) buf > 0177) {
1787             fprintf(fp, "\\%03o", *buf & 0xff);
1788         } else {
1789             putc(*buf, fp);
1790         }
1791         buf++;
1792     }
1793     fflush(fp);
1794 }
1795
1796 /* Returns an errno value */
1797 int
1798 OutputMaybeTelnet (ProcRef pr, char *message, int count, int *outError)
1799 {
1800     char buf[8192], *p, *q, *buflim;
1801     int left, newcount, outcount;
1802
1803     if (*appData.icsCommPort != NULLCHAR || appData.useTelnet ||
1804         *appData.gateway != NULLCHAR) {
1805         if (appData.debugMode) {
1806             fprintf(debugFP, ">ICS: ");
1807             show_bytes(debugFP, message, count);
1808             fprintf(debugFP, "\n");
1809         }
1810         return OutputToProcess(pr, message, count, outError);
1811     }
1812
1813     buflim = &buf[sizeof(buf)-1]; /* allow 1 byte for expanding last char */
1814     p = message;
1815     q = buf;
1816     left = count;
1817     newcount = 0;
1818     while (left) {
1819         if (q >= buflim) {
1820             if (appData.debugMode) {
1821                 fprintf(debugFP, ">ICS: ");
1822                 show_bytes(debugFP, buf, newcount);
1823                 fprintf(debugFP, "\n");
1824             }
1825             outcount = OutputToProcess(pr, buf, newcount, outError);
1826             if (outcount < newcount) return -1; /* to be sure */
1827             q = buf;
1828             newcount = 0;
1829         }
1830         if (*p == '\n') {
1831             *q++ = '\r';
1832             newcount++;
1833         } else if (((unsigned char) *p) == TN_IAC) {
1834             *q++ = (char) TN_IAC;
1835             newcount ++;
1836         }
1837         *q++ = *p++;
1838         newcount++;
1839         left--;
1840     }
1841     if (appData.debugMode) {
1842         fprintf(debugFP, ">ICS: ");
1843         show_bytes(debugFP, buf, newcount);
1844         fprintf(debugFP, "\n");
1845     }
1846     outcount = OutputToProcess(pr, buf, newcount, outError);
1847     if (outcount < newcount) return -1; /* to be sure */
1848     return count;
1849 }
1850
1851 void
1852 read_from_player (InputSourceRef isr, VOIDSTAR closure, char *message, int count, int error)
1853 {
1854     int outError, outCount;
1855     static int gotEof = 0;
1856     static FILE *ini;
1857
1858     /* Pass data read from player on to ICS */
1859     if (count > 0) {
1860         gotEof = 0;
1861         outCount = OutputMaybeTelnet(icsPR, message, count, &outError);
1862         if (outCount < count) {
1863             DisplayFatalError(_("Error writing to ICS"), outError, 1);
1864         }
1865         if(have_sent_ICS_logon == 2) {
1866           if(ini = fopen(appData.icsLogon, "w")) { // save first two lines (presumably username & password) on init script file
1867             fprintf(ini, "%s", message);
1868             have_sent_ICS_logon = 3;
1869           } else
1870             have_sent_ICS_logon = 1;
1871         } else if(have_sent_ICS_logon == 3) {
1872             fprintf(ini, "%s", message);
1873             fclose(ini);
1874           have_sent_ICS_logon = 1;
1875         }
1876     } else if (count < 0) {
1877         RemoveInputSource(isr);
1878         DisplayFatalError(_("Error reading from keyboard"), error, 1);
1879     } else if (gotEof++ > 0) {
1880         RemoveInputSource(isr);
1881         DisplayFatalError(_("Got end of file from keyboard"), 0, 0);
1882     }
1883 }
1884
1885 void
1886 KeepAlive ()
1887 {   // [HGM] alive: periodically send dummy (date) command to ICS to prevent time-out
1888     if(!connectionAlive) DisplayFatalError("No response from ICS", 0, 1);
1889     connectionAlive = FALSE; // only sticks if no response to 'date' command.
1890     SendToICS("date\n");
1891     if(appData.keepAlive) ScheduleDelayedEvent(KeepAlive, appData.keepAlive*60*1000);
1892 }
1893
1894 /* added routine for printf style output to ics */
1895 void
1896 ics_printf (char *format, ...)
1897 {
1898     char buffer[MSG_SIZ];
1899     va_list args;
1900
1901     va_start(args, format);
1902     vsnprintf(buffer, sizeof(buffer), format, args);
1903     buffer[sizeof(buffer)-1] = '\0';
1904     SendToICS(buffer);
1905     va_end(args);
1906 }
1907
1908 void
1909 SendToICS (char *s)
1910 {
1911     int count, outCount, outError;
1912
1913     if (icsPR == NoProc) return;
1914
1915     count = strlen(s);
1916     outCount = OutputMaybeTelnet(icsPR, s, count, &outError);
1917     if (outCount < count) {
1918         DisplayFatalError(_("Error writing to ICS"), outError, 1);
1919     }
1920 }
1921
1922 /* This is used for sending logon scripts to the ICS. Sending
1923    without a delay causes problems when using timestamp on ICC
1924    (at least on my machine). */
1925 void
1926 SendToICSDelayed (char *s, long msdelay)
1927 {
1928     int count, outCount, outError;
1929
1930     if (icsPR == NoProc) return;
1931
1932     count = strlen(s);
1933     if (appData.debugMode) {
1934         fprintf(debugFP, ">ICS: ");
1935         show_bytes(debugFP, s, count);
1936         fprintf(debugFP, "\n");
1937     }
1938     outCount = OutputToProcessDelayed(icsPR, s, count, &outError,
1939                                       msdelay);
1940     if (outCount < count) {
1941         DisplayFatalError(_("Error writing to ICS"), outError, 1);
1942     }
1943 }
1944
1945
1946 /* Remove all highlighting escape sequences in s
1947    Also deletes any suffix starting with '('
1948    */
1949 char *
1950 StripHighlightAndTitle (char *s)
1951 {
1952     static char retbuf[MSG_SIZ];
1953     char *p = retbuf;
1954
1955     while (*s != NULLCHAR) {
1956         while (*s == '\033') {
1957             while (*s != NULLCHAR && !isalpha(*s)) s++;
1958             if (*s != NULLCHAR) s++;
1959         }
1960         while (*s != NULLCHAR && *s != '\033') {
1961             if (*s == '(' || *s == '[') {
1962                 *p = NULLCHAR;
1963                 return retbuf;
1964             }
1965             *p++ = *s++;
1966         }
1967     }
1968     *p = NULLCHAR;
1969     return retbuf;
1970 }
1971
1972 /* Remove all highlighting escape sequences in s */
1973 char *
1974 StripHighlight (char *s)
1975 {
1976     static char retbuf[MSG_SIZ];
1977     char *p = retbuf;
1978
1979     while (*s != NULLCHAR) {
1980         while (*s == '\033') {
1981             while (*s != NULLCHAR && !isalpha(*s)) s++;
1982             if (*s != NULLCHAR) s++;
1983         }
1984         while (*s != NULLCHAR && *s != '\033') {
1985             *p++ = *s++;
1986         }
1987     }
1988     *p = NULLCHAR;
1989     return retbuf;
1990 }
1991
1992 char *variantNames[] = VARIANT_NAMES;
1993 char *
1994 VariantName (VariantClass v)
1995 {
1996     return variantNames[v];
1997 }
1998
1999
2000 /* Identify a variant from the strings the chess servers use or the
2001    PGN Variant tag names we use. */
2002 VariantClass
2003 StringToVariant (char *e)
2004 {
2005     char *p;
2006     int wnum = -1;
2007     VariantClass v = VariantNormal;
2008     int i, found = FALSE;
2009     char buf[MSG_SIZ];
2010     int len;
2011
2012     if (!e) return v;
2013
2014     /* [HGM] skip over optional board-size prefixes */
2015     if( sscanf(e, "%dx%d_", &i, &i) == 2 ||
2016         sscanf(e, "%dx%d+%d_", &i, &i, &i) == 3 ) {
2017         while( *e++ != '_');
2018     }
2019
2020     if(StrCaseStr(e, "misc/")) { // [HGM] on FICS, misc/shogi is not shogi
2021         v = VariantNormal;
2022         found = TRUE;
2023     } else
2024     for (i=0; i<sizeof(variantNames)/sizeof(char*); i++) {
2025       if (StrCaseStr(e, variantNames[i])) {
2026         v = (VariantClass) i;
2027         found = TRUE;
2028         break;
2029       }
2030     }
2031
2032     if (!found) {
2033       if ((StrCaseStr(e, "fischer") && StrCaseStr(e, "random"))
2034           || StrCaseStr(e, "wild/fr")
2035           || StrCaseStr(e, "frc") || StrCaseStr(e, "960")) {
2036         v = VariantFischeRandom;
2037       } else if ((i = 4, p = StrCaseStr(e, "wild")) ||
2038                  (i = 1, p = StrCaseStr(e, "w"))) {
2039         p += i;
2040         while (*p && (isspace(*p) || *p == '(' || *p == '/')) p++;
2041         if (isdigit(*p)) {
2042           wnum = atoi(p);
2043         } else {
2044           wnum = -1;
2045         }
2046         switch (wnum) {
2047         case 0: /* FICS only, actually */
2048         case 1:
2049           /* Castling legal even if K starts on d-file */
2050           v = VariantWildCastle;
2051           break;
2052         case 2:
2053         case 3:
2054         case 4:
2055           /* Castling illegal even if K & R happen to start in
2056              normal positions. */
2057           v = VariantNoCastle;
2058           break;
2059         case 5:
2060         case 7:
2061         case 8:
2062         case 10:
2063         case 11:
2064         case 12:
2065         case 13:
2066         case 14:
2067         case 15:
2068         case 18:
2069         case 19:
2070           /* Castling legal iff K & R start in normal positions */
2071           v = VariantNormal;
2072           break;
2073         case 6:
2074         case 20:
2075         case 21:
2076           /* Special wilds for position setup; unclear what to do here */
2077           v = VariantLoadable;
2078           break;
2079         case 9:
2080           /* Bizarre ICC game */
2081           v = VariantTwoKings;
2082           break;
2083         case 16:
2084           v = VariantKriegspiel;
2085           break;
2086         case 17:
2087           v = VariantLosers;
2088           break;
2089         case 22:
2090           v = VariantFischeRandom;
2091           break;
2092         case 23:
2093           v = VariantCrazyhouse;
2094           break;
2095         case 24:
2096           v = VariantBughouse;
2097           break;
2098         case 25:
2099           v = Variant3Check;
2100           break;
2101         case 26:
2102           /* Not quite the same as FICS suicide! */
2103           v = VariantGiveaway;
2104           break;
2105         case 27:
2106           v = VariantAtomic;
2107           break;
2108         case 28:
2109           v = VariantShatranj;
2110           break;
2111
2112         /* Temporary names for future ICC types.  The name *will* change in
2113            the next xboard/WinBoard release after ICC defines it. */
2114         case 29:
2115           v = Variant29;
2116           break;
2117         case 30:
2118           v = Variant30;
2119           break;
2120         case 31:
2121           v = Variant31;
2122           break;
2123         case 32:
2124           v = Variant32;
2125           break;
2126         case 33:
2127           v = Variant33;
2128           break;
2129         case 34:
2130           v = Variant34;
2131           break;
2132         case 35:
2133           v = Variant35;
2134           break;
2135         case 36:
2136           v = Variant36;
2137           break;
2138         case 37:
2139           v = VariantShogi;
2140           break;
2141         case 38:
2142           v = VariantXiangqi;
2143           break;
2144         case 39:
2145           v = VariantCourier;
2146           break;
2147         case 40:
2148           v = VariantGothic;
2149           break;
2150         case 41:
2151           v = VariantCapablanca;
2152           break;
2153         case 42:
2154           v = VariantKnightmate;
2155           break;
2156         case 43:
2157           v = VariantFairy;
2158           break;
2159         case 44:
2160           v = VariantCylinder;
2161           break;
2162         case 45:
2163           v = VariantFalcon;
2164           break;
2165         case 46:
2166           v = VariantCapaRandom;
2167           break;
2168         case 47:
2169           v = VariantBerolina;
2170           break;
2171         case 48:
2172           v = VariantJanus;
2173           break;
2174         case 49:
2175           v = VariantSuper;
2176           break;
2177         case 50:
2178           v = VariantGreat;
2179           break;
2180         case -1:
2181           /* Found "wild" or "w" in the string but no number;
2182              must assume it's normal chess. */
2183           v = VariantNormal;
2184           break;
2185         default:
2186           len = snprintf(buf, MSG_SIZ, _("Unknown wild type %d"), wnum);
2187           if( (len >= MSG_SIZ) && appData.debugMode )
2188             fprintf(debugFP, "StringToVariant: buffer truncated.\n");
2189
2190           DisplayError(buf, 0);
2191           v = VariantUnknown;
2192           break;
2193         }
2194       }
2195     }
2196     if (appData.debugMode) {
2197       fprintf(debugFP, _("recognized '%s' (%d) as variant %s\n"),
2198               e, wnum, VariantName(v));
2199     }
2200     return v;
2201 }
2202
2203 static int leftover_start = 0, leftover_len = 0;
2204 char star_match[STAR_MATCH_N][MSG_SIZ];
2205
2206 /* Test whether pattern is present at &buf[*index]; if so, return TRUE,
2207    advance *index beyond it, and set leftover_start to the new value of
2208    *index; else return FALSE.  If pattern contains the character '*', it
2209    matches any sequence of characters not containing '\r', '\n', or the
2210    character following the '*' (if any), and the matched sequence(s) are
2211    copied into star_match.
2212    */
2213 int
2214 looking_at ( char *buf, int *index, char *pattern)
2215 {
2216     char *bufp = &buf[*index], *patternp = pattern;
2217     int star_count = 0;
2218     char *matchp = star_match[0];
2219
2220     for (;;) {
2221         if (*patternp == NULLCHAR) {
2222             *index = leftover_start = bufp - buf;
2223             *matchp = NULLCHAR;
2224             return TRUE;
2225         }
2226         if (*bufp == NULLCHAR) return FALSE;
2227         if (*patternp == '*') {
2228             if (*bufp == *(patternp + 1)) {
2229                 *matchp = NULLCHAR;
2230                 matchp = star_match[++star_count];
2231                 patternp += 2;
2232                 bufp++;
2233                 continue;
2234             } else if (*bufp == '\n' || *bufp == '\r') {
2235                 patternp++;
2236                 if (*patternp == NULLCHAR)
2237                   continue;
2238                 else
2239                   return FALSE;
2240             } else {
2241                 *matchp++ = *bufp++;
2242                 continue;
2243             }
2244         }
2245         if (*patternp != *bufp) return FALSE;
2246         patternp++;
2247         bufp++;
2248     }
2249 }
2250
2251 void
2252 SendToPlayer (char *data, int length)
2253 {
2254     int error, outCount;
2255     outCount = OutputToProcess(NoProc, data, length, &error);
2256     if (outCount < length) {
2257         DisplayFatalError(_("Error writing to display"), error, 1);
2258     }
2259 }
2260
2261 void
2262 PackHolding (char packed[], char *holding)
2263 {
2264     char *p = holding;
2265     char *q = packed;
2266     int runlength = 0;
2267     int curr = 9999;
2268     do {
2269         if (*p == curr) {
2270             runlength++;
2271         } else {
2272             switch (runlength) {
2273               case 0:
2274                 break;
2275               case 1:
2276                 *q++ = curr;
2277                 break;
2278               case 2:
2279                 *q++ = curr;
2280                 *q++ = curr;
2281                 break;
2282               default:
2283                 sprintf(q, "%d", runlength);
2284                 while (*q) q++;
2285                 *q++ = curr;
2286                 break;
2287             }
2288             runlength = 1;
2289             curr = *p;
2290         }
2291     } while (*p++);
2292     *q = NULLCHAR;
2293 }
2294
2295 /* Telnet protocol requests from the front end */
2296 void
2297 TelnetRequest (unsigned char ddww, unsigned char option)
2298 {
2299     unsigned char msg[3];
2300     int outCount, outError;
2301
2302     if (*appData.icsCommPort != NULLCHAR || appData.useTelnet) return;
2303
2304     if (appData.debugMode) {
2305         char buf1[8], buf2[8], *ddwwStr, *optionStr;
2306         switch (ddww) {
2307           case TN_DO:
2308             ddwwStr = "DO";
2309             break;
2310           case TN_DONT:
2311             ddwwStr = "DONT";
2312             break;
2313           case TN_WILL:
2314             ddwwStr = "WILL";
2315             break;
2316           case TN_WONT:
2317             ddwwStr = "WONT";
2318             break;
2319           default:
2320             ddwwStr = buf1;
2321             snprintf(buf1,sizeof(buf1)/sizeof(buf1[0]), "%d", ddww);
2322             break;
2323         }
2324         switch (option) {
2325           case TN_ECHO:
2326             optionStr = "ECHO";
2327             break;
2328           default:
2329             optionStr = buf2;
2330             snprintf(buf2,sizeof(buf2)/sizeof(buf2[0]), "%d", option);
2331             break;
2332         }
2333         fprintf(debugFP, ">%s %s ", ddwwStr, optionStr);
2334     }
2335     msg[0] = TN_IAC;
2336     msg[1] = ddww;
2337     msg[2] = option;
2338     outCount = OutputToProcess(icsPR, (char *)msg, 3, &outError);
2339     if (outCount < 3) {
2340         DisplayFatalError(_("Error writing to ICS"), outError, 1);
2341     }
2342 }
2343
2344 void
2345 DoEcho ()
2346 {
2347     if (!appData.icsActive) return;
2348     TelnetRequest(TN_DO, TN_ECHO);
2349 }
2350
2351 void
2352 DontEcho ()
2353 {
2354     if (!appData.icsActive) return;
2355     TelnetRequest(TN_DONT, TN_ECHO);
2356 }
2357
2358 void
2359 CopyHoldings (Board board, char *holdings, ChessSquare lowestPiece)
2360 {
2361     /* put the holdings sent to us by the server on the board holdings area */
2362     int i, j, holdingsColumn, holdingsStartRow, direction, countsColumn;
2363     char p;
2364     ChessSquare piece;
2365
2366     if(gameInfo.holdingsWidth < 2)  return;
2367     if(gameInfo.variant != VariantBughouse && board[HOLDINGS_SET])
2368         return; // prevent overwriting by pre-board holdings
2369
2370     if( (int)lowestPiece >= BlackPawn ) {
2371         holdingsColumn = 0;
2372         countsColumn = 1;
2373         holdingsStartRow = BOARD_HEIGHT-1;
2374         direction = -1;
2375     } else {
2376         holdingsColumn = BOARD_WIDTH-1;
2377         countsColumn = BOARD_WIDTH-2;
2378         holdingsStartRow = 0;
2379         direction = 1;
2380     }
2381
2382     for(i=0; i<BOARD_HEIGHT; i++) { /* clear holdings */
2383         board[i][holdingsColumn] = EmptySquare;
2384         board[i][countsColumn]   = (ChessSquare) 0;
2385     }
2386     while( (p=*holdings++) != NULLCHAR ) {
2387         piece = CharToPiece( ToUpper(p) );
2388         if(piece == EmptySquare) continue;
2389         /*j = (int) piece - (int) WhitePawn;*/
2390         j = PieceToNumber(piece);
2391         if(j >= gameInfo.holdingsSize) continue; /* ignore pieces that do not fit */
2392         if(j < 0) continue;               /* should not happen */
2393         piece = (ChessSquare) ( (int)piece + (int)lowestPiece );
2394         board[holdingsStartRow+j*direction][holdingsColumn] = piece;
2395         board[holdingsStartRow+j*direction][countsColumn]++;
2396     }
2397 }
2398
2399
2400 void
2401 VariantSwitch (Board board, VariantClass newVariant)
2402 {
2403    int newHoldingsWidth, newWidth = 8, newHeight = 8, i, j;
2404    static Board oldBoard;
2405
2406    startedFromPositionFile = FALSE;
2407    if(gameInfo.variant == newVariant) return;
2408
2409    /* [HGM] This routine is called each time an assignment is made to
2410     * gameInfo.variant during a game, to make sure the board sizes
2411     * are set to match the new variant. If that means adding or deleting
2412     * holdings, we shift the playing board accordingly
2413     * This kludge is needed because in ICS observe mode, we get boards
2414     * of an ongoing game without knowing the variant, and learn about the
2415     * latter only later. This can be because of the move list we requested,
2416     * in which case the game history is refilled from the beginning anyway,
2417     * but also when receiving holdings of a crazyhouse game. In the latter
2418     * case we want to add those holdings to the already received position.
2419     */
2420
2421
2422    if (appData.debugMode) {
2423      fprintf(debugFP, "Switch board from %s to %s\n",
2424              VariantName(gameInfo.variant), VariantName(newVariant));
2425      setbuf(debugFP, NULL);
2426    }
2427    shuffleOpenings = 0;       /* [HGM] shuffle */
2428    gameInfo.holdingsSize = 5; /* [HGM] prepare holdings */
2429    switch(newVariant)
2430      {
2431      case VariantShogi:
2432        newWidth = 9;  newHeight = 9;
2433        gameInfo.holdingsSize = 7;
2434      case VariantBughouse:
2435      case VariantCrazyhouse:
2436        newHoldingsWidth = 2; break;
2437      case VariantGreat:
2438        newWidth = 10;
2439      case VariantSuper:
2440        newHoldingsWidth = 2;
2441        gameInfo.holdingsSize = 8;
2442        break;
2443      case VariantGothic:
2444      case VariantCapablanca:
2445      case VariantCapaRandom:
2446        newWidth = 10;
2447      default:
2448        newHoldingsWidth = gameInfo.holdingsSize = 0;
2449      };
2450
2451    if(newWidth  != gameInfo.boardWidth  ||
2452       newHeight != gameInfo.boardHeight ||
2453       newHoldingsWidth != gameInfo.holdingsWidth ) {
2454
2455      /* shift position to new playing area, if needed */
2456      if(newHoldingsWidth > gameInfo.holdingsWidth) {
2457        for(i=0; i<BOARD_HEIGHT; i++)
2458          for(j=BOARD_RGHT-1; j>=BOARD_LEFT; j--)
2459            board[i][j+newHoldingsWidth-gameInfo.holdingsWidth] =
2460              board[i][j];
2461        for(i=0; i<newHeight; i++) {
2462          board[i][0] = board[i][newWidth+2*newHoldingsWidth-1] = EmptySquare;
2463          board[i][1] = board[i][newWidth+2*newHoldingsWidth-2] = (ChessSquare) 0;
2464        }
2465      } else if(newHoldingsWidth < gameInfo.holdingsWidth) {
2466        for(i=0; i<BOARD_HEIGHT; i++)
2467          for(j=BOARD_LEFT; j<BOARD_RGHT; j++)
2468            board[i][j+newHoldingsWidth-gameInfo.holdingsWidth] =
2469              board[i][j];
2470      }
2471      board[HOLDINGS_SET] = 0;
2472      gameInfo.boardWidth  = newWidth;
2473      gameInfo.boardHeight = newHeight;
2474      gameInfo.holdingsWidth = newHoldingsWidth;
2475      gameInfo.variant = newVariant;
2476      InitDrawingSizes(-2, 0);
2477    } else gameInfo.variant = newVariant;
2478    CopyBoard(oldBoard, board);   // remember correctly formatted board
2479      InitPosition(FALSE);          /* this sets up board[0], but also other stuff        */
2480    DrawPosition(TRUE, currentMove ? boards[currentMove] : oldBoard);
2481 }
2482
2483 static int loggedOn = FALSE;
2484
2485 /*-- Game start info cache: --*/
2486 int gs_gamenum;
2487 char gs_kind[MSG_SIZ];
2488 static char player1Name[128] = "";
2489 static char player2Name[128] = "";
2490 static char cont_seq[] = "\n\\   ";
2491 static int player1Rating = -1;
2492 static int player2Rating = -1;
2493 /*----------------------------*/
2494
2495 ColorClass curColor = ColorNormal;
2496 int suppressKibitz = 0;
2497
2498 // [HGM] seekgraph
2499 Boolean soughtPending = FALSE;
2500 Boolean seekGraphUp;
2501 #define MAX_SEEK_ADS 200
2502 #define SQUARE 0x80
2503 char *seekAdList[MAX_SEEK_ADS];
2504 int ratingList[MAX_SEEK_ADS], xList[MAX_SEEK_ADS], yList[MAX_SEEK_ADS], seekNrList[MAX_SEEK_ADS], zList[MAX_SEEK_ADS];
2505 float tcList[MAX_SEEK_ADS];
2506 char colorList[MAX_SEEK_ADS];
2507 int nrOfSeekAds = 0;
2508 int minRating = 1010, maxRating = 2800;
2509 int hMargin = 10, vMargin = 20, h, w;
2510 extern int squareSize, lineGap;
2511
2512 void
2513 PlotSeekAd (int i)
2514 {
2515         int x, y, color = 0, r = ratingList[i]; float tc = tcList[i];
2516         xList[i] = yList[i] = -100; // outside graph, so cannot be clicked
2517         if(r < minRating+100 && r >=0 ) r = minRating+100;
2518         if(r > maxRating) r = maxRating;
2519         if(tc < 1.f) tc = 1.f;
2520         if(tc > 95.f) tc = 95.f;
2521         x = (w-hMargin-squareSize/8-7)* log(tc)/log(95.) + hMargin;
2522         y = ((double)r - minRating)/(maxRating - minRating)
2523             * (h-vMargin-squareSize/8-1) + vMargin;
2524         if(ratingList[i] < 0) y = vMargin + squareSize/4;
2525         if(strstr(seekAdList[i], " u ")) color = 1;
2526         if(!strstr(seekAdList[i], "lightning") && // for now all wilds same color
2527            !strstr(seekAdList[i], "bullet") &&
2528            !strstr(seekAdList[i], "blitz") &&
2529            !strstr(seekAdList[i], "standard") ) color = 2;
2530         if(strstr(seekAdList[i], "(C) ")) color |= SQUARE; // plot computer seeks as squares
2531         DrawSeekDot(xList[i]=x+3*(color&~SQUARE), yList[i]=h-1-y, colorList[i]=color);
2532 }
2533
2534 void
2535 PlotSingleSeekAd (int i)
2536 {
2537         PlotSeekAd(i);
2538 }
2539
2540 void
2541 AddAd (char *handle, char *rating, int base, int inc,  char rated, char *type, int nr, Boolean plot)
2542 {
2543         char buf[MSG_SIZ], *ext = "";
2544         VariantClass v = StringToVariant(type);
2545         if(strstr(type, "wild")) {
2546             ext = type + 4; // append wild number
2547             if(v == VariantFischeRandom) type = "chess960"; else
2548             if(v == VariantLoadable) type = "setup"; else
2549             type = VariantName(v);
2550         }
2551         snprintf(buf, MSG_SIZ, "%s (%s) %d %d %c %s%s", handle, rating, base, inc, rated, type, ext);
2552         if(nrOfSeekAds < MAX_SEEK_ADS-1) {
2553             if(seekAdList[nrOfSeekAds]) free(seekAdList[nrOfSeekAds]);
2554             ratingList[nrOfSeekAds] = -1; // for if seeker has no rating
2555             sscanf(rating, "%d", &ratingList[nrOfSeekAds]);
2556             tcList[nrOfSeekAds] = base + (2./3.)*inc;
2557             seekNrList[nrOfSeekAds] = nr;
2558             zList[nrOfSeekAds] = 0;
2559             seekAdList[nrOfSeekAds++] = StrSave(buf);
2560             if(plot) PlotSingleSeekAd(nrOfSeekAds-1);
2561         }
2562 }
2563
2564 void
2565 EraseSeekDot (int i)
2566 {
2567     int x = xList[i], y = yList[i], d=squareSize/4, k;
2568     DrawSeekBackground(x-squareSize/8, y-squareSize/8, x+squareSize/8+1, y+squareSize/8+1);
2569     if(x < hMargin+d) DrawSeekAxis(hMargin, y-squareSize/8, hMargin, y+squareSize/8+1);
2570     // now replot every dot that overlapped
2571     for(k=0; k<nrOfSeekAds; k++) if(k != i) {
2572         int xx = xList[k], yy = yList[k];
2573         if(xx <= x+d && xx > x-d && yy <= y+d && yy > y-d)
2574             DrawSeekDot(xx, yy, colorList[k]);
2575     }
2576 }
2577
2578 void
2579 RemoveSeekAd (int nr)
2580 {
2581         int i;
2582         for(i=0; i<nrOfSeekAds; i++) if(seekNrList[i] == nr) {
2583             EraseSeekDot(i);
2584             if(seekAdList[i]) free(seekAdList[i]);
2585             seekAdList[i] = seekAdList[--nrOfSeekAds];
2586             seekNrList[i] = seekNrList[nrOfSeekAds];
2587             ratingList[i] = ratingList[nrOfSeekAds];
2588             colorList[i]  = colorList[nrOfSeekAds];
2589             tcList[i] = tcList[nrOfSeekAds];
2590             xList[i]  = xList[nrOfSeekAds];
2591             yList[i]  = yList[nrOfSeekAds];
2592             zList[i]  = zList[nrOfSeekAds];
2593             seekAdList[nrOfSeekAds] = NULL;
2594             break;
2595         }
2596 }
2597
2598 Boolean
2599 MatchSoughtLine (char *line)
2600 {
2601     char handle[MSG_SIZ], rating[MSG_SIZ], type[MSG_SIZ];
2602     int nr, base, inc, u=0; char dummy;
2603
2604     if(sscanf(line, "%d %s %s %d %d rated %s", &nr, rating, handle, &base, &inc, type) == 6 ||
2605        sscanf(line, "%d %s %s %s %d %d rated %c", &nr, rating, handle, type, &base, &inc, &dummy) == 7 ||
2606        (u=1) &&
2607        (sscanf(line, "%d %s %s %d %d unrated %s", &nr, rating, handle, &base, &inc, type) == 6 ||
2608         sscanf(line, "%d %s %s %s %d %d unrated %c", &nr, rating, handle, type, &base, &inc, &dummy) == 7)  ) {
2609         // match: compact and save the line
2610         AddAd(handle, rating, base, inc, u ? 'u' : 'r', type, nr, FALSE);
2611         return TRUE;
2612     }
2613     return FALSE;
2614 }
2615
2616 int
2617 DrawSeekGraph ()
2618 {
2619     int i;
2620     if(!seekGraphUp) return FALSE;
2621     h = BOARD_HEIGHT * (squareSize + lineGap) + lineGap;
2622     w = BOARD_WIDTH  * (squareSize + lineGap) + lineGap;
2623
2624     DrawSeekBackground(0, 0, w, h);
2625     DrawSeekAxis(hMargin, h-1-vMargin, w-5, h-1-vMargin);
2626     DrawSeekAxis(hMargin, h-1-vMargin, hMargin, 5);
2627     for(i=0; i<4000; i+= 100) if(i>=minRating && i<maxRating) {
2628         int yy =((double)i - minRating)/(maxRating - minRating)*(h-vMargin-squareSize/8-1) + vMargin;
2629         yy = h-1-yy;
2630         DrawSeekAxis(hMargin-5, yy, hMargin+5*(i%500==0), yy); // rating ticks
2631         if(i%500 == 0) {
2632             char buf[MSG_SIZ];
2633             snprintf(buf, MSG_SIZ, "%d", i);
2634             DrawSeekText(buf, hMargin+squareSize/8+7, yy);
2635         }
2636     }
2637     DrawSeekText("unrated", hMargin+squareSize/8+7, h-1-vMargin-squareSize/4);
2638     for(i=1; i<100; i+=(i<10?1:5)) {
2639         int xx = (w-hMargin-squareSize/8-7)* log((double)i)/log(95.) + hMargin;
2640         DrawSeekAxis(xx, h-1-vMargin, xx, h-6-vMargin-3*(i%10==0)); // TC ticks
2641         if(i<=5 || (i>40 ? i%20 : i%10) == 0) {
2642             char buf[MSG_SIZ];
2643             snprintf(buf, MSG_SIZ, "%d", i);
2644             DrawSeekText(buf, xx-2-3*(i>9), h-1-vMargin/2);
2645         }
2646     }
2647     for(i=0; i<nrOfSeekAds; i++) PlotSeekAd(i);
2648     return TRUE;
2649 }
2650
2651 int
2652 SeekGraphClick (ClickType click, int x, int y, int moving)
2653 {
2654     static int lastDown = 0, displayed = 0, lastSecond;
2655     if(y < 0) return FALSE;
2656     if(!(appData.seekGraph && appData.icsActive && loggedOn &&
2657         (gameMode == BeginningOfGame || gameMode == IcsIdle))) {
2658         if(!seekGraphUp) return FALSE;
2659         seekGraphUp = FALSE; // seek graph is up when it shouldn't be: take it down
2660         DrawPosition(TRUE, NULL);
2661         return TRUE;
2662     }
2663     if(!seekGraphUp) { // initiate cration of seek graph by requesting seek-ad list
2664         if(click == Release || moving) return FALSE;
2665         nrOfSeekAds = 0;
2666         soughtPending = TRUE;
2667         SendToICS(ics_prefix);
2668         SendToICS("sought\n"); // should this be "sought all"?
2669     } else { // issue challenge based on clicked ad
2670         int dist = 10000; int i, closest = 0, second = 0;
2671         for(i=0; i<nrOfSeekAds; i++) {
2672             int d = (x-xList[i])*(x-xList[i]) +  (y-yList[i])*(y-yList[i]) + zList[i];
2673             if(d < dist) { dist = d; closest = i; }
2674             second += (d - zList[i] < 120); // count in-range ads
2675             if(click == Press && moving != 1 && zList[i]>0) zList[i] *= 0.8; // age priority
2676         }
2677         if(dist < 120) {
2678             char buf[MSG_SIZ];
2679             second = (second > 1);
2680             if(displayed != closest || second != lastSecond) {
2681                 DisplayMessage(second ? "!" : "", seekAdList[closest]);
2682                 lastSecond = second; displayed = closest;
2683             }
2684             if(click == Press) {
2685                 if(moving == 2) zList[closest] = 100; // right-click; push to back on press
2686                 lastDown = closest;
2687                 return TRUE;
2688             } // on press 'hit', only show info
2689             if(moving == 2) return TRUE; // ignore right up-clicks on dot
2690             snprintf(buf, MSG_SIZ, "play %d\n", seekNrList[closest]);
2691             SendToICS(ics_prefix);
2692             SendToICS(buf);
2693             return TRUE; // let incoming board of started game pop down the graph
2694         } else if(click == Release) { // release 'miss' is ignored
2695             zList[lastDown] = 100; // make future selection of the rejected ad more difficult
2696             if(moving == 2) { // right up-click
2697                 nrOfSeekAds = 0; // refresh graph
2698                 soughtPending = TRUE;
2699                 SendToICS(ics_prefix);
2700                 SendToICS("sought\n"); // should this be "sought all"?
2701             }
2702             return TRUE;
2703         } else if(moving) { if(displayed >= 0) DisplayMessage("", ""); displayed = -1; return TRUE; }
2704         // press miss or release hit 'pop down' seek graph
2705         seekGraphUp = FALSE;
2706         DrawPosition(TRUE, NULL);
2707     }
2708     return TRUE;
2709 }
2710
2711 void
2712 read_from_ics (InputSourceRef isr, VOIDSTAR closure, char *data, int count, int error)
2713 {
2714 #define BUF_SIZE (16*1024) /* overflowed at 8K with "inchannel 1" on FICS? */
2715 #define STARTED_NONE 0
2716 #define STARTED_MOVES 1
2717 #define STARTED_BOARD 2
2718 #define STARTED_OBSERVE 3
2719 #define STARTED_HOLDINGS 4
2720 #define STARTED_CHATTER 5
2721 #define STARTED_COMMENT 6
2722 #define STARTED_MOVES_NOHIDE 7
2723
2724     static int started = STARTED_NONE;
2725     static char parse[20000];
2726     static int parse_pos = 0;
2727     static char buf[BUF_SIZE + 1];
2728     static int firstTime = TRUE, intfSet = FALSE;
2729     static ColorClass prevColor = ColorNormal;
2730     static int savingComment = FALSE;
2731     static int cmatch = 0; // continuation sequence match
2732     char *bp;
2733     char str[MSG_SIZ];
2734     int i, oldi;
2735     int buf_len;
2736     int next_out;
2737     int tkind;
2738     int backup;    /* [DM] For zippy color lines */
2739     char *p;
2740     char talker[MSG_SIZ]; // [HGM] chat
2741     int channel;
2742
2743     connectionAlive = TRUE; // [HGM] alive: I think, therefore I am...
2744
2745     if (appData.debugMode) {
2746       if (!error) {
2747         fprintf(debugFP, "<ICS: ");
2748         show_bytes(debugFP, data, count);
2749         fprintf(debugFP, "\n");
2750       }
2751     }
2752
2753     if (appData.debugMode) { int f = forwardMostMove;
2754         fprintf(debugFP, "ics input %d, castling = %d %d %d %d %d %d\n", f,
2755                 boards[f][CASTLING][0],boards[f][CASTLING][1],boards[f][CASTLING][2],
2756                 boards[f][CASTLING][3],boards[f][CASTLING][4],boards[f][CASTLING][5]);
2757     }
2758     if (count > 0) {
2759         /* If last read ended with a partial line that we couldn't parse,
2760            prepend it to the new read and try again. */
2761         if (leftover_len > 0) {
2762             for (i=0; i<leftover_len; i++)
2763               buf[i] = buf[leftover_start + i];
2764         }
2765
2766     /* copy new characters into the buffer */
2767     bp = buf + leftover_len;
2768     buf_len=leftover_len;
2769     for (i=0; i<count; i++)
2770     {
2771         // ignore these
2772         if (data[i] == '\r')
2773             continue;
2774
2775         // join lines split by ICS?
2776         if (!appData.noJoin)
2777         {
2778             /*
2779                 Joining just consists of finding matches against the
2780                 continuation sequence, and discarding that sequence
2781                 if found instead of copying it.  So, until a match
2782                 fails, there's nothing to do since it might be the
2783                 complete sequence, and thus, something we don't want
2784                 copied.
2785             */
2786             if (data[i] == cont_seq[cmatch])
2787             {
2788                 cmatch++;
2789                 if (cmatch == strlen(cont_seq))
2790                 {
2791                     cmatch = 0; // complete match.  just reset the counter
2792
2793                     /*
2794                         it's possible for the ICS to not include the space
2795                         at the end of the last word, making our [correct]
2796                         join operation fuse two separate words.  the server
2797                         does this when the space occurs at the width setting.
2798                     */
2799                     if (!buf_len || buf[buf_len-1] != ' ')
2800                     {
2801                         *bp++ = ' ';
2802                         buf_len++;
2803                     }
2804                 }
2805                 continue;
2806             }
2807             else if (cmatch)
2808             {
2809                 /*
2810                     match failed, so we have to copy what matched before
2811                     falling through and copying this character.  In reality,
2812                     this will only ever be just the newline character, but
2813                     it doesn't hurt to be precise.
2814                 */
2815                 strncpy(bp, cont_seq, cmatch);
2816                 bp += cmatch;
2817                 buf_len += cmatch;
2818                 cmatch = 0;
2819             }
2820         }
2821
2822         // copy this char
2823         *bp++ = data[i];
2824         buf_len++;
2825     }
2826
2827         buf[buf_len] = NULLCHAR;
2828 //      next_out = leftover_len; // [HGM] should we set this to 0, and not print it in advance?
2829         next_out = 0;
2830         leftover_start = 0;
2831
2832         i = 0;
2833         while (i < buf_len) {
2834             /* Deal with part of the TELNET option negotiation
2835                protocol.  We refuse to do anything beyond the
2836                defaults, except that we allow the WILL ECHO option,
2837                which ICS uses to turn off password echoing when we are
2838                directly connected to it.  We reject this option
2839                if localLineEditing mode is on (always on in xboard)
2840                and we are talking to port 23, which might be a real
2841                telnet server that will try to keep WILL ECHO on permanently.
2842              */
2843             if (buf_len - i >= 3 && (unsigned char) buf[i] == TN_IAC) {
2844                 static int remoteEchoOption = FALSE; /* telnet ECHO option */
2845                 unsigned char option;
2846                 oldi = i;
2847                 switch ((unsigned char) buf[++i]) {
2848                   case TN_WILL:
2849                     if (appData.debugMode)
2850                       fprintf(debugFP, "\n<WILL ");
2851                     switch (option = (unsigned char) buf[++i]) {
2852                       case TN_ECHO:
2853                         if (appData.debugMode)
2854                           fprintf(debugFP, "ECHO ");
2855                         /* Reply only if this is a change, according
2856                            to the protocol rules. */
2857                         if (remoteEchoOption) break;
2858                         if (appData.localLineEditing &&
2859                             atoi(appData.icsPort) == TN_PORT) {
2860                             TelnetRequest(TN_DONT, TN_ECHO);
2861                         } else {
2862                             EchoOff();
2863                             TelnetRequest(TN_DO, TN_ECHO);
2864                             remoteEchoOption = TRUE;
2865                         }
2866                         break;
2867                       default:
2868                         if (appData.debugMode)
2869                           fprintf(debugFP, "%d ", option);
2870                         /* Whatever this is, we don't want it. */
2871                         TelnetRequest(TN_DONT, option);
2872                         break;
2873                     }
2874                     break;
2875                   case TN_WONT:
2876                     if (appData.debugMode)
2877                       fprintf(debugFP, "\n<WONT ");
2878                     switch (option = (unsigned char) buf[++i]) {
2879                       case TN_ECHO:
2880                         if (appData.debugMode)
2881                           fprintf(debugFP, "ECHO ");
2882                         /* Reply only if this is a change, according
2883                            to the protocol rules. */
2884                         if (!remoteEchoOption) break;
2885                         EchoOn();
2886                         TelnetRequest(TN_DONT, TN_ECHO);
2887                         remoteEchoOption = FALSE;
2888                         break;
2889                       default:
2890                         if (appData.debugMode)
2891                           fprintf(debugFP, "%d ", (unsigned char) option);
2892                         /* Whatever this is, it must already be turned
2893                            off, because we never agree to turn on
2894                            anything non-default, so according to the
2895                            protocol rules, we don't reply. */
2896                         break;
2897                     }
2898                     break;
2899                   case TN_DO:
2900                     if (appData.debugMode)
2901                       fprintf(debugFP, "\n<DO ");
2902                     switch (option = (unsigned char) buf[++i]) {
2903                       default:
2904                         /* Whatever this is, we refuse to do it. */
2905                         if (appData.debugMode)
2906                           fprintf(debugFP, "%d ", option);
2907                         TelnetRequest(TN_WONT, option);
2908                         break;
2909                     }
2910                     break;
2911                   case TN_DONT:
2912                     if (appData.debugMode)
2913                       fprintf(debugFP, "\n<DONT ");
2914                     switch (option = (unsigned char) buf[++i]) {
2915                       default:
2916                         if (appData.debugMode)
2917                           fprintf(debugFP, "%d ", option);
2918                         /* Whatever this is, we are already not doing
2919                            it, because we never agree to do anything
2920                            non-default, so according to the protocol
2921                            rules, we don't reply. */
2922                         break;
2923                     }
2924                     break;
2925                   case TN_IAC:
2926                     if (appData.debugMode)
2927                       fprintf(debugFP, "\n<IAC ");
2928                     /* Doubled IAC; pass it through */
2929                     i--;
2930                     break;
2931                   default:
2932                     if (appData.debugMode)
2933                       fprintf(debugFP, "\n<%d ", (unsigned char) buf[i]);
2934                     /* Drop all other telnet commands on the floor */
2935                     break;
2936                 }
2937                 if (oldi > next_out)
2938                   SendToPlayer(&buf[next_out], oldi - next_out);
2939                 if (++i > next_out)
2940                   next_out = i;
2941                 continue;
2942             }
2943
2944             /* OK, this at least will *usually* work */
2945             if (!loggedOn && looking_at(buf, &i, "ics%")) {
2946                 loggedOn = TRUE;
2947             }
2948
2949             if (loggedOn && !intfSet) {
2950                 if (ics_type == ICS_ICC) {
2951                   snprintf(str, MSG_SIZ,
2952                           "/set-quietly interface %s\n/set-quietly style 12\n",
2953                           programVersion);
2954                   if(appData.seekGraph && appData.autoRefresh) // [HGM] seekgraph
2955                       strcat(str, "/set-2 51 1\n/set seek 1\n");
2956                 } else if (ics_type == ICS_CHESSNET) {
2957                   snprintf(str, MSG_SIZ, "/style 12\n");
2958                 } else {
2959                   safeStrCpy(str, "alias $ @\n$set interface ", sizeof(str)/sizeof(str[0]));
2960                   strcat(str, programVersion);
2961                   strcat(str, "\n$iset startpos 1\n$iset ms 1\n");
2962                   if(appData.seekGraph && appData.autoRefresh) // [HGM] seekgraph
2963                       strcat(str, "$iset seekremove 1\n$set seek 1\n");
2964 #ifdef WIN32
2965                   strcat(str, "$iset nohighlight 1\n");
2966 #endif
2967                   strcat(str, "$iset lock 1\n$style 12\n");
2968                 }
2969                 SendToICS(str);
2970                 NotifyFrontendLogin();
2971                 intfSet = TRUE;
2972             }
2973
2974             if (started == STARTED_COMMENT) {
2975                 /* Accumulate characters in comment */
2976                 parse[parse_pos++] = buf[i];
2977                 if (buf[i] == '\n') {
2978                     parse[parse_pos] = NULLCHAR;
2979                     if(chattingPartner>=0) {
2980                         char mess[MSG_SIZ];
2981                         snprintf(mess, MSG_SIZ, "%s%s", talker, parse);
2982                         OutputChatMessage(chattingPartner, mess);
2983                         chattingPartner = -1;
2984                         next_out = i+1; // [HGM] suppress printing in ICS window
2985                     } else
2986                     if(!suppressKibitz) // [HGM] kibitz
2987                         AppendComment(forwardMostMove, StripHighlight(parse), TRUE);
2988                     else { // [HGM kibitz: divert memorized engine kibitz to engine-output window
2989                         int nrDigit = 0, nrAlph = 0, j;
2990                         if(parse_pos > MSG_SIZ - 30) // defuse unreasonably long input
2991                         { parse_pos = MSG_SIZ-30; parse[parse_pos - 1] = '\n'; }
2992                         parse[parse_pos] = NULLCHAR;
2993                         // try to be smart: if it does not look like search info, it should go to
2994                         // ICS interaction window after all, not to engine-output window.
2995                         for(j=0; j<parse_pos; j++) { // count letters and digits
2996                             nrDigit += (parse[j] >= '0' && parse[j] <= '9');
2997                             nrAlph  += (parse[j] >= 'a' && parse[j] <= 'z');
2998                             nrAlph  += (parse[j] >= 'A' && parse[j] <= 'Z');
2999                         }
3000                         if(nrAlph < 9*nrDigit) { // if more than 10% digit we assume search info
3001                             int depth=0; float score;
3002                             if(sscanf(parse, "!!! %f/%d", &score, &depth) == 2 && depth>0) {
3003                                 // [HGM] kibitz: save kibitzed opponent info for PGN and eval graph
3004                                 pvInfoList[forwardMostMove-1].depth = depth;
3005                                 pvInfoList[forwardMostMove-1].score = 100*score;
3006                             }
3007                             OutputKibitz(suppressKibitz, parse);
3008                         } else {
3009                             char tmp[MSG_SIZ];
3010                             if(gameMode == IcsObserving) // restore original ICS messages
3011                               snprintf(tmp, MSG_SIZ, "%s kibitzes: %s", star_match[0], parse);
3012                             else
3013                             snprintf(tmp, MSG_SIZ, _("your opponent kibitzes: %s"), parse);
3014                             SendToPlayer(tmp, strlen(tmp));
3015                         }
3016                         next_out = i+1; // [HGM] suppress printing in ICS window
3017                     }
3018                     started = STARTED_NONE;
3019                 } else {
3020                     /* Don't match patterns against characters in comment */
3021                     i++;
3022                     continue;
3023                 }
3024             }
3025             if (started == STARTED_CHATTER) {
3026                 if (buf[i] != '\n') {
3027                     /* Don't match patterns against characters in chatter */
3028                     i++;
3029                     continue;
3030                 }
3031                 started = STARTED_NONE;
3032                 if(suppressKibitz) next_out = i+1;
3033             }
3034
3035             /* Kludge to deal with rcmd protocol */
3036             if (firstTime && looking_at(buf, &i, "\001*")) {
3037                 DisplayFatalError(&buf[1], 0, 1);
3038                 continue;
3039             } else {
3040                 firstTime = FALSE;
3041             }
3042
3043             if (!loggedOn && looking_at(buf, &i, "chessclub.com")) {
3044                 ics_type = ICS_ICC;
3045                 ics_prefix = "/";
3046                 if (appData.debugMode)
3047                   fprintf(debugFP, "ics_type %d\n", ics_type);
3048                 continue;
3049             }
3050             if (!loggedOn && looking_at(buf, &i, "freechess.org")) {
3051                 ics_type = ICS_FICS;
3052                 ics_prefix = "$";
3053                 if (appData.debugMode)
3054                   fprintf(debugFP, "ics_type %d\n", ics_type);
3055                 continue;
3056             }
3057             if (!loggedOn && looking_at(buf, &i, "chess.net")) {
3058                 ics_type = ICS_CHESSNET;
3059                 ics_prefix = "/";
3060                 if (appData.debugMode)
3061                   fprintf(debugFP, "ics_type %d\n", ics_type);
3062                 continue;
3063             }
3064
3065             if (!loggedOn &&
3066                 (looking_at(buf, &i, "\"*\" is *a registered name") ||
3067                  looking_at(buf, &i, "Logging you in as \"*\"") ||
3068                  looking_at(buf, &i, "will be \"*\""))) {
3069               safeStrCpy(ics_handle, star_match[0], sizeof(ics_handle)/sizeof(ics_handle[0]));
3070               continue;
3071             }
3072
3073             if (loggedOn && !have_set_title && ics_handle[0] != NULLCHAR) {
3074               char buf[MSG_SIZ];
3075               snprintf(buf, sizeof(buf), "%s@%s", ics_handle, appData.icsHost);
3076               DisplayIcsInteractionTitle(buf);
3077               have_set_title = TRUE;
3078             }
3079
3080             /* skip finger notes */
3081             if (started == STARTED_NONE &&
3082                 ((buf[i] == ' ' && isdigit(buf[i+1])) ||
3083                  (buf[i] == '1' && buf[i+1] == '0')) &&
3084                 buf[i+2] == ':' && buf[i+3] == ' ') {
3085               started = STARTED_CHATTER;
3086               i += 3;
3087               continue;
3088             }
3089
3090             oldi = i;
3091             // [HGM] seekgraph: recognize sought lines and end-of-sought message
3092             if(appData.seekGraph) {
3093                 if(soughtPending && MatchSoughtLine(buf+i)) {
3094                     i = strstr(buf+i, "rated") - buf;
3095                     if (oldi > next_out) SendToPlayer(&buf[next_out], oldi - next_out);
3096                     next_out = leftover_start = i;
3097                     started = STARTED_CHATTER;
3098                     suppressKibitz = TRUE;
3099                     continue;
3100                 }
3101                 if((gameMode == IcsIdle || gameMode == BeginningOfGame)
3102                         && looking_at(buf, &i, "* ads displayed")) {
3103                     soughtPending = FALSE;
3104                     seekGraphUp = TRUE;
3105                     DrawSeekGraph();
3106                     continue;
3107                 }
3108                 if(appData.autoRefresh) {
3109                     if(looking_at(buf, &i, "* (*) seeking * * * * *\"play *\" to respond)\n")) {
3110                         int s = (ics_type == ICS_ICC); // ICC format differs
3111                         if(seekGraphUp)
3112                         AddAd(star_match[0], star_match[1], atoi(star_match[2+s]), atoi(star_match[3+s]),
3113                               star_match[4+s][0], star_match[5-3*s], atoi(star_match[7]), TRUE);
3114                         looking_at(buf, &i, "*% "); // eat prompt
3115                         if(oldi > 0 && buf[oldi-1] == '\n') oldi--; // suppress preceding LF, if any
3116                         if (oldi > next_out) SendToPlayer(&buf[next_out], oldi - next_out);
3117                         next_out = i; // suppress
3118                         continue;
3119                     }
3120                     if(looking_at(buf, &i, "\nAds removed: *\n") || looking_at(buf, &i, "\031(51 * *\031)")) {
3121                         char *p = star_match[0];
3122                         while(*p) {
3123                             if(seekGraphUp) RemoveSeekAd(atoi(p));
3124                             while(*p && *p++ != ' '); // next
3125                         }
3126                         looking_at(buf, &i, "*% "); // eat prompt
3127                         if (oldi > next_out) SendToPlayer(&buf[next_out], oldi - next_out);
3128                         next_out = i;
3129                         continue;
3130                     }
3131                 }
3132             }
3133
3134             /* skip formula vars */
3135             if (started == STARTED_NONE &&
3136                 buf[i] == 'f' && isdigit(buf[i+1]) && buf[i+2] == ':') {
3137               started = STARTED_CHATTER;
3138               i += 3;
3139               continue;
3140             }
3141
3142             // [HGM] kibitz: try to recognize opponent engine-score kibitzes, to divert them to engine-output window
3143             if (appData.autoKibitz && started == STARTED_NONE &&
3144                 !appData.icsEngineAnalyze &&                     // [HGM] [DM] ICS analyze
3145                 (gameMode == IcsPlayingWhite || gameMode == IcsPlayingBlack || gameMode == IcsObserving)) {
3146                 if((looking_at(buf, &i, "\n* kibitzes: ") || looking_at(buf, &i, "\n* whispers: ") ||
3147                     looking_at(buf, &i, "* kibitzes: ") || looking_at(buf, &i, "* whispers: ")) &&
3148                    (StrStr(star_match[0], gameInfo.white) == star_match[0] ||
3149                     StrStr(star_match[0], gameInfo.black) == star_match[0]   )) { // kibitz of self or opponent
3150                         suppressKibitz = TRUE;
3151                         if (oldi > next_out) SendToPlayer(&buf[next_out], oldi - next_out);
3152                         next_out = i;
3153                         if((StrStr(star_match[0], gameInfo.white) == star_match[0]
3154                                 && (gameMode == IcsPlayingWhite)) ||
3155                            (StrStr(star_match[0], gameInfo.black) == star_match[0]
3156                                 && (gameMode == IcsPlayingBlack))   ) // opponent kibitz
3157                             started = STARTED_CHATTER; // own kibitz we simply discard
3158                         else {
3159                             started = STARTED_COMMENT; // make sure it will be collected in parse[]
3160                             parse_pos = 0; parse[0] = NULLCHAR;
3161                             savingComment = TRUE;
3162                             suppressKibitz = gameMode != IcsObserving ? 2 :
3163                                 (StrStr(star_match[0], gameInfo.white) == NULL) + 1;
3164                         }
3165                         continue;
3166                 } else
3167                 if((looking_at(buf, &i, "\nkibitzed to *\n") || looking_at(buf, &i, "kibitzed to *\n") ||
3168                     looking_at(buf, &i, "\n(kibitzed to *\n") || looking_at(buf, &i, "(kibitzed to *\n"))
3169                          && atoi(star_match[0])) {
3170                     // suppress the acknowledgements of our own autoKibitz
3171                     char *p;
3172                     if (oldi > next_out) SendToPlayer(&buf[next_out], oldi - next_out);
3173                     if(p = strchr(star_match[0], ' ')) p[1] = NULLCHAR; // clip off "players)" on FICS
3174                     SendToPlayer(star_match[0], strlen(star_match[0]));
3175                     if(looking_at(buf, &i, "*% ")) // eat prompt
3176                         suppressKibitz = FALSE;
3177                     next_out = i;
3178                     continue;
3179                 }
3180             } // [HGM] kibitz: end of patch
3181
3182             if(looking_at(buf, &i, "* rating adjustment: * --> *\n")) continue;
3183
3184             // [HGM] chat: intercept tells by users for which we have an open chat window
3185             channel = -1;
3186             if(started == STARTED_NONE && (looking_at(buf, &i, "* tells you:") || looking_at(buf, &i, "* says:") ||
3187                                            looking_at(buf, &i, "* whispers:") ||
3188                                            looking_at(buf, &i, "* kibitzes:") ||
3189                                            looking_at(buf, &i, "* shouts:") ||
3190                                            looking_at(buf, &i, "* c-shouts:") ||
3191                                            looking_at(buf, &i, "--> * ") ||
3192                                            looking_at(buf, &i, "*(*):") && (sscanf(star_match[1], "%d", &channel),1) ||
3193                                            looking_at(buf, &i, "*(*)(*):") && (sscanf(star_match[2], "%d", &channel),1) ||
3194                                            looking_at(buf, &i, "*(*)(*)(*):") && (sscanf(star_match[3], "%d", &channel),1) ||
3195                                            looking_at(buf, &i, "*(*)(*)(*)(*):") && sscanf(star_match[4], "%d", &channel) == 1 )) {
3196                 int p;
3197                 sscanf(star_match[0], "%[^(]", talker+1); // strip (C) or (U) off ICS handle
3198                 chattingPartner = -1;
3199
3200                 if(channel >= 0) // channel broadcast; look if there is a chatbox for this channel
3201                 for(p=0; p<MAX_CHAT; p++) {
3202                     if(chatPartner[p][0] >= '0' && chatPartner[p][0] <= '9' && channel == atoi(chatPartner[p])) {
3203                     talker[0] = '['; strcat(talker, "] ");
3204                     Colorize(channel == 1 ? ColorChannel1 : ColorChannel, FALSE);
3205                     chattingPartner = p; break;
3206                     }
3207                 } else
3208                 if(buf[i-3] == 'e') // kibitz; look if there is a KIBITZ chatbox
3209                 for(p=0; p<MAX_CHAT; p++) {
3210                     if(!strcmp("kibitzes", chatPartner[p])) {
3211                         talker[0] = '['; strcat(talker, "] ");
3212                         chattingPartner = p; break;
3213                     }
3214                 } else
3215                 if(buf[i-3] == 'r') // whisper; look if there is a WHISPER chatbox
3216                 for(p=0; p<MAX_CHAT; p++) {
3217                     if(!strcmp("whispers", chatPartner[p])) {
3218                         talker[0] = '['; strcat(talker, "] ");
3219                         chattingPartner = p; break;
3220                     }
3221                 } else
3222                 if(buf[i-3] == 't' || buf[oldi+2] == '>') {// shout, c-shout or it; look if there is a 'shouts' chatbox
3223                   if(buf[i-8] == '-' && buf[i-3] == 't')
3224                   for(p=0; p<MAX_CHAT; p++) { // c-shout; check if dedicatesd c-shout box exists
3225                     if(!strcmp("c-shouts", chatPartner[p])) {
3226                         talker[0] = '('; strcat(talker, ") "); Colorize(ColorSShout, FALSE);
3227                         chattingPartner = p; break;
3228                     }
3229                   }
3230                   if(chattingPartner < 0)
3231                   for(p=0; p<MAX_CHAT; p++) {
3232                     if(!strcmp("shouts", chatPartner[p])) {
3233                         if(buf[oldi+2] == '>') { talker[0] = '<'; strcat(talker, "> "); Colorize(ColorShout, FALSE); }
3234                         else if(buf[i-8] == '-') { talker[0] = '('; strcat(talker, ") "); Colorize(ColorSShout, FALSE); }
3235                         else { talker[0] = '['; strcat(talker, "] "); Colorize(ColorShout, FALSE); }
3236                         chattingPartner = p; break;
3237                     }
3238                   }
3239                 }
3240                 if(chattingPartner<0) // if not, look if there is a chatbox for this indivdual
3241                 for(p=0; p<MAX_CHAT; p++) if(!StrCaseCmp(talker+1, chatPartner[p])) {
3242                     talker[0] = 0; Colorize(ColorTell, FALSE);
3243                     chattingPartner = p; break;
3244                 }
3245                 if(chattingPartner<0) i = oldi; else {
3246                     Colorize(curColor, TRUE); // undo the bogus colorations we just made to trigger the souds
3247                     if(oldi > 0 && buf[oldi-1] == '\n') oldi--;
3248                     if (oldi > next_out) SendToPlayer(&buf[next_out], oldi - next_out);
3249                     started = STARTED_COMMENT;
3250                     parse_pos = 0; parse[0] = NULLCHAR;
3251                     savingComment = 3 + chattingPartner; // counts as TRUE
3252                     suppressKibitz = TRUE;
3253                     continue;
3254                 }
3255             } // [HGM] chat: end of patch
3256
3257           backup = i;
3258             if (appData.zippyTalk || appData.zippyPlay) {
3259                 /* [DM] Backup address for color zippy lines */
3260 #if ZIPPY
3261                if (loggedOn == TRUE)
3262                        if (ZippyControl(buf, &backup) || ZippyConverse(buf, &backup) ||
3263                           (appData.zippyPlay && ZippyMatch(buf, &backup)));
3264 #endif
3265             } // [DM] 'else { ' deleted
3266                 if (
3267                     /* Regular tells and says */
3268                     (tkind = 1, looking_at(buf, &i, "* tells you: ")) ||
3269                     looking_at(buf, &i, "* (your partner) tells you: ") ||
3270                     looking_at(buf, &i, "* says: ") ||
3271                     /* Don't color "message" or "messages" output */
3272                     (tkind = 5, looking_at(buf, &i, "*. * (*:*): ")) ||
3273                     looking_at(buf, &i, "*. * at *:*: ") ||
3274                     looking_at(buf, &i, "--* (*:*): ") ||
3275                     /* Message notifications (same color as tells) */
3276                     looking_at(buf, &i, "* has left a message ") ||
3277                     looking_at(buf, &i, "* just sent you a message:\n") ||
3278                     /* Whispers and kibitzes */
3279                     (tkind = 2, looking_at(buf, &i, "* whispers: ")) ||
3280                     looking_at(buf, &i, "* kibitzes: ") ||
3281                     /* Channel tells */
3282                     (tkind = 3, looking_at(buf, &i, "*(*: "))) {
3283
3284                   if (tkind == 1 && strchr(star_match[0], ':')) {
3285                       /* Avoid "tells you:" spoofs in channels */
3286                      tkind = 3;
3287                   }
3288                   if (star_match[0][0] == NULLCHAR ||
3289                       strchr(star_match[0], ' ') ||
3290                       (tkind == 3 && strchr(star_match[1], ' '))) {
3291                     /* Reject bogus matches */
3292                     i = oldi;
3293                   } else {
3294                     if (appData.colorize) {
3295                       if (oldi > next_out) {
3296                         SendToPlayer(&buf[next_out], oldi - next_out);
3297                         next_out = oldi;
3298                       }
3299                       switch (tkind) {
3300                       case 1:
3301                         Colorize(ColorTell, FALSE);
3302                         curColor = ColorTell;
3303                         break;
3304                       case 2:
3305                         Colorize(ColorKibitz, FALSE);
3306                         curColor = ColorKibitz;
3307                         break;
3308                       case 3:
3309                         p = strrchr(star_match[1], '(');
3310                         if (p == NULL) {
3311                           p = star_match[1];
3312                         } else {
3313                           p++;
3314                         }
3315                         if (atoi(p) == 1) {
3316                           Colorize(ColorChannel1, FALSE);
3317                           curColor = ColorChannel1;
3318                         } else {
3319                           Colorize(ColorChannel, FALSE);
3320                           curColor = ColorChannel;
3321                         }
3322                         break;
3323                       case 5:
3324                         curColor = ColorNormal;
3325                         break;
3326                       }
3327                     }
3328                     if (started == STARTED_NONE && appData.autoComment &&
3329                         (gameMode == IcsObserving ||
3330                          gameMode == IcsPlayingWhite ||
3331                          gameMode == IcsPlayingBlack)) {
3332                       parse_pos = i - oldi;
3333                       memcpy(parse, &buf[oldi], parse_pos);
3334                       parse[parse_pos] = NULLCHAR;
3335                       started = STARTED_COMMENT;
3336                       savingComment = TRUE;
3337                     } else {
3338                       started = STARTED_CHATTER;
3339                       savingComment = FALSE;
3340                     }
3341                     loggedOn = TRUE;
3342                     continue;
3343                   }
3344                 }
3345
3346                 if (looking_at(buf, &i, "* s-shouts: ") ||
3347                     looking_at(buf, &i, "* c-shouts: ")) {
3348                     if (appData.colorize) {
3349                         if (oldi > next_out) {
3350                             SendToPlayer(&buf[next_out], oldi - next_out);
3351                             next_out = oldi;
3352                         }
3353                         Colorize(ColorSShout, FALSE);
3354                         curColor = ColorSShout;
3355                     }
3356                     loggedOn = TRUE;
3357                     started = STARTED_CHATTER;
3358                     continue;
3359                 }
3360
3361                 if (looking_at(buf, &i, "--->")) {
3362                     loggedOn = TRUE;
3363                     continue;
3364                 }
3365
3366                 if (looking_at(buf, &i, "* shouts: ") ||
3367                     looking_at(buf, &i, "--> ")) {
3368                     if (appData.colorize) {
3369                         if (oldi > next_out) {
3370                             SendToPlayer(&buf[next_out], oldi - next_out);
3371                             next_out = oldi;
3372                         }
3373                         Colorize(ColorShout, FALSE);
3374                         curColor = ColorShout;
3375                     }
3376                     loggedOn = TRUE;
3377                     started = STARTED_CHATTER;
3378                     continue;
3379                 }
3380
3381                 if (looking_at( buf, &i, "Challenge:")) {
3382                     if (appData.colorize) {
3383                         if (oldi > next_out) {
3384                             SendToPlayer(&buf[next_out], oldi - next_out);
3385                             next_out = oldi;
3386                         }
3387                         Colorize(ColorChallenge, FALSE);
3388                         curColor = ColorChallenge;
3389                     }
3390                     loggedOn = TRUE;
3391                     continue;
3392                 }
3393
3394                 if (looking_at(buf, &i, "* offers you") ||
3395                     looking_at(buf, &i, "* offers to be") ||
3396                     looking_at(buf, &i, "* would like to") ||
3397                     looking_at(buf, &i, "* requests to") ||
3398                     looking_at(buf, &i, "Your opponent offers") ||
3399                     looking_at(buf, &i, "Your opponent requests")) {
3400
3401                     if (appData.colorize) {
3402                         if (oldi > next_out) {
3403                             SendToPlayer(&buf[next_out], oldi - next_out);
3404                             next_out = oldi;
3405                         }
3406                         Colorize(ColorRequest, FALSE);
3407                         curColor = ColorRequest;
3408                     }
3409                     continue;
3410                 }
3411
3412                 if (looking_at(buf, &i, "* (*) seeking")) {
3413                     if (appData.colorize) {
3414                         if (oldi > next_out) {
3415                             SendToPlayer(&buf[next_out], oldi - next_out);
3416                             next_out = oldi;
3417                         }
3418                         Colorize(ColorSeek, FALSE);
3419                         curColor = ColorSeek;
3420                     }
3421                     continue;
3422             }
3423
3424           if(i < backup) { i = backup; continue; } // [HGM] for if ZippyControl matches, but the colorie code doesn't
3425
3426             if (looking_at(buf, &i, "\\   ")) {
3427                 if (prevColor != ColorNormal) {
3428                     if (oldi > next_out) {
3429                         SendToPlayer(&buf[next_out], oldi - next_out);
3430                         next_out = oldi;
3431                     }
3432                     Colorize(prevColor, TRUE);
3433                     curColor = prevColor;
3434                 }
3435                 if (savingComment) {
3436                     parse_pos = i - oldi;
3437                     memcpy(parse, &buf[oldi], parse_pos);
3438                     parse[parse_pos] = NULLCHAR;
3439                     started = STARTED_COMMENT;
3440                     if(savingComment >= 3) // [HGM] chat: continuation of line for chat box
3441                         chattingPartner = savingComment - 3; // kludge to remember the box
3442                 } else {
3443                     started = STARTED_CHATTER;
3444                 }
3445                 continue;
3446             }
3447
3448             if (looking_at(buf, &i, "Black Strength :") ||
3449                 looking_at(buf, &i, "<<< style 10 board >>>") ||
3450                 looking_at(buf, &i, "<10>") ||
3451                 looking_at(buf, &i, "#@#")) {
3452                 /* Wrong board style */
3453                 loggedOn = TRUE;
3454                 SendToICS(ics_prefix);
3455                 SendToICS("set style 12\n");
3456                 SendToICS(ics_prefix);
3457                 SendToICS("refresh\n");
3458                 continue;
3459             }
3460
3461             if (looking_at(buf, &i, "login:")) {
3462               if (!have_sent_ICS_logon) {
3463                 if(ICSInitScript())
3464                   have_sent_ICS_logon = 1;
3465                 else // no init script was found
3466                   have_sent_ICS_logon = (appData.autoCreateLogon ? 2 : 1); // flag that we should capture username + password
3467               } else { // we have sent (or created) the InitScript, but apparently the ICS rejected it
3468                   have_sent_ICS_logon = (appData.autoCreateLogon ? 2 : 1); // request creation of a new script
3469               }
3470                 continue;
3471             }
3472
3473             if (ics_getting_history != H_GETTING_MOVES /*smpos kludge*/ &&
3474                 (looking_at(buf, &i, "\n<12> ") ||
3475                  looking_at(buf, &i, "<12> "))) {
3476                 loggedOn = TRUE;
3477                 if (oldi > next_out) {
3478                     SendToPlayer(&buf[next_out], oldi - next_out);
3479                 }
3480                 next_out = i;
3481                 started = STARTED_BOARD;
3482                 parse_pos = 0;
3483                 continue;
3484             }
3485
3486             if ((started == STARTED_NONE && looking_at(buf, &i, "\n<b1> ")) ||
3487                 looking_at(buf, &i, "<b1> ")) {
3488                 if (oldi > next_out) {
3489                     SendToPlayer(&buf[next_out], oldi - next_out);
3490                 }
3491                 next_out = i;
3492                 started = STARTED_HOLDINGS;
3493                 parse_pos = 0;
3494                 continue;
3495             }
3496
3497             if (looking_at(buf, &i, "* *vs. * *--- *")) {
3498                 loggedOn = TRUE;
3499                 /* Header for a move list -- first line */
3500
3501                 switch (ics_getting_history) {
3502                   case H_FALSE:
3503                     switch (gameMode) {
3504                       case IcsIdle:
3505                       case BeginningOfGame:
3506                         /* User typed "moves" or "oldmoves" while we
3507                            were idle.  Pretend we asked for these
3508                            moves and soak them up so user can step
3509                            through them and/or save them.
3510                            */
3511                         Reset(FALSE, TRUE);
3512                         gameMode = IcsObserving;
3513                         ModeHighlight();
3514                         ics_gamenum = -1;
3515                         ics_getting_history = H_GOT_UNREQ_HEADER;
3516                         break;
3517                       case EditGame: /*?*/
3518                       case EditPosition: /*?*/
3519                         /* Should above feature work in these modes too? */
3520                         /* For now it doesn't */
3521                         ics_getting_history = H_GOT_UNWANTED_HEADER;
3522                         break;
3523                       default:
3524                         ics_getting_history = H_GOT_UNWANTED_HEADER;
3525                         break;
3526                     }
3527                     break;
3528                   case H_REQUESTED:
3529                     /* Is this the right one? */
3530                     if (gameInfo.white && gameInfo.black &&
3531                         strcmp(gameInfo.white, star_match[0]) == 0 &&
3532                         strcmp(gameInfo.black, star_match[2]) == 0) {
3533                         /* All is well */
3534                         ics_getting_history = H_GOT_REQ_HEADER;
3535                     }
3536                     break;
3537                   case H_GOT_REQ_HEADER:
3538                   case H_GOT_UNREQ_HEADER:
3539                   case H_GOT_UNWANTED_HEADER:
3540                   case H_GETTING_MOVES:
3541                     /* Should not happen */
3542                     DisplayError(_("Error gathering move list: two headers"), 0);
3543                     ics_getting_history = H_FALSE;
3544                     break;
3545                 }
3546
3547                 /* Save player ratings into gameInfo if needed */
3548                 if ((ics_getting_history == H_GOT_REQ_HEADER ||
3549                      ics_getting_history == H_GOT_UNREQ_HEADER) &&
3550                     (gameInfo.whiteRating == -1 ||
3551                      gameInfo.blackRating == -1)) {
3552
3553                     gameInfo.whiteRating = string_to_rating(star_match[1]);
3554                     gameInfo.blackRating = string_to_rating(star_match[3]);
3555                     if (appData.debugMode)
3556                       fprintf(debugFP, _("Ratings from header: W %d, B %d\n"),
3557                               gameInfo.whiteRating, gameInfo.blackRating);
3558                 }
3559                 continue;
3560             }
3561
3562             if (looking_at(buf, &i,
3563               "* * match, initial time: * minute*, increment: * second")) {
3564                 /* Header for a move list -- second line */
3565                 /* Initial board will follow if this is a wild game */
3566                 if (gameInfo.event != NULL) free(gameInfo.event);
3567                 snprintf(str, MSG_SIZ, "ICS %s %s match", star_match[0], star_match[1]);
3568                 gameInfo.event = StrSave(str);
3569                 /* [HGM] we switched variant. Translate boards if needed. */
3570                 VariantSwitch(boards[currentMove], StringToVariant(gameInfo.event));
3571                 continue;
3572             }
3573
3574             if (looking_at(buf, &i, "Move  ")) {
3575                 /* Beginning of a move list */
3576                 switch (ics_getting_history) {
3577                   case H_FALSE:
3578                     /* Normally should not happen */
3579                     /* Maybe user hit reset while we were parsing */
3580                     break;
3581                   case H_REQUESTED:
3582                     /* Happens if we are ignoring a move list that is not
3583                      * the one we just requested.  Common if the user
3584                      * tries to observe two games without turning off
3585                      * getMoveList */
3586                     break;
3587                   case H_GETTING_MOVES:
3588                     /* Should not happen */
3589                     DisplayError(_("Error gathering move list: nested"), 0);
3590                     ics_getting_history = H_FALSE;
3591                     break;
3592                   case H_GOT_REQ_HEADER:
3593                     ics_getting_history = H_GETTING_MOVES;
3594                     started = STARTED_MOVES;
3595                     parse_pos = 0;
3596                     if (oldi > next_out) {
3597                         SendToPlayer(&buf[next_out], oldi - next_out);
3598                     }
3599                     break;
3600                   case H_GOT_UNREQ_HEADER:
3601                     ics_getting_history = H_GETTING_MOVES;
3602                     started = STARTED_MOVES_NOHIDE;
3603                     parse_pos = 0;
3604                     break;
3605                   case H_GOT_UNWANTED_HEADER:
3606                     ics_getting_history = H_FALSE;
3607                     break;
3608                 }
3609                 continue;
3610             }
3611
3612             if (looking_at(buf, &i, "% ") ||
3613                 ((started == STARTED_MOVES || started == STARTED_MOVES_NOHIDE)
3614                  && looking_at(buf, &i, "}*"))) { char *bookHit = NULL; // [HGM] book
3615                 if(soughtPending && nrOfSeekAds) { // [HGM] seekgraph: on ICC sought-list has no termination line
3616                     soughtPending = FALSE;
3617                     seekGraphUp = TRUE;
3618                     DrawSeekGraph();
3619                 }
3620                 if(suppressKibitz) next_out = i;
3621                 savingComment = FALSE;
3622                 suppressKibitz = 0;
3623                 switch (started) {
3624                   case STARTED_MOVES:
3625                   case STARTED_MOVES_NOHIDE:
3626                     memcpy(&parse[parse_pos], &buf[oldi], i - oldi);
3627                     parse[parse_pos + i - oldi] = NULLCHAR;
3628                     ParseGameHistory(parse);
3629 #if ZIPPY
3630                     if (appData.zippyPlay && first.initDone) {
3631                         FeedMovesToProgram(&first, forwardMostMove);
3632                         if (gameMode == IcsPlayingWhite) {
3633                             if (WhiteOnMove(forwardMostMove)) {
3634                                 if (first.sendTime) {
3635                                   if (first.useColors) {
3636                                     SendToProgram("black\n", &first);
3637                                   }
3638                                   SendTimeRemaining(&first, TRUE);
3639                                 }
3640                                 if (first.useColors) {
3641                                   SendToProgram("white\n", &first); // [HGM] book: made sending of "go\n" book dependent
3642                                 }
3643                                 bookHit = SendMoveToBookUser(forwardMostMove-1, &first, TRUE); // [HGM] book: probe book for initial pos
3644                                 first.maybeThinking = TRUE;
3645                             } else {
3646                                 if (first.usePlayother) {
3647                                   if (first.sendTime) {
3648                                     SendTimeRemaining(&first, TRUE);
3649                                   }
3650                                   SendToProgram("playother\n", &first);
3651                                   firstMove = FALSE;
3652                                 } else {
3653                                   firstMove = TRUE;
3654                                 }
3655                             }
3656                         } else if (gameMode == IcsPlayingBlack) {
3657                             if (!WhiteOnMove(forwardMostMove)) {
3658                                 if (first.sendTime) {
3659                                   if (first.useColors) {
3660                                     SendToProgram("white\n", &first);
3661                                   }
3662                                   SendTimeRemaining(&first, FALSE);
3663                                 }
3664                                 if (first.useColors) {
3665                                   SendToProgram("black\n", &first);
3666                                 }
3667                                 bookHit = SendMoveToBookUser(forwardMostMove-1, &first, TRUE);
3668                                 first.maybeThinking = TRUE;
3669                             } else {
3670                                 if (first.usePlayother) {
3671                                   if (first.sendTime) {
3672                                     SendTimeRemaining(&first, FALSE);
3673                                   }
3674                                   SendToProgram("playother\n", &first);
3675                                   firstMove = FALSE;
3676                                 } else {
3677                                   firstMove = TRUE;
3678                                 }
3679                             }
3680                         }
3681                     }
3682 #endif
3683                     if (gameMode == IcsObserving && ics_gamenum == -1) {
3684                         /* Moves came from oldmoves or moves command
3685                            while we weren't doing anything else.
3686                            */
3687                         currentMove = forwardMostMove;
3688                         ClearHighlights();/*!!could figure this out*/
3689                         flipView = appData.flipView;
3690                         DrawPosition(TRUE, boards[currentMove]);
3691                         DisplayBothClocks();
3692                         snprintf(str, MSG_SIZ, "%s %s %s",
3693                                 gameInfo.white, _("vs."),  gameInfo.black);
3694                         DisplayTitle(str);
3695                         gameMode = IcsIdle;
3696                     } else {
3697                         /* Moves were history of an active game */
3698                         if (gameInfo.resultDetails != NULL) {
3699                             free(gameInfo.resultDetails);
3700                             gameInfo.resultDetails = NULL;
3701                         }
3702                     }
3703                     HistorySet(parseList, backwardMostMove,
3704                                forwardMostMove, currentMove-1);
3705                     DisplayMove(currentMove - 1);
3706                     if (started == STARTED_MOVES) next_out = i;
3707                     started = STARTED_NONE;
3708                     ics_getting_history = H_FALSE;
3709                     break;
3710
3711                   case STARTED_OBSERVE:
3712                     started = STARTED_NONE;
3713                     SendToICS(ics_prefix);
3714                     SendToICS("refresh\n");
3715                     break;
3716
3717                   default:
3718                     break;
3719                 }
3720                 if(bookHit) { // [HGM] book: simulate book reply
3721                     static char bookMove[MSG_SIZ]; // a bit generous?
3722
3723                     programStats.nodes = programStats.depth = programStats.time =
3724                     programStats.score = programStats.got_only_move = 0;
3725                     sprintf(programStats.movelist, "%s (xbook)", bookHit);
3726
3727                     safeStrCpy(bookMove, "move ", sizeof(bookMove)/sizeof(bookMove[0]));
3728                     strcat(bookMove, bookHit);
3729                     HandleMachineMove(bookMove, &first);
3730                 }
3731                 continue;
3732             }
3733
3734             if ((started == STARTED_MOVES || started == STARTED_BOARD ||
3735                  started == STARTED_HOLDINGS ||
3736                  started == STARTED_MOVES_NOHIDE) && i >= leftover_len) {
3737                 /* Accumulate characters in move list or board */
3738                 parse[parse_pos++] = buf[i];
3739             }
3740
3741             /* Start of game messages.  Mostly we detect start of game
3742                when the first board image arrives.  On some versions
3743                of the ICS, though, we need to do a "refresh" after starting
3744                to observe in order to get the current board right away. */
3745             if (looking_at(buf, &i, "Adding game * to observation list")) {
3746                 started = STARTED_OBSERVE;
3747                 continue;
3748             }
3749
3750             /* Handle auto-observe */
3751             if (appData.autoObserve &&
3752                 (gameMode == IcsIdle || gameMode == BeginningOfGame) &&
3753                 looking_at(buf, &i, "Game notification: * (*) vs. * (*)")) {
3754                 char *player;
3755                 /* Choose the player that was highlighted, if any. */
3756                 if (star_match[0][0] == '\033' ||
3757                     star_match[1][0] != '\033') {
3758                     player = star_match[0];
3759                 } else {
3760                     player = star_match[2];
3761                 }
3762                 snprintf(str, MSG_SIZ, "%sobserve %s\n",
3763                         ics_prefix, StripHighlightAndTitle(player));
3764                 SendToICS(str);
3765
3766                 /* Save ratings from notify string */
3767                 safeStrCpy(player1Name, star_match[0], sizeof(player1Name)/sizeof(player1Name[0]));
3768                 player1Rating = string_to_rating(star_match[1]);
3769                 safeStrCpy(player2Name, star_match[2], sizeof(player2Name)/sizeof(player2Name[0]));
3770                 player2Rating = string_to_rating(star_match[3]);
3771
3772                 if (appData.debugMode)
3773                   fprintf(debugFP,
3774                           "Ratings from 'Game notification:' %s %d, %s %d\n",
3775                           player1Name, player1Rating,
3776                           player2Name, player2Rating);
3777
3778                 continue;
3779             }
3780
3781             /* Deal with automatic examine mode after a game,
3782                and with IcsObserving -> IcsExamining transition */
3783             if (looking_at(buf, &i, "Entering examine mode for game *") ||
3784                 looking_at(buf, &i, "has made you an examiner of game *")) {
3785
3786                 int gamenum = atoi(star_match[0]);
3787                 if ((gameMode == IcsIdle || gameMode == IcsObserving) &&
3788                     gamenum == ics_gamenum) {
3789                     /* We were already playing or observing this game;
3790                        no need to refetch history */
3791                     gameMode = IcsExamining;
3792                     if (pausing) {
3793                         pauseExamForwardMostMove = forwardMostMove;
3794                     } else if (currentMove < forwardMostMove) {
3795                         ForwardInner(forwardMostMove);
3796                     }
3797                 } else {
3798                     /* I don't think this case really can happen */
3799                     SendToICS(ics_prefix);
3800                     SendToICS("refresh\n");
3801                 }
3802                 continue;
3803             }
3804
3805             /* Error messages */
3806 //          if (ics_user_moved) {
3807             if (1) { // [HGM] old way ignored error after move type in; ics_user_moved is not set then!
3808                 if (looking_at(buf, &i, "Illegal move") ||
3809                     looking_at(buf, &i, "Not a legal move") ||
3810                     looking_at(buf, &i, "Your king is in check") ||
3811                     looking_at(buf, &i, "It isn't your turn") ||
3812                     looking_at(buf, &i, "It is not your move")) {
3813                     /* Illegal move */
3814                     if (ics_user_moved && forwardMostMove > backwardMostMove) { // only backup if we already moved
3815                         currentMove = forwardMostMove-1;
3816                         DisplayMove(currentMove - 1); /* before DMError */
3817                         DrawPosition(FALSE, boards[currentMove]);
3818                         SwitchClocks(forwardMostMove-1); // [HGM] race
3819                         DisplayBothClocks();
3820                     }
3821                     DisplayMoveError(_("Illegal move (rejected by ICS)")); // [HGM] but always relay error msg
3822                     ics_user_moved = 0;
3823                     continue;
3824                 }
3825             }
3826
3827             if (looking_at(buf, &i, "still have time") ||
3828                 looking_at(buf, &i, "not out of time") ||
3829                 looking_at(buf, &i, "either player is out of time") ||
3830                 looking_at(buf, &i, "has timeseal; checking")) {
3831                 /* We must have called his flag a little too soon */
3832                 whiteFlag = blackFlag = FALSE;
3833                 continue;
3834             }
3835
3836             if (looking_at(buf, &i, "added * seconds to") ||
3837                 looking_at(buf, &i, "seconds were added to")) {
3838                 /* Update the clocks */
3839                 SendToICS(ics_prefix);
3840                 SendToICS("refresh\n");
3841                 continue;
3842             }
3843
3844             if (!ics_clock_paused && looking_at(buf, &i, "clock paused")) {
3845                 ics_clock_paused = TRUE;
3846                 StopClocks();
3847                 continue;
3848             }
3849
3850             if (ics_clock_paused && looking_at(buf, &i, "clock resumed")) {
3851                 ics_clock_paused = FALSE;
3852                 StartClocks();
3853                 continue;
3854             }
3855
3856             /* Grab player ratings from the Creating: message.
3857                Note we have to check for the special case when
3858                the ICS inserts things like [white] or [black]. */
3859             if (looking_at(buf, &i, "Creating: * (*)* * (*)") ||
3860                 looking_at(buf, &i, "Creating: * (*) [*] * (*)")) {
3861                 /* star_matches:
3862                    0    player 1 name (not necessarily white)
3863                    1    player 1 rating
3864                    2    empty, white, or black (IGNORED)
3865                    3    player 2 name (not necessarily black)
3866                    4    player 2 rating
3867
3868                    The names/ratings are sorted out when the game
3869                    actually starts (below).
3870                 */
3871                 safeStrCpy(player1Name, StripHighlightAndTitle(star_match[0]), sizeof(player1Name)/sizeof(player1Name[0]));
3872                 player1Rating = string_to_rating(star_match[1]);
3873                 safeStrCpy(player2Name, StripHighlightAndTitle(star_match[3]), sizeof(player2Name)/sizeof(player2Name[0]));
3874                 player2Rating = string_to_rating(star_match[4]);
3875
3876                 if (appData.debugMode)
3877                   fprintf(debugFP,
3878                           "Ratings from 'Creating:' %s %d, %s %d\n",
3879                           player1Name, player1Rating,
3880                           player2Name, player2Rating);
3881
3882                 continue;
3883             }
3884
3885             /* Improved generic start/end-of-game messages */
3886             if ((tkind=0, looking_at(buf, &i, "{Game * (* vs. *) *}*")) ||
3887                 (tkind=1, looking_at(buf, &i, "{Game * (*(*) vs. *(*)) *}*"))){
3888                 /* If tkind == 0: */
3889                 /* star_match[0] is the game number */
3890                 /*           [1] is the white player's name */
3891                 /*           [2] is the black player's name */
3892                 /* For end-of-game: */
3893                 /*           [3] is the reason for the game end */
3894                 /*           [4] is a PGN end game-token, preceded by " " */
3895                 /* For start-of-game: */
3896                 /*           [3] begins with "Creating" or "Continuing" */
3897                 /*           [4] is " *" or empty (don't care). */
3898                 int gamenum = atoi(star_match[0]);
3899                 char *whitename, *blackname, *why, *endtoken;
3900                 ChessMove endtype = EndOfFile;
3901
3902                 if (tkind == 0) {
3903                   whitename = star_match[1];
3904                   blackname = star_match[2];
3905                   why = star_match[3];
3906                   endtoken = star_match[4];
3907                 } else {
3908                   whitename = star_match[1];
3909                   blackname = star_match[3];
3910                   why = star_match[5];
3911                   endtoken = star_match[6];
3912                 }
3913
3914                 /* Game start messages */
3915                 if (strncmp(why, "Creating ", 9) == 0 ||
3916                     strncmp(why, "Continuing ", 11) == 0) {
3917                     gs_gamenum = gamenum;
3918                     safeStrCpy(gs_kind, strchr(why, ' ') + 1,sizeof(gs_kind)/sizeof(gs_kind[0]));
3919                     if(ics_gamenum == -1) // [HGM] only if we are not already involved in a game (because gin=1 sends us such messages)
3920                     VariantSwitch(boards[currentMove], StringToVariant(gs_kind)); // [HGM] variantswitch: even before we get first board
3921 #if ZIPPY
3922                     if (appData.zippyPlay) {
3923                         ZippyGameStart(whitename, blackname);
3924                     }
3925 #endif /*ZIPPY*/
3926                     partnerBoardValid = FALSE; // [HGM] bughouse
3927                     continue;
3928                 }
3929
3930                 /* Game end messages */
3931                 if (gameMode == IcsIdle || gameMode == BeginningOfGame ||
3932                     ics_gamenum != gamenum) {
3933                     continue;
3934                 }
3935                 while (endtoken[0] == ' ') endtoken++;
3936                 switch (endtoken[0]) {
3937                   case '*':
3938                   default:
3939                     endtype = GameUnfinished;
3940                     break;
3941                   case '0':
3942                     endtype = BlackWins;
3943                     break;
3944                   case '1':
3945                     if (endtoken[1] == '/')
3946                       endtype = GameIsDrawn;
3947                     else
3948                       endtype = WhiteWins;
3949                     break;
3950                 }
3951                 GameEnds(endtype, why, GE_ICS);
3952 #if ZIPPY
3953                 if (appData.zippyPlay && first.initDone) {
3954                     ZippyGameEnd(endtype, why);
3955                     if (first.pr == NoProc) {
3956                       /* Start the next process early so that we'll
3957                          be ready for the next challenge */
3958                       StartChessProgram(&first);
3959                     }
3960                     /* Send "new" early, in case this command takes
3961                        a long time to finish, so that we'll be ready
3962                        for the next challenge. */
3963                     gameInfo.variant = VariantNormal; // [HGM] variantswitch: suppress sending of 'variant'
3964                     Reset(TRUE, TRUE);
3965                 }
3966 #endif /*ZIPPY*/
3967                 if(appData.bgObserve && partnerBoardValid) DrawPosition(TRUE, partnerBoard);
3968                 continue;
3969             }
3970
3971             if (looking_at(buf, &i, "Removing game * from observation") ||
3972                 looking_at(buf, &i, "no longer observing game *") ||
3973                 looking_at(buf, &i, "Game * (*) has no examiners")) {
3974                 if (gameMode == IcsObserving &&
3975                     atoi(star_match[0]) == ics_gamenum)
3976                   {
3977                       /* icsEngineAnalyze */
3978                       if (appData.icsEngineAnalyze) {
3979                             ExitAnalyzeMode();
3980                             ModeHighlight();
3981                       }
3982                       StopClocks();
3983                       gameMode = IcsIdle;
3984                       ics_gamenum = -1;
3985                       ics_user_moved = FALSE;
3986                   }
3987                 continue;
3988             }
3989
3990             if (looking_at(buf, &i, "no longer examining game *")) {
3991                 if (gameMode == IcsExamining &&
3992                     atoi(star_match[0]) == ics_gamenum)
3993                   {
3994                       gameMode = IcsIdle;
3995                       ics_gamenum = -1;
3996                       ics_user_moved = FALSE;
3997                   }
3998                 continue;
3999             }
4000
4001             /* Advance leftover_start past any newlines we find,
4002                so only partial lines can get reparsed */
4003             if (looking_at(buf, &i, "\n")) {
4004                 prevColor = curColor;
4005                 if (curColor != ColorNormal) {
4006                     if (oldi > next_out) {
4007                         SendToPlayer(&buf[next_out], oldi - next_out);
4008                         next_out = oldi;
4009                     }
4010                     Colorize(ColorNormal, FALSE);
4011                     curColor = ColorNormal;
4012                 }
4013                 if (started == STARTED_BOARD) {
4014                     started = STARTED_NONE;
4015                     parse[parse_pos] = NULLCHAR;
4016                     ParseBoard12(parse);
4017                     ics_user_moved = 0;
4018
4019                     /* Send premove here */
4020                     if (appData.premove) {
4021                       char str[MSG_SIZ];
4022                       if (currentMove == 0 &&
4023                           gameMode == IcsPlayingWhite &&
4024                           appData.premoveWhite) {
4025                         snprintf(str, MSG_SIZ, "%s\n", appData.premoveWhiteText);
4026                         if (appData.debugMode)
4027                           fprintf(debugFP, "Sending premove:\n");
4028                         SendToICS(str);
4029                       } else if (currentMove == 1 &&
4030                                  gameMode == IcsPlayingBlack &&
4031                                  appData.premoveBlack) {
4032                         snprintf(str, MSG_SIZ, "%s\n", appData.premoveBlackText);
4033                         if (appData.debugMode)
4034                           fprintf(debugFP, "Sending premove:\n");
4035                         SendToICS(str);
4036                       } else if (gotPremove) {
4037                         gotPremove = 0;
4038                         ClearPremoveHighlights();
4039                         if (appData.debugMode)
4040                           fprintf(debugFP, "Sending premove:\n");
4041                           UserMoveEvent(premoveFromX, premoveFromY,
4042                                         premoveToX, premoveToY,
4043                                         premovePromoChar);
4044                       }
4045                     }
4046
4047                     /* Usually suppress following prompt */
4048                     if (!(forwardMostMove == 0 && gameMode == IcsExamining)) {
4049                         while(looking_at(buf, &i, "\n")); // [HGM] skip empty lines
4050                         if (looking_at(buf, &i, "*% ")) {
4051                             savingComment = FALSE;
4052                             suppressKibitz = 0;
4053                         }
4054                     }
4055                     next_out = i;
4056                 } else if (started == STARTED_HOLDINGS) {
4057                     int gamenum;
4058                     char new_piece[MSG_SIZ];
4059                     started = STARTED_NONE;
4060                     parse[parse_pos] = NULLCHAR;
4061                     if (appData.debugMode)
4062                       fprintf(debugFP, "Parsing holdings: %s, currentMove = %d\n",
4063                                                         parse, currentMove);
4064                     if (sscanf(parse, " game %d", &gamenum) == 1) {
4065                       if(gamenum == ics_gamenum) { // [HGM] bughouse: old code if part of foreground game
4066                         if (gameInfo.variant == VariantNormal) {
4067                           /* [HGM] We seem to switch variant during a game!
4068                            * Presumably no holdings were displayed, so we have
4069                            * to move the position two files to the right to
4070                            * create room for them!
4071                            */
4072                           VariantClass newVariant;
4073                           switch(gameInfo.boardWidth) { // base guess on board width
4074                                 case 9:  newVariant = VariantShogi; break;
4075                                 case 10: newVariant = VariantGreat; break;
4076                                 default: newVariant = VariantCrazyhouse; break;
4077                           }
4078                           VariantSwitch(boards[currentMove], newVariant); /* temp guess */
4079                           /* Get a move list just to see the header, which
4080                              will tell us whether this is really bug or zh */
4081                           if (ics_getting_history == H_FALSE) {
4082                             ics_getting_history = H_REQUESTED;
4083                             snprintf(str, MSG_SIZ, "%smoves %d\n", ics_prefix, gamenum);
4084                             SendToICS(str);
4085                           }
4086                         }
4087                         new_piece[0] = NULLCHAR;
4088                         sscanf(parse, "game %d white [%s black [%s <- %s",
4089                                &gamenum, white_holding, black_holding,
4090                                new_piece);
4091                         white_holding[strlen(white_holding)-1] = NULLCHAR;
4092                         black_holding[strlen(black_holding)-1] = NULLCHAR;
4093                         /* [HGM] copy holdings to board holdings area */
4094                         CopyHoldings(boards[forwardMostMove], white_holding, WhitePawn);
4095                         CopyHoldings(boards[forwardMostMove], black_holding, BlackPawn);
4096                         boards[forwardMostMove][HOLDINGS_SET] = 1; // flag holdings as set
4097 #if ZIPPY
4098                         if (appData.zippyPlay && first.initDone) {
4099                             ZippyHoldings(white_holding, black_holding,
4100                                           new_piece);
4101                         }
4102 #endif /*ZIPPY*/
4103                         if (tinyLayout || smallLayout) {
4104                             char wh[16], bh[16];
4105                             PackHolding(wh, white_holding);
4106                             PackHolding(bh, black_holding);
4107                             snprintf(str, MSG_SIZ, "[%s-%s] %s-%s", wh, bh,
4108                                     gameInfo.white, gameInfo.black);
4109                         } else {
4110                           snprintf(str, MSG_SIZ, "%s [%s] %s %s [%s]",
4111                                     gameInfo.white, white_holding, _("vs."),
4112                                     gameInfo.black, black_holding);
4113                         }
4114                         if(!partnerUp) // [HGM] bughouse: when peeking at partner game we already know what he captured...
4115                         DrawPosition(FALSE, boards[currentMove]);
4116                         DisplayTitle(str);
4117                       } else if(appData.bgObserve) { // [HGM] bughouse: holdings of other game => background
4118                         sscanf(parse, "game %d white [%s black [%s <- %s",
4119                                &gamenum, white_holding, black_holding,
4120                                new_piece);
4121                         white_holding[strlen(white_holding)-1] = NULLCHAR;
4122                         black_holding[strlen(black_holding)-1] = NULLCHAR;
4123                         /* [HGM] copy holdings to partner-board holdings area */
4124                         CopyHoldings(partnerBoard, white_holding, WhitePawn);
4125                         CopyHoldings(partnerBoard, black_holding, BlackPawn);
4126                         if(twoBoards) { partnerUp = 1; flipView = !flipView; } // [HGM] dual: always draw
4127                         if(partnerUp) DrawPosition(FALSE, partnerBoard);
4128                         if(twoBoards) { partnerUp = 0; flipView = !flipView; }
4129                       }
4130                     }
4131                     /* Suppress following prompt */
4132                     if (looking_at(buf, &i, "*% ")) {
4133                         if(strchr(star_match[0], 7)) SendToPlayer("\007", 1); // Bell(); // FICS fuses bell for next board with prompt in zh captures
4134                         savingComment = FALSE;
4135                         suppressKibitz = 0;
4136                     }
4137                     next_out = i;
4138                 }
4139                 continue;
4140             }
4141
4142             i++;                /* skip unparsed character and loop back */
4143         }
4144
4145         if (started != STARTED_MOVES && started != STARTED_BOARD && !suppressKibitz && // [HGM] kibitz
4146 //          started != STARTED_HOLDINGS && i > next_out) { // [HGM] should we compare to leftover_start in stead of i?
4147 //          SendToPlayer(&buf[next_out], i - next_out);
4148             started != STARTED_HOLDINGS && leftover_start > next_out) {
4149             SendToPlayer(&buf[next_out], leftover_start - next_out);
4150             next_out = i;
4151         }
4152
4153         leftover_len = buf_len - leftover_start;
4154         /* if buffer ends with something we couldn't parse,
4155            reparse it after appending the next read */
4156
4157     } else if (count == 0) {
4158         RemoveInputSource(isr);
4159         DisplayFatalError(_("Connection closed by ICS"), 0, 0);
4160     } else {
4161         DisplayFatalError(_("Error reading from ICS"), error, 1);
4162     }
4163 }
4164
4165
4166 /* Board style 12 looks like this:
4167
4168    <12> r-b---k- pp----pp ---bP--- ---p---- q------- ------P- P--Q--BP -----R-K W -1 0 0 0 0 0 0 paf MaxII 0 2 12 21 25 234 174 24 Q/d7-a4 (0:06) Qxa4 0 0
4169
4170  * The "<12> " is stripped before it gets to this routine.  The two
4171  * trailing 0's (flip state and clock ticking) are later addition, and
4172  * some chess servers may not have them, or may have only the first.
4173  * Additional trailing fields may be added in the future.
4174  */
4175
4176 #define PATTERN "%c%d%d%d%d%d%d%d%s%s%d%d%d%d%d%d%d%d%s%s%s%d%d"
4177
4178 #define RELATION_OBSERVING_PLAYED    0
4179 #define RELATION_OBSERVING_STATIC   -2   /* examined, oldmoves, or smoves */
4180 #define RELATION_PLAYING_MYMOVE      1
4181 #define RELATION_PLAYING_NOTMYMOVE  -1
4182 #define RELATION_EXAMINING           2
4183 #define RELATION_ISOLATED_BOARD     -3
4184 #define RELATION_STARTING_POSITION  -4   /* FICS only */
4185
4186 void
4187 ParseBoard12 (char *string)
4188 {
4189 #if ZIPPY
4190     int i, takeback;
4191     char *bookHit = NULL; // [HGM] book
4192 #endif
4193     GameMode newGameMode;
4194     int gamenum, newGame, newMove, relation, basetime, increment, ics_flip = 0;
4195     int j, k, n, moveNum, white_stren, black_stren, white_time, black_time;
4196     int double_push, castle_ws, castle_wl, castle_bs, castle_bl, irrev_count;
4197     char to_play, board_chars[200];
4198     char move_str[MSG_SIZ], str[MSG_SIZ], elapsed_time[MSG_SIZ];
4199     char black[32], white[32];
4200     Board board;
4201     int prevMove = currentMove;
4202     int ticking = 2;
4203     ChessMove moveType;
4204     int fromX, fromY, toX, toY;
4205     char promoChar;
4206     int ranks=1, files=0; /* [HGM] ICS80: allow variable board size */
4207     Boolean weird = FALSE, reqFlag = FALSE;
4208
4209     fromX = fromY = toX = toY = -1;
4210
4211     newGame = FALSE;
4212
4213     if (appData.debugMode)
4214       fprintf(debugFP, _("Parsing board: %s\n"), string);
4215
4216     move_str[0] = NULLCHAR;
4217     elapsed_time[0] = NULLCHAR;
4218     {   /* [HGM] figure out how many ranks and files the board has, for ICS extension used by Capablanca server */
4219         int  i = 0, j;
4220         while(i < 199 && (string[i] != ' ' || string[i+2] != ' ')) {
4221             if(string[i] == ' ') { ranks++; files = 0; }
4222             else files++;
4223             if(!strchr(" -pnbrqkPNBRQK" , string[i])) weird = TRUE; // test for fairies
4224             i++;
4225         }
4226         for(j = 0; j <i; j++) board_chars[j] = string[j];
4227         board_chars[i] = '\0';
4228         string += i + 1;
4229     }
4230     n = sscanf(string, PATTERN, &to_play, &double_push,
4231                &castle_ws, &castle_wl, &castle_bs, &castle_bl, &irrev_count,
4232                &gamenum, white, black, &relation, &basetime, &increment,
4233                &white_stren, &black_stren, &white_time, &black_time,
4234                &moveNum, str, elapsed_time, move_str, &ics_flip,
4235                &ticking);
4236
4237     if (n < 21) {
4238         snprintf(str, MSG_SIZ, _("Failed to parse board string:\n\"%s\""), string);
4239         DisplayError(str, 0);
4240         return;
4241     }
4242
4243     /* Convert the move number to internal form */
4244     moveNum = (moveNum - 1) * 2;
4245     if (to_play == 'B') moveNum++;
4246     if (moveNum > framePtr) { // [HGM] vari: do not run into saved variations
4247       DisplayFatalError(_("Game too long; increase MAX_MOVES and recompile"),
4248                         0, 1);
4249       return;
4250     }
4251
4252     switch (relation) {
4253       case RELATION_OBSERVING_PLAYED:
4254       case RELATION_OBSERVING_STATIC:
4255         if (gamenum == -1) {
4256             /* Old ICC buglet */
4257             relation = RELATION_OBSERVING_STATIC;
4258         }
4259         newGameMode = IcsObserving;
4260         break;
4261       case RELATION_PLAYING_MYMOVE:
4262       case RELATION_PLAYING_NOTMYMOVE:
4263         newGameMode =
4264           ((relation == RELATION_PLAYING_MYMOVE) == (to_play == 'W')) ?
4265             IcsPlayingWhite : IcsPlayingBlack;
4266         soughtPending =FALSE; // [HGM] seekgraph: solve race condition
4267         break;
4268       case RELATION_EXAMINING:
4269         newGameMode = IcsExamining;
4270         break;
4271       case RELATION_ISOLATED_BOARD:
4272       default:
4273         /* Just display this board.  If user was doing something else,
4274            we will forget about it until the next board comes. */
4275         newGameMode = IcsIdle;
4276         break;
4277       case RELATION_STARTING_POSITION:
4278         newGameMode = gameMode;
4279         break;
4280     }
4281
4282     if((gameMode == IcsPlayingWhite || gameMode == IcsPlayingBlack ||
4283         gameMode == IcsObserving && appData.dualBoard) // also allow use of second board for observing two games
4284          && newGameMode == IcsObserving && gamenum != ics_gamenum && appData.bgObserve) {
4285       // [HGM] bughouse: don't act on alien boards while we play. Just parse the board and save it */
4286       int fac = strchr(elapsed_time, '.') ? 1 : 1000;
4287       static int lastBgGame = -1;
4288       char *toSqr;
4289       for (k = 0; k < ranks; k++) {
4290         for (j = 0; j < files; j++)
4291           board[k][j+gameInfo.holdingsWidth] = CharToPiece(board_chars[(ranks-1-k)*(files+1) + j]);
4292         if(gameInfo.holdingsWidth > 1) {
4293              board[k][0] = board[k][BOARD_WIDTH-1] = EmptySquare;
4294              board[k][1] = board[k][BOARD_WIDTH-2] = (ChessSquare) 0;;
4295         }
4296       }
4297       CopyBoard(partnerBoard, board);
4298       if(toSqr = strchr(str, '/')) { // extract highlights from long move
4299         partnerBoard[EP_STATUS-3] = toSqr[1] - AAA; // kludge: hide highlighting info in board
4300         partnerBoard[EP_STATUS-4] = toSqr[2] - ONE;
4301       } else partnerBoard[EP_STATUS-4] = partnerBoard[EP_STATUS-3] = -1;
4302       if(toSqr = strchr(str, '-')) {
4303         partnerBoard[EP_STATUS-1] = toSqr[1] - AAA;
4304         partnerBoard[EP_STATUS-2] = toSqr[2] - ONE;
4305       } else partnerBoard[EP_STATUS-1] = partnerBoard[EP_STATUS-2] = -1;
4306       if(appData.dualBoard && !twoBoards) { twoBoards = 1; InitDrawingSizes(-2,0); }
4307       if(twoBoards) { partnerUp = 1; flipView = !flipView; } // [HGM] dual
4308       if(partnerUp) DrawPosition(FALSE, partnerBoard);
4309       if(twoBoards) {
4310           DisplayWhiteClock(white_time*fac, to_play == 'W');
4311           DisplayBlackClock(black_time*fac, to_play != 'W');
4312           activePartner = to_play;
4313           if(gamenum != lastBgGame) {
4314               char buf[MSG_SIZ];
4315               snprintf(buf, MSG_SIZ, "%s %s %s", white, _("vs."), black);
4316               DisplayTitle(buf);
4317           }
4318           lastBgGame = gamenum;
4319           activePartnerTime = to_play == 'W' ? white_time*fac : black_time*fac;
4320                       partnerUp = 0; flipView = !flipView; } // [HGM] dual
4321       snprintf(partnerStatus, MSG_SIZ,"W: %d:%02d B: %d:%02d (%d-%d) %c", white_time*fac/60000, (white_time*fac%60000)/1000,
4322                  (black_time*fac/60000), (black_time*fac%60000)/1000, white_stren, black_stren, to_play);
4323       DisplayMessage(partnerStatus, "");
4324         partnerBoardValid = TRUE;
4325       return;
4326     }
4327
4328     if(appData.dualBoard && appData.bgObserve) {
4329         if((newGameMode == IcsPlayingWhite || newGameMode == IcsPlayingBlack) && moveNum == 1)
4330             SendToICS(ics_prefix), SendToICS("pobserve\n");
4331         else if(newGameMode == IcsObserving && (gameMode == BeginningOfGame || gameMode == IcsIdle)) {
4332             char buf[MSG_SIZ];
4333             snprintf(buf, MSG_SIZ, "%spobserve %s\n", ics_prefix, white);
4334             SendToICS(buf);
4335         }
4336     }
4337
4338     /* Modify behavior for initial board display on move listing
4339        of wild games.
4340        */
4341     switch (ics_getting_history) {
4342       case H_FALSE:
4343       case H_REQUESTED:
4344         break;
4345       case H_GOT_REQ_HEADER:
4346       case H_GOT_UNREQ_HEADER:
4347         /* This is the initial position of the current game */
4348         gamenum = ics_gamenum;
4349         moveNum = 0;            /* old ICS bug workaround */
4350         if (to_play == 'B') {
4351           startedFromSetupPosition = TRUE;
4352           blackPlaysFirst = TRUE;
4353           moveNum = 1;
4354           if (forwardMostMove == 0) forwardMostMove = 1;
4355           if (backwardMostMove == 0) backwardMostMove = 1;
4356           if (currentMove == 0) currentMove = 1;
4357         }
4358         newGameMode = gameMode;
4359         relation = RELATION_STARTING_POSITION; /* ICC needs this */
4360         break;
4361       case H_GOT_UNWANTED_HEADER:
4362         /* This is an initial board that we don't want */
4363         return;
4364       case H_GETTING_MOVES:
4365         /* Should not happen */
4366         DisplayError(_("Error gathering move list: extra board"), 0);
4367         ics_getting_history = H_FALSE;
4368         return;
4369     }
4370
4371    if (gameInfo.boardHeight != ranks || gameInfo.boardWidth != files ||
4372                                         move_str[1] == '@' && !gameInfo.holdingsWidth ||
4373                                         weird && (int)gameInfo.variant < (int)VariantShogi) {
4374      /* [HGM] We seem to have switched variant unexpectedly
4375       * Try to guess new variant from board size
4376       */
4377           VariantClass newVariant = VariantFairy; // if 8x8, but fairies present
4378           if(ranks == 8 && files == 10) newVariant = VariantCapablanca; else
4379           if(ranks == 10 && files == 9) newVariant = VariantXiangqi; else
4380           if(ranks == 8 && files == 12) newVariant = VariantCourier; else
4381           if(ranks == 9 && files == 9)  newVariant = VariantShogi; else
4382           if(ranks == 10 && files == 10) newVariant = VariantGrand; else
4383           if(!weird) newVariant = move_str[1] == '@' ? VariantCrazyhouse : VariantNormal;
4384           VariantSwitch(boards[currentMove], newVariant); /* temp guess */
4385           /* Get a move list just to see the header, which
4386              will tell us whether this is really bug or zh */
4387           if (ics_getting_history == H_FALSE) {
4388             ics_getting_history = H_REQUESTED; reqFlag = TRUE;
4389             snprintf(str, MSG_SIZ, "%smoves %d\n", ics_prefix, gamenum);
4390             SendToICS(str);
4391           }
4392     }
4393
4394     /* Take action if this is the first board of a new game, or of a
4395        different game than is currently being displayed.  */
4396     if (gamenum != ics_gamenum || newGameMode != gameMode ||
4397         relation == RELATION_ISOLATED_BOARD) {
4398
4399         /* Forget the old game and get the history (if any) of the new one */
4400         if (gameMode != BeginningOfGame) {
4401           Reset(TRUE, TRUE);
4402         }
4403         newGame = TRUE;
4404         if (appData.autoRaiseBoard) BoardToTop();
4405         prevMove = -3;
4406         if (gamenum == -1) {
4407             newGameMode = IcsIdle;
4408         } else if ((moveNum > 0 || newGameMode == IcsObserving) && newGameMode != IcsIdle &&
4409                    appData.getMoveList && !reqFlag) {
4410             /* Need to get game history */
4411             ics_getting_history = H_REQUESTED;
4412             snprintf(str, MSG_SIZ, "%smoves %d\n", ics_prefix, gamenum);
4413             SendToICS(str);
4414         }
4415
4416         /* Initially flip the board to have black on the bottom if playing
4417            black or if the ICS flip flag is set, but let the user change
4418            it with the Flip View button. */
4419         flipView = appData.autoFlipView ?
4420           (newGameMode == IcsPlayingBlack) || ics_flip :
4421           appData.flipView;
4422
4423         /* Done with values from previous mode; copy in new ones */
4424         gameMode = newGameMode;
4425         ModeHighlight();
4426         ics_gamenum = gamenum;
4427         if (gamenum == gs_gamenum) {
4428             int klen = strlen(gs_kind);
4429             if (gs_kind[klen - 1] == '.') gs_kind[klen - 1] = NULLCHAR;
4430             snprintf(str, MSG_SIZ, "ICS %s", gs_kind);
4431             gameInfo.event = StrSave(str);
4432         } else {
4433             gameInfo.event = StrSave("ICS game");
4434         }
4435         gameInfo.site = StrSave(appData.icsHost);
4436         gameInfo.date = PGNDate();
4437         gameInfo.round = StrSave("-");
4438         gameInfo.white = StrSave(white);
4439         gameInfo.black = StrSave(black);
4440         timeControl = basetime * 60 * 1000;
4441         timeControl_2 = 0;
4442         timeIncrement = increment * 1000;
4443         movesPerSession = 0;
4444         gameInfo.timeControl = TimeControlTagValue();
4445         VariantSwitch(boards[currentMove], StringToVariant(gameInfo.event) );
4446   if (appData.debugMode) {
4447     fprintf(debugFP, "ParseBoard says variant = '%s'\n", gameInfo.event);
4448     fprintf(debugFP, "recognized as %s\n", VariantName(gameInfo.variant));
4449     setbuf(debugFP, NULL);
4450   }
4451
4452         gameInfo.outOfBook = NULL;
4453
4454         /* Do we have the ratings? */
4455         if (strcmp(player1Name, white) == 0 &&
4456             strcmp(player2Name, black) == 0) {
4457             if (appData.debugMode)
4458               fprintf(debugFP, "Remembered ratings: W %d, B %d\n",
4459                       player1Rating, player2Rating);
4460             gameInfo.whiteRating = player1Rating;
4461             gameInfo.blackRating = player2Rating;
4462         } else if (strcmp(player2Name, white) == 0 &&
4463                    strcmp(player1Name, black) == 0) {
4464             if (appData.debugMode)
4465               fprintf(debugFP, "Remembered ratings: W %d, B %d\n",
4466                       player2Rating, player1Rating);
4467             gameInfo.whiteRating = player2Rating;
4468             gameInfo.blackRating = player1Rating;
4469         }
4470         player1Name[0] = player2Name[0] = NULLCHAR;
4471
4472         /* Silence shouts if requested */
4473         if (appData.quietPlay &&
4474             (gameMode == IcsPlayingWhite || gameMode == IcsPlayingBlack)) {
4475             SendToICS(ics_prefix);
4476             SendToICS("set shout 0\n");
4477         }
4478     }
4479
4480     /* Deal with midgame name changes */
4481     if (!newGame) {
4482         if (!gameInfo.white || strcmp(gameInfo.white, white) != 0) {
4483             if (gameInfo.white) free(gameInfo.white);
4484             gameInfo.white = StrSave(white);
4485         }
4486         if (!gameInfo.black || strcmp(gameInfo.black, black) != 0) {
4487             if (gameInfo.black) free(gameInfo.black);
4488             gameInfo.black = StrSave(black);
4489         }
4490     }
4491
4492     /* Throw away game result if anything actually changes in examine mode */
4493     if (gameMode == IcsExamining && !newGame) {
4494         gameInfo.result = GameUnfinished;
4495         if (gameInfo.resultDetails != NULL) {
4496             free(gameInfo.resultDetails);
4497             gameInfo.resultDetails = NULL;
4498         }
4499     }
4500
4501     /* In pausing && IcsExamining mode, we ignore boards coming
4502        in if they are in a different variation than we are. */
4503     if (pauseExamInvalid) return;
4504     if (pausing && gameMode == IcsExamining) {
4505         if (moveNum <= pauseExamForwardMostMove) {
4506             pauseExamInvalid = TRUE;
4507             forwardMostMove = pauseExamForwardMostMove;
4508             return;
4509         }
4510     }
4511
4512   if (appData.debugMode) {
4513     fprintf(debugFP, "load %dx%d board\n", files, ranks);
4514   }
4515     /* Parse the board */
4516     for (k = 0; k < ranks; k++) {
4517       for (j = 0; j < files; j++)
4518         board[k][j+gameInfo.holdingsWidth] = CharToPiece(board_chars[(ranks-1-k)*(files+1) + j]);
4519       if(gameInfo.holdingsWidth > 1) {
4520            board[k][0] = board[k][BOARD_WIDTH-1] = EmptySquare;
4521            board[k][1] = board[k][BOARD_WIDTH-2] = (ChessSquare) 0;;
4522       }
4523     }
4524     if(moveNum==0 && gameInfo.variant == VariantSChess) {
4525       board[5][BOARD_RGHT+1] = WhiteAngel;
4526       board[6][BOARD_RGHT+1] = WhiteMarshall;
4527       board[1][0] = BlackMarshall;
4528       board[2][0] = BlackAngel;
4529       board[1][1] = board[2][1] = board[5][BOARD_RGHT] = board[6][BOARD_RGHT] = 1;
4530     }
4531     CopyBoard(boards[moveNum], board);
4532     boards[moveNum][HOLDINGS_SET] = 0; // [HGM] indicate holdings not set
4533     if (moveNum == 0) {
4534         startedFromSetupPosition =
4535           !CompareBoards(board, initialPosition);
4536         if(startedFromSetupPosition)
4537             initialRulePlies = irrev_count; /* [HGM] 50-move counter offset */
4538     }
4539
4540     /* [HGM] Set castling rights. Take the outermost Rooks,
4541        to make it also work for FRC opening positions. Note that board12
4542        is really defective for later FRC positions, as it has no way to
4543        indicate which Rook can castle if they are on the same side of King.
4544        For the initial position we grant rights to the outermost Rooks,
4545        and remember thos rights, and we then copy them on positions
4546        later in an FRC game. This means WB might not recognize castlings with
4547        Rooks that have moved back to their original position as illegal,
4548        but in ICS mode that is not its job anyway.
4549     */
4550     if(moveNum == 0 || gameInfo.variant != VariantFischeRandom)
4551     { int i, j; ChessSquare wKing = WhiteKing, bKing = BlackKing;
4552
4553         for(i=BOARD_LEFT, j=NoRights; i<BOARD_RGHT; i++)
4554             if(board[0][i] == WhiteRook) j = i;
4555         initialRights[0] = boards[moveNum][CASTLING][0] = (castle_ws == 0 && gameInfo.variant != VariantFischeRandom ? NoRights : j);
4556         for(i=BOARD_RGHT-1, j=NoRights; i>=BOARD_LEFT; i--)
4557             if(board[0][i] == WhiteRook) j = i;
4558         initialRights[1] = boards[moveNum][CASTLING][1] = (castle_wl == 0 && gameInfo.variant != VariantFischeRandom ? NoRights : j);
4559         for(i=BOARD_LEFT, j=NoRights; i<BOARD_RGHT; i++)
4560             if(board[BOARD_HEIGHT-1][i] == BlackRook) j = i;
4561         initialRights[3] = boards[moveNum][CASTLING][3] = (castle_bs == 0 && gameInfo.variant != VariantFischeRandom ? NoRights : j);
4562         for(i=BOARD_RGHT-1, j=NoRights; i>=BOARD_LEFT; i--)
4563             if(board[BOARD_HEIGHT-1][i] == BlackRook) j = i;
4564         initialRights[4] = boards[moveNum][CASTLING][4] = (castle_bl == 0 && gameInfo.variant != VariantFischeRandom ? NoRights : j);
4565
4566         boards[moveNum][CASTLING][2] = boards[moveNum][CASTLING][5] = NoRights;
4567         if(gameInfo.variant == VariantKnightmate) { wKing = WhiteUnicorn; bKing = BlackUnicorn; }
4568         for(k=BOARD_LEFT; k<BOARD_RGHT; k++)
4569             if(board[0][k] == wKing) initialRights[2] = boards[moveNum][CASTLING][2] = k;
4570         for(k=BOARD_LEFT; k<BOARD_RGHT; k++)
4571             if(board[BOARD_HEIGHT-1][k] == bKing)
4572                 initialRights[5] = boards[moveNum][CASTLING][5] = k;
4573         if(gameInfo.variant == VariantTwoKings) {
4574             // In TwoKings looking for a King does not work, so always give castling rights to a King on e1/e8
4575             if(board[0][4] == wKing) initialRights[2] = boards[moveNum][CASTLING][2] = 4;
4576             if(board[BOARD_HEIGHT-1][4] == bKing) initialRights[5] = boards[moveNum][CASTLING][5] = 4;
4577         }
4578     } else { int r;
4579         r = boards[moveNum][CASTLING][0] = initialRights[0];
4580         if(board[0][r] != WhiteRook) boards[moveNum][CASTLING][0] = NoRights;
4581         r = boards[moveNum][CASTLING][1] = initialRights[1];
4582         if(board[0][r] != WhiteRook) boards[moveNum][CASTLING][1] = NoRights;
4583         r = boards[moveNum][CASTLING][3] = initialRights[3];
4584         if(board[BOARD_HEIGHT-1][r] != BlackRook) boards[moveNum][CASTLING][3] = NoRights;
4585         r = boards[moveNum][CASTLING][4] = initialRights[4];
4586         if(board[BOARD_HEIGHT-1][r] != BlackRook) boards[moveNum][CASTLING][4] = NoRights;
4587         /* wildcastle kludge: always assume King has rights */
4588         r = boards[moveNum][CASTLING][2] = initialRights[2];
4589         r = boards[moveNum][CASTLING][5] = initialRights[5];
4590     }
4591     /* [HGM] e.p. rights. Assume that ICS sends file number here? */
4592     boards[moveNum][EP_STATUS] = EP_NONE;
4593     if(str[0] == 'P') boards[moveNum][EP_STATUS] = EP_PAWN_MOVE;
4594     if(strchr(move_str, 'x')) boards[moveNum][EP_STATUS] = EP_CAPTURE;
4595     if(double_push !=  -1) boards[moveNum][EP_STATUS] = double_push + BOARD_LEFT;
4596
4597
4598     if (ics_getting_history == H_GOT_REQ_HEADER ||
4599         ics_getting_history == H_GOT_UNREQ_HEADER) {
4600         /* This was an initial position from a move list, not
4601            the current position */
4602         return;
4603     }
4604
4605     /* Update currentMove and known move number limits */
4606     newMove = newGame || moveNum > forwardMostMove;
4607
4608     if (newGame) {
4609         forwardMostMove = backwardMostMove = currentMove = moveNum;
4610         if (gameMode == IcsExamining && moveNum == 0) {
4611           /* Workaround for ICS limitation: we are not told the wild
4612              type when starting to examine a game.  But if we ask for
4613              the move list, the move list header will tell us */
4614             ics_getting_history = H_REQUESTED;
4615             snprintf(str, MSG_SIZ, "%smoves %d\n", ics_prefix, gamenum);
4616             SendToICS(str);
4617         }
4618     } else if (moveNum == forwardMostMove + 1 || moveNum == forwardMostMove
4619                || (moveNum < forwardMostMove && moveNum >= backwardMostMove)) {
4620 #if ZIPPY
4621         /* [DM] If we found takebacks during icsEngineAnalyze try send to engine */
4622         /* [HGM] applied this also to an engine that is silently watching        */
4623         if (appData.zippyPlay && moveNum < forwardMostMove && first.initDone &&
4624             (gameMode == IcsObserving || gameMode == IcsExamining) &&
4625             gameInfo.variant == currentlyInitializedVariant) {
4626           takeback = forwardMostMove - moveNum;
4627           for (i = 0; i < takeback; i++) {
4628             if (appData.debugMode) fprintf(debugFP, "take back move\n");
4629             SendToProgram("undo\n", &first);
4630           }
4631         }
4632 #endif
4633
4634         forwardMostMove = moveNum;
4635         if (!pausing || currentMove > forwardMostMove)
4636           currentMove = forwardMostMove;
4637     } else {
4638         /* New part of history that is not contiguous with old part */
4639         if (pausing && gameMode == IcsExamining) {
4640             pauseExamInvalid = TRUE;
4641             forwardMostMove = pauseExamForwardMostMove;
4642             return;
4643         }
4644         if (gameMode == IcsExamining && moveNum > 0 && appData.getMoveList) {
4645 #if ZIPPY
4646             if(appData.zippyPlay && forwardMostMove > 0 && first.initDone) {
4647                 // [HGM] when we will receive the move list we now request, it will be
4648                 // fed to the engine from the first move on. So if the engine is not
4649                 // in the initial position now, bring it there.
4650                 InitChessProgram(&first, 0);
4651             }
4652 #endif
4653             ics_getting_history = H_REQUESTED;
4654             snprintf(str, MSG_SIZ, "%smoves %d\n", ics_prefix, gamenum);
4655             SendToICS(str);
4656         }
4657         forwardMostMove = backwardMostMove = currentMove = moveNum;
4658     }
4659
4660     /* Update the clocks */
4661     if (strchr(elapsed_time, '.')) {
4662       /* Time is in ms */
4663       timeRemaining[0][moveNum] = whiteTimeRemaining = white_time;
4664       timeRemaining[1][moveNum] = blackTimeRemaining = black_time;
4665     } else {
4666       /* Time is in seconds */
4667       timeRemaining[0][moveNum] = whiteTimeRemaining = white_time * 1000;
4668       timeRemaining[1][moveNum] = blackTimeRemaining = black_time * 1000;
4669     }
4670
4671
4672 #if ZIPPY
4673     if (appData.zippyPlay && newGame &&
4674         gameMode != IcsObserving && gameMode != IcsIdle &&
4675         gameMode != IcsExamining)
4676       ZippyFirstBoard(moveNum, basetime, increment);
4677 #endif
4678
4679     /* Put the move on the move list, first converting
4680        to canonical algebraic form. */
4681     if (moveNum > 0) {
4682   if (appData.debugMode) {
4683     if (appData.debugMode) { int f = forwardMostMove;
4684         fprintf(debugFP, "parseboard %d, castling = %d %d %d %d %d %d\n", f,
4685                 boards[f][CASTLING][0],boards[f][CASTLING][1],boards[f][CASTLING][2],
4686                 boards[f][CASTLING][3],boards[f][CASTLING][4],boards[f][CASTLING][5]);
4687     }
4688     fprintf(debugFP, "accepted move %s from ICS, parse it.\n", move_str);
4689     fprintf(debugFP, "moveNum = %d\n", moveNum);
4690     fprintf(debugFP, "board = %d-%d x %d\n", BOARD_LEFT, BOARD_RGHT, BOARD_HEIGHT);
4691     setbuf(debugFP, NULL);
4692   }
4693         if (moveNum <= backwardMostMove) {
4694             /* We don't know what the board looked like before
4695                this move.  Punt. */
4696           safeStrCpy(parseList[moveNum - 1], move_str, sizeof(parseList[moveNum - 1])/sizeof(parseList[moveNum - 1][0]));
4697             strcat(parseList[moveNum - 1], " ");
4698             strcat(parseList[moveNum - 1], elapsed_time);
4699             moveList[moveNum - 1][0] = NULLCHAR;
4700         } else if (strcmp(move_str, "none") == 0) {
4701             // [HGM] long SAN: swapped order; test for 'none' before parsing move
4702             /* Again, we don't know what the board looked like;
4703                this is really the start of the game. */
4704             parseList[moveNum - 1][0] = NULLCHAR;
4705             moveList[moveNum - 1][0] = NULLCHAR;
4706             backwardMostMove = moveNum;
4707             startedFromSetupPosition = TRUE;
4708             fromX = fromY = toX = toY = -1;
4709         } else {
4710           // [HGM] long SAN: if legality-testing is off, disambiguation might not work or give wrong move.
4711           //                 So we parse the long-algebraic move string in stead of the SAN move
4712           int valid; char buf[MSG_SIZ], *prom;
4713
4714           if(gameInfo.variant == VariantShogi && !strchr(move_str, '=') && !strchr(move_str, '@'))
4715                 strcat(move_str, "="); // if ICS does not say 'promote' on non-drop, we defer.
4716           // str looks something like "Q/a1-a2"; kill the slash
4717           if(str[1] == '/')
4718             snprintf(buf, MSG_SIZ,"%c%s", str[0], str+2);
4719           else  safeStrCpy(buf, str, sizeof(buf)/sizeof(buf[0])); // might be castling
4720           if((prom = strstr(move_str, "=")) && !strstr(buf, "="))
4721                 strcat(buf, prom); // long move lacks promo specification!
4722           if(!appData.testLegality && move_str[1] != '@') { // drops never ambiguous (parser chokes on long form!)
4723                 if(appData.debugMode)
4724                         fprintf(debugFP, "replaced ICS move '%s' by '%s'\n", move_str, buf);
4725                 safeStrCpy(move_str, buf, MSG_SIZ);
4726           }
4727           valid = ParseOneMove(move_str, moveNum - 1, &moveType,
4728                                 &fromX, &fromY, &toX, &toY, &promoChar)
4729                || ParseOneMove(buf, moveNum - 1, &moveType,
4730                                 &fromX, &fromY, &toX, &toY, &promoChar);
4731           // end of long SAN patch
4732           if (valid) {
4733             (void) CoordsToAlgebraic(boards[moveNum - 1],
4734                                      PosFlags(moveNum - 1),
4735                                      fromY, fromX, toY, toX, promoChar,
4736                                      parseList[moveNum-1]);
4737             switch (MateTest(boards[moveNum], PosFlags(moveNum)) ) {
4738               case MT_NONE:
4739               case MT_STALEMATE:
4740               default:
4741                 break;
4742               case MT_CHECK:
4743                 if(gameInfo.variant != VariantShogi)
4744                     strcat(parseList[moveNum - 1], "+");
4745                 break;
4746               case MT_CHECKMATE:
4747               case MT_STAINMATE: // [HGM] xq: for notation stalemate that wins counts as checkmate
4748                 strcat(parseList[moveNum - 1], "#");
4749                 break;
4750             }
4751             strcat(parseList[moveNum - 1], " ");
4752             strcat(parseList[moveNum - 1], elapsed_time);
4753             /* currentMoveString is set as a side-effect of ParseOneMove */
4754             if(gameInfo.variant == VariantShogi && currentMoveString[4]) currentMoveString[4] = '^';
4755             safeStrCpy(moveList[moveNum - 1], currentMoveString, sizeof(moveList[moveNum - 1])/sizeof(moveList[moveNum - 1][0]));
4756             strcat(moveList[moveNum - 1], "\n");
4757
4758             if(gameInfo.holdingsWidth && !appData.disguise && gameInfo.variant != VariantSuper && gameInfo.variant != VariantGreat
4759                && gameInfo.variant != VariantGrand&& gameInfo.variant != VariantSChess) // inherit info that ICS does not give from previous board
4760               for(k=0; k<ranks; k++) for(j=BOARD_LEFT; j<BOARD_RGHT; j++) {
4761                 ChessSquare old, new = boards[moveNum][k][j];
4762                   if(fromY == DROP_RANK && k==toY && j==toX) continue; // dropped pieces always stand for themselves
4763                   old = (k==toY && j==toX) ? boards[moveNum-1][fromY][fromX] : boards[moveNum-1][k][j]; // trace back mover
4764                   if(old == new) continue;
4765                   if(old == PROMOTED new) boards[moveNum][k][j] = old; // prevent promoted pieces to revert to primordial ones
4766                   else if(new == WhiteWazir || new == BlackWazir) {
4767                       if(old < WhiteCannon || old >= BlackPawn && old < BlackCannon)
4768                            boards[moveNum][k][j] = PROMOTED old; // choose correct type of Gold in promotion
4769                       else boards[moveNum][k][j] = old; // preserve type of Gold
4770                   } else if((old == WhitePawn || old == BlackPawn) && new != EmptySquare) // Pawn promotions (but not e.p.capture!)
4771                       boards[moveNum][k][j] = PROMOTED new; // use non-primordial representation of chosen piece
4772               }
4773           } else {
4774             /* Move from ICS was illegal!?  Punt. */
4775             if (appData.debugMode) {
4776               fprintf(debugFP, "Illegal move from ICS '%s'\n", move_str);
4777               fprintf(debugFP, "board L=%d, R=%d, H=%d, holdings=%d\n", BOARD_LEFT, BOARD_RGHT, BOARD_HEIGHT, gameInfo.holdingsWidth);
4778             }
4779             safeStrCpy(parseList[moveNum - 1], move_str, sizeof(parseList[moveNum - 1])/sizeof(parseList[moveNum - 1][0]));
4780             strcat(parseList[moveNum - 1], " ");
4781             strcat(parseList[moveNum - 1], elapsed_time);
4782             moveList[moveNum - 1][0] = NULLCHAR;
4783             fromX = fromY = toX = toY = -1;
4784           }
4785         }
4786   if (appData.debugMode) {
4787     fprintf(debugFP, "Move parsed to '%s'\n", parseList[moveNum - 1]);
4788     setbuf(debugFP, NULL);
4789   }
4790
4791 #if ZIPPY
4792         /* Send move to chess program (BEFORE animating it). */
4793         if (appData.zippyPlay && !newGame && newMove &&
4794            (!appData.getMoveList || backwardMostMove == 0) && first.initDone) {
4795
4796             if ((gameMode == IcsPlayingWhite && WhiteOnMove(moveNum)) ||
4797                 (gameMode == IcsPlayingBlack && !WhiteOnMove(moveNum))) {
4798                 if (moveList[moveNum - 1][0] == NULLCHAR) {
4799                   snprintf(str, MSG_SIZ, _("Couldn't parse move \"%s\" from ICS"),
4800                             move_str);
4801                     DisplayError(str, 0);
4802                 } else {
4803                     if (first.sendTime) {
4804                         SendTimeRemaining(&first, gameMode == IcsPlayingWhite);
4805                     }
4806                     bookHit = SendMoveToBookUser(moveNum - 1, &first, FALSE); // [HGM] book
4807                     if (firstMove && !bookHit) {
4808                         firstMove = FALSE;
4809                         if (first.useColors) {
4810                           SendToProgram(gameMode == IcsPlayingWhite ?
4811                                         "white\ngo\n" :
4812                                         "black\ngo\n", &first);
4813                         } else {
4814                           SendToProgram("go\n", &first);
4815                         }
4816                         first.maybeThinking = TRUE;
4817                     }
4818                 }
4819             } else if (gameMode == IcsObserving || gameMode == IcsExamining) {
4820               if (moveList[moveNum - 1][0] == NULLCHAR) {
4821                 snprintf(str, MSG_SIZ, _("Couldn't parse move \"%s\" from ICS"), move_str);
4822                 DisplayError(str, 0);
4823               } else {
4824                 if(gameInfo.variant == currentlyInitializedVariant) // [HGM] refrain sending moves engine can't understand!
4825                 SendMoveToProgram(moveNum - 1, &first);
4826               }
4827             }
4828         }
4829 #endif
4830     }
4831
4832     if (moveNum > 0 && !gotPremove && !appData.noGUI) {
4833         /* If move comes from a remote source, animate it.  If it
4834            isn't remote, it will have already been animated. */
4835         if (!pausing && !ics_user_moved && prevMove == moveNum - 1) {
4836             AnimateMove(boards[moveNum - 1], fromX, fromY, toX, toY);
4837         }
4838         if (!pausing && appData.highlightLastMove) {
4839             SetHighlights(fromX, fromY, toX, toY);
4840         }
4841     }
4842
4843     /* Start the clocks */
4844     whiteFlag = blackFlag = FALSE;
4845     appData.clockMode = !(basetime == 0 && increment == 0);
4846     if (ticking == 0) {
4847       ics_clock_paused = TRUE;
4848       StopClocks();
4849     } else if (ticking == 1) {
4850       ics_clock_paused = FALSE;
4851     }
4852     if (gameMode == IcsIdle ||
4853         relation == RELATION_OBSERVING_STATIC ||
4854         relation == RELATION_EXAMINING ||
4855         ics_clock_paused)
4856       DisplayBothClocks();
4857     else
4858       StartClocks();
4859
4860     /* Display opponents and material strengths */
4861     if (gameInfo.variant != VariantBughouse &&
4862         gameInfo.variant != VariantCrazyhouse && !appData.noGUI) {
4863         if (tinyLayout || smallLayout) {
4864             if(gameInfo.variant == VariantNormal)
4865               snprintf(str, MSG_SIZ, "%s(%d) %s(%d) {%d %d}",
4866                     gameInfo.white, white_stren, gameInfo.black, black_stren,
4867                     basetime, increment);
4868             else
4869               snprintf(str, MSG_SIZ, "%s(%d) %s(%d) {%d %d w%d}",
4870                     gameInfo.white, white_stren, gameInfo.black, black_stren,
4871                     basetime, increment, (int) gameInfo.variant);
4872         } else {
4873             if(gameInfo.variant == VariantNormal)
4874               snprintf(str, MSG_SIZ, "%s (%d) %s %s (%d) {%d %d}",
4875                     gameInfo.white, white_stren, _("vs."), gameInfo.black, black_stren,
4876                     basetime, increment);
4877             else
4878               snprintf(str, MSG_SIZ, "%s (%d) %s %s (%d) {%d %d %s}",
4879                     gameInfo.white, white_stren, _("vs."), gameInfo.black, black_stren,
4880                     basetime, increment, VariantName(gameInfo.variant));
4881         }
4882         DisplayTitle(str);
4883   if (appData.debugMode) {
4884     fprintf(debugFP, "Display title '%s, gameInfo.variant = %d'\n", str, gameInfo.variant);
4885   }
4886     }
4887
4888
4889     /* Display the board */
4890     if (!pausing && !appData.noGUI) {
4891
4892       if (appData.premove)
4893           if (!gotPremove ||
4894              ((gameMode == IcsPlayingWhite) && (WhiteOnMove(currentMove))) ||
4895              ((gameMode == IcsPlayingBlack) && (!WhiteOnMove(currentMove))))
4896               ClearPremoveHighlights();
4897
4898       j = seekGraphUp; seekGraphUp = FALSE; // [HGM] seekgraph: when we draw a board, it overwrites the seek graph
4899         if(partnerUp) { flipView = originalFlip; partnerUp = FALSE; j = TRUE; } // [HGM] bughouse: restore view
4900       DrawPosition(j, boards[currentMove]);
4901
4902       DisplayMove(moveNum - 1);
4903       if (appData.ringBellAfterMoves && /*!ics_user_moved*/ // [HGM] use absolute method to recognize own move
4904             !((gameMode == IcsPlayingWhite) && (!WhiteOnMove(moveNum)) ||
4905               (gameMode == IcsPlayingBlack) &&  (WhiteOnMove(moveNum))   ) ) {
4906         if(newMove) RingBell(); else PlayIcsUnfinishedSound();
4907       }
4908     }
4909
4910     HistorySet(parseList, backwardMostMove, forwardMostMove, currentMove-1);
4911 #if ZIPPY
4912     if(bookHit) { // [HGM] book: simulate book reply
4913         static char bookMove[MSG_SIZ]; // a bit generous?
4914
4915         programStats.nodes = programStats.depth = programStats.time =
4916         programStats.score = programStats.got_only_move = 0;
4917         sprintf(programStats.movelist, "%s (xbook)", bookHit);
4918
4919         safeStrCpy(bookMove, "move ", sizeof(bookMove)/sizeof(bookMove[0]));
4920         strcat(bookMove, bookHit);
4921         HandleMachineMove(bookMove, &first);
4922     }
4923 #endif
4924 }
4925
4926 void
4927 GetMoveListEvent ()
4928 {
4929     char buf[MSG_SIZ];
4930     if (appData.icsActive && gameMode != IcsIdle && ics_gamenum > 0) {
4931         ics_getting_history = H_REQUESTED;
4932         snprintf(buf, MSG_SIZ, "%smoves %d\n", ics_prefix, ics_gamenum);
4933         SendToICS(buf);
4934     }
4935 }
4936
4937 void
4938 SendToBoth (char *msg)
4939 {   // to make it easy to keep two engines in step in dual analysis
4940     SendToProgram(msg, &first);
4941     if(second.analyzing) SendToProgram(msg, &second);
4942 }
4943
4944 void
4945 AnalysisPeriodicEvent (int force)
4946 {
4947     if (((programStats.ok_to_send == 0 || programStats.line_is_book)
4948          && !force) || !appData.periodicUpdates)
4949       return;
4950
4951     /* Send . command to Crafty to collect stats */
4952     SendToBoth(".\n");
4953
4954     /* Don't send another until we get a response (this makes
4955        us stop sending to old Crafty's which don't understand
4956        the "." command (sending illegal cmds resets node count & time,
4957        which looks bad)) */
4958     programStats.ok_to_send = 0;
4959 }
4960
4961 void
4962 ics_update_width (int new_width)
4963 {
4964         ics_printf("set width %d\n", new_width);
4965 }
4966
4967 void
4968 SendMoveToProgram (int moveNum, ChessProgramState *cps)
4969 {
4970     char buf[MSG_SIZ];
4971
4972     if(moveList[moveNum][1] == '@' && moveList[moveNum][0] == '@') {
4973         // null move in variant where engine does not understand it (for analysis purposes)
4974         SendBoard(cps, moveNum + 1); // send position after move in stead.
4975         return;
4976     }
4977     if (cps->useUsermove) {
4978       SendToProgram("usermove ", cps);
4979     }
4980     if (cps->useSAN) {
4981       char *space;
4982       if ((space = strchr(parseList[moveNum], ' ')) != NULL) {
4983         int len = space - parseList[moveNum];
4984         memcpy(buf, parseList[moveNum], len);
4985         buf[len++] = '\n';
4986         buf[len] = NULLCHAR;
4987       } else {
4988         snprintf(buf, MSG_SIZ,"%s\n", parseList[moveNum]);
4989       }
4990       SendToProgram(buf, cps);
4991     } else {
4992       if(cps->alphaRank) { /* [HGM] shogi: temporarily convert to shogi coordinates before sending */
4993         AlphaRank(moveList[moveNum], 4);
4994         SendToProgram(moveList[moveNum], cps);
4995         AlphaRank(moveList[moveNum], 4); // and back
4996       } else
4997       /* Added by Tord: Send castle moves in "O-O" in FRC games if required by
4998        * the engine. It would be nice to have a better way to identify castle
4999        * moves here. */
5000       if((gameInfo.variant == VariantFischeRandom || gameInfo.variant == VariantCapaRandom)
5001                                                                          && cps->useOOCastle) {
5002         int fromX = moveList[moveNum][0] - AAA;
5003         int fromY = moveList[moveNum][1] - ONE;
5004         int toX = moveList[moveNum][2] - AAA;
5005         int toY = moveList[moveNum][3] - ONE;
5006         if((boards[moveNum][fromY][fromX] == WhiteKing
5007             && boards[moveNum][toY][toX] == WhiteRook)
5008            || (boards[moveNum][fromY][fromX] == BlackKing
5009                && boards[moveNum][toY][toX] == BlackRook)) {
5010           if(toX > fromX) SendToProgram("O-O\n", cps);
5011           else SendToProgram("O-O-O\n", cps);
5012         }
5013         else SendToProgram(moveList[moveNum], cps);
5014       } else
5015       if(BOARD_HEIGHT > 10) { // [HGM] big: convert ranks to double-digit where needed
5016         if(moveList[moveNum][1] == '@' && (BOARD_HEIGHT < 16 || moveList[moveNum][0] <= 'Z')) { // drop move
5017           if(moveList[moveNum][0]== '@') snprintf(buf, MSG_SIZ, "@@@@\n"); else
5018           snprintf(buf, MSG_SIZ, "%c@%c%d%s", moveList[moveNum][0],
5019                                               moveList[moveNum][2], moveList[moveNum][3] - '0', moveList[moveNum]+4);
5020         } else
5021           snprintf(buf, MSG_SIZ, "%c%d%c%d%s", moveList[moveNum][0], moveList[moveNum][1] - '0',
5022                                                moveList[moveNum][2], moveList[moveNum][3] - '0', moveList[moveNum]+4);
5023         SendToProgram(buf, cps);
5024       }
5025       else SendToProgram(moveList[moveNum], cps);
5026       /* End of additions by Tord */
5027     }
5028
5029     /* [HGM] setting up the opening has brought engine in force mode! */
5030     /*       Send 'go' if we are in a mode where machine should play. */
5031     if( (moveNum == 0 && setboardSpoiledMachineBlack && cps == &first) &&
5032         (gameMode == TwoMachinesPlay   ||
5033 #if ZIPPY
5034          gameMode == IcsPlayingBlack     || gameMode == IcsPlayingWhite ||
5035 #endif
5036          gameMode == MachinePlaysBlack || gameMode == MachinePlaysWhite) ) {
5037         SendToProgram("go\n", cps);
5038   if (appData.debugMode) {
5039     fprintf(debugFP, "(extra)\n");
5040   }
5041     }
5042     setboardSpoiledMachineBlack = 0;
5043 }
5044
5045 void
5046 SendMoveToICS (ChessMove moveType, int fromX, int fromY, int toX, int toY, char promoChar)
5047 {
5048     char user_move[MSG_SIZ];
5049     char suffix[4];
5050
5051     if(gameInfo.variant == VariantSChess && promoChar) {
5052         snprintf(suffix, 4, "=%c", toX == BOARD_WIDTH<<1 ? ToUpper(promoChar) : ToLower(promoChar));
5053         if(moveType == NormalMove) moveType = WhitePromotion; // kludge to do gating
5054     } else suffix[0] = NULLCHAR;
5055
5056     switch (moveType) {
5057       default:
5058         snprintf(user_move, MSG_SIZ, _("say Internal error; bad moveType %d (%d,%d-%d,%d)"),
5059                 (int)moveType, fromX, fromY, toX, toY);
5060         DisplayError(user_move + strlen("say "), 0);
5061         break;
5062       case WhiteKingSideCastle:
5063       case BlackKingSideCastle:
5064       case WhiteQueenSideCastleWild:
5065       case BlackQueenSideCastleWild:
5066       /* PUSH Fabien */
5067       case WhiteHSideCastleFR:
5068       case BlackHSideCastleFR:
5069       /* POP Fabien */
5070         snprintf(user_move, MSG_SIZ, "o-o%s\n", suffix);
5071         break;
5072       case WhiteQueenSideCastle:
5073       case BlackQueenSideCastle:
5074       case WhiteKingSideCastleWild:
5075       case BlackKingSideCastleWild:
5076       /* PUSH Fabien */
5077       case WhiteASideCastleFR:
5078       case BlackASideCastleFR:
5079       /* POP Fabien */
5080         snprintf(user_move, MSG_SIZ, "o-o-o%s\n",suffix);
5081         break;
5082       case WhiteNonPromotion:
5083       case BlackNonPromotion:
5084         sprintf(user_move, "%c%c%c%c==\n", AAA + fromX, ONE + fromY, AAA + toX, ONE + toY);
5085         break;
5086       case WhitePromotion:
5087       case BlackPromotion:
5088         if(gameInfo.variant == VariantShatranj || gameInfo.variant == VariantCourier || gameInfo.variant == VariantMakruk)
5089           snprintf(user_move, MSG_SIZ, "%c%c%c%c=%c\n",
5090                 AAA + fromX, ONE + fromY, AAA + toX, ONE + toY,
5091                 PieceToChar(WhiteFerz));
5092         else if(gameInfo.variant == VariantGreat)
5093           snprintf(user_move, MSG_SIZ,"%c%c%c%c=%c\n",
5094                 AAA + fromX, ONE + fromY, AAA + toX, ONE + toY,
5095                 PieceToChar(WhiteMan));
5096         else
5097           snprintf(user_move, MSG_SIZ, "%c%c%c%c=%c\n",
5098                 AAA + fromX, ONE + fromY, AAA + toX, ONE + toY,
5099                 promoChar);
5100         break;
5101       case WhiteDrop:
5102       case BlackDrop:
5103       drop:
5104         snprintf(user_move, MSG_SIZ, "%c@%c%c\n",
5105                  ToUpper(PieceToChar((ChessSquare) fromX)),
5106                  AAA + toX, ONE + toY);
5107         break;
5108       case IllegalMove:  /* could be a variant we don't quite understand */
5109         if(fromY == DROP_RANK) goto drop; // We need 'IllegalDrop' move type?
5110       case NormalMove:
5111       case WhiteCapturesEnPassant:
5112       case BlackCapturesEnPassant:
5113         snprintf(user_move, MSG_SIZ,"%c%c%c%c\n",
5114                 AAA + fromX, ONE + fromY, AAA + toX, ONE + toY);
5115         break;
5116     }
5117     SendToICS(user_move);
5118     if(appData.keepAlive) // [HGM] alive: schedule sending of dummy 'date' command
5119         ScheduleDelayedEvent(KeepAlive, appData.keepAlive*60*1000);
5120 }
5121
5122 void
5123 UploadGameEvent ()
5124 {   // [HGM] upload: send entire stored game to ICS as long-algebraic moves.
5125     int i, last = forwardMostMove; // make sure ICS reply cannot pre-empt us by clearing fmm
5126     static char *castlingStrings[4] = { "none", "kside", "qside", "both" };
5127     if(gameMode == IcsObserving || gameMode == IcsPlayingBlack || gameMode == IcsPlayingWhite) {
5128       DisplayError(_("You cannot do this while you are playing or observing"), 0);
5129       return;
5130     }
5131     if(gameMode != IcsExamining) { // is this ever not the case?
5132         char buf[MSG_SIZ], *p, *fen, command[MSG_SIZ], bsetup = 0;
5133
5134         if(ics_type == ICS_ICC) { // on ICC match ourselves in applicable variant
5135           snprintf(command,MSG_SIZ, "match %s", ics_handle);
5136         } else { // on FICS we must first go to general examine mode
5137           safeStrCpy(command, "examine\nbsetup", sizeof(command)/sizeof(command[0])); // and specify variant within it with bsetups
5138         }
5139         if(gameInfo.variant != VariantNormal) {
5140             // try figure out wild number, as xboard names are not always valid on ICS
5141             for(i=1; i<=36; i++) {
5142               snprintf(buf, MSG_SIZ, "wild/%d", i);
5143                 if(StringToVariant(buf) == gameInfo.variant) break;
5144             }
5145             if(i<=36 && ics_type == ICS_ICC) snprintf(buf, MSG_SIZ,"%s w%d\n", command, i);
5146             else if(i == 22) snprintf(buf,MSG_SIZ, "%s fr\n", command);
5147             else snprintf(buf, MSG_SIZ,"%s %s\n", command, VariantName(gameInfo.variant));
5148         } else snprintf(buf, MSG_SIZ,"%s\n", ics_type == ICS_ICC ? command : "examine\n"); // match yourself or examine
5149         SendToICS(ics_prefix);
5150         SendToICS(buf);
5151         if(startedFromSetupPosition || backwardMostMove != 0) {
5152           fen = PositionToFEN(backwardMostMove, NULL);
5153           if(ics_type == ICS_ICC) { // on ICC we can simply send a complete FEN to set everything
5154             snprintf(buf, MSG_SIZ,"loadfen %s\n", fen);
5155             SendToICS(buf);
5156           } else { // FICS: everything has to set by separate bsetup commands
5157             p = strchr(fen, ' '); p[0] = NULLCHAR; // cut after board
5158             snprintf(buf, MSG_SIZ,"bsetup fen %s\n", fen);
5159             SendToICS(buf);
5160             if(!WhiteOnMove(backwardMostMove)) {
5161                 SendToICS("bsetup tomove black\n");
5162             }
5163             i = (strchr(p+3, 'K') != NULL) + 2*(strchr(p+3, 'Q') != NULL);
5164             snprintf(buf, MSG_SIZ,"bsetup wcastle %s\n", castlingStrings[i]);
5165             SendToICS(buf);
5166             i = (strchr(p+3, 'k') != NULL) + 2*(strchr(p+3, 'q') != NULL);
5167             snprintf(buf, MSG_SIZ, "bsetup bcastle %s\n", castlingStrings[i]);
5168             SendToICS(buf);
5169             i = boards[backwardMostMove][EP_STATUS];
5170             if(i >= 0) { // set e.p.
5171               snprintf(buf, MSG_SIZ,"bsetup eppos %c\n", i+AAA);
5172                 SendToICS(buf);
5173             }
5174             bsetup++;
5175           }
5176         }
5177       if(bsetup || ics_type != ICS_ICC && gameInfo.variant != VariantNormal)
5178             SendToICS("bsetup done\n"); // switch to normal examining.
5179     }
5180     for(i = backwardMostMove; i<last; i++) {
5181         char buf[20];
5182         snprintf(buf, sizeof(buf)/sizeof(buf[0]),"%s\n", parseList[i]);
5183         if((*buf == 'b' || *buf == 'B') && buf[1] == 'x') { // work-around for stupid FICS bug, which thinks bxc3 can be a Bishop move
5184             int len = strlen(moveList[i]);
5185             snprintf(buf, sizeof(buf)/sizeof(buf[0]),"%s", moveList[i]); // use long algebraic
5186             if(!isdigit(buf[len-2])) snprintf(buf+len-2, 20-len, "=%c\n", ToUpper(buf[len-2])); // promotion must have '=' in ICS format
5187         }
5188         SendToICS(buf);
5189     }
5190     SendToICS(ics_prefix);
5191     SendToICS(ics_type == ICS_ICC ? "tag result Game in progress\n" : "commit\n");
5192 }
5193
5194 void
5195 CoordsToComputerAlgebraic (int rf, int ff, int rt, int ft, char promoChar, char move[7])
5196 {
5197     if (rf == DROP_RANK) {
5198       if(ff == EmptySquare) sprintf(move, "@@@@\n"); else // [HGM] pass
5199       sprintf(move, "%c@%c%c\n",
5200                 ToUpper(PieceToChar((ChessSquare) ff)), AAA + ft, ONE + rt);
5201     } else {
5202         if (promoChar == 'x' || promoChar == NULLCHAR) {
5203           sprintf(move, "%c%c%c%c\n",
5204                     AAA + ff, ONE + rf, AAA + ft, ONE + rt);
5205         } else {
5206             sprintf(move, "%c%c%c%c%c\n",
5207                     AAA + ff, ONE + rf, AAA + ft, ONE + rt, promoChar);
5208         }
5209     }
5210 }
5211
5212 void
5213 ProcessICSInitScript (FILE *f)
5214 {
5215     char buf[MSG_SIZ];
5216
5217     while (fgets(buf, MSG_SIZ, f)) {
5218         SendToICSDelayed(buf,(long)appData.msLoginDelay);
5219     }
5220
5221     fclose(f);
5222 }
5223
5224
5225 static int lastX, lastY, selectFlag, dragging;
5226
5227 void
5228 Sweep (int step)
5229 {
5230     ChessSquare king = WhiteKing, pawn = WhitePawn, last = promoSweep;
5231     if(gameInfo.variant == VariantKnightmate) king = WhiteUnicorn;
5232     if(gameInfo.variant == VariantSuicide || gameInfo.variant == VariantGiveaway) king = EmptySquare;
5233     if(promoSweep >= BlackPawn) king = WHITE_TO_BLACK king, pawn = WHITE_TO_BLACK pawn;
5234     if(gameInfo.variant == VariantSpartan && pawn == BlackPawn) pawn = BlackLance, king = EmptySquare;
5235     if(fromY != BOARD_HEIGHT-2 && fromY != 1) pawn = EmptySquare;
5236     do {
5237         promoSweep -= step;
5238         if(promoSweep == EmptySquare) promoSweep = BlackPawn; // wrap
5239         else if((int)promoSweep == -1) promoSweep = WhiteKing;
5240         else if(promoSweep == BlackPawn && step < 0) promoSweep = WhitePawn;
5241         else if(promoSweep == WhiteKing && step > 0) promoSweep = BlackKing;
5242         if(!step) step = -1;
5243     } while(PieceToChar(promoSweep) == '.' || PieceToChar(promoSweep) == '~' || promoSweep == pawn ||
5244             appData.testLegality && (promoSweep == king ||
5245             gameInfo.variant == VariantShogi && promoSweep != PROMOTED last && last != PROMOTED promoSweep && last != promoSweep));
5246     if(toX >= 0) {
5247         int victim = boards[currentMove][toY][toX];
5248         boards[currentMove][toY][toX] = promoSweep;
5249         DrawPosition(FALSE, boards[currentMove]);
5250         boards[currentMove][toY][toX] = victim;
5251     } else
5252     ChangeDragPiece(promoSweep);
5253 }
5254
5255 int
5256 PromoScroll (int x, int y)
5257 {
5258   int step = 0;
5259
5260   if(promoSweep == EmptySquare || !appData.sweepSelect) return FALSE;
5261   if(abs(x - lastX) < 25 && abs(y - lastY) < 25) return FALSE;
5262   if( y > lastY + 2 ) step = -1; else if(y < lastY - 2) step = 1;
5263   if(!step) return FALSE;
5264   lastX = x; lastY = y;
5265   if((promoSweep < BlackPawn) == flipView) step = -step;
5266   if(step > 0) selectFlag = 1;
5267   if(!selectFlag) Sweep(step);
5268   return FALSE;
5269 }
5270
5271 void
5272 NextPiece (int step)
5273 {
5274     ChessSquare piece = boards[currentMove][toY][toX];
5275     do {
5276         pieceSweep -= step;
5277         if(pieceSweep == EmptySquare) pieceSweep = WhitePawn; // wrap
5278         if((int)pieceSweep == -1) pieceSweep = BlackKing;
5279         if(!step) step = -1;
5280     } while(PieceToChar(pieceSweep) == '.');
5281     boards[currentMove][toY][toX] = pieceSweep;
5282     DrawPosition(FALSE, boards[currentMove]);
5283     boards[currentMove][toY][toX] = piece;
5284 }
5285 /* [HGM] Shogi move preprocessor: swap digits for letters, vice versa */
5286 void
5287 AlphaRank (char *move, int n)
5288 {
5289 //    char *p = move, c; int x, y;
5290
5291     if (appData.debugMode) {
5292         fprintf(debugFP, "alphaRank(%s,%d)\n", move, n);
5293     }
5294
5295     if(move[1]=='*' &&
5296        move[2]>='0' && move[2]<='9' &&
5297        move[3]>='a' && move[3]<='x'    ) {
5298         move[1] = '@';
5299         move[2] = BOARD_RGHT  -1 - (move[2]-'1') + AAA;
5300         move[3] = BOARD_HEIGHT-1 - (move[3]-'a') + ONE;
5301     } else
5302     if(move[0]>='0' && move[0]<='9' &&
5303        move[1]>='a' && move[1]<='x' &&
5304        move[2]>='0' && move[2]<='9' &&
5305        move[3]>='a' && move[3]<='x'    ) {
5306         /* input move, Shogi -> normal */
5307         move[0] = BOARD_RGHT  -1 - (move[0]-'1') + AAA;
5308         move[1] = BOARD_HEIGHT-1 - (move[1]-'a') + ONE;
5309         move[2] = BOARD_RGHT  -1 - (move[2]-'1') + AAA;
5310         move[3] = BOARD_HEIGHT-1 - (move[3]-'a') + ONE;
5311     } else
5312     if(move[1]=='@' &&
5313        move[3]>='0' && move[3]<='9' &&
5314        move[2]>='a' && move[2]<='x'    ) {
5315         move[1] = '*';
5316         move[2] = BOARD_RGHT - 1 - (move[2]-AAA) + '1';
5317         move[3] = BOARD_HEIGHT-1 - (move[3]-ONE) + 'a';
5318     } else
5319     if(
5320        move[0]>='a' && move[0]<='x' &&
5321        move[3]>='0' && move[3]<='9' &&
5322        move[2]>='a' && move[2]<='x'    ) {
5323          /* output move, normal -> Shogi */
5324         move[0] = BOARD_RGHT - 1 - (move[0]-AAA) + '1';
5325         move[1] = BOARD_HEIGHT-1 - (move[1]-ONE) + 'a';
5326         move[2] = BOARD_RGHT - 1 - (move[2]-AAA) + '1';
5327         move[3] = BOARD_HEIGHT-1 - (move[3]-ONE) + 'a';
5328         if(move[4] == PieceToChar(BlackQueen)) move[4] = '+';
5329     }
5330     if (appData.debugMode) {
5331         fprintf(debugFP, "   out = '%s'\n", move);
5332     }
5333 }
5334
5335 char yy_textstr[8000];
5336
5337 /* Parser for moves from gnuchess, ICS, or user typein box */
5338 Boolean
5339 ParseOneMove (char *move, int moveNum, ChessMove *moveType, int *fromX, int *fromY, int *toX, int *toY, char *promoChar)
5340 {
5341     *moveType = yylexstr(moveNum, move, yy_textstr, sizeof yy_textstr);
5342
5343     switch (*moveType) {
5344       case WhitePromotion:
5345       case BlackPromotion:
5346       case WhiteNonPromotion:
5347       case BlackNonPromotion:
5348       case NormalMove:
5349       case WhiteCapturesEnPassant:
5350       case BlackCapturesEnPassant:
5351       case WhiteKingSideCastle:
5352       case WhiteQueenSideCastle:
5353       case BlackKingSideCastle:
5354       case BlackQueenSideCastle:
5355       case WhiteKingSideCastleWild:
5356       case WhiteQueenSideCastleWild:
5357       case BlackKingSideCastleWild:
5358       case BlackQueenSideCastleWild:
5359       /* Code added by Tord: */
5360       case WhiteHSideCastleFR:
5361       case WhiteASideCastleFR:
5362       case BlackHSideCastleFR:
5363       case BlackASideCastleFR:
5364       /* End of code added by Tord */
5365       case IllegalMove:         /* bug or odd chess variant */
5366         *fromX = currentMoveString[0] - AAA;
5367         *fromY = currentMoveString[1] - ONE;
5368         *toX = currentMoveString[2] - AAA;
5369         *toY = currentMoveString[3] - ONE;
5370         *promoChar = currentMoveString[4];
5371         if (*fromX < BOARD_LEFT || *fromX >= BOARD_RGHT || *fromY < 0 || *fromY >= BOARD_HEIGHT ||
5372             *toX < BOARD_LEFT || *toX >= BOARD_RGHT || *toY < 0 || *toY >= BOARD_HEIGHT) {
5373     if (appData.debugMode) {
5374         fprintf(debugFP, "Off-board move (%d,%d)-(%d,%d)%c, type = %d\n", *fromX, *fromY, *toX, *toY, *promoChar, *moveType);
5375     }
5376             *fromX = *fromY = *toX = *toY = 0;
5377             return FALSE;
5378         }
5379         if (appData.testLegality) {
5380           return (*moveType != IllegalMove);
5381         } else {
5382           return !(*fromX == *toX && *fromY == *toY) && boards[moveNum][*fromY][*fromX] != EmptySquare &&
5383                         WhiteOnMove(moveNum) == (boards[moveNum][*fromY][*fromX] < BlackPawn);
5384         }
5385
5386       case WhiteDrop:
5387       case BlackDrop:
5388         *fromX = *moveType == WhiteDrop ?
5389           (int) CharToPiece(ToUpper(currentMoveString[0])) :
5390           (int) CharToPiece(ToLower(currentMoveString[0]));
5391         *fromY = DROP_RANK;
5392         *toX = currentMoveString[2] - AAA;
5393         *toY = currentMoveString[3] - ONE;
5394         *promoChar = NULLCHAR;
5395         return TRUE;
5396
5397       case AmbiguousMove:
5398       case ImpossibleMove:
5399       case EndOfFile:
5400       case ElapsedTime:
5401       case Comment:
5402       case PGNTag:
5403       case NAG:
5404       case WhiteWins:
5405       case BlackWins:
5406       case GameIsDrawn:
5407       default:
5408     if (appData.debugMode) {
5409         fprintf(debugFP, "Impossible move %s, type = %d\n", currentMoveString, *moveType);
5410     }
5411         /* bug? */
5412         *fromX = *fromY = *toX = *toY = 0;
5413         *promoChar = NULLCHAR;
5414         return FALSE;
5415     }
5416 }
5417
5418 Boolean pushed = FALSE;
5419 char *lastParseAttempt;
5420
5421 void
5422 ParsePV (char *pv, Boolean storeComments, Boolean atEnd)
5423 { // Parse a string of PV moves, and append to current game, behind forwardMostMove
5424   int fromX, fromY, toX, toY; char promoChar;
5425   ChessMove moveType;
5426   Boolean valid;
5427   int nr = 0;
5428
5429   lastParseAttempt = pv; if(!*pv) return;    // turns out we crash when we parse an empty PV
5430   if ((gameMode == AnalyzeMode || gameMode == AnalyzeFile) && currentMove < forwardMostMove) {
5431     PushInner(currentMove, forwardMostMove); // [HGM] engine might not be thinking on forwardMost position!
5432     pushed = TRUE;
5433   }
5434   endPV = forwardMostMove;
5435   do {
5436     while(*pv == ' ' || *pv == '\n' || *pv == '\t') pv++; // must still read away whitespace
5437     if(nr == 0 && !storeComments && *pv == '(') pv++; // first (ponder) move can be in parentheses
5438     lastParseAttempt = pv;
5439     valid = ParseOneMove(pv, endPV, &moveType, &fromX, &fromY, &toX, &toY, &promoChar);
5440     if(!valid && nr == 0 &&
5441        ParseOneMove(pv, endPV-1, &moveType, &fromX, &fromY, &toX, &toY, &promoChar)){
5442         nr++; moveType = Comment; // First move has been played; kludge to make sure we continue
5443         // Hande case where played move is different from leading PV move
5444         CopyBoard(boards[endPV+1], boards[endPV-1]); // tentatively unplay last game move
5445         CopyBoard(boards[endPV+2], boards[endPV-1]); // and play first move of PV
5446         ApplyMove(fromX, fromY, toX, toY, promoChar, boards[endPV+2]);
5447         if(!CompareBoards(boards[endPV], boards[endPV+2])) {
5448           endPV += 2; // if position different, keep this
5449           moveList[endPV-1][0] = fromX + AAA;
5450           moveList[endPV-1][1] = fromY + ONE;
5451           moveList[endPV-1][2] = toX + AAA;
5452           moveList[endPV-1][3] = toY + ONE;
5453           parseList[endPV-1][0] = NULLCHAR;
5454           safeStrCpy(moveList[endPV-2], "_0_0", sizeof(moveList[endPV-2])/sizeof(moveList[endPV-2][0])); // suppress premove highlight on takeback move
5455         }
5456       }
5457     pv = strstr(pv, yy_textstr) + strlen(yy_textstr); // skip what we parsed
5458     if(nr == 0 && !storeComments && *pv == ')') pv++; // closing parenthesis of ponder move;
5459     if(moveType == Comment && storeComments) AppendComment(endPV, yy_textstr, FALSE);
5460     if(moveType == Comment || moveType == NAG || moveType == ElapsedTime) {
5461         valid++; // allow comments in PV
5462         continue;
5463     }
5464     nr++;
5465     if(endPV+1 > framePtr) break; // no space, truncate
5466     if(!valid) break;
5467     endPV++;
5468     CopyBoard(boards[endPV], boards[endPV-1]);
5469     ApplyMove(fromX, fromY, toX, toY, promoChar, boards[endPV]);
5470     CoordsToComputerAlgebraic(fromY, fromX, toY, toX, promoChar, moveList[endPV - 1]);
5471     strncat(moveList[endPV-1], "\n", MOVE_LEN);
5472     CoordsToAlgebraic(boards[endPV - 1],
5473                              PosFlags(endPV - 1),
5474                              fromY, fromX, toY, toX, promoChar,
5475                              parseList[endPV - 1]);
5476   } while(valid);
5477   if(atEnd == 2) return; // used hidden, for PV conversion
5478   currentMove = (atEnd || endPV == forwardMostMove) ? endPV : forwardMostMove + 1;
5479   if(currentMove == forwardMostMove) ClearPremoveHighlights(); else
5480   SetPremoveHighlights(moveList[currentMove-1][0]-AAA, moveList[currentMove-1][1]-ONE,
5481                        moveList[currentMove-1][2]-AAA, moveList[currentMove-1][3]-ONE);
5482   DrawPosition(TRUE, boards[currentMove]);
5483 }
5484
5485 int
5486 MultiPV (ChessProgramState *cps)
5487 {       // check if engine supports MultiPV, and if so, return the number of the option that sets it
5488         int i;
5489         for(i=0; i<cps->nrOptions; i++)
5490             if(!strcmp(cps->option[i].name, "MultiPV") && cps->option[i].type == Spin)
5491                 return i;
5492         return -1;
5493 }
5494
5495 Boolean
5496 LoadMultiPV (int x, int y, char *buf, int index, int *start, int *end, int pane)
5497 {
5498         int startPV, multi, lineStart, origIndex = index;
5499         char *p, buf2[MSG_SIZ];
5500         ChessProgramState *cps = (pane ? &second : &first);
5501
5502         if(index < 0 || index >= strlen(buf)) return FALSE; // sanity
5503         lastX = x; lastY = y;
5504         while(index > 0 && buf[index-1] != '\n') index--; // beginning of line
5505         lineStart = startPV = index;
5506         while(buf[index] != '\n') if(buf[index++] == '\t') startPV = index;
5507         if(index == startPV && (p = StrCaseStr(buf+index, "PV="))) startPV = p - buf + 3;
5508         index = startPV;
5509         do{ while(buf[index] && buf[index] != '\n') index++;
5510         } while(buf[index] == '\n' && buf[index+1] == '\\' && buf[index+2] == ' ' && index++); // join kibitzed PV continuation line
5511         buf[index] = 0;
5512         if(lineStart == 0 && gameMode == AnalyzeMode && (multi = MultiPV(cps)) >= 0) {
5513                 int n = cps->option[multi].value;
5514                 if(origIndex > 17 && origIndex < 24) { if(n>1) n--; } else if(origIndex > index - 6) n++;
5515                 snprintf(buf2, MSG_SIZ, "option MultiPV=%d\n", n);
5516                 if(cps->option[multi].value != n) SendToProgram(buf2, cps);
5517                 cps->option[multi].value = n;
5518                 *start = *end = 0;
5519                 return FALSE;
5520         } else if(strstr(buf+lineStart, "exclude:") == buf+lineStart) { // exclude moves clicked
5521                 ExcludeClick(origIndex - lineStart);
5522                 return FALSE;
5523         }
5524         ParsePV(buf+startPV, FALSE, gameMode != AnalyzeMode);
5525         *start = startPV; *end = index-1;
5526         return TRUE;
5527 }
5528
5529 char *
5530 PvToSAN (char *pv)
5531 {
5532         static char buf[10*MSG_SIZ];
5533         int i, k=0, savedEnd=endPV, saveFMM = forwardMostMove;
5534         *buf = NULLCHAR;
5535         if(forwardMostMove < endPV) PushInner(forwardMostMove, endPV); // shelve PV of PV-walk
5536         ParsePV(pv, FALSE, 2); // this appends PV to game, suppressing any display of it
5537         for(i = forwardMostMove; i<endPV; i++){
5538             if(i&1) snprintf(buf+k, 10*MSG_SIZ-k, "%s ", parseList[i]);
5539             else    snprintf(buf+k, 10*MSG_SIZ-k, "%d. %s ", i/2 + 1, parseList[i]);
5540             k += strlen(buf+k);
5541         }
5542         snprintf(buf+k, 10*MSG_SIZ-k, "%s", lastParseAttempt); // if we ran into stuff that could not be parsed, print it verbatim
5543         if(pushed) { PopInner(0); pushed = FALSE; } // restore game continuation shelved by ParsePV
5544         if(forwardMostMove < savedEnd) { PopInner(0); forwardMostMove = saveFMM; } // PopInner would set fmm to endPV!
5545         endPV = savedEnd;
5546         return buf;
5547 }
5548
5549 Boolean
5550 LoadPV (int x, int y)
5551 { // called on right mouse click to load PV
5552   int which = gameMode == TwoMachinesPlay && (WhiteOnMove(forwardMostMove) == (second.twoMachinesColor[0] == 'w'));
5553   lastX = x; lastY = y;
5554   ParsePV(lastPV[which], FALSE, TRUE); // load the PV of the thinking engine in the boards array.
5555   return TRUE;
5556 }
5557
5558 void
5559 UnLoadPV ()
5560 {
5561   int oldFMM = forwardMostMove; // N.B.: this was currentMove before PV was loaded!
5562   if(endPV < 0) return;
5563   if(appData.autoCopyPV) CopyFENToClipboard();
5564   endPV = -1;
5565   if(gameMode == AnalyzeMode && currentMove > forwardMostMove) {
5566         Boolean saveAnimate = appData.animate;
5567         if(pushed) {
5568             if(shiftKey && storedGames < MAX_VARIATIONS-2) { // wants to start variation, and there is space
5569                 if(storedGames == 1) GreyRevert(FALSE);      // we already pushed the tail, so just make it official
5570             } else storedGames--; // abandon shelved tail of original game
5571         }
5572         pushed = FALSE;
5573         forwardMostMove = currentMove;
5574         currentMove = oldFMM;
5575         appData.animate = FALSE;
5576         ToNrEvent(forwardMostMove);
5577         appData.animate = saveAnimate;
5578   }
5579   currentMove = forwardMostMove;
5580   if(pushed) { PopInner(0); pushed = FALSE; } // restore shelved game continuation
5581   ClearPremoveHighlights();
5582   DrawPosition(TRUE, boards[currentMove]);
5583 }
5584
5585 void
5586 MovePV (int x, int y, int h)
5587 { // step through PV based on mouse coordinates (called on mouse move)
5588   int margin = h>>3, step = 0, threshold = (pieceSweep == EmptySquare ? 10 : 15);
5589
5590   // we must somehow check if right button is still down (might be released off board!)
5591   if(endPV < 0 && pieceSweep == EmptySquare) return; // needed in XBoard because lastX/Y is shared :-(
5592   if(abs(x - lastX) < threshold && abs(y - lastY) < threshold) return;
5593   if( y > lastY + 2 ) step = -1; else if(y < lastY - 2) step = 1;
5594   if(!step) return;
5595   lastX = x; lastY = y;
5596
5597   if(pieceSweep != EmptySquare) { NextPiece(step); return; }
5598   if(endPV < 0) return;
5599   if(y < margin) step = 1; else
5600   if(y > h - margin) step = -1;
5601   if(currentMove + step > endPV || currentMove + step < forwardMostMove) step = 0;
5602   currentMove += step;
5603   if(currentMove == forwardMostMove) ClearPremoveHighlights(); else
5604   SetPremoveHighlights(moveList[currentMove-1][0]-AAA, moveList[currentMove-1][1]-ONE,
5605                        moveList[currentMove-1][2]-AAA, moveList[currentMove-1][3]-ONE);
5606   DrawPosition(FALSE, boards[currentMove]);
5607 }
5608
5609
5610 // [HGM] shuffle: a general way to suffle opening setups, applicable to arbitrary variants.
5611 // All positions will have equal probability, but the current method will not provide a unique
5612 // numbering scheme for arrays that contain 3 or more pieces of the same kind.
5613 #define DARK 1
5614 #define LITE 2
5615 #define ANY 3
5616
5617 int squaresLeft[4];
5618 int piecesLeft[(int)BlackPawn];
5619 int seed, nrOfShuffles;
5620
5621 void
5622 GetPositionNumber ()
5623 {       // sets global variable seed
5624         int i;
5625
5626         seed = appData.defaultFrcPosition;
5627         if(seed < 0) { // randomize based on time for negative FRC position numbers
5628                 for(i=0; i<50; i++) seed += random();
5629                 seed = random() ^ random() >> 8 ^ random() << 8;
5630                 if(seed<0) seed = -seed;
5631         }
5632 }
5633
5634 int
5635 put (Board board, int pieceType, int rank, int n, int shade)
5636 // put the piece on the (n-1)-th empty squares of the given shade
5637 {
5638         int i;
5639
5640         for(i=BOARD_LEFT; i<BOARD_RGHT; i++) {
5641                 if( (((i-BOARD_LEFT)&1)+1) & shade && board[rank][i] == EmptySquare && n-- == 0) {
5642                         board[rank][i] = (ChessSquare) pieceType;
5643                         squaresLeft[((i-BOARD_LEFT)&1) + 1]--;
5644                         squaresLeft[ANY]--;
5645                         piecesLeft[pieceType]--;
5646                         return i;
5647                 }
5648         }
5649         return -1;
5650 }
5651
5652
5653 void
5654 AddOnePiece (Board board, int pieceType, int rank, int shade)
5655 // calculate where the next piece goes, (any empty square), and put it there
5656 {
5657         int i;
5658
5659         i = seed % squaresLeft[shade];
5660         nrOfShuffles *= squaresLeft[shade];
5661         seed /= squaresLeft[shade];
5662         put(board, pieceType, rank, i, shade);
5663 }
5664
5665 void
5666 AddTwoPieces (Board board, int pieceType, int rank)
5667 // calculate where the next 2 identical pieces go, (any empty square), and put it there
5668 {
5669         int i, n=squaresLeft[ANY], j=n-1, k;
5670
5671         k = n*(n-1)/2; // nr of possibilities, not counting permutations
5672         i = seed % k;  // pick one
5673         nrOfShuffles *= k;
5674         seed /= k;
5675         while(i >= j) i -= j--;
5676         j = n - 1 - j; i += j;
5677         put(board, pieceType, rank, j, ANY);
5678         put(board, pieceType, rank, i, ANY);
5679 }
5680
5681 void
5682 SetUpShuffle (Board board, int number)
5683 {
5684         int i, p, first=1;
5685
5686         GetPositionNumber(); nrOfShuffles = 1;
5687
5688         squaresLeft[DARK] = (BOARD_RGHT - BOARD_LEFT + 1)/2;
5689         squaresLeft[ANY]  = BOARD_RGHT - BOARD_LEFT;
5690         squaresLeft[LITE] = squaresLeft[ANY] - squaresLeft[DARK];
5691
5692         for(p = 0; p<=(int)WhiteKing; p++) piecesLeft[p] = 0;
5693
5694         for(i=BOARD_LEFT; i<BOARD_RGHT; i++) { // count pieces and clear board
5695             p = (int) board[0][i];
5696             if(p < (int) BlackPawn) piecesLeft[p] ++;
5697             board[0][i] = EmptySquare;
5698         }
5699
5700         if(PosFlags(0) & F_ALL_CASTLE_OK) {
5701             // shuffles restricted to allow normal castling put KRR first
5702             if(piecesLeft[(int)WhiteKing]) // King goes rightish of middle
5703                 put(board, WhiteKing, 0, (gameInfo.boardWidth+1)/2, ANY);
5704             else if(piecesLeft[(int)WhiteUnicorn]) // in Knightmate Unicorn castles
5705                 put(board, WhiteUnicorn, 0, (gameInfo.boardWidth+1)/2, ANY);
5706             if(piecesLeft[(int)WhiteRook]) // First supply a Rook for K-side castling
5707                 put(board, WhiteRook, 0, gameInfo.boardWidth-2, ANY);
5708             if(piecesLeft[(int)WhiteRook]) // Then supply a Rook for Q-side castling
5709                 put(board, WhiteRook, 0, 0, ANY);
5710             // in variants with super-numerary Kings and Rooks, we leave these for the shuffle
5711         }
5712
5713         if(((BOARD_RGHT-BOARD_LEFT) & 1) == 0)
5714             // only for even boards make effort to put pairs of colorbound pieces on opposite colors
5715             for(p = (int) WhiteKing; p > (int) WhitePawn; p--) {
5716                 if(p != (int) WhiteBishop && p != (int) WhiteFerz && p != (int) WhiteAlfil) continue;
5717                 while(piecesLeft[p] >= 2) {
5718                     AddOnePiece(board, p, 0, LITE);
5719                     AddOnePiece(board, p, 0, DARK);
5720                 }
5721                 // Odd color-bound pieces are shuffled with the rest (to not run out of paired squares)
5722             }
5723
5724         for(p = (int) WhiteKing - 2; p > (int) WhitePawn; p--) {
5725             // Remaining pieces (non-colorbound, or odd color bound) can be put anywhere
5726             // but we leave King and Rooks for last, to possibly obey FRC restriction
5727             if(p == (int)WhiteRook) continue;
5728             while(piecesLeft[p] >= 2) AddTwoPieces(board, p, 0); // add in pairs, for not counting permutations
5729             if(piecesLeft[p]) AddOnePiece(board, p, 0, ANY);     // add the odd piece
5730         }
5731
5732         // now everything is placed, except perhaps King (Unicorn) and Rooks
5733
5734         if(PosFlags(0) & F_FRC_TYPE_CASTLING) {
5735             // Last King gets castling rights
5736             while(piecesLeft[(int)WhiteUnicorn]) {
5737                 i = put(board, WhiteUnicorn, 0, piecesLeft[(int)WhiteRook]/2, ANY);
5738                 initialRights[2]  = initialRights[5]  = board[CASTLING][2] = board[CASTLING][5] = i;
5739             }
5740
5741             while(piecesLeft[(int)WhiteKing]) {
5742                 i = put(board, WhiteKing, 0, piecesLeft[(int)WhiteRook]/2, ANY);
5743                 initialRights[2]  = initialRights[5]  = board[CASTLING][2] = board[CASTLING][5] = i;
5744             }
5745
5746
5747         } else {
5748             while(piecesLeft[(int)WhiteKing])    AddOnePiece(board, WhiteKing, 0, ANY);
5749             while(piecesLeft[(int)WhiteUnicorn]) AddOnePiece(board, WhiteUnicorn, 0, ANY);
5750         }
5751
5752         // Only Rooks can be left; simply place them all
5753         while(piecesLeft[(int)WhiteRook]) {
5754                 i = put(board, WhiteRook, 0, 0, ANY);
5755                 if(PosFlags(0) & F_FRC_TYPE_CASTLING) { // first and last Rook get FRC castling rights
5756                         if(first) {
5757                                 first=0;
5758                                 initialRights[1]  = initialRights[4]  = board[CASTLING][1] = board[CASTLING][4] = i;
5759                         }
5760                         initialRights[0]  = initialRights[3]  = board[CASTLING][0] = board[CASTLING][3] = i;
5761                 }
5762         }
5763         for(i=BOARD_LEFT; i<BOARD_RGHT; i++) { // copy black from white
5764             board[BOARD_HEIGHT-1][i] =  (int) board[0][i] < BlackPawn ? WHITE_TO_BLACK board[0][i] : EmptySquare;
5765         }
5766
5767         if(number >= 0) appData.defaultFrcPosition %= nrOfShuffles; // normalize
5768 }
5769
5770 int
5771 SetCharTable (char *table, const char * map)
5772 /* [HGM] moved here from winboard.c because of its general usefulness */
5773 /*       Basically a safe strcpy that uses the last character as King */
5774 {
5775     int result = FALSE; int NrPieces;
5776
5777     if( map != NULL && (NrPieces=strlen(map)) <= (int) EmptySquare
5778                     && NrPieces >= 12 && !(NrPieces&1)) {
5779         int i; /* [HGM] Accept even length from 12 to 34 */
5780
5781         for( i=0; i<(int) EmptySquare; i++ ) table[i] = '.';
5782         for( i=0; i<NrPieces/2-1; i++ ) {
5783             table[i] = map[i];
5784             table[i + (int)BlackPawn - (int) WhitePawn] = map[i+NrPieces/2];
5785         }
5786         table[(int) WhiteKing]  = map[NrPieces/2-1];
5787         table[(int) BlackKing]  = map[NrPieces-1];
5788
5789         result = TRUE;
5790     }
5791
5792     return result;
5793 }
5794
5795 void
5796 Prelude (Board board)
5797 {       // [HGM] superchess: random selection of exo-pieces
5798         int i, j, k; ChessSquare p;
5799         static ChessSquare exoPieces[4] = { WhiteAngel, WhiteMarshall, WhiteSilver, WhiteLance };
5800
5801         GetPositionNumber(); // use FRC position number
5802
5803         if(appData.pieceToCharTable != NULL) { // select pieces to participate from given char table
5804             SetCharTable(pieceToChar, appData.pieceToCharTable);
5805             for(i=(int)WhiteQueen+1, j=0; i<(int)WhiteKing && j<4; i++)
5806                 if(PieceToChar((ChessSquare)i) != '.') exoPieces[j++] = (ChessSquare) i;
5807         }
5808
5809         j = seed%4;                 seed /= 4;
5810         p = board[0][BOARD_LEFT+j];   board[0][BOARD_LEFT+j] = EmptySquare; k = PieceToNumber(p);
5811         board[k][BOARD_WIDTH-1] = p;  board[k][BOARD_WIDTH-2]++;
5812         board[BOARD_HEIGHT-1-k][0] = WHITE_TO_BLACK p;  board[BOARD_HEIGHT-1-k][1]++;
5813         j = seed%3 + (seed%3 >= j); seed /= 3;
5814         p = board[0][BOARD_LEFT+j];   board[0][BOARD_LEFT+j] = EmptySquare; k = PieceToNumber(p);
5815         board[k][BOARD_WIDTH-1] = p;  board[k][BOARD_WIDTH-2]++;
5816         board[BOARD_HEIGHT-1-k][0] = WHITE_TO_BLACK p;  board[BOARD_HEIGHT-1-k][1]++;
5817         j = seed%3;                 seed /= 3;
5818         p = board[0][BOARD_LEFT+j+5]; board[0][BOARD_LEFT+j+5] = EmptySquare; k = PieceToNumber(p);
5819         board[k][BOARD_WIDTH-1] = p;  board[k][BOARD_WIDTH-2]++;
5820         board[BOARD_HEIGHT-1-k][0] = WHITE_TO_BLACK p;  board[BOARD_HEIGHT-1-k][1]++;
5821         j = seed%2 + (seed%2 >= j); seed /= 2;
5822         p = board[0][BOARD_LEFT+j+5]; board[0][BOARD_LEFT+j+5] = EmptySquare; k = PieceToNumber(p);
5823         board[k][BOARD_WIDTH-1] = p;  board[k][BOARD_WIDTH-2]++;
5824         board[BOARD_HEIGHT-1-k][0] = WHITE_TO_BLACK p;  board[BOARD_HEIGHT-1-k][1]++;
5825         j = seed%4; seed /= 4; put(board, exoPieces[3],    0, j, ANY);
5826         j = seed%3; seed /= 3; put(board, exoPieces[2],   0, j, ANY);
5827         j = seed%2; seed /= 2; put(board, exoPieces[1], 0, j, ANY);
5828         put(board, exoPieces[0],    0, 0, ANY);
5829         for(i=BOARD_LEFT; i<BOARD_RGHT; i++) board[BOARD_HEIGHT-1][i] = WHITE_TO_BLACK board[0][i];
5830 }
5831
5832 void
5833 InitPosition (int redraw)
5834 {
5835     ChessSquare (* pieces)[BOARD_FILES];
5836     int i, j, pawnRow, overrule,
5837     oldx = gameInfo.boardWidth,
5838     oldy = gameInfo.boardHeight,
5839     oldh = gameInfo.holdingsWidth;
5840     static int oldv;
5841
5842     if(appData.icsActive) shuffleOpenings = FALSE; // [HGM] shuffle: in ICS mode, only shuffle on ICS request
5843
5844     /* [AS] Initialize pv info list [HGM] and game status */
5845     {
5846         for( i=0; i<=framePtr; i++ ) { // [HGM] vari: spare saved variations
5847             pvInfoList[i].depth = 0;
5848             boards[i][EP_STATUS] = EP_NONE;
5849             for( j=0; j<BOARD_FILES-2; j++ ) boards[i][CASTLING][j] = NoRights;
5850         }
5851
5852         initialRulePlies = 0; /* 50-move counter start */
5853
5854         castlingRank[0] = castlingRank[1] = castlingRank[2] = 0;
5855         castlingRank[3] = castlingRank[4] = castlingRank[5] = BOARD_HEIGHT-1;
5856     }
5857
5858
5859     /* [HGM] logic here is completely changed. In stead of full positions */
5860     /* the initialized data only consist of the two backranks. The switch */
5861     /* selects which one we will use, which is than copied to the Board   */
5862     /* initialPosition, which for the rest is initialized by Pawns and    */
5863     /* empty squares. This initial position is then copied to boards[0],  */
5864     /* possibly after shuffling, so that it remains available.            */
5865
5866     gameInfo.holdingsWidth = 0; /* default board sizes */
5867     gameInfo.boardWidth    = 8;
5868     gameInfo.boardHeight   = 8;
5869     gameInfo.holdingsSize  = 0;
5870     nrCastlingRights = -1; /* [HGM] Kludge to indicate default should be used */
5871     for(i=0; i<BOARD_FILES-2; i++)
5872       initialPosition[CASTLING][i] = initialRights[i] = NoRights; /* but no rights yet */
5873     initialPosition[EP_STATUS] = EP_NONE;
5874     SetCharTable(pieceToChar, "PNBRQ...........Kpnbrq...........k");
5875     if(startVariant == gameInfo.variant) // [HGM] nicks: enable nicknames in original variant
5876          SetCharTable(pieceNickName, appData.pieceNickNames);
5877     else SetCharTable(pieceNickName, "............");
5878     pieces = FIDEArray;
5879
5880     switch (gameInfo.variant) {
5881     case VariantFischeRandom:
5882       shuffleOpenings = TRUE;
5883     default:
5884       break;
5885     case VariantShatranj:
5886       pieces = ShatranjArray;
5887       nrCastlingRights = 0;
5888       SetCharTable(pieceToChar, "PN.R.QB...Kpn.r.qb...k");
5889       break;
5890     case VariantMakruk:
5891       pieces = makrukArray;
5892       nrCastlingRights = 0;
5893       startedFromSetupPosition = TRUE;
5894       SetCharTable(pieceToChar, "PN.R.M....SKpn.r.m....sk");
5895       break;
5896     case VariantTwoKings:
5897       pieces = twoKingsArray;
5898       break;
5899     case VariantGrand:
5900       pieces = GrandArray;
5901       nrCastlingRights = 0;
5902       SetCharTable(pieceToChar, "PNBRQ..ACKpnbrq..ack");
5903       gameInfo.boardWidth = 10;
5904       gameInfo.boardHeight = 10;
5905       gameInfo.holdingsSize = 7;
5906       break;
5907     case VariantCapaRandom:
5908       shuffleOpenings = TRUE;
5909     case VariantCapablanca:
5910       pieces = CapablancaArray;
5911       gameInfo.boardWidth = 10;
5912       SetCharTable(pieceToChar, "PNBRQ..ACKpnbrq..ack");
5913       break;
5914     case VariantGothic:
5915       pieces = GothicArray;
5916       gameInfo.boardWidth = 10;
5917       SetCharTable(pieceToChar, "PNBRQ..ACKpnbrq..ack");
5918       break;
5919     case VariantSChess:
5920       SetCharTable(pieceToChar, "PNBRQ..HEKpnbrq..hek");
5921       gameInfo.holdingsSize = 7;
5922       for(i=0; i<BOARD_FILES; i++) initialPosition[VIRGIN][i] = VIRGIN_W | VIRGIN_B;
5923       break;
5924     case VariantJanus:
5925       pieces = JanusArray;
5926       gameInfo.boardWidth = 10;
5927       SetCharTable(pieceToChar, "PNBRQ..JKpnbrq..jk");
5928       nrCastlingRights = 6;
5929         initialPosition[CASTLING][0] = initialRights[0] = BOARD_RGHT-1;
5930         initialPosition[CASTLING][1] = initialRights[1] = BOARD_LEFT;
5931         initialPosition[CASTLING][2] = initialRights[2] =(BOARD_WIDTH-1)>>1;
5932         initialPosition[CASTLING][3] = initialRights[3] = BOARD_RGHT-1;
5933         initialPosition[CASTLING][4] = initialRights[4] = BOARD_LEFT;
5934         initialPosition[CASTLING][5] = initialRights[5] =(BOARD_WIDTH-1)>>1;
5935       break;
5936     case VariantFalcon:
5937       pieces = FalconArray;
5938       gameInfo.boardWidth = 10;
5939       SetCharTable(pieceToChar, "PNBRQ.............FKpnbrq.............fk");
5940       break;
5941     case VariantXiangqi:
5942       pieces = XiangqiArray;
5943       gameInfo.boardWidth  = 9;
5944       gameInfo.boardHeight = 10;
5945       nrCastlingRights = 0;
5946       SetCharTable(pieceToChar, "PH.R.AE..K.C.ph.r.ae..k.c.");
5947       break;
5948     case VariantShogi:
5949       pieces = ShogiArray;
5950       gameInfo.boardWidth  = 9;
5951       gameInfo.boardHeight = 9;
5952       gameInfo.holdingsSize = 7;
5953       nrCastlingRights = 0;
5954       SetCharTable(pieceToChar, "PNBRLS...G.++++++Kpnbrls...g.++++++k");
5955       break;
5956     case VariantCourier:
5957       pieces = CourierArray;
5958       gameInfo.boardWidth  = 12;
5959       nrCastlingRights = 0;
5960       SetCharTable(pieceToChar, "PNBR.FE..WMKpnbr.fe..wmk");
5961       break;
5962     case VariantKnightmate:
5963       pieces = KnightmateArray;
5964       SetCharTable(pieceToChar, "P.BRQ.....M.........K.p.brq.....m.........k.");
5965       break;
5966     case VariantSpartan:
5967       pieces = SpartanArray;
5968       SetCharTable(pieceToChar, "PNBRQ................K......lwg.....c...h..k");
5969       break;
5970     case VariantFairy:
5971       pieces = fairyArray;
5972       SetCharTable(pieceToChar, "PNBRQFEACWMOHIJGDVLSUKpnbrqfeacwmohijgdvlsuk");
5973       break;
5974     case VariantGreat:
5975       pieces = GreatArray;
5976       gameInfo.boardWidth = 10;
5977       SetCharTable(pieceToChar, "PN....E...S..HWGMKpn....e...s..hwgmk");
5978       gameInfo.holdingsSize = 8;
5979       break;
5980     case VariantSuper:
5981       pieces = FIDEArray;
5982       SetCharTable(pieceToChar, "PNBRQ..SE.......V.AKpnbrq..se.......v.ak");
5983       gameInfo.holdingsSize = 8;
5984       startedFromSetupPosition = TRUE;
5985       break;
5986     case VariantCrazyhouse:
5987     case VariantBughouse:
5988       pieces = FIDEArray;
5989       SetCharTable(pieceToChar, "PNBRQ.......~~~~Kpnbrq.......~~~~k");
5990       gameInfo.holdingsSize = 5;
5991       break;
5992     case VariantWildCastle:
5993       pieces = FIDEArray;
5994       /* !!?shuffle with kings guaranteed to be on d or e file */
5995       shuffleOpenings = 1;
5996       break;
5997     case VariantNoCastle:
5998       pieces = FIDEArray;
5999       nrCastlingRights = 0;
6000       /* !!?unconstrained back-rank shuffle */
6001       shuffleOpenings = 1;
6002       break;
6003     }
6004
6005     overrule = 0;
6006     if(appData.NrFiles >= 0) {
6007         if(gameInfo.boardWidth != appData.NrFiles) overrule++;
6008         gameInfo.boardWidth = appData.NrFiles;
6009     }
6010     if(appData.NrRanks >= 0) {
6011         gameInfo.boardHeight = appData.NrRanks;
6012     }
6013     if(appData.holdingsSize >= 0) {
6014         i = appData.holdingsSize;
6015         if(i > gameInfo.boardHeight) i = gameInfo.boardHeight;
6016         gameInfo.holdingsSize = i;
6017     }
6018     if(gameInfo.holdingsSize) gameInfo.holdingsWidth = 2;
6019     if(BOARD_HEIGHT > BOARD_RANKS || BOARD_WIDTH > BOARD_FILES)
6020         DisplayFatalError(_("Recompile to support this BOARD_RANKS or BOARD_FILES!"), 0, 2);
6021
6022     pawnRow = gameInfo.boardHeight - 7; /* seems to work in all common variants */
6023     if(pawnRow < 1) pawnRow = 1;
6024     if(gameInfo.variant == VariantMakruk || gameInfo.variant == VariantGrand) pawnRow = 2;
6025
6026     /* User pieceToChar list overrules defaults */
6027     if(appData.pieceToCharTable != NULL)
6028         SetCharTable(pieceToChar, appData.pieceToCharTable);
6029
6030     for( j=0; j<BOARD_WIDTH; j++ ) { ChessSquare s = EmptySquare;
6031
6032         if(j==BOARD_LEFT-1 || j==BOARD_RGHT)
6033             s = (ChessSquare) 0; /* account holding counts in guard band */
6034         for( i=0; i<BOARD_HEIGHT; i++ )
6035             initialPosition[i][j] = s;
6036
6037         if(j < BOARD_LEFT || j >= BOARD_RGHT || overrule) continue;
6038         initialPosition[gameInfo.variant == VariantGrand][j] = pieces[0][j-gameInfo.holdingsWidth];
6039         initialPosition[pawnRow][j] = WhitePawn;
6040         initialPosition[BOARD_HEIGHT-pawnRow-1][j] = gameInfo.variant == VariantSpartan ? BlackLance : BlackPawn;
6041         if(gameInfo.variant == VariantXiangqi) {
6042             if(j&1) {
6043                 initialPosition[pawnRow][j] =
6044                 initialPosition[BOARD_HEIGHT-pawnRow-1][j] = EmptySquare;
6045                 if(j==BOARD_LEFT+1 || j>=BOARD_RGHT-2) {
6046                    initialPosition[2][j] = WhiteCannon;
6047                    initialPosition[BOARD_HEIGHT-3][j] = BlackCannon;
6048                 }
6049             }
6050         }
6051         if(gameInfo.variant == VariantGrand) {
6052             if(j==BOARD_LEFT || j>=BOARD_RGHT-1) {
6053                initialPosition[0][j] = WhiteRook;
6054                initialPosition[BOARD_HEIGHT-1][j] = BlackRook;
6055             }
6056         }
6057         initialPosition[BOARD_HEIGHT-1-(gameInfo.variant == VariantGrand)][j] =  pieces[1][j-gameInfo.holdingsWidth];
6058     }
6059     if( (gameInfo.variant == VariantShogi) && !overrule ) {
6060
6061             j=BOARD_LEFT+1;
6062             initialPosition[1][j] = WhiteBishop;
6063             initialPosition[BOARD_HEIGHT-2][j] = BlackRook;
6064             j=BOARD_RGHT-2;
6065             initialPosition[1][j] = WhiteRook;
6066             initialPosition[BOARD_HEIGHT-2][j] = BlackBishop;
6067     }
6068
6069     if( nrCastlingRights == -1) {
6070         /* [HGM] Build normal castling rights (must be done after board sizing!) */
6071         /*       This sets default castling rights from none to normal corners   */
6072         /* Variants with other castling rights must set them themselves above    */
6073         nrCastlingRights = 6;
6074
6075         initialPosition[CASTLING][0] = initialRights[0] = BOARD_RGHT-1;
6076         initialPosition[CASTLING][1] = initialRights[1] = BOARD_LEFT;
6077         initialPosition[CASTLING][2] = initialRights[2] = BOARD_WIDTH>>1;
6078         initialPosition[CASTLING][3] = initialRights[3] = BOARD_RGHT-1;
6079         initialPosition[CASTLING][4] = initialRights[4] = BOARD_LEFT;
6080         initialPosition[CASTLING][5] = initialRights[5] = BOARD_WIDTH>>1;
6081      }
6082
6083      if(gameInfo.variant == VariantSuper) Prelude(initialPosition);
6084      if(gameInfo.variant == VariantGreat) { // promotion commoners
6085         initialPosition[PieceToNumber(WhiteMan)][BOARD_WIDTH-1] = WhiteMan;
6086         initialPosition[PieceToNumber(WhiteMan)][BOARD_WIDTH-2] = 9;
6087         initialPosition[BOARD_HEIGHT-1-PieceToNumber(WhiteMan)][0] = BlackMan;
6088         initialPosition[BOARD_HEIGHT-1-PieceToNumber(WhiteMan)][1] = 9;
6089      }
6090      if( gameInfo.variant == VariantSChess ) {
6091       initialPosition[1][0] = BlackMarshall;
6092       initialPosition[2][0] = BlackAngel;
6093       initialPosition[6][BOARD_WIDTH-1] = WhiteMarshall;
6094       initialPosition[5][BOARD_WIDTH-1] = WhiteAngel;
6095       initialPosition[1][1] = initialPosition[2][1] =
6096       initialPosition[6][BOARD_WIDTH-2] = initialPosition[5][BOARD_WIDTH-2] = 1;
6097      }
6098   if (appData.debugMode) {
6099     fprintf(debugFP, "shuffleOpenings = %d\n", shuffleOpenings);
6100   }
6101     if(shuffleOpenings) {
6102         SetUpShuffle(initialPosition, appData.defaultFrcPosition);
6103         startedFromSetupPosition = TRUE;
6104     }
6105     if(startedFromPositionFile) {
6106       /* [HGM] loadPos: use PositionFile for every new game */
6107       CopyBoard(initialPosition, filePosition);
6108       for(i=0; i<nrCastlingRights; i++)
6109           initialRights[i] = filePosition[CASTLING][i];
6110       startedFromSetupPosition = TRUE;
6111     }
6112
6113     CopyBoard(boards[0], initialPosition);
6114
6115     if(oldx != gameInfo.boardWidth ||
6116        oldy != gameInfo.boardHeight ||
6117        oldv != gameInfo.variant ||
6118        oldh != gameInfo.holdingsWidth
6119                                          )
6120             InitDrawingSizes(-2 ,0);
6121
6122     oldv = gameInfo.variant;
6123     if (redraw)
6124       DrawPosition(TRUE, boards[currentMove]);
6125 }
6126
6127 void
6128 SendBoard (ChessProgramState *cps, int moveNum)
6129 {
6130     char message[MSG_SIZ];
6131
6132     if (cps->useSetboard) {
6133       char* fen = PositionToFEN(moveNum, cps->fenOverride);
6134       snprintf(message, MSG_SIZ,"setboard %s\n", fen);
6135       SendToProgram(message, cps);
6136       free(fen);
6137
6138     } else {
6139       ChessSquare *bp;
6140       int i, j, left=0, right=BOARD_WIDTH;
6141       /* Kludge to set black to move, avoiding the troublesome and now
6142        * deprecated "black" command.
6143        */
6144       if (!WhiteOnMove(moveNum)) // [HGM] but better a deprecated command than an illegal move...
6145         SendToProgram(boards[0][1][BOARD_LEFT] == WhitePawn ? "a2a3\n" : "black\n", cps);
6146
6147       if(!cps->extendedEdit) left = BOARD_LEFT, right = BOARD_RGHT; // only board proper
6148
6149       SendToProgram("edit\n", cps);
6150       SendToProgram("#\n", cps);
6151       for (i = BOARD_HEIGHT - 1; i >= 0; i--) {
6152         bp = &boards[moveNum][i][left];
6153         for (j = left; j < right; j++, bp++) {
6154           if(j == BOARD_LEFT-1 || j == BOARD_RGHT) continue;
6155           if ((int) *bp < (int) BlackPawn) {
6156             if(j == BOARD_RGHT+1)
6157                  snprintf(message, MSG_SIZ, "%c@%d\n", PieceToChar(*bp), bp[-1]);
6158             else snprintf(message, MSG_SIZ, "%c%c%c\n", PieceToChar(*bp), AAA + j, ONE + i);
6159             if(message[0] == '+' || message[0] == '~') {
6160               snprintf(message, MSG_SIZ,"%c%c%c+\n",
6161                         PieceToChar((ChessSquare)(DEMOTED *bp)),
6162                         AAA + j, ONE + i);
6163             }
6164             if(cps->alphaRank) { /* [HGM] shogi: translate coords */
6165                 message[1] = BOARD_RGHT   - 1 - j + '1';
6166                 message[2] = BOARD_HEIGHT - 1 - i + 'a';
6167             }
6168             SendToProgram(message, cps);
6169           }
6170         }
6171       }
6172
6173       SendToProgram("c\n", cps);
6174       for (i = BOARD_HEIGHT - 1; i >= 0; i--) {
6175         bp = &boards[moveNum][i][left];
6176         for (j = left; j < right; j++, bp++) {
6177           if(j == BOARD_LEFT-1 || j == BOARD_RGHT) continue;
6178           if (((int) *bp != (int) EmptySquare)
6179               && ((int) *bp >= (int) BlackPawn)) {
6180             if(j == BOARD_LEFT-2)
6181                  snprintf(message, MSG_SIZ, "%c@%d\n", ToUpper(PieceToChar(*bp)), bp[1]);
6182             else snprintf(message,MSG_SIZ, "%c%c%c\n", ToUpper(PieceToChar(*bp)),
6183                     AAA + j, ONE + i);
6184             if(message[0] == '+' || message[0] == '~') {
6185               snprintf(message, MSG_SIZ,"%c%c%c+\n",
6186                         PieceToChar((ChessSquare)(DEMOTED *bp)),
6187                         AAA + j, ONE + i);
6188             }
6189             if(cps->alphaRank) { /* [HGM] shogi: translate coords */
6190                 message[1] = BOARD_RGHT   - 1 - j + '1';
6191                 message[2] = BOARD_HEIGHT - 1 - i + 'a';
6192             }
6193             SendToProgram(message, cps);
6194           }
6195         }
6196       }
6197
6198       SendToProgram(".\n", cps);
6199     }
6200     setboardSpoiledMachineBlack = 0; /* [HGM] assume WB 4.2.7 already solves this after sending setboard */
6201 }
6202
6203 char exclusionHeader[MSG_SIZ];
6204 int exCnt, excludePtr;
6205 typedef struct { int ff, fr, tf, tr, pc, mark; } Exclusion;
6206 static Exclusion excluTab[200];
6207 static char excludeMap[(BOARD_RANKS*BOARD_FILES*BOARD_RANKS*BOARD_FILES+7)/8]; // [HGM] exclude: bitmap for excluced moves
6208
6209 static void
6210 WriteMap (int s)
6211 {
6212     int j;
6213     for(j=0; j<(BOARD_RANKS*BOARD_FILES*BOARD_RANKS*BOARD_FILES+7)/8; j++) excludeMap[j] = s;
6214     exclusionHeader[19] = s ? '-' : '+'; // update tail state
6215 }
6216
6217 static void
6218 ClearMap ()
6219 {
6220     safeStrCpy(exclusionHeader, "exclude: none best +tail                                          \n", MSG_SIZ);
6221     excludePtr = 24; exCnt = 0;
6222     WriteMap(0);
6223 }
6224
6225 static void
6226 UpdateExcludeHeader (int fromY, int fromX, int toY, int toX, char promoChar, char state)
6227 {   // search given move in table of header moves, to know where it is listed (and add if not there), and update state
6228     char buf[2*MOVE_LEN], *p;
6229     Exclusion *e = excluTab;
6230     int i;
6231     for(i=0; i<exCnt; i++)
6232         if(e[i].ff == fromX && e[i].fr == fromY &&
6233            e[i].tf == toX   && e[i].tr == toY && e[i].pc == promoChar) break;
6234     if(i == exCnt) { // was not in exclude list; add it
6235         CoordsToAlgebraic(boards[currentMove], PosFlags(currentMove), fromY, fromX, toY, toX, promoChar, buf);
6236         if(strlen(exclusionHeader + excludePtr) < strlen(buf)) { // no space to write move
6237             if(state != exclusionHeader[19]) exclusionHeader[19] = '*'; // tail is now in mixed state
6238             return; // abort
6239         }
6240         e[i].ff = fromX; e[i].fr = fromY; e[i].tf = toX; e[i].tr = toY; e[i].pc = promoChar;
6241         excludePtr++; e[i].mark = excludePtr++;
6242         for(p=buf; *p; p++) exclusionHeader[excludePtr++] = *p; // copy move
6243         exCnt++;
6244     }
6245     exclusionHeader[e[i].mark] = state;
6246 }
6247
6248 static int
6249 ExcludeOneMove (int fromY, int fromX, int toY, int toX, char promoChar, char state)
6250 {   // include or exclude the given move, as specified by state ('+' or '-'), or toggle
6251     char buf[MSG_SIZ];
6252     int j, k;
6253     ChessMove moveType;
6254     if((signed char)promoChar == -1) { // kludge to indicate best move
6255         if(!ParseOneMove(lastPV[0], currentMove, &moveType, &fromX, &fromY, &toX, &toY, &promoChar)) // get current best move from last PV
6256             return 1; // if unparsable, abort
6257     }
6258     // update exclusion map (resolving toggle by consulting existing state)
6259     k=(BOARD_FILES*fromY+fromX)*BOARD_RANKS*BOARD_FILES + (BOARD_FILES*toY+toX);
6260     j = k%8; k >>= 3;
6261     if(state == '*') state = (excludeMap[k] & 1<<j ? '+' : '-'); // toggle
6262     if(state == '-' && !promoChar) // only non-promotions get marked as excluded, to allow exclusion of under-promotions
6263          excludeMap[k] |=   1<<j;
6264     else excludeMap[k] &= ~(1<<j);
6265     // update header
6266     UpdateExcludeHeader(fromY, fromX, toY, toX, promoChar, state);
6267     // inform engine
6268     snprintf(buf, MSG_SIZ, "%sclude ", state == '+' ? "in" : "ex");
6269     CoordsToComputerAlgebraic(fromY, fromX, toY, toX, promoChar, buf+8);
6270     SendToBoth(buf);
6271     return (state == '+');
6272 }
6273
6274 static void
6275 ExcludeClick (int index)
6276 {
6277     int i, j;
6278     Exclusion *e = excluTab;
6279     if(index < 25) { // none, best or tail clicked
6280         if(index < 13) { // none: include all
6281             WriteMap(0); // clear map
6282             for(i=0; i<exCnt; i++) exclusionHeader[excluTab[i].mark] = '+'; // and moves
6283             SendToBoth("include all\n"); // and inform engine
6284         } else if(index > 18) { // tail
6285             if(exclusionHeader[19] == '-') { // tail was excluded
6286                 SendToBoth("include all\n");
6287                 WriteMap(0); // clear map completely
6288                 // now re-exclude selected moves
6289                 for(i=0; i<exCnt; i++) if(exclusionHeader[e[i].mark] == '-')
6290                     ExcludeOneMove(e[i].fr, e[i].ff, e[i].tr, e[i].tf, e[i].pc, '-');
6291             } else { // tail was included or in mixed state
6292                 SendToBoth("exclude all\n");
6293                 WriteMap(0xFF); // fill map completely
6294                 // now re-include selected moves
6295                 j = 0; // count them
6296                 for(i=0; i<exCnt; i++) if(exclusionHeader[e[i].mark] == '+')
6297                     ExcludeOneMove(e[i].fr, e[i].ff, e[i].tr, e[i].tf, e[i].pc, '+'), j++;
6298                 if(!j) ExcludeOneMove(0, 0, 0, 0, -1, '+'); // if no moves were selected, keep best
6299             }
6300         } else { // best
6301             ExcludeOneMove(0, 0, 0, 0, -1, '-'); // exclude it
6302         }
6303     } else {
6304         for(i=0; i<exCnt; i++) if(i == exCnt-1 || excluTab[i+1].mark > index) {
6305             char *p=exclusionHeader + excluTab[i].mark; // do trust header more than map (promotions!)
6306             ExcludeOneMove(e[i].fr, e[i].ff, e[i].tr, e[i].tf, e[i].pc, *p == '+' ? '-' : '+');
6307             break;
6308         }
6309     }
6310 }
6311
6312 ChessSquare
6313 DefaultPromoChoice (int white)
6314 {
6315     ChessSquare result;
6316     if(gameInfo.variant == VariantShatranj || gameInfo.variant == VariantCourier || gameInfo.variant == VariantMakruk)
6317         result = WhiteFerz; // no choice
6318     else if(gameInfo.variant == VariantSuicide || gameInfo.variant == VariantGiveaway)
6319         result= WhiteKing; // in Suicide Q is the last thing we want
6320     else if(gameInfo.variant == VariantSpartan)
6321         result = white ? WhiteQueen : WhiteAngel;
6322     else result = WhiteQueen;
6323     if(!white) result = WHITE_TO_BLACK result;
6324     return result;
6325 }
6326
6327 static int autoQueen; // [HGM] oneclick
6328
6329 int
6330 HasPromotionChoice (int fromX, int fromY, int toX, int toY, char *promoChoice, int sweepSelect)
6331 {
6332     /* [HGM] rewritten IsPromotion to only flag promotions that offer a choice */
6333     /* [HGM] add Shogi promotions */
6334     int promotionZoneSize=1, highestPromotingPiece = (int)WhitePawn;
6335     ChessSquare piece;
6336     ChessMove moveType;
6337     Boolean premove;
6338
6339     if(fromX < BOARD_LEFT || fromX >= BOARD_RGHT) return FALSE; // drop
6340     if(toX   < BOARD_LEFT || toX   >= BOARD_RGHT) return FALSE; // move into holdings
6341
6342     if(gameMode == EditPosition || gameInfo.variant == VariantXiangqi || // no promotions
6343       !(fromX >=0 && fromY >= 0 && toX >= 0 && toY >= 0) ) // invalid move
6344         return FALSE;
6345
6346     piece = boards[currentMove][fromY][fromX];
6347     if(gameInfo.variant == VariantShogi) {
6348         promotionZoneSize = BOARD_HEIGHT/3;
6349         highestPromotingPiece = (int)WhiteFerz;
6350     } else if(gameInfo.variant == VariantMakruk || gameInfo.variant == VariantGrand) {
6351         promotionZoneSize = 3;
6352     }
6353
6354     // Treat Lance as Pawn when it is not representing Amazon
6355     if(gameInfo.variant != VariantSuper) {
6356         if(piece == WhiteLance) piece = WhitePawn; else
6357         if(piece == BlackLance) piece = BlackPawn;
6358     }
6359
6360     // next weed out all moves that do not touch the promotion zone at all
6361     if((int)piece >= BlackPawn) {
6362         if(toY >= promotionZoneSize && fromY >= promotionZoneSize)
6363              return FALSE;
6364         highestPromotingPiece = WHITE_TO_BLACK highestPromotingPiece;
6365     } else {
6366         if(  toY < BOARD_HEIGHT - promotionZoneSize &&
6367            fromY < BOARD_HEIGHT - promotionZoneSize) return FALSE;
6368     }
6369
6370     if( (int)piece > highestPromotingPiece ) return FALSE; // non-promoting piece
6371
6372     // weed out mandatory Shogi promotions
6373     if(gameInfo.variant == VariantShogi) {
6374         if(piece >= BlackPawn) {
6375             if(toY == 0 && piece == BlackPawn ||
6376                toY == 0 && piece == BlackQueen ||
6377                toY <= 1 && piece == BlackKnight) {
6378                 *promoChoice = '+';
6379                 return FALSE;
6380             }
6381         } else {
6382             if(toY == BOARD_HEIGHT-1 && piece == WhitePawn ||
6383                toY == BOARD_HEIGHT-1 && piece == WhiteQueen ||
6384                toY >= BOARD_HEIGHT-2 && piece == WhiteKnight) {
6385                 *promoChoice = '+';
6386                 return FALSE;
6387             }
6388         }
6389     }
6390
6391     // weed out obviously illegal Pawn moves
6392     if(appData.testLegality  && (piece == WhitePawn || piece == BlackPawn) ) {
6393         if(toX > fromX+1 || toX < fromX-1) return FALSE; // wide
6394         if(piece == WhitePawn && toY != fromY+1) return FALSE; // deep
6395         if(piece == BlackPawn && toY != fromY-1) return FALSE; // deep
6396         if(fromX != toX && gameInfo.variant == VariantShogi) return FALSE;
6397         // note we are not allowed to test for valid (non-)capture, due to premove
6398     }
6399
6400     // we either have a choice what to promote to, or (in Shogi) whether to promote
6401     if(gameInfo.variant == VariantShatranj || gameInfo.variant == VariantCourier || gameInfo.variant == VariantMakruk) {
6402         *promoChoice = PieceToChar(BlackFerz);  // no choice
6403         return FALSE;
6404     }
6405     // no sense asking what we must promote to if it is going to explode...
6406     if(gameInfo.variant == VariantAtomic && boards[currentMove][toY][toX] != EmptySquare) {
6407         *promoChoice = PieceToChar(BlackQueen); // Queen as good as any
6408         return FALSE;
6409     }
6410     // give caller the default choice even if we will not make it
6411     *promoChoice = ToLower(PieceToChar(defaultPromoChoice));
6412     if(gameInfo.variant == VariantShogi) *promoChoice = (defaultPromoChoice == piece ? '=' : '+');
6413     if(        sweepSelect && gameInfo.variant != VariantGreat
6414                            && gameInfo.variant != VariantGrand
6415                            && gameInfo.variant != VariantSuper) return FALSE;
6416     if(autoQueen) return FALSE; // predetermined
6417
6418     // suppress promotion popup on illegal moves that are not premoves
6419     premove = gameMode == IcsPlayingWhite && !WhiteOnMove(currentMove) ||
6420               gameMode == IcsPlayingBlack &&  WhiteOnMove(currentMove);
6421     if(appData.testLegality && !premove) {
6422         moveType = LegalityTest(boards[currentMove], PosFlags(currentMove),
6423                         fromY, fromX, toY, toX, gameInfo.variant == VariantShogi ? '+' : NULLCHAR);
6424         if(moveType != WhitePromotion && moveType  != BlackPromotion)
6425             return FALSE;
6426     }
6427
6428     return TRUE;
6429 }
6430
6431 int
6432 InPalace (int row, int column)
6433 {   /* [HGM] for Xiangqi */
6434     if( (row < 3 || row > BOARD_HEIGHT-4) &&
6435          column < (BOARD_WIDTH + 4)/2 &&
6436          column > (BOARD_WIDTH - 5)/2 ) return TRUE;
6437     return FALSE;
6438 }
6439
6440 int
6441 PieceForSquare (int x, int y)
6442 {
6443   if (x < 0 || x >= BOARD_WIDTH || y < 0 || y >= BOARD_HEIGHT)
6444      return -1;
6445   else
6446      return boards[currentMove][y][x];
6447 }
6448
6449 int
6450 OKToStartUserMove (int x, int y)
6451 {
6452     ChessSquare from_piece;
6453     int white_piece;
6454
6455     if (matchMode) return FALSE;
6456     if (gameMode == EditPosition) return TRUE;
6457
6458     if (x >= 0 && y >= 0)
6459       from_piece = boards[currentMove][y][x];
6460     else
6461       from_piece = EmptySquare;
6462
6463     if (from_piece == EmptySquare) return FALSE;
6464
6465     white_piece = (int)from_piece >= (int)WhitePawn &&
6466       (int)from_piece < (int)BlackPawn; /* [HGM] can be > King! */
6467
6468     switch (gameMode) {
6469       case AnalyzeFile:
6470       case TwoMachinesPlay:
6471       case EndOfGame:
6472         return FALSE;
6473
6474       case IcsObserving:
6475       case IcsIdle:
6476         return FALSE;
6477
6478       case MachinePlaysWhite:
6479       case IcsPlayingBlack:
6480         if (appData.zippyPlay) return FALSE;
6481         if (white_piece) {
6482             DisplayMoveError(_("You are playing Black"));
6483             return FALSE;
6484         }
6485         break;
6486
6487       case MachinePlaysBlack:
6488       case IcsPlayingWhite:
6489         if (appData.zippyPlay) return FALSE;
6490         if (!white_piece) {
6491             DisplayMoveError(_("You are playing White"));
6492             return FALSE;
6493         }
6494         break;
6495
6496       case PlayFromGameFile:
6497             if(!shiftKey || !appData.variations) return FALSE; // [HGM] allow starting variation in this mode
6498       case EditGame:
6499         if (!white_piece && WhiteOnMove(currentMove)) {
6500             DisplayMoveError(_("It is White's turn"));
6501             return FALSE;
6502         }
6503         if (white_piece && !WhiteOnMove(currentMove)) {
6504             DisplayMoveError(_("It is Black's turn"));
6505             return FALSE;
6506         }
6507         if (cmailMsgLoaded && (currentMove < cmailOldMove)) {
6508             /* Editing correspondence game history */
6509             /* Could disallow this or prompt for confirmation */
6510             cmailOldMove = -1;
6511         }
6512         break;
6513
6514       case BeginningOfGame:
6515         if (appData.icsActive) return FALSE;
6516         if (!appData.noChessProgram) {
6517             if (!white_piece) {
6518                 DisplayMoveError(_("You are playing White"));
6519                 return FALSE;
6520             }
6521         }
6522         break;
6523
6524       case Training:
6525         if (!white_piece && WhiteOnMove(currentMove)) {
6526             DisplayMoveError(_("It is White's turn"));
6527             return FALSE;
6528         }
6529         if (white_piece && !WhiteOnMove(currentMove)) {
6530             DisplayMoveError(_("It is Black's turn"));
6531             return FALSE;
6532         }
6533         break;
6534
6535       default:
6536       case IcsExamining:
6537         break;
6538     }
6539     if (currentMove != forwardMostMove && gameMode != AnalyzeMode
6540         && gameMode != EditGame // [HGM] vari: treat as AnalyzeMode
6541         && gameMode != PlayFromGameFile // [HGM] as EditGame, with protected main line
6542         && gameMode != AnalyzeFile && gameMode != Training) {
6543         DisplayMoveError(_("Displayed position is not current"));
6544         return FALSE;
6545     }
6546     return TRUE;
6547 }
6548
6549 Boolean
6550 OnlyMove (int *x, int *y, Boolean captures)
6551 {
6552     DisambiguateClosure cl;
6553     if (appData.zippyPlay || !appData.testLegality) return FALSE;
6554     switch(gameMode) {
6555       case MachinePlaysBlack:
6556       case IcsPlayingWhite:
6557       case BeginningOfGame:
6558         if(!WhiteOnMove(currentMove)) return FALSE;
6559         break;
6560       case MachinePlaysWhite:
6561       case IcsPlayingBlack:
6562         if(WhiteOnMove(currentMove)) return FALSE;
6563         break;
6564       case EditGame:
6565         break;
6566       default:
6567         return FALSE;
6568     }
6569     cl.pieceIn = EmptySquare;
6570     cl.rfIn = *y;
6571     cl.ffIn = *x;
6572     cl.rtIn = -1;
6573     cl.ftIn = -1;
6574     cl.promoCharIn = NULLCHAR;
6575     Disambiguate(boards[currentMove], PosFlags(currentMove), &cl);
6576     if( cl.kind == NormalMove ||
6577         cl.kind == AmbiguousMove && captures && cl.captures == 1 ||
6578         cl.kind == WhitePromotion || cl.kind == BlackPromotion ||
6579         cl.kind == WhiteCapturesEnPassant || cl.kind == BlackCapturesEnPassant) {
6580       fromX = cl.ff;
6581       fromY = cl.rf;
6582       *x = cl.ft;
6583       *y = cl.rt;
6584       return TRUE;
6585     }
6586     if(cl.kind != ImpossibleMove) return FALSE;
6587     cl.pieceIn = EmptySquare;
6588     cl.rfIn = -1;
6589     cl.ffIn = -1;
6590     cl.rtIn = *y;
6591     cl.ftIn = *x;
6592     cl.promoCharIn = NULLCHAR;
6593     Disambiguate(boards[currentMove], PosFlags(currentMove), &cl);
6594     if( cl.kind == NormalMove ||
6595         cl.kind == AmbiguousMove && captures && cl.captures == 1 ||
6596         cl.kind == WhitePromotion || cl.kind == BlackPromotion ||
6597         cl.kind == WhiteCapturesEnPassant || cl.kind == BlackCapturesEnPassant) {
6598       fromX = cl.ff;
6599       fromY = cl.rf;
6600       *x = cl.ft;
6601       *y = cl.rt;
6602       autoQueen = TRUE; // act as if autoQueen on when we click to-square
6603       return TRUE;
6604     }
6605     return FALSE;
6606 }
6607
6608 FILE *lastLoadGameFP = NULL, *lastLoadPositionFP = NULL;
6609 int lastLoadGameNumber = 0, lastLoadPositionNumber = 0;
6610 int lastLoadGameUseList = FALSE;
6611 char lastLoadGameTitle[MSG_SIZ], lastLoadPositionTitle[MSG_SIZ];
6612 ChessMove lastLoadGameStart = EndOfFile;
6613 int doubleClick;
6614
6615 void
6616 UserMoveEvent(int fromX, int fromY, int toX, int toY, int promoChar)
6617 {
6618     ChessMove moveType;
6619     ChessSquare pup;
6620     int ff=fromX, rf=fromY, ft=toX, rt=toY;
6621
6622     /* Check if the user is playing in turn.  This is complicated because we
6623        let the user "pick up" a piece before it is his turn.  So the piece he
6624        tried to pick up may have been captured by the time he puts it down!
6625        Therefore we use the color the user is supposed to be playing in this
6626        test, not the color of the piece that is currently on the starting
6627        square---except in EditGame mode, where the user is playing both
6628        sides; fortunately there the capture race can't happen.  (It can
6629        now happen in IcsExamining mode, but that's just too bad.  The user
6630        will get a somewhat confusing message in that case.)
6631        */
6632
6633     switch (gameMode) {
6634       case AnalyzeFile:
6635       case TwoMachinesPlay:
6636       case EndOfGame:
6637       case IcsObserving:
6638       case IcsIdle:
6639         /* We switched into a game mode where moves are not accepted,
6640            perhaps while the mouse button was down. */
6641         return;
6642
6643       case MachinePlaysWhite:
6644         /* User is moving for Black */
6645         if (WhiteOnMove(currentMove)) {
6646             DisplayMoveError(_("It is White's turn"));
6647             return;
6648         }
6649         break;
6650
6651       case MachinePlaysBlack:
6652         /* User is moving for White */
6653         if (!WhiteOnMove(currentMove)) {
6654             DisplayMoveError(_("It is Black's turn"));
6655             return;
6656         }
6657         break;
6658
6659       case PlayFromGameFile:
6660             if(!shiftKey ||!appData.variations) return; // [HGM] only variations
6661       case EditGame:
6662       case IcsExamining:
6663       case BeginningOfGame:
6664       case AnalyzeMode:
6665       case Training:
6666         if(fromY == DROP_RANK) break; // [HGM] drop moves (entered through move type-in) are automatically assigned to side-to-move
6667         if ((int) boards[currentMove][fromY][fromX] >= (int) BlackPawn &&
6668             (int) boards[currentMove][fromY][fromX] < (int) EmptySquare) {
6669             /* User is moving for Black */
6670             if (WhiteOnMove(currentMove)) {
6671                 DisplayMoveError(_("It is White's turn"));
6672                 return;
6673             }
6674         } else {
6675             /* User is moving for White */
6676             if (!WhiteOnMove(currentMove)) {
6677                 DisplayMoveError(_("It is Black's turn"));
6678                 return;
6679             }
6680         }
6681         break;
6682
6683       case IcsPlayingBlack:
6684         /* User is moving for Black */
6685         if (WhiteOnMove(currentMove)) {
6686             if (!appData.premove) {
6687                 DisplayMoveError(_("It is White's turn"));
6688             } else if (toX >= 0 && toY >= 0) {
6689                 premoveToX = toX;
6690                 premoveToY = toY;
6691                 premoveFromX = fromX;
6692                 premoveFromY = fromY;
6693                 premovePromoChar = promoChar;
6694                 gotPremove = 1;
6695                 if (appData.debugMode)
6696                     fprintf(debugFP, "Got premove: fromX %d,"
6697                             "fromY %d, toX %d, toY %d\n",
6698                             fromX, fromY, toX, toY);
6699             }
6700             return;
6701         }
6702         break;
6703
6704       case IcsPlayingWhite:
6705         /* User is moving for White */
6706         if (!WhiteOnMove(currentMove)) {
6707             if (!appData.premove) {
6708                 DisplayMoveError(_("It is Black's turn"));
6709             } else if (toX >= 0 && toY >= 0) {
6710                 premoveToX = toX;
6711                 premoveToY = toY;
6712                 premoveFromX = fromX;
6713                 premoveFromY = fromY;
6714                 premovePromoChar = promoChar;
6715                 gotPremove = 1;
6716                 if (appData.debugMode)
6717                     fprintf(debugFP, "Got premove: fromX %d,"
6718                             "fromY %d, toX %d, toY %d\n",
6719                             fromX, fromY, toX, toY);
6720             }
6721             return;
6722         }
6723         break;
6724
6725       default:
6726         break;
6727
6728       case EditPosition:
6729         /* EditPosition, empty square, or different color piece;
6730            click-click move is possible */
6731         if (toX == -2 || toY == -2) {
6732             boards[0][fromY][fromX] = EmptySquare;
6733             DrawPosition(FALSE, boards[currentMove]);
6734             return;
6735         } else if (toX >= 0 && toY >= 0) {
6736             boards[0][toY][toX] = boards[0][fromY][fromX];
6737             if(fromX == BOARD_LEFT-2) { // handle 'moves' out of holdings
6738                 if(boards[0][fromY][0] != EmptySquare) {
6739                     if(boards[0][fromY][1]) boards[0][fromY][1]--;
6740                     if(boards[0][fromY][1] == 0)  boards[0][fromY][0] = EmptySquare;
6741                 }
6742             } else
6743             if(fromX == BOARD_RGHT+1) {
6744                 if(boards[0][fromY][BOARD_WIDTH-1] != EmptySquare) {
6745                     if(boards[0][fromY][BOARD_WIDTH-2]) boards[0][fromY][BOARD_WIDTH-2]--;
6746                     if(boards[0][fromY][BOARD_WIDTH-2] == 0)  boards[0][fromY][BOARD_WIDTH-1] = EmptySquare;
6747                 }
6748             } else
6749             boards[0][fromY][fromX] = gatingPiece;
6750             DrawPosition(FALSE, boards[currentMove]);
6751             return;
6752         }
6753         return;
6754     }
6755
6756     if(toX < 0 || toY < 0) return;
6757     pup = boards[currentMove][toY][toX];
6758
6759     /* [HGM] If move started in holdings, it means a drop. Convert to standard form */
6760     if( (fromX == BOARD_LEFT-2 || fromX == BOARD_RGHT+1) && fromY != DROP_RANK ) {
6761          if( pup != EmptySquare ) return;
6762          moveType = WhiteOnMove(currentMove) ? WhiteDrop : BlackDrop;
6763            if(appData.debugMode) fprintf(debugFP, "Drop move %d, curr=%d, x=%d,y=%d, p=%d\n",
6764                 moveType, currentMove, fromX, fromY, boards[currentMove][fromY][fromX]);
6765            // holdings might not be sent yet in ICS play; we have to figure out which piece belongs here
6766            if(fromX == 0) fromY = BOARD_HEIGHT-1 - fromY; // black holdings upside-down
6767            fromX = fromX ? WhitePawn : BlackPawn; // first piece type in selected holdings
6768            while(PieceToChar(fromX) == '.' || PieceToNumber(fromX) != fromY && fromX != (int) EmptySquare) fromX++;
6769          fromY = DROP_RANK;
6770     }
6771
6772     /* [HGM] always test for legality, to get promotion info */
6773     moveType = LegalityTest(boards[currentMove], PosFlags(currentMove),
6774                                          fromY, fromX, toY, toX, promoChar);
6775
6776     if(fromY == DROP_RANK && fromX == EmptySquare && (gameMode == AnalyzeMode || gameMode == EditGame)) moveType = NormalMove;
6777
6778     /* [HGM] but possibly ignore an IllegalMove result */
6779     if (appData.testLegality) {
6780         if (moveType == IllegalMove || moveType == ImpossibleMove) {
6781             DisplayMoveError(_("Illegal move"));
6782             return;
6783         }
6784     }
6785
6786     if(doubleClick && gameMode == AnalyzeMode) { // [HGM] exclude: move entered with double-click on from square is for exclusion, not playing
6787         if(ExcludeOneMove(fromY, fromX, toY, toX, promoChar, '*')) // toggle
6788              ClearPremoveHighlights(); // was included
6789         else ClearHighlights(), SetPremoveHighlights(ff, rf, ft, rt); // exclusion indicated  by premove highlights
6790         return;
6791     }
6792
6793     FinishMove(moveType, fromX, fromY, toX, toY, promoChar);
6794 }
6795
6796 /* Common tail of UserMoveEvent and DropMenuEvent */
6797 int
6798 FinishMove (ChessMove moveType, int fromX, int fromY, int toX, int toY, int promoChar)
6799 {
6800     char *bookHit = 0;
6801
6802     if((gameInfo.variant == VariantSuper || gameInfo.variant == VariantGreat || gameInfo.variant == VariantGrand) && promoChar != NULLCHAR) {
6803         // [HGM] superchess: suppress promotions to non-available piece (but P always allowed)
6804         int k = PieceToNumber(CharToPiece(ToUpper(promoChar)));
6805         if(WhiteOnMove(currentMove)) {
6806             if(!boards[currentMove][k][BOARD_WIDTH-2]) return 0;
6807         } else {
6808             if(!boards[currentMove][BOARD_HEIGHT-1-k][1]) return 0;
6809         }
6810     }
6811
6812     /* [HGM] <popupFix> kludge to avoid having to know the exact promotion
6813        move type in caller when we know the move is a legal promotion */
6814     if(moveType == NormalMove && promoChar)
6815         moveType = WhiteOnMove(currentMove) ? WhitePromotion : BlackPromotion;
6816
6817     /* [HGM] <popupFix> The following if has been moved here from
6818        UserMoveEvent(). Because it seemed to belong here (why not allow
6819        piece drops in training games?), and because it can only be
6820        performed after it is known to what we promote. */
6821     if (gameMode == Training) {
6822       /* compare the move played on the board to the next move in the
6823        * game. If they match, display the move and the opponent's response.
6824        * If they don't match, display an error message.
6825        */
6826       int saveAnimate;
6827       Board testBoard;
6828       CopyBoard(testBoard, boards[currentMove]);
6829       ApplyMove(fromX, fromY, toX, toY, promoChar, testBoard);
6830
6831       if (CompareBoards(testBoard, boards[currentMove+1])) {
6832         ForwardInner(currentMove+1);
6833
6834         /* Autoplay the opponent's response.
6835          * if appData.animate was TRUE when Training mode was entered,
6836          * the response will be animated.
6837          */
6838         saveAnimate = appData.animate;
6839         appData.animate = animateTraining;
6840         ForwardInner(currentMove+1);
6841         appData.animate = saveAnimate;
6842
6843         /* check for the end of the game */
6844         if (currentMove >= forwardMostMove) {
6845           gameMode = PlayFromGameFile;
6846           ModeHighlight();
6847           SetTrainingModeOff();
6848           DisplayInformation(_("End of game"));
6849         }
6850       } else {
6851         DisplayError(_("Incorrect move"), 0);
6852       }
6853       return 1;
6854     }
6855
6856   /* Ok, now we know that the move is good, so we can kill
6857      the previous line in Analysis Mode */
6858   if ((gameMode == AnalyzeMode || gameMode == EditGame || gameMode == PlayFromGameFile && appData.variations && shiftKey)
6859                                 && currentMove < forwardMostMove) {
6860     if(appData.variations && shiftKey) PushTail(currentMove, forwardMostMove); // [HGM] vari: save tail of game
6861     else forwardMostMove = currentMove;
6862   }
6863
6864   ClearMap();
6865
6866   /* If we need the chess program but it's dead, restart it */
6867   ResurrectChessProgram();
6868
6869   /* A user move restarts a paused game*/
6870   if (pausing)
6871     PauseEvent();
6872
6873   thinkOutput[0] = NULLCHAR;
6874
6875   MakeMove(fromX, fromY, toX, toY, promoChar); /*updates forwardMostMove*/
6876
6877   if(Adjudicate(NULL)) { // [HGM] adjudicate: take care of automatic game end
6878     ShowMove(fromX, fromY, toX, toY); /*updates currentMove*/
6879     return 1;
6880   }
6881
6882   if (gameMode == BeginningOfGame) {
6883     if (appData.noChessProgram) {
6884       gameMode = EditGame;
6885       SetGameInfo();
6886     } else {
6887       char buf[MSG_SIZ];
6888       gameMode = MachinePlaysBlack;
6889       StartClocks();
6890       SetGameInfo();
6891       snprintf(buf, MSG_SIZ, "%s %s %s", gameInfo.white, _("vs."), gameInfo.black);
6892       DisplayTitle(buf);
6893       if (first.sendName) {
6894         snprintf(buf, MSG_SIZ,"name %s\n", gameInfo.white);
6895         SendToProgram(buf, &first);
6896       }
6897       StartClocks();
6898     }
6899     ModeHighlight();
6900   }
6901
6902   /* Relay move to ICS or chess engine */
6903   if (appData.icsActive) {
6904     if (gameMode == IcsPlayingWhite || gameMode == IcsPlayingBlack ||
6905         gameMode == IcsExamining) {
6906       if(userOfferedDraw && (signed char)boards[forwardMostMove][EP_STATUS] <= EP_DRAWS) {
6907         SendToICS(ics_prefix); // [HGM] drawclaim: send caim and move on one line for FICS
6908         SendToICS("draw ");
6909         SendMoveToICS(moveType, fromX, fromY, toX, toY, promoChar);
6910       }
6911       // also send plain move, in case ICS does not understand atomic claims
6912       SendMoveToICS(moveType, fromX, fromY, toX, toY, promoChar);
6913       ics_user_moved = 1;
6914     }
6915   } else {
6916     if (first.sendTime && (gameMode == BeginningOfGame ||
6917                            gameMode == MachinePlaysWhite ||
6918                            gameMode == MachinePlaysBlack)) {
6919       SendTimeRemaining(&first, gameMode != MachinePlaysBlack);
6920     }
6921     if (gameMode != EditGame && gameMode != PlayFromGameFile && gameMode != AnalyzeMode) {
6922          // [HGM] book: if program might be playing, let it use book
6923         bookHit = SendMoveToBookUser(forwardMostMove-1, &first, FALSE);
6924         first.maybeThinking = TRUE;
6925     } else if(fromY == DROP_RANK && fromX == EmptySquare) {
6926         if(!first.useSetboard) SendToProgram("undo\n", &first); // kludge to change stm in engines that do not support setboard
6927         SendBoard(&first, currentMove+1);
6928         if(second.analyzing) {
6929             if(!second.useSetboard) SendToProgram("undo\n", &second);
6930             SendBoard(&second, currentMove+1);
6931         }
6932     } else {
6933         SendMoveToProgram(forwardMostMove-1, &first);
6934         if(second.analyzing) SendMoveToProgram(forwardMostMove-1, &second);
6935     }
6936     if (currentMove == cmailOldMove + 1) {
6937       cmailMoveType[lastLoadGameNumber - 1] = CMAIL_MOVE;
6938     }
6939   }
6940
6941   ShowMove(fromX, fromY, toX, toY); /*updates currentMove*/
6942
6943   switch (gameMode) {
6944   case EditGame:
6945     if(appData.testLegality)
6946     switch (MateTest(boards[currentMove], PosFlags(currentMove)) ) {
6947     case MT_NONE:
6948     case MT_CHECK:
6949       break;
6950     case MT_CHECKMATE:
6951     case MT_STAINMATE:
6952       if (WhiteOnMove(currentMove)) {
6953         GameEnds(BlackWins, "Black mates", GE_PLAYER);
6954       } else {
6955         GameEnds(WhiteWins, "White mates", GE_PLAYER);
6956       }
6957       break;
6958     case MT_STALEMATE:
6959       GameEnds(GameIsDrawn, "Stalemate", GE_PLAYER);
6960       break;
6961     }
6962     break;
6963
6964   case MachinePlaysBlack:
6965   case MachinePlaysWhite:
6966     /* disable certain menu options while machine is thinking */
6967     SetMachineThinkingEnables();
6968     break;
6969
6970   default:
6971     break;
6972   }
6973
6974   userOfferedDraw = FALSE; // [HGM] drawclaim: after move made, and tested for claimable draw
6975   promoDefaultAltered = FALSE; // [HGM] fall back on default choice
6976
6977   if(bookHit) { // [HGM] book: simulate book reply
6978         static char bookMove[MSG_SIZ]; // a bit generous?
6979
6980         programStats.nodes = programStats.depth = programStats.time =
6981         programStats.score = programStats.got_only_move = 0;
6982         sprintf(programStats.movelist, "%s (xbook)", bookHit);
6983
6984         safeStrCpy(bookMove, "move ", sizeof(bookMove)/sizeof(bookMove[0]));
6985         strcat(bookMove, bookHit);
6986         HandleMachineMove(bookMove, &first);
6987   }
6988   return 1;
6989 }
6990
6991 void
6992 Mark (Board board, int flags, ChessMove kind, int rf, int ff, int rt, int ft, VOIDSTAR closure)
6993 {
6994     typedef char Markers[BOARD_RANKS][BOARD_FILES];
6995     Markers *m = (Markers *) closure;
6996     if(rf == fromY && ff == fromX)
6997         (*m)[rt][ft] = 1 + (board[rt][ft] != EmptySquare
6998                          || kind == WhiteCapturesEnPassant
6999                          || kind == BlackCapturesEnPassant);
7000     else if(flags & F_MANDATORY_CAPTURE && board[rt][ft] != EmptySquare) (*m)[rt][ft] = 3;
7001 }
7002
7003 void
7004 MarkTargetSquares (int clear)
7005 {
7006   int x, y;
7007   if(clear) // no reason to ever suppress clearing
7008     for(x=0; x<BOARD_WIDTH; x++) for(y=0; y<BOARD_HEIGHT; y++) marker[y][x] = 0;
7009   if(!appData.markers || !appData.highlightDragging || appData.icsActive && gameInfo.variant < VariantShogi ||
7010      !appData.testLegality || gameMode == EditPosition) return;
7011   if(!clear) {
7012     int capt = 0;
7013     GenLegal(boards[currentMove], PosFlags(currentMove), Mark, (void*) marker, EmptySquare);
7014     if(PosFlags(0) & F_MANDATORY_CAPTURE) {
7015       for(x=0; x<BOARD_WIDTH; x++) for(y=0; y<BOARD_HEIGHT; y++) if(marker[y][x]>1) capt++;
7016       if(capt)
7017       for(x=0; x<BOARD_WIDTH; x++) for(y=0; y<BOARD_HEIGHT; y++) if(marker[y][x] == 1) marker[y][x] = 0;
7018     }
7019   }
7020   DrawPosition(FALSE, NULL);
7021 }
7022
7023 int
7024 Explode (Board board, int fromX, int fromY, int toX, int toY)
7025 {
7026     if(gameInfo.variant == VariantAtomic &&
7027        (board[toY][toX] != EmptySquare ||                     // capture?
7028         toX != fromX && (board[fromY][fromX] == WhitePawn ||  // e.p. ?
7029                          board[fromY][fromX] == BlackPawn   )
7030       )) {
7031         AnimateAtomicCapture(board, fromX, fromY, toX, toY);
7032         return TRUE;
7033     }
7034     return FALSE;
7035 }
7036
7037 ChessSquare gatingPiece = EmptySquare; // exported to front-end, for dragging
7038
7039 int
7040 CanPromote (ChessSquare piece, int y)
7041 {
7042         if(gameMode == EditPosition) return FALSE; // no promotions when editing position
7043         // some variants have fixed promotion piece, no promotion at all, or another selection mechanism
7044         if(gameInfo.variant == VariantShogi    || gameInfo.variant == VariantXiangqi ||
7045            gameInfo.variant == VariantSuper    || gameInfo.variant == VariantGreat   ||
7046            gameInfo.variant == VariantShatranj || gameInfo.variant == VariantCourier ||
7047                                                   gameInfo.variant == VariantMakruk) return FALSE;
7048         return (piece == BlackPawn && y == 1 ||
7049                 piece == WhitePawn && y == BOARD_HEIGHT-2 ||
7050                 piece == BlackLance && y == 1 ||
7051                 piece == WhiteLance && y == BOARD_HEIGHT-2 );
7052 }
7053
7054 void
7055 LeftClick (ClickType clickType, int xPix, int yPix)
7056 {
7057     int x, y;
7058     Boolean saveAnimate;
7059     static int second = 0, promotionChoice = 0, clearFlag = 0, sweepSelecting = 0;
7060     char promoChoice = NULLCHAR;
7061     ChessSquare piece;
7062     static TimeMark lastClickTime, prevClickTime;
7063
7064     if(SeekGraphClick(clickType, xPix, yPix, 0)) return;
7065
7066     prevClickTime = lastClickTime; GetTimeMark(&lastClickTime);
7067
7068     if (clickType == Press) ErrorPopDown();
7069
7070     x = EventToSquare(xPix, BOARD_WIDTH);
7071     y = EventToSquare(yPix, BOARD_HEIGHT);
7072     if (!flipView && y >= 0) {
7073         y = BOARD_HEIGHT - 1 - y;
7074     }
7075     if (flipView && x >= 0) {
7076         x = BOARD_WIDTH - 1 - x;
7077     }
7078
7079     if(promoSweep != EmptySquare) { // up-click during sweep-select of promo-piece
7080         defaultPromoChoice = promoSweep;
7081         promoSweep = EmptySquare;   // terminate sweep
7082         promoDefaultAltered = TRUE;
7083         if(!selectFlag && !sweepSelecting && (x != toX || y != toY)) x = fromX, y = fromY; // and fake up-click on same square if we were still selecting
7084     }
7085
7086     if(promotionChoice) { // we are waiting for a click to indicate promotion piece
7087         if(clickType == Release) return; // ignore upclick of click-click destination
7088         promotionChoice = FALSE; // only one chance: if click not OK it is interpreted as cancel
7089         if(appData.debugMode) fprintf(debugFP, "promotion click, x=%d, y=%d\n", x, y);
7090         if(gameInfo.holdingsWidth &&
7091                 (WhiteOnMove(currentMove)
7092                         ? x == BOARD_WIDTH-1 && y < gameInfo.holdingsSize && y >= 0
7093                         : x == 0 && y >= BOARD_HEIGHT - gameInfo.holdingsSize && y < BOARD_HEIGHT) ) {
7094             // click in right holdings, for determining promotion piece
7095             ChessSquare p = boards[currentMove][y][x];
7096             if(appData.debugMode) fprintf(debugFP, "square contains %d\n", (int)p);
7097             if(p == WhitePawn || p == BlackPawn) p = EmptySquare; // [HGM] Pawns could be valid as deferral
7098             if(p != EmptySquare || gameInfo.variant == VariantGrand && toY != 0 && toY != BOARD_HEIGHT-1) { // [HGM] grand: empty square means defer
7099                 FinishMove(NormalMove, fromX, fromY, toX, toY, p==EmptySquare ? NULLCHAR : ToLower(PieceToChar(p)));
7100                 fromX = fromY = -1;
7101                 return;
7102             }
7103         }
7104         DrawPosition(FALSE, boards[currentMove]);
7105         return;
7106     }
7107
7108     /* [HGM] holdings: next 5 lines: ignore all clicks between board and holdings */
7109     if(clickType == Press
7110             && ( x == BOARD_LEFT-1 || x == BOARD_RGHT
7111               || x == BOARD_LEFT-2 && y < BOARD_HEIGHT-gameInfo.holdingsSize
7112               || x == BOARD_RGHT+1 && y >= gameInfo.holdingsSize) )
7113         return;
7114
7115     if(gotPremove && x == premoveFromX && y == premoveFromY && clickType == Release) {
7116         // could be static click on premove from-square: abort premove
7117         gotPremove = 0;
7118         ClearPremoveHighlights();
7119     }
7120
7121     if(clickType == Press && fromX == x && fromY == y && promoDefaultAltered && SubtractTimeMarks(&lastClickTime, &prevClickTime) >= 200)
7122         fromX = fromY = -1; // second click on piece after altering default promo piece treated as first click
7123
7124     if(!promoDefaultAltered) { // determine default promotion piece, based on the side the user is moving for
7125         int side = (gameMode == IcsPlayingWhite || gameMode == MachinePlaysBlack ||
7126                     gameMode != MachinePlaysWhite && gameMode != IcsPlayingBlack && WhiteOnMove(currentMove));
7127         defaultPromoChoice = DefaultPromoChoice(side);
7128     }
7129
7130     autoQueen = appData.alwaysPromoteToQueen;
7131
7132     if (fromX == -1) {
7133       int originalY = y;
7134       gatingPiece = EmptySquare;
7135       if (clickType != Press) {
7136         if(dragging) { // [HGM] from-square must have been reset due to game end since last press
7137             DragPieceEnd(xPix, yPix); dragging = 0;
7138             DrawPosition(FALSE, NULL);
7139         }
7140         return;
7141       }
7142       doubleClick = FALSE;
7143       if(gameMode == AnalyzeMode && (pausing || controlKey) && first.excludeMoves) { // use pause state to exclude moves
7144         doubleClick = TRUE; gatingPiece = boards[currentMove][y][x];
7145       }
7146       fromX = x; fromY = y; toX = toY = -1;
7147       if(!appData.oneClick || !OnlyMove(&x, &y, FALSE) ||
7148          // even if only move, we treat as normal when this would trigger a promotion popup, to allow sweep selection
7149          appData.sweepSelect && CanPromote(boards[currentMove][fromY][fromX], fromY) && originalY != y) {
7150             /* First square */
7151             if (OKToStartUserMove(fromX, fromY)) {
7152                 second = 0;
7153                 MarkTargetSquares(0);
7154                 if(gameMode == EditPosition && controlKey) gatingPiece = boards[currentMove][fromY][fromX];
7155                 DragPieceBegin(xPix, yPix, FALSE); dragging = 1;
7156                 if(appData.sweepSelect && CanPromote(piece = boards[currentMove][fromY][fromX], fromY)) {
7157                     promoSweep = defaultPromoChoice;
7158                     selectFlag = 0; lastX = xPix; lastY = yPix;
7159                     Sweep(0); // Pawn that is going to promote: preview promotion piece
7160                     DisplayMessage("", _("Pull pawn backwards to under-promote"));
7161                 }
7162                 if (appData.highlightDragging) {
7163                     SetHighlights(fromX, fromY, -1, -1);
7164                 } else {
7165                     ClearHighlights();
7166                 }
7167             } else fromX = fromY = -1;
7168             return;
7169         }
7170     }
7171
7172     /* fromX != -1 */
7173     if (clickType == Press && gameMode != EditPosition) {
7174         ChessSquare fromP;
7175         ChessSquare toP;
7176         int frc;
7177
7178         // ignore off-board to clicks
7179         if(y < 0 || x < 0) return;
7180
7181         /* Check if clicking again on the same color piece */
7182         fromP = boards[currentMove][fromY][fromX];
7183         toP = boards[currentMove][y][x];
7184         frc = gameInfo.variant == VariantFischeRandom || gameInfo.variant == VariantCapaRandom || gameInfo.variant == VariantSChess;
7185         if ((WhitePawn <= fromP && fromP <= WhiteKing &&
7186              WhitePawn <= toP && toP <= WhiteKing &&
7187              !(fromP == WhiteKing && toP == WhiteRook && frc) &&
7188              !(fromP == WhiteRook && toP == WhiteKing && frc)) ||
7189             (BlackPawn <= fromP && fromP <= BlackKing &&
7190              BlackPawn <= toP && toP <= BlackKing &&
7191              !(fromP == BlackRook && toP == BlackKing && frc) && // allow also RxK as FRC castling
7192              !(fromP == BlackKing && toP == BlackRook && frc))) {
7193             /* Clicked again on same color piece -- changed his mind */
7194             second = (x == fromX && y == fromY);
7195             if(second && gameMode == AnalyzeMode && SubtractTimeMarks(&lastClickTime, &prevClickTime) < 200) {
7196                 second = FALSE; // first double-click rather than scond click
7197                 doubleClick = first.excludeMoves; // used by UserMoveEvent to recognize exclude moves
7198             }
7199             promoDefaultAltered = FALSE;
7200             MarkTargetSquares(1);
7201            if(!second || appData.oneClick && !OnlyMove(&x, &y, TRUE)) {
7202             if (appData.highlightDragging) {
7203                 SetHighlights(x, y, -1, -1);
7204             } else {
7205                 ClearHighlights();
7206             }
7207             if (OKToStartUserMove(x, y)) {
7208                 if(gameInfo.variant == VariantSChess && // S-Chess: back-rank piece selected after holdings means gating
7209                   (fromX == BOARD_LEFT-2 || fromX == BOARD_RGHT+1) &&
7210                y == (toP < BlackPawn ? 0 : BOARD_HEIGHT-1))
7211                  gatingPiece = boards[currentMove][fromY][fromX];
7212                 else gatingPiece = doubleClick ? fromP : EmptySquare;
7213                 fromX = x;
7214                 fromY = y; dragging = 1;
7215                 MarkTargetSquares(0);
7216                 DragPieceBegin(xPix, yPix, FALSE);
7217                 if(appData.sweepSelect && CanPromote(piece = boards[currentMove][y][x], y)) {
7218                     promoSweep = defaultPromoChoice;
7219                     selectFlag = 0; lastX = xPix; lastY = yPix;
7220                     Sweep(0); // Pawn that is going to promote: preview promotion piece
7221                 }
7222             }
7223            }
7224            if(x == fromX && y == fromY) return; // if OnlyMove altered (x,y) we go on
7225            second = FALSE;
7226         }
7227         // ignore clicks on holdings
7228         if(x < BOARD_LEFT || x >= BOARD_RGHT) return;
7229     }
7230
7231     if (clickType == Release && x == fromX && y == fromY) {
7232         DragPieceEnd(xPix, yPix); dragging = 0;
7233         if(clearFlag) {
7234             // a deferred attempt to click-click move an empty square on top of a piece
7235             boards[currentMove][y][x] = EmptySquare;
7236             ClearHighlights();
7237             DrawPosition(FALSE, boards[currentMove]);
7238             fromX = fromY = -1; clearFlag = 0;
7239             return;
7240         }
7241         if (appData.animateDragging) {
7242             /* Undo animation damage if any */
7243             DrawPosition(FALSE, NULL);
7244         }
7245         if (second || sweepSelecting) {
7246             /* Second up/down in same square; just abort move */
7247             if(sweepSelecting) DrawPosition(FALSE, boards[currentMove]);
7248             second = sweepSelecting = 0;
7249             fromX = fromY = -1;
7250             gatingPiece = EmptySquare;
7251             ClearHighlights();
7252             gotPremove = 0;
7253             ClearPremoveHighlights();
7254         } else {
7255             /* First upclick in same square; start click-click mode */
7256             SetHighlights(x, y, -1, -1);
7257         }
7258         return;
7259     }
7260
7261     clearFlag = 0;
7262
7263     /* we now have a different from- and (possibly off-board) to-square */
7264     /* Completed move */
7265     if(!sweepSelecting) {
7266         toX = x;
7267         toY = y;
7268     } else sweepSelecting = 0; // this must be the up-click corresponding to the down-click that started the sweep
7269
7270     saveAnimate = appData.animate;
7271     if (clickType == Press) {
7272         if(gameMode == EditPosition && boards[currentMove][fromY][fromX] == EmptySquare) {
7273             // must be Edit Position mode with empty-square selected
7274             fromX = x; fromY = y; DragPieceBegin(xPix, yPix, FALSE); dragging = 1; // consider this a new attempt to drag
7275             if(x >= BOARD_LEFT && x < BOARD_RGHT) clearFlag = 1; // and defer click-click move of empty-square to up-click
7276             return;
7277         }
7278         if(HasPromotionChoice(fromX, fromY, toX, toY, &promoChoice, FALSE)) {
7279           if(appData.sweepSelect) {
7280             ChessSquare piece = boards[currentMove][fromY][fromX];
7281             promoSweep = defaultPromoChoice;
7282             if(PieceToChar(PROMOTED piece) == '+') promoSweep = PROMOTED piece;
7283             selectFlag = 0; lastX = xPix; lastY = yPix;
7284             Sweep(0); // Pawn that is going to promote: preview promotion piece
7285             sweepSelecting = 1;
7286             DisplayMessage("", _("Pull pawn backwards to under-promote"));
7287             MarkTargetSquares(1);
7288           }
7289           return; // promo popup appears on up-click
7290         }
7291         /* Finish clickclick move */
7292         if (appData.animate || appData.highlightLastMove) {
7293             SetHighlights(fromX, fromY, toX, toY);
7294         } else {
7295             ClearHighlights();
7296         }
7297     } else {
7298 #if 0
7299 // [HGM] this must be done after the move is made, as with arrow it could lead to a board redraw with piece still on from square
7300         /* Finish drag move */
7301         if (appData.highlightLastMove) {
7302             SetHighlights(fromX, fromY, toX, toY);
7303         } else {
7304             ClearHighlights();
7305         }
7306 #endif
7307         DragPieceEnd(xPix, yPix); dragging = 0;
7308         /* Don't animate move and drag both */
7309         appData.animate = FALSE;
7310     }
7311
7312     // moves into holding are invalid for now (except in EditPosition, adapting to-square)
7313     if(x >= 0 && x < BOARD_LEFT || x >= BOARD_RGHT) {
7314         ChessSquare piece = boards[currentMove][fromY][fromX];
7315         if(gameMode == EditPosition && piece != EmptySquare &&
7316            fromX >= BOARD_LEFT && fromX < BOARD_RGHT) {
7317             int n;
7318
7319             if(x == BOARD_LEFT-2 && piece >= BlackPawn) {
7320                 n = PieceToNumber(piece - (int)BlackPawn);
7321                 if(n >= gameInfo.holdingsSize) { n = 0; piece = BlackPawn; }
7322                 boards[currentMove][BOARD_HEIGHT-1 - n][0] = piece;
7323                 boards[currentMove][BOARD_HEIGHT-1 - n][1]++;
7324             } else
7325             if(x == BOARD_RGHT+1 && piece < BlackPawn) {
7326                 n = PieceToNumber(piece);
7327                 if(n >= gameInfo.holdingsSize) { n = 0; piece = WhitePawn; }
7328                 boards[currentMove][n][BOARD_WIDTH-1] = piece;
7329                 boards[currentMove][n][BOARD_WIDTH-2]++;
7330             }
7331             boards[currentMove][fromY][fromX] = EmptySquare;
7332         }
7333         ClearHighlights();
7334         fromX = fromY = -1;
7335         MarkTargetSquares(1);
7336         DrawPosition(TRUE, boards[currentMove]);
7337         return;
7338     }
7339
7340     // off-board moves should not be highlighted
7341     if(x < 0 || y < 0) ClearHighlights();
7342
7343     if(gatingPiece != EmptySquare && gameInfo.variant == VariantSChess) promoChoice = ToLower(PieceToChar(gatingPiece));
7344
7345     if (HasPromotionChoice(fromX, fromY, toX, toY, &promoChoice, appData.sweepSelect)) {
7346         SetHighlights(fromX, fromY, toX, toY);
7347         MarkTargetSquares(1);
7348         if(gameInfo.variant == VariantSuper || gameInfo.variant == VariantGreat || gameInfo.variant == VariantGrand) {
7349             // [HGM] super: promotion to captured piece selected from holdings
7350             ChessSquare p = boards[currentMove][fromY][fromX], q = boards[currentMove][toY][toX];
7351             promotionChoice = TRUE;
7352             // kludge follows to temporarily execute move on display, without promoting yet
7353             boards[currentMove][fromY][fromX] = EmptySquare; // move Pawn to 8th rank
7354             boards[currentMove][toY][toX] = p;
7355             DrawPosition(FALSE, boards[currentMove]);
7356             boards[currentMove][fromY][fromX] = p; // take back, but display stays
7357             boards[currentMove][toY][toX] = q;
7358             DisplayMessage("Click in holdings to choose piece", "");
7359             return;
7360         }
7361         PromotionPopUp();
7362     } else {
7363         int oldMove = currentMove;
7364         UserMoveEvent(fromX, fromY, toX, toY, promoChoice);
7365         if (!appData.highlightLastMove || gotPremove) ClearHighlights();
7366         if (gotPremove) SetPremoveHighlights(fromX, fromY, toX, toY);
7367         if(saveAnimate && !appData.animate && currentMove != oldMove && // drag-move was performed
7368            Explode(boards[currentMove-1], fromX, fromY, toX, toY))
7369             DrawPosition(TRUE, boards[currentMove]);
7370         MarkTargetSquares(1);
7371         fromX = fromY = -1;
7372     }
7373     appData.animate = saveAnimate;
7374     if (appData.animate || appData.animateDragging) {
7375         /* Undo animation damage if needed */
7376         DrawPosition(FALSE, NULL);
7377     }
7378 }
7379
7380 int
7381 RightClick (ClickType action, int x, int y, int *fromX, int *fromY)
7382 {   // front-end-free part taken out of PieceMenuPopup
7383     int whichMenu; int xSqr, ySqr;
7384
7385     if(seekGraphUp) { // [HGM] seekgraph
7386         if(action == Press)   SeekGraphClick(Press, x, y, 2); // 2 indicates right-click: no pop-down on miss
7387         if(action == Release) SeekGraphClick(Release, x, y, 2); // and no challenge on hit
7388         return -2;
7389     }
7390
7391     if((gameMode == IcsPlayingWhite || gameMode == IcsPlayingBlack)
7392          && !appData.zippyPlay && appData.bgObserve) { // [HGM] bughouse: show background game
7393         if(!partnerBoardValid) return -2; // suppress display of uninitialized boards
7394         if( appData.dualBoard) return -2; // [HGM] dual: is already displayed
7395         if(action == Press)   {
7396             originalFlip = flipView;
7397             flipView = !flipView; // temporarily flip board to see game from partners perspective
7398             DrawPosition(TRUE, partnerBoard);
7399             DisplayMessage(partnerStatus, "");
7400             partnerUp = TRUE;
7401         } else if(action == Release) {
7402             flipView = originalFlip;
7403             DrawPosition(TRUE, boards[currentMove]);
7404             partnerUp = FALSE;
7405         }
7406         return -2;
7407     }
7408
7409     xSqr = EventToSquare(x, BOARD_WIDTH);
7410     ySqr = EventToSquare(y, BOARD_HEIGHT);
7411     if (action == Release) {
7412         if(pieceSweep != EmptySquare) {
7413             EditPositionMenuEvent(pieceSweep, toX, toY);
7414             pieceSweep = EmptySquare;
7415         } else UnLoadPV(); // [HGM] pv
7416     }
7417     if (action != Press) return -2; // return code to be ignored
7418     switch (gameMode) {
7419       case IcsExamining:
7420         if(xSqr < BOARD_LEFT || xSqr >= BOARD_RGHT) return -1;
7421       case EditPosition:
7422         if (xSqr == BOARD_LEFT-1 || xSqr == BOARD_RGHT) return -1;
7423         if (xSqr < 0 || ySqr < 0) return -1;
7424         if(appData.pieceMenu) { whichMenu = 0; break; } // edit-position menu
7425         pieceSweep = shiftKey ? BlackPawn : WhitePawn;  // [HGM] sweep: prepare selecting piece by mouse sweep
7426         toX = xSqr; toY = ySqr; lastX = x, lastY = y;
7427         if(flipView) toX = BOARD_WIDTH - 1 - toX; else toY = BOARD_HEIGHT - 1 - toY;
7428         NextPiece(0);
7429         return 2; // grab
7430       case IcsObserving:
7431         if(!appData.icsEngineAnalyze) return -1;
7432       case IcsPlayingWhite:
7433       case IcsPlayingBlack:
7434         if(!appData.zippyPlay) goto noZip;
7435       case AnalyzeMode:
7436       case AnalyzeFile:
7437       case MachinePlaysWhite:
7438       case MachinePlaysBlack:
7439       case TwoMachinesPlay: // [HGM] pv: use for showing PV
7440         if (!appData.dropMenu) {
7441           LoadPV(x, y);
7442           return 2; // flag front-end to grab mouse events
7443         }
7444         if(gameMode == TwoMachinesPlay || gameMode == AnalyzeMode ||
7445            gameMode == AnalyzeFile || gameMode == IcsObserving) return -1;
7446       case EditGame:
7447       noZip:
7448         if (xSqr < 0 || ySqr < 0) return -1;
7449         if (!appData.dropMenu || appData.testLegality &&
7450             gameInfo.variant != VariantBughouse &&
7451             gameInfo.variant != VariantCrazyhouse) return -1;
7452         whichMenu = 1; // drop menu
7453         break;
7454       default:
7455         return -1;
7456     }
7457
7458     if (((*fromX = xSqr) < 0) ||
7459         ((*fromY = ySqr) < 0)) {
7460         *fromX = *fromY = -1;
7461         return -1;
7462     }
7463     if (flipView)
7464       *fromX = BOARD_WIDTH - 1 - *fromX;
7465     else
7466       *fromY = BOARD_HEIGHT - 1 - *fromY;
7467
7468     return whichMenu;
7469 }
7470
7471 void
7472 SendProgramStatsToFrontend (ChessProgramState * cps, ChessProgramStats * cpstats)
7473 {
7474 //    char * hint = lastHint;
7475     FrontEndProgramStats stats;
7476
7477     stats.which = cps == &first ? 0 : 1;
7478     stats.depth = cpstats->depth;
7479     stats.nodes = cpstats->nodes;
7480     stats.score = cpstats->score;
7481     stats.time = cpstats->time;
7482     stats.pv = cpstats->movelist;
7483     stats.hint = lastHint;
7484     stats.an_move_index = 0;
7485     stats.an_move_count = 0;
7486
7487     if( gameMode == AnalyzeMode || gameMode == AnalyzeFile ) {
7488         stats.hint = cpstats->move_name;
7489         stats.an_move_index = cpstats->nr_moves - cpstats->moves_left;
7490         stats.an_move_count = cpstats->nr_moves;
7491     }
7492
7493     if(stats.pv && stats.pv[0]) safeStrCpy(lastPV[stats.which], stats.pv, sizeof(lastPV[stats.which])/sizeof(lastPV[stats.which][0])); // [HGM] pv: remember last PV of each
7494
7495     SetProgramStats( &stats );
7496 }
7497
7498 void
7499 ClearEngineOutputPane (int which)
7500 {
7501     static FrontEndProgramStats dummyStats;
7502     dummyStats.which = which;
7503     dummyStats.pv = "#";
7504     SetProgramStats( &dummyStats );
7505 }
7506
7507 #define MAXPLAYERS 500
7508
7509 char *
7510 TourneyStandings (int display)
7511 {
7512     int i, w, b, color, wScore, bScore, dummy, nr=0, nPlayers=0;
7513     int score[MAXPLAYERS], ranking[MAXPLAYERS], points[MAXPLAYERS], games[MAXPLAYERS];
7514     char result, *p, *names[MAXPLAYERS];
7515
7516     if(appData.tourneyType < 0 && !strchr(appData.results, '*'))
7517         return strdup(_("Swiss tourney finished")); // standings of Swiss yet TODO
7518     names[0] = p = strdup(appData.participants);
7519     while(p = strchr(p, '\n')) *p++ = NULLCHAR, names[++nPlayers] = p; // count participants
7520
7521     for(i=0; i<nPlayers; i++) score[i] = games[i] = 0;
7522
7523     while(result = appData.results[nr]) {
7524         color = Pairing(nr, nPlayers, &w, &b, &dummy);
7525         if(!(color ^ matchGame & 1)) { dummy = w; w = b; b = dummy; }
7526         wScore = bScore = 0;
7527         switch(result) {
7528           case '+': wScore = 2; break;
7529           case '-': bScore = 2; break;
7530           case '=': wScore = bScore = 1; break;
7531           case ' ':
7532           case '*': return strdup("busy"); // tourney not finished
7533         }
7534         score[w] += wScore;
7535         score[b] += bScore;
7536         games[w]++;
7537         games[b]++;
7538         nr++;
7539     }
7540     if(appData.tourneyType > 0) nPlayers = appData.tourneyType; // in gauntlet, list only gauntlet engine(s)
7541     for(w=0; w<nPlayers; w++) {
7542         bScore = -1;
7543         for(i=0; i<nPlayers; i++) if(score[i] > bScore) bScore = score[i], b = i;
7544         ranking[w] = b; points[w] = bScore; score[b] = -2;
7545     }
7546     p = malloc(nPlayers*34+1);
7547     for(w=0; w<nPlayers && w<display; w++)
7548         sprintf(p+34*w, "%2d. %5.1f/%-3d %-19.19s\n", w+1, points[w]/2., games[ranking[w]], names[ranking[w]]);
7549     free(names[0]);
7550     return p;
7551 }
7552
7553 void
7554 Count (Board board, int pCnt[], int *nW, int *nB, int *wStale, int *bStale, int *bishopColor)
7555 {       // count all piece types
7556         int p, f, r;
7557         *nB = *nW = *wStale = *bStale = *bishopColor = 0;
7558         for(p=WhitePawn; p<=EmptySquare; p++) pCnt[p] = 0;
7559         for(r=0; r<BOARD_HEIGHT; r++) for(f=BOARD_LEFT; f<BOARD_RGHT; f++) {
7560                 p = board[r][f];
7561                 pCnt[p]++;
7562                 if(p == WhitePawn && r == BOARD_HEIGHT-1) (*wStale)++; else
7563                 if(p == BlackPawn && r == 0) (*bStale)++; // count last-Rank Pawns (XQ) separately
7564                 if(p <= WhiteKing) (*nW)++; else if(p <= BlackKing) (*nB)++;
7565                 if(p == WhiteBishop || p == WhiteFerz || p == WhiteAlfil ||
7566                    p == BlackBishop || p == BlackFerz || p == BlackAlfil   )
7567                         *bishopColor |= 1 << ((f^r)&1); // track square color of color-bound pieces
7568         }
7569 }
7570
7571 int
7572 SufficientDefence (int pCnt[], int side, int nMine, int nHis)
7573 {
7574         int myPawns = pCnt[WhitePawn+side]; // my total Pawn count;
7575         int majorDefense = pCnt[BlackRook-side] + pCnt[BlackCannon-side] + pCnt[BlackKnight-side];
7576
7577         nMine -= pCnt[WhiteFerz+side] + pCnt[WhiteAlfil+side]; // discount defenders
7578         if(nMine - myPawns > 2) return FALSE; // no trivial draws with more than 1 major
7579         if(myPawns == 2 && nMine == 3) // KPP
7580             return majorDefense || pCnt[BlackFerz-side] + pCnt[BlackAlfil-side] >= 3;
7581         if(myPawns == 1 && nMine == 2) // KP
7582             return majorDefense || pCnt[BlackFerz-side] + pCnt[BlackAlfil-side]  + pCnt[BlackPawn-side] >= 1;
7583         if(myPawns == 1 && nMine == 3 && pCnt[WhiteKnight+side]) // KHP
7584             return majorDefense || pCnt[BlackFerz-side] + pCnt[BlackAlfil-side]*2 >= 5;
7585         if(myPawns) return FALSE;
7586         if(pCnt[WhiteRook+side])
7587             return pCnt[BlackRook-side] ||
7588                    pCnt[BlackCannon-side] && (pCnt[BlackFerz-side] >= 2 || pCnt[BlackAlfil-side] >= 2) ||
7589                    pCnt[BlackKnight-side] && pCnt[BlackFerz-side] + pCnt[BlackAlfil-side] > 2 ||
7590                    pCnt[BlackFerz-side] + pCnt[BlackAlfil-side] >= 4;
7591         if(pCnt[WhiteCannon+side]) {
7592             if(pCnt[WhiteFerz+side] + myPawns == 0) return TRUE; // Cannon needs platform
7593             return majorDefense || pCnt[BlackAlfil-side] >= 2;
7594         }
7595         if(pCnt[WhiteKnight+side])
7596             return majorDefense || pCnt[BlackFerz-side] >= 2 || pCnt[BlackAlfil-side] + pCnt[BlackPawn-side] >= 1;
7597         return FALSE;
7598 }
7599
7600 int
7601 MatingPotential (int pCnt[], int side, int nMine, int nHis, int stale, int bisColor)
7602 {
7603         VariantClass v = gameInfo.variant;
7604
7605         if(v == VariantShogi || v == VariantCrazyhouse || v == VariantBughouse) return TRUE; // drop games always winnable
7606         if(v == VariantShatranj) return TRUE; // always winnable through baring
7607         if(v == VariantLosers || v == VariantSuicide || v == VariantGiveaway) return TRUE;
7608         if(v == Variant3Check || v == VariantAtomic) return nMine > 1; // can win through checking / exploding King
7609
7610         if(v == VariantXiangqi) {
7611                 int majors = 5*pCnt[BlackKnight-side] + 7*pCnt[BlackCannon-side] + 7*pCnt[BlackRook-side];
7612
7613                 nMine -= pCnt[WhiteFerz+side] + pCnt[WhiteAlfil+side] + stale; // discount defensive pieces and back-rank Pawns
7614                 if(nMine + stale == 1) return (pCnt[BlackFerz-side] > 1 && pCnt[BlackKnight-side] > 0); // bare K can stalemate KHAA (!)
7615                 if(nMine > 2) return TRUE; // if we don't have P, H or R, we must have CC
7616                 if(nMine == 2 && pCnt[WhiteCannon+side] == 0) return TRUE; // We have at least one P, H or R
7617                 // if we get here, we must have KC... or KP..., possibly with additional A, E or last-rank P
7618                 if(stale) // we have at least one last-rank P plus perhaps C
7619                     return majors // KPKX
7620                         || pCnt[BlackFerz-side] && pCnt[BlackFerz-side] + pCnt[WhiteCannon+side] + stale > 2; // KPKAA, KPPKA and KCPKA
7621                 else // KCA*E*
7622                     return pCnt[WhiteFerz+side] // KCAK
7623                         || pCnt[WhiteAlfil+side] && pCnt[BlackRook-side] + pCnt[BlackCannon-side] + pCnt[BlackFerz-side] // KCEKA, KCEKX (X!=H)
7624                         || majors + (12*pCnt[BlackFerz-side] | 6*pCnt[BlackAlfil-side]) > 16; // KCKAA, KCKAX, KCKEEX, KCKEXX (XX!=HH), KCKXXX
7625                 // TO DO: cases wih an unpromoted f-Pawn acting as platform for an opponent Cannon
7626
7627         } else if(v == VariantKnightmate) {
7628                 if(nMine == 1) return FALSE;
7629                 if(nMine == 2 && nHis == 1 && pCnt[WhiteBishop+side] + pCnt[WhiteFerz+side] + pCnt[WhiteKnight+side]) return FALSE; // KBK is only draw
7630         } else if(pCnt[WhiteKing] == 1 && pCnt[BlackKing] == 1) { // other variants with orthodox Kings
7631                 int nBishops = pCnt[WhiteBishop+side] + pCnt[WhiteFerz+side];
7632
7633                 if(nMine == 1) return FALSE; // bare King
7634                 if(nBishops && bisColor == 3) return TRUE; // There must be a second B/A/F, which can either block (his) or attack (mine) the escape square
7635                 nMine += (nBishops > 0) - nBishops; // By now all Bishops (and Ferz) on like-colored squares, so count as one
7636                 if(nMine > 2 && nMine != pCnt[WhiteAlfil+side] + 1) return TRUE; // At least two pieces, not all Alfils
7637                 // by now we have King + 1 piece (or multiple Bishops on the same color)
7638                 if(pCnt[WhiteKnight+side])
7639                         return (pCnt[BlackKnight-side] + pCnt[BlackBishop-side] + pCnt[BlackMan-side] +
7640                                 pCnt[BlackWazir-side] + pCnt[BlackSilver-side] + bisColor // KNKN, KNKB, KNKF, KNKE, KNKW, KNKM, KNKS
7641                              || nHis > 3); // be sure to cover suffocation mates in corner (e.g. KNKQCA)
7642                 if(nBishops)
7643                         return (pCnt[BlackKnight-side]); // KBKN, KFKN
7644                 if(pCnt[WhiteAlfil+side])
7645                         return (nHis > 2); // Alfils can in general not reach a corner square, but there might be edge (suffocation) mates
7646                 if(pCnt[WhiteWazir+side])
7647                         return (pCnt[BlackKnight-side] + pCnt[BlackWazir-side] + pCnt[BlackAlfil-side]); // KWKN, KWKW, KWKE
7648         }
7649
7650         return TRUE;
7651 }
7652
7653 int
7654 CompareWithRights (Board b1, Board b2)
7655 {
7656     int rights = 0;
7657     if(!CompareBoards(b1, b2)) return FALSE;
7658     if(b1[EP_STATUS] != b2[EP_STATUS]) return FALSE;
7659     /* compare castling rights */
7660     if( b1[CASTLING][2] != b2[CASTLING][2] && (b2[CASTLING][0] != NoRights || b2[CASTLING][1] != NoRights) )
7661            rights++; /* King lost rights, while rook still had them */
7662     if( b1[CASTLING][2] != NoRights ) { /* king has rights */
7663         if( b1[CASTLING][0] != b2[CASTLING][0] || b1[CASTLING][1] != b2[CASTLING][1] )
7664            rights++; /* but at least one rook lost them */
7665     }
7666     if( b1[CASTLING][5] != b1[CASTLING][5] && (b2[CASTLING][3] != NoRights || b2[CASTLING][4] != NoRights) )
7667            rights++;
7668     if( b1[CASTLING][5] != NoRights ) {
7669         if( b1[CASTLING][3] != b2[CASTLING][3] || b1[CASTLING][4] != b2[CASTLING][4] )
7670            rights++;
7671     }
7672     return rights == 0;
7673 }
7674
7675 int
7676 Adjudicate (ChessProgramState *cps)
7677 {       // [HGM] some adjudications useful with buggy engines
7678         // [HGM] adjudicate: made into separate routine, which now can be called after every move
7679         //       In any case it determnes if the game is a claimable draw (filling in EP_STATUS).
7680         //       Actually ending the game is now based on the additional internal condition canAdjudicate.
7681         //       Only when the game is ended, and the opponent is a computer, this opponent gets the move relayed.
7682         int k, drop, count = 0; static int bare = 1;
7683         ChessProgramState *engineOpponent = (gameMode == TwoMachinesPlay ? cps->other : (cps ? NULL : &first));
7684         Boolean canAdjudicate = !appData.icsActive;
7685
7686         // most tests only when we understand the game, i.e. legality-checking on
7687             if( appData.testLegality )
7688             {   /* [HGM] Some more adjudications for obstinate engines */
7689                 int nrW, nrB, bishopColor, staleW, staleB, nr[EmptySquare+1], i;
7690                 static int moveCount = 6;
7691                 ChessMove result;
7692                 char *reason = NULL;
7693
7694                 /* Count what is on board. */
7695                 Count(boards[forwardMostMove], nr, &nrW, &nrB, &staleW, &staleB, &bishopColor);
7696
7697                 /* Some material-based adjudications that have to be made before stalemate test */
7698                 if(gameInfo.variant == VariantAtomic && nr[WhiteKing] + nr[BlackKing] < 2) {
7699                     // [HGM] atomic: stm must have lost his King on previous move, as destroying own K is illegal
7700                      boards[forwardMostMove][EP_STATUS] = EP_CHECKMATE; // make claimable as if stm is checkmated
7701                      if(canAdjudicate && appData.checkMates) {
7702                          if(engineOpponent)
7703                            SendMoveToProgram(forwardMostMove-1, engineOpponent); // make sure opponent gets move
7704                          GameEnds( WhiteOnMove(forwardMostMove) ? BlackWins : WhiteWins,
7705                                                         "Xboard adjudication: King destroyed", GE_XBOARD );
7706                          return 1;
7707                      }
7708                 }
7709
7710                 /* Bare King in Shatranj (loses) or Losers (wins) */
7711                 if( nrW == 1 || nrB == 1) {
7712                   if( gameInfo.variant == VariantLosers) { // [HGM] losers: bare King wins (stm must have it first)
7713                      boards[forwardMostMove][EP_STATUS] = EP_WINS;  // mark as win, so it becomes claimable
7714                      if(canAdjudicate && appData.checkMates) {
7715                          if(engineOpponent)
7716                            SendMoveToProgram(forwardMostMove-1, engineOpponent); // make sure opponent gets to see move
7717                          GameEnds( WhiteOnMove(forwardMostMove) ? WhiteWins : BlackWins,
7718                                                         "Xboard adjudication: Bare king", GE_XBOARD );
7719                          return 1;
7720                      }
7721                   } else
7722                   if( gameInfo.variant == VariantShatranj && --bare < 0)
7723                   {    /* bare King */
7724                         boards[forwardMostMove][EP_STATUS] = EP_WINS; // make claimable as win for stm
7725                         if(canAdjudicate && appData.checkMates) {
7726                             /* but only adjudicate if adjudication enabled */
7727                             if(engineOpponent)
7728                               SendMoveToProgram(forwardMostMove-1, engineOpponent); // make sure opponent gets move
7729                             GameEnds( nrW > 1 ? WhiteWins : nrB > 1 ? BlackWins : GameIsDrawn,
7730                                                         "Xboard adjudication: Bare king", GE_XBOARD );
7731                             return 1;
7732                         }
7733                   }
7734                 } else bare = 1;
7735
7736
7737             // don't wait for engine to announce game end if we can judge ourselves
7738             switch (MateTest(boards[forwardMostMove], PosFlags(forwardMostMove)) ) {
7739               case MT_CHECK:
7740                 if(gameInfo.variant == Variant3Check) { // [HGM] 3check: when in check, test if 3rd time
7741                     int i, checkCnt = 0;    // (should really be done by making nr of checks part of game state)
7742                     for(i=forwardMostMove-2; i>=backwardMostMove; i-=2) {
7743                         if(MateTest(boards[i], PosFlags(i)) == MT_CHECK)
7744                             checkCnt++;
7745                         if(checkCnt >= 2) {
7746                             reason = "Xboard adjudication: 3rd check";
7747                             boards[forwardMostMove][EP_STATUS] = EP_CHECKMATE;
7748                             break;
7749                         }
7750                     }
7751                 }
7752               case MT_NONE:
7753               default:
7754                 break;
7755               case MT_STALEMATE:
7756               case MT_STAINMATE:
7757                 reason = "Xboard adjudication: Stalemate";
7758                 if((signed char)boards[forwardMostMove][EP_STATUS] != EP_CHECKMATE) { // [HGM] don't touch win through baring or K-capt
7759                     boards[forwardMostMove][EP_STATUS] = EP_STALEMATE;   // default result for stalemate is draw
7760                     if(gameInfo.variant == VariantLosers  || gameInfo.variant == VariantGiveaway) // [HGM] losers:
7761                         boards[forwardMostMove][EP_STATUS] = EP_WINS;    // in these variants stalemated is always a win
7762                     else if(gameInfo.variant == VariantSuicide) // in suicide it depends
7763                         boards[forwardMostMove][EP_STATUS] = nrW == nrB ? EP_STALEMATE :
7764                                                    ((nrW < nrB) != WhiteOnMove(forwardMostMove) ?
7765                                                                         EP_CHECKMATE : EP_WINS);
7766                     else if(gameInfo.variant == VariantShatranj || gameInfo.variant == VariantXiangqi || gameInfo.variant == VariantShogi)
7767                         boards[forwardMostMove][EP_STATUS] = EP_CHECKMATE; // and in these variants being stalemated loses
7768                 }
7769                 break;
7770               case MT_CHECKMATE:
7771                 reason = "Xboard adjudication: Checkmate";
7772                 boards[forwardMostMove][EP_STATUS] = (gameInfo.variant == VariantLosers ? EP_WINS : EP_CHECKMATE);
7773                 if(gameInfo.variant == VariantShogi) {
7774                     if(forwardMostMove > backwardMostMove
7775                        && moveList[forwardMostMove-1][1] == '@'
7776                        && CharToPiece(ToUpper(moveList[forwardMostMove-1][0])) == WhitePawn) {
7777                         reason = "XBoard adjudication: pawn-drop mate";
7778                         boards[forwardMostMove][EP_STATUS] = EP_WINS;
7779                     }
7780                 }
7781                 break;
7782             }
7783
7784                 switch(i = (signed char)boards[forwardMostMove][EP_STATUS]) {
7785                     case EP_STALEMATE:
7786                         result = GameIsDrawn; break;
7787                     case EP_CHECKMATE:
7788                         result = WhiteOnMove(forwardMostMove) ? BlackWins : WhiteWins; break;
7789                     case EP_WINS:
7790                         result = WhiteOnMove(forwardMostMove) ? WhiteWins : BlackWins; break;
7791                     default:
7792                         result = EndOfFile;
7793                 }
7794                 if(canAdjudicate && appData.checkMates && result) { // [HGM] mates: adjudicate finished games if requested
7795                     if(engineOpponent)
7796                       SendMoveToProgram(forwardMostMove-1, engineOpponent); /* make sure opponent gets to see move */
7797                     GameEnds( result, reason, GE_XBOARD );
7798                     return 1;
7799                 }
7800
7801                 /* Next absolutely insufficient mating material. */
7802                 if(!MatingPotential(nr, WhitePawn, nrW, nrB, staleW, bishopColor) &&
7803                    !MatingPotential(nr, BlackPawn, nrB, nrW, staleB, bishopColor))
7804                 {    /* includes KBK, KNK, KK of KBKB with like Bishops */
7805
7806                      /* always flag draws, for judging claims */
7807                      boards[forwardMostMove][EP_STATUS] = EP_INSUF_DRAW;
7808
7809                      if(canAdjudicate && appData.materialDraws) {
7810                          /* but only adjudicate them if adjudication enabled */
7811                          if(engineOpponent) {
7812                            SendToProgram("force\n", engineOpponent); // suppress reply
7813                            SendMoveToProgram(forwardMostMove-1, engineOpponent); /* make sure opponent gets to see last move */
7814                          }
7815                          GameEnds( GameIsDrawn, "Xboard adjudication: Insufficient mating material", GE_XBOARD );
7816                          return 1;
7817                      }
7818                 }
7819
7820                 /* Then some trivial draws (only adjudicate, cannot be claimed) */
7821                 if(gameInfo.variant == VariantXiangqi ?
7822                        SufficientDefence(nr, WhitePawn, nrW, nrB) && SufficientDefence(nr, BlackPawn, nrB, nrW)
7823                  : nrW + nrB == 4 &&
7824                    (   nr[WhiteRook] == 1 && nr[BlackRook] == 1 /* KRKR */
7825                    || nr[WhiteQueen] && nr[BlackQueen]==1     /* KQKQ */
7826                    || nr[WhiteKnight]==2 || nr[BlackKnight]==2     /* KNNK */
7827                    || nr[WhiteKnight]+nr[WhiteBishop] == 1 && nr[BlackKnight]+nr[BlackBishop] == 1 /* KBKN, KBKB, KNKN */
7828                    ) ) {
7829                      if(--moveCount < 0 && appData.trivialDraws && canAdjudicate)
7830                      {    /* if the first 3 moves do not show a tactical win, declare draw */
7831                           if(engineOpponent) {
7832                             SendToProgram("force\n", engineOpponent); // suppress reply
7833                             SendMoveToProgram(forwardMostMove-1, engineOpponent); /* make sure opponent gets to see move */
7834                           }
7835                           GameEnds( GameIsDrawn, "Xboard adjudication: Trivial draw", GE_XBOARD );
7836                           return 1;
7837                      }
7838                 } else moveCount = 6;
7839             }
7840
7841         // Repetition draws and 50-move rule can be applied independently of legality testing
7842
7843                 /* Check for rep-draws */
7844                 count = 0;
7845                 drop = gameInfo.holdingsSize && (gameInfo.variant != VariantSuper && gameInfo.variant != VariantSChess
7846                                               && gameInfo.variant != VariantGreat && gameInfo.variant != VariantGrand);
7847                 for(k = forwardMostMove-2;
7848                     k>=backwardMostMove && k>=forwardMostMove-100 && (drop ||
7849                         (signed char)boards[k][EP_STATUS] < EP_UNKNOWN &&
7850                         (signed char)boards[k+2][EP_STATUS] <= EP_NONE && (signed char)boards[k+1][EP_STATUS] <= EP_NONE);
7851                     k-=2)
7852                 {   int rights=0;
7853                     if(CompareBoards(boards[k], boards[forwardMostMove])) {
7854                         /* compare castling rights */
7855                         if( boards[forwardMostMove][CASTLING][2] != boards[k][CASTLING][2] &&
7856                              (boards[k][CASTLING][0] != NoRights || boards[k][CASTLING][1] != NoRights) )
7857                                 rights++; /* King lost rights, while rook still had them */
7858                         if( boards[forwardMostMove][CASTLING][2] != NoRights ) { /* king has rights */
7859                             if( boards[forwardMostMove][CASTLING][0] != boards[k][CASTLING][0] ||
7860                                 boards[forwardMostMove][CASTLING][1] != boards[k][CASTLING][1] )
7861                                    rights++; /* but at least one rook lost them */
7862                         }
7863                         if( boards[forwardMostMove][CASTLING][5] != boards[k][CASTLING][5] &&
7864                              (boards[k][CASTLING][3] != NoRights || boards[k][CASTLING][4] != NoRights) )
7865                                 rights++;
7866                         if( boards[forwardMostMove][CASTLING][5] != NoRights ) {
7867                             if( boards[forwardMostMove][CASTLING][3] != boards[k][CASTLING][3] ||
7868                                 boards[forwardMostMove][CASTLING][4] != boards[k][CASTLING][4] )
7869                                    rights++;
7870                         }
7871                         if( rights == 0 && ++count > appData.drawRepeats-2 && canAdjudicate
7872                             && appData.drawRepeats > 1) {
7873                              /* adjudicate after user-specified nr of repeats */
7874                              int result = GameIsDrawn;
7875                              char *details = "XBoard adjudication: repetition draw";
7876                              if((gameInfo.variant == VariantXiangqi || gameInfo.variant == VariantShogi) && appData.testLegality) {
7877                                 // [HGM] xiangqi: check for forbidden perpetuals
7878                                 int m, ourPerpetual = 1, hisPerpetual = 1;
7879                                 for(m=forwardMostMove; m>k; m-=2) {
7880                                     if(MateTest(boards[m], PosFlags(m)) != MT_CHECK)
7881                                         ourPerpetual = 0; // the current mover did not always check
7882                                     if(MateTest(boards[m-1], PosFlags(m-1)) != MT_CHECK)
7883                                         hisPerpetual = 0; // the opponent did not always check
7884                                 }
7885                                 if(appData.debugMode) fprintf(debugFP, "XQ perpetual test, our=%d, his=%d\n",
7886                                                                         ourPerpetual, hisPerpetual);
7887                                 if(ourPerpetual && !hisPerpetual) { // we are actively checking him: forfeit
7888                                     result = WhiteOnMove(forwardMostMove) ? WhiteWins : BlackWins;
7889                                     details = "Xboard adjudication: perpetual checking";
7890                                 } else
7891                                 if(hisPerpetual && !ourPerpetual) { // he is checking us, but did not repeat yet
7892                                     break; // (or we would have caught him before). Abort repetition-checking loop.
7893                                 } else
7894                                 if(gameInfo.variant == VariantShogi) { // in Shogi other repetitions are draws
7895                                     if(BOARD_HEIGHT == 5 && BOARD_RGHT - BOARD_LEFT == 5) { // but in mini-Shogi gote wins!
7896                                         result = BlackWins;
7897                                         details = "Xboard adjudication: repetition";
7898                                     }
7899                                 } else // it must be XQ
7900                                 // Now check for perpetual chases
7901                                 if(!ourPerpetual && !hisPerpetual) { // no perpetual check, test for chase
7902                                     hisPerpetual = PerpetualChase(k, forwardMostMove);
7903                                     ourPerpetual = PerpetualChase(k+1, forwardMostMove);
7904                                     if(ourPerpetual && !hisPerpetual) { // we are actively chasing him: forfeit
7905                                         static char resdet[MSG_SIZ];
7906                                         result = WhiteOnMove(forwardMostMove) ? WhiteWins : BlackWins;
7907                                         details = resdet;
7908                                         snprintf(resdet, MSG_SIZ, "Xboard adjudication: perpetual chasing of %c%c", ourPerpetual>>8, ourPerpetual&255);
7909                                     } else
7910                                     if(hisPerpetual && !ourPerpetual)   // he is chasing us, but did not repeat yet
7911                                         break; // Abort repetition-checking loop.
7912                                 }
7913                                 // if neither of us is checking or chasing all the time, or both are, it is draw
7914                              }
7915                              if(engineOpponent) {
7916                                SendToProgram("force\n", engineOpponent); // suppress reply
7917                                SendMoveToProgram(forwardMostMove-1, engineOpponent); /* make sure opponent gets to see move */
7918                              }
7919                              GameEnds( result, details, GE_XBOARD );
7920                              return 1;
7921                         }
7922                         if( rights == 0 && count > 1 ) /* occurred 2 or more times before */
7923                              boards[forwardMostMove][EP_STATUS] = EP_REP_DRAW;
7924                     }
7925                 }
7926
7927                 /* Now we test for 50-move draws. Determine ply count */
7928                 count = forwardMostMove;
7929                 /* look for last irreversble move */
7930                 while( (signed char)boards[count][EP_STATUS] <= EP_NONE && count > backwardMostMove )
7931                     count--;
7932                 /* if we hit starting position, add initial plies */
7933                 if( count == backwardMostMove )
7934                     count -= initialRulePlies;
7935                 count = forwardMostMove - count;
7936                 if(gameInfo.variant == VariantXiangqi && ( count >= 100 || count >= 2*appData.ruleMoves ) ) {
7937                         // adjust reversible move counter for checks in Xiangqi
7938                         int i = forwardMostMove - count, inCheck = 0, lastCheck;
7939                         if(i < backwardMostMove) i = backwardMostMove;
7940                         while(i <= forwardMostMove) {
7941                                 lastCheck = inCheck; // check evasion does not count
7942                                 inCheck = (MateTest(boards[i], PosFlags(i)) == MT_CHECK);
7943                                 if(inCheck || lastCheck) count--; // check does not count
7944                                 i++;
7945                         }
7946                 }
7947                 if( count >= 100)
7948                          boards[forwardMostMove][EP_STATUS] = EP_RULE_DRAW;
7949                          /* this is used to judge if draw claims are legal */
7950                 if(canAdjudicate && appData.ruleMoves > 0 && count >= 2*appData.ruleMoves) {
7951                          if(engineOpponent) {
7952                            SendToProgram("force\n", engineOpponent); // suppress reply
7953                            SendMoveToProgram(forwardMostMove-1, engineOpponent); /* make sure opponent gets to see move */
7954                          }
7955                          GameEnds( GameIsDrawn, "Xboard adjudication: 50-move rule", GE_XBOARD );
7956                          return 1;
7957                 }
7958
7959                 /* if draw offer is pending, treat it as a draw claim
7960                  * when draw condition present, to allow engines a way to
7961                  * claim draws before making their move to avoid a race
7962                  * condition occurring after their move
7963                  */
7964                 if((gameMode == TwoMachinesPlay ? second.offeredDraw : userOfferedDraw) || first.offeredDraw ) {
7965                          char *p = NULL;
7966                          if((signed char)boards[forwardMostMove][EP_STATUS] == EP_RULE_DRAW)
7967                              p = "Draw claim: 50-move rule";
7968                          if((signed char)boards[forwardMostMove][EP_STATUS] == EP_REP_DRAW)
7969                              p = "Draw claim: 3-fold repetition";
7970                          if((signed char)boards[forwardMostMove][EP_STATUS] == EP_INSUF_DRAW)
7971                              p = "Draw claim: insufficient mating material";
7972                          if( p != NULL && canAdjudicate) {
7973                              if(engineOpponent) {
7974                                SendToProgram("force\n", engineOpponent); // suppress reply
7975                                SendMoveToProgram(forwardMostMove-1, engineOpponent); /* make sure opponent gets to see move */
7976                              }
7977                              GameEnds( GameIsDrawn, p, GE_XBOARD );
7978                              return 1;
7979                          }
7980                 }
7981
7982                 if( canAdjudicate && appData.adjudicateDrawMoves > 0 && forwardMostMove > (2*appData.adjudicateDrawMoves) ) {
7983                     if(engineOpponent) {
7984                       SendToProgram("force\n", engineOpponent); // suppress reply
7985                       SendMoveToProgram(forwardMostMove-1, engineOpponent); /* make sure opponent gets to see move */
7986                     }
7987                     GameEnds( GameIsDrawn, "Xboard adjudication: long game", GE_XBOARD );
7988                     return 1;
7989                 }
7990         return 0;
7991 }
7992
7993 char *
7994 SendMoveToBookUser (int moveNr, ChessProgramState *cps, int initial)
7995 {   // [HGM] book: this routine intercepts moves to simulate book replies
7996     char *bookHit = NULL;
7997
7998     //first determine if the incoming move brings opponent into his book
7999     if(appData.usePolyglotBook && (cps == &first ? !appData.firstHasOwnBookUCI : !appData.secondHasOwnBookUCI))
8000         bookHit = ProbeBook(moveNr+1, appData.polyglotBook); // returns move
8001     if(appData.debugMode) fprintf(debugFP, "book hit = %s\n", bookHit ? bookHit : "(NULL)");
8002     if(bookHit != NULL && !cps->bookSuspend) {
8003         // make sure opponent is not going to reply after receiving move to book position
8004         SendToProgram("force\n", cps);
8005         cps->bookSuspend = TRUE; // flag indicating it has to be restarted
8006     }
8007     if(!initial) SendMoveToProgram(moveNr, cps); // with hit on initial position there is no move
8008     // now arrange restart after book miss
8009     if(bookHit) {
8010         // after a book hit we never send 'go', and the code after the call to this routine
8011         // has '&& !bookHit' added to suppress potential sending there (based on 'firstMove').
8012         char buf[MSG_SIZ], *move = bookHit;
8013         if(cps->useSAN) {
8014             int fromX, fromY, toX, toY;
8015             char promoChar;
8016             ChessMove moveType;
8017             move = buf + 30;
8018             if (ParseOneMove(bookHit, forwardMostMove, &moveType,
8019                                  &fromX, &fromY, &toX, &toY, &promoChar)) {
8020                 (void) CoordsToAlgebraic(boards[forwardMostMove],
8021                                     PosFlags(forwardMostMove),
8022                                     fromY, fromX, toY, toX, promoChar, move);
8023             } else {
8024                 if(appData.debugMode) fprintf(debugFP, "Book move could not be parsed\n");
8025                 bookHit = NULL;
8026             }
8027         }
8028         snprintf(buf, MSG_SIZ, "%s%s\n", (cps->useUsermove ? "usermove " : ""), move); // force book move into program supposed to play it
8029         SendToProgram(buf, cps);
8030         if(!initial) firstMove = FALSE; // normally we would clear the firstMove condition after return & sending 'go'
8031     } else if(initial) { // 'go' was needed irrespective of firstMove, and it has to be done in this routine
8032         SendToProgram("go\n", cps);
8033         cps->bookSuspend = FALSE; // after a 'go' we are never suspended
8034     } else { // 'go' might be sent based on 'firstMove' after this routine returns
8035         if(cps->bookSuspend && !firstMove) // 'go' needed, and it will not be done after we return
8036             SendToProgram("go\n", cps);
8037         cps->bookSuspend = FALSE; // anyhow, we will not be suspended after a miss
8038     }
8039     return bookHit; // notify caller of hit, so it can take action to send move to opponent
8040 }
8041
8042 int
8043 LoadError (char *errmess, ChessProgramState *cps)
8044 {   // unloads engine and switches back to -ncp mode if it was first
8045     if(cps->initDone) return FALSE;
8046     cps->isr = NULL; // this should suppress further error popups from breaking pipes
8047     DestroyChildProcess(cps->pr, 9 ); // just to be sure
8048     cps->pr = NoProc;
8049     if(cps == &first) {
8050         appData.noChessProgram = TRUE;
8051         gameMode = MachinePlaysBlack; ModeHighlight(); // kludge to unmark Machine Black menu
8052         gameMode = BeginningOfGame; ModeHighlight();
8053         SetNCPMode();
8054     }
8055     if(GetDelayedEvent()) CancelDelayedEvent(), ThawUI(); // [HGM] cancel remaining loading effort scheduled after feature timeout
8056     DisplayMessage("", ""); // erase waiting message
8057     if(errmess) DisplayError(errmess, 0); // announce reason, if given
8058     return TRUE;
8059 }
8060
8061 char *savedMessage;
8062 ChessProgramState *savedState;
8063 void
8064 DeferredBookMove (void)
8065 {
8066         if(savedState->lastPing != savedState->lastPong)
8067                     ScheduleDelayedEvent(DeferredBookMove, 10);
8068         else
8069         HandleMachineMove(savedMessage, savedState);
8070 }
8071
8072 static int savedWhitePlayer, savedBlackPlayer, pairingReceived;
8073 static ChessProgramState *stalledEngine;
8074 static char stashedInputMove[MSG_SIZ];
8075
8076 void
8077 HandleMachineMove (char *message, ChessProgramState *cps)
8078 {
8079     char machineMove[MSG_SIZ], buf1[MSG_SIZ*10], buf2[MSG_SIZ];
8080     char realname[MSG_SIZ];
8081     int fromX, fromY, toX, toY;
8082     ChessMove moveType;
8083     char promoChar;
8084     char *p, *pv=buf1;
8085     int machineWhite, oldError;
8086     char *bookHit;
8087
8088     if(cps == &pairing && sscanf(message, "%d-%d", &savedWhitePlayer, &savedBlackPlayer) == 2) {
8089         // [HGM] pairing: Mega-hack! Pairing engine also uses this routine (so it could give other WB commands).
8090         if(savedWhitePlayer == 0 || savedBlackPlayer == 0) {
8091             DisplayError(_("Invalid pairing from pairing engine"), 0);
8092             return;
8093         }
8094         pairingReceived = 1;
8095         NextMatchGame();
8096         return; // Skim the pairing messages here.
8097     }
8098
8099     oldError = cps->userError; cps->userError = 0;
8100
8101 FakeBookMove: // [HGM] book: we jump here to simulate machine moves after book hit
8102     /*
8103      * Kludge to ignore BEL characters
8104      */
8105     while (*message == '\007') message++;
8106
8107     /*
8108      * [HGM] engine debug message: ignore lines starting with '#' character
8109      */
8110     if(cps->debug && *message == '#') return;
8111
8112     /*
8113      * Look for book output
8114      */
8115     if (cps == &first && bookRequested) {
8116         if (message[0] == '\t' || message[0] == ' ') {
8117             /* Part of the book output is here; append it */
8118             strcat(bookOutput, message);
8119             strcat(bookOutput, "  \n");
8120             return;
8121         } else if (bookOutput[0] != NULLCHAR) {
8122             /* All of book output has arrived; display it */
8123             char *p = bookOutput;
8124             while (*p != NULLCHAR) {
8125                 if (*p == '\t') *p = ' ';
8126                 p++;
8127             }
8128             DisplayInformation(bookOutput);
8129             bookRequested = FALSE;
8130             /* Fall through to parse the current output */
8131         }
8132     }
8133
8134     /*
8135      * Look for machine move.
8136      */
8137     if ((sscanf(message, "%s %s %s", buf1, buf2, machineMove) == 3 && strcmp(buf2, "...") == 0) ||
8138         (sscanf(message, "%s %s", buf1, machineMove) == 2 && strcmp(buf1, "move") == 0))
8139     {
8140         if(pausing && !cps->pause) { // for pausing engine that does not support 'pause', we stash its move for processing when we resume.
8141             if(appData.debugMode) fprintf(debugFP, "pause %s engine after move\n", cps->which);
8142             safeStrCpy(stashedInputMove, message, MSG_SIZ);
8143             stalledEngine = cps;
8144             if(appData.ponderNextMove) { // bring opponent out of ponder
8145                 if(gameMode == TwoMachinesPlay) {
8146                     if(cps->other->pause)
8147                         PauseEngine(cps->other);
8148                     else
8149                         SendToProgram("easy\n", cps->other);
8150                 }
8151             }
8152             StopClocks();
8153             return;
8154         }
8155
8156         /* This method is only useful on engines that support ping */
8157         if (cps->lastPing != cps->lastPong) {
8158           if (gameMode == BeginningOfGame) {
8159             /* Extra move from before last new; ignore */
8160             if (appData.debugMode) {
8161                 fprintf(debugFP, "Ignoring extra move from %s\n", cps->which);
8162             }
8163           } else {
8164             if (appData.debugMode) {
8165                 fprintf(debugFP, "Undoing extra move from %s, gameMode %d\n",
8166                         cps->which, gameMode);
8167             }
8168
8169             SendToProgram("undo\n", cps);
8170           }
8171           return;
8172         }
8173
8174         switch (gameMode) {
8175           case BeginningOfGame:
8176             /* Extra move from before last reset; ignore */
8177             if (appData.debugMode) {
8178                 fprintf(debugFP, "Ignoring extra move from %s\n", cps->which);
8179             }
8180             return;
8181
8182           case EndOfGame:
8183           case IcsIdle:
8184           default:
8185             /* Extra move after we tried to stop.  The mode test is
8186                not a reliable way of detecting this problem, but it's
8187                the best we can do on engines that don't support ping.
8188             */
8189             if (appData.debugMode) {
8190                 fprintf(debugFP, "Undoing extra move from %s, gameMode %d\n",
8191                         cps->which, gameMode);
8192             }
8193             SendToProgram("undo\n", cps);
8194             return;
8195
8196           case MachinePlaysWhite:
8197           case IcsPlayingWhite:
8198             machineWhite = TRUE;
8199             break;
8200
8201           case MachinePlaysBlack:
8202           case IcsPlayingBlack:
8203             machineWhite = FALSE;
8204             break;
8205
8206           case TwoMachinesPlay:
8207             machineWhite = (cps->twoMachinesColor[0] == 'w');
8208             break;
8209         }
8210         if (WhiteOnMove(forwardMostMove) != machineWhite) {
8211             if (appData.debugMode) {
8212                 fprintf(debugFP,
8213                         "Ignoring move out of turn by %s, gameMode %d"
8214                         ", forwardMost %d\n",
8215                         cps->which, gameMode, forwardMostMove);
8216             }
8217             return;
8218         }
8219
8220         if(cps->alphaRank) AlphaRank(machineMove, 4);
8221         if (!ParseOneMove(machineMove, forwardMostMove, &moveType,
8222                               &fromX, &fromY, &toX, &toY, &promoChar)) {
8223             /* Machine move could not be parsed; ignore it. */
8224           snprintf(buf1, MSG_SIZ*10, _("Illegal move \"%s\" from %s machine"),
8225                     machineMove, _(cps->which));
8226             DisplayMoveError(buf1);
8227             snprintf(buf1, MSG_SIZ*10, "Xboard: Forfeit due to invalid move: %s (%c%c%c%c) res=%d",
8228                     machineMove, fromX+AAA, fromY+ONE, toX+AAA, toY+ONE, moveType);
8229             if (gameMode == TwoMachinesPlay) {
8230               GameEnds(machineWhite ? BlackWins : WhiteWins,
8231                        buf1, GE_XBOARD);
8232             }
8233             return;
8234         }
8235
8236         /* [HGM] Apparently legal, but so far only tested with EP_UNKOWN */
8237         /* So we have to redo legality test with true e.p. status here,  */
8238         /* to make sure an illegal e.p. capture does not slip through,   */
8239         /* to cause a forfeit on a justified illegal-move complaint      */
8240         /* of the opponent.                                              */
8241         if( gameMode==TwoMachinesPlay && appData.testLegality ) {
8242            ChessMove moveType;
8243            moveType = LegalityTest(boards[forwardMostMove], PosFlags(forwardMostMove),
8244                              fromY, fromX, toY, toX, promoChar);
8245             if(moveType == IllegalMove) {
8246               snprintf(buf1, MSG_SIZ*10, "Xboard: Forfeit due to illegal move: %s (%c%c%c%c)%c",
8247                         machineMove, fromX+AAA, fromY+ONE, toX+AAA, toY+ONE, 0);
8248                 GameEnds(machineWhite ? BlackWins : WhiteWins,
8249                            buf1, GE_XBOARD);
8250                 return;
8251            } else if(gameInfo.variant != VariantFischeRandom && gameInfo.variant != VariantCapaRandom)
8252            /* [HGM] Kludge to handle engines that send FRC-style castling
8253               when they shouldn't (like TSCP-Gothic) */
8254            switch(moveType) {
8255              case WhiteASideCastleFR:
8256              case BlackASideCastleFR:
8257                toX+=2;
8258                currentMoveString[2]++;
8259                break;
8260              case WhiteHSideCastleFR:
8261              case BlackHSideCastleFR:
8262                toX--;
8263                currentMoveString[2]--;
8264                break;
8265              default: ; // nothing to do, but suppresses warning of pedantic compilers
8266            }
8267         }
8268         hintRequested = FALSE;
8269         lastHint[0] = NULLCHAR;
8270         bookRequested = FALSE;
8271         /* Program may be pondering now */
8272         cps->maybeThinking = TRUE;
8273         if (cps->sendTime == 2) cps->sendTime = 1;
8274         if (cps->offeredDraw) cps->offeredDraw--;
8275
8276         /* [AS] Save move info*/
8277         pvInfoList[ forwardMostMove ].score = programStats.score;
8278         pvInfoList[ forwardMostMove ].depth = programStats.depth;
8279         pvInfoList[ forwardMostMove ].time =  programStats.time; // [HGM] PGNtime: take time from engine stats
8280
8281         MakeMove(fromX, fromY, toX, toY, promoChar);/*updates forwardMostMove*/
8282
8283         /* [AS] Adjudicate game if needed (note: remember that forwardMostMove now points past the last move) */
8284         if( gameMode == TwoMachinesPlay && adjudicateLossThreshold != 0 && forwardMostMove >= adjudicateLossPlies ) {
8285             int count = 0;
8286
8287             while( count < adjudicateLossPlies ) {
8288                 int score = pvInfoList[ forwardMostMove - count - 1 ].score;
8289
8290                 if( count & 1 ) {
8291                     score = -score; /* Flip score for winning side */
8292                 }
8293
8294                 if( score > adjudicateLossThreshold ) {
8295                     break;
8296                 }
8297
8298                 count++;
8299             }
8300
8301             if( count >= adjudicateLossPlies ) {
8302                 ShowMove(fromX, fromY, toX, toY); /*updates currentMove*/
8303
8304                 GameEnds( WhiteOnMove(forwardMostMove) ? WhiteWins : BlackWins,
8305                     "Xboard adjudication",
8306                     GE_XBOARD );
8307
8308                 return;
8309             }
8310         }
8311
8312         if(Adjudicate(cps)) {
8313             ShowMove(fromX, fromY, toX, toY); /*updates currentMove*/
8314             return; // [HGM] adjudicate: for all automatic game ends
8315         }
8316
8317 #if ZIPPY
8318         if ((gameMode == IcsPlayingWhite || gameMode == IcsPlayingBlack) &&
8319             first.initDone) {
8320           if(cps->offeredDraw && (signed char)boards[forwardMostMove][EP_STATUS] <= EP_DRAWS) {
8321                 SendToICS(ics_prefix); // [HGM] drawclaim: send caim and move on one line for FICS
8322                 SendToICS("draw ");
8323                 SendMoveToICS(moveType, fromX, fromY, toX, toY, promoChar);
8324           }
8325           SendMoveToICS(moveType, fromX, fromY, toX, toY, promoChar);
8326           ics_user_moved = 1;
8327           if(appData.autoKibitz && !appData.icsEngineAnalyze ) { /* [HGM] kibitz: send most-recent PV info to ICS */
8328                 char buf[3*MSG_SIZ];
8329
8330                 snprintf(buf, 3*MSG_SIZ, "kibitz !!! %+.2f/%d (%.2f sec, %u nodes, %.0f knps) PV=%s\n",
8331                         programStats.score / 100.,
8332                         programStats.depth,
8333                         programStats.time / 100.,
8334                         (unsigned int)programStats.nodes,
8335                         (unsigned int)programStats.nodes / (10*abs(programStats.time) + 1.),
8336                         programStats.movelist);
8337                 SendToICS(buf);
8338 if(appData.debugMode) fprintf(debugFP, "nodes = %d, %lld\n", (int) programStats.nodes, programStats.nodes);
8339           }
8340         }
8341 #endif
8342
8343         /* [AS] Clear stats for next move */
8344         ClearProgramStats();
8345         thinkOutput[0] = NULLCHAR;
8346         hiddenThinkOutputState = 0;
8347
8348         bookHit = NULL;
8349         if (gameMode == TwoMachinesPlay) {
8350             /* [HGM] relaying draw offers moved to after reception of move */
8351             /* and interpreting offer as claim if it brings draw condition */
8352             if (cps->offeredDraw == 1 && cps->other->sendDrawOffers) {
8353                 SendToProgram("draw\n", cps->other);
8354             }
8355             if (cps->other->sendTime) {
8356                 SendTimeRemaining(cps->other,
8357                                   cps->other->twoMachinesColor[0] == 'w');
8358             }
8359             bookHit = SendMoveToBookUser(forwardMostMove-1, cps->other, FALSE);
8360             if (firstMove && !bookHit) {
8361                 firstMove = FALSE;
8362                 if (cps->other->useColors) {
8363                   SendToProgram(cps->other->twoMachinesColor, cps->other);
8364                 }
8365                 SendToProgram("go\n", cps->other);
8366             }
8367             cps->other->maybeThinking = TRUE;
8368         }
8369
8370         ShowMove(fromX, fromY, toX, toY); /*updates currentMove*/
8371
8372         if (!pausing && appData.ringBellAfterMoves) {
8373             RingBell();
8374         }
8375
8376         /*
8377          * Reenable menu items that were disabled while
8378          * machine was thinking
8379          */
8380         if (gameMode != TwoMachinesPlay)
8381             SetUserThinkingEnables();
8382
8383         // [HGM] book: after book hit opponent has received move and is now in force mode
8384         // force the book reply into it, and then fake that it outputted this move by jumping
8385         // back to the beginning of HandleMachineMove, with cps toggled and message set to this move
8386         if(bookHit) {
8387                 static char bookMove[MSG_SIZ]; // a bit generous?
8388
8389                 safeStrCpy(bookMove, "move ", sizeof(bookMove)/sizeof(bookMove[0]));
8390                 strcat(bookMove, bookHit);
8391                 message = bookMove;
8392                 cps = cps->other;
8393                 programStats.nodes = programStats.depth = programStats.time =
8394                 programStats.score = programStats.got_only_move = 0;
8395                 sprintf(programStats.movelist, "%s (xbook)", bookHit);
8396
8397                 if(cps->lastPing != cps->lastPong) {
8398                     savedMessage = message; // args for deferred call
8399                     savedState = cps;
8400                     ScheduleDelayedEvent(DeferredBookMove, 10);
8401                     return;
8402                 }
8403                 goto FakeBookMove;
8404         }
8405
8406         return;
8407     }
8408
8409     /* Set special modes for chess engines.  Later something general
8410      *  could be added here; for now there is just one kludge feature,
8411      *  needed because Crafty 15.10 and earlier don't ignore SIGINT
8412      *  when "xboard" is given as an interactive command.
8413      */
8414     if (strncmp(message, "kibitz Hello from Crafty", 24) == 0) {
8415         cps->useSigint = FALSE;
8416         cps->useSigterm = FALSE;
8417     }
8418     if (strncmp(message, "feature ", 8) == 0) { // [HGM] moved forward to pre-empt non-compliant commands
8419       ParseFeatures(message+8, cps);
8420       return; // [HGM] This return was missing, causing option features to be recognized as non-compliant commands!
8421     }
8422
8423     if ((!appData.testLegality || gameInfo.variant == VariantFairy) &&
8424                                         !strncmp(message, "setup ", 6)) { // [HGM] allow first engine to define opening position
8425       int dummy, s=6; char buf[MSG_SIZ];
8426       if(appData.icsActive || forwardMostMove != 0 || cps != &first) return;
8427       if(sscanf(message, "setup (%s", buf) == 1) s = 8 + strlen(buf), buf[s-9] = NULLCHAR, SetCharTable(pieceToChar, buf);
8428       if(startedFromSetupPosition) return;
8429       ParseFEN(boards[0], &dummy, message+s);
8430       DrawPosition(TRUE, boards[0]);
8431       startedFromSetupPosition = TRUE;
8432       return;
8433     }
8434     /* [HGM] Allow engine to set up a position. Don't ask me why one would
8435      * want this, I was asked to put it in, and obliged.
8436      */
8437     if (!strncmp(message, "setboard ", 9)) {
8438         Board initial_position;
8439
8440         GameEnds(GameUnfinished, "Engine aborts game", GE_XBOARD);
8441
8442         if (!ParseFEN(initial_position, &blackPlaysFirst, message + 9)) {
8443             DisplayError(_("Bad FEN received from engine"), 0);
8444             return ;
8445         } else {
8446            Reset(TRUE, FALSE);
8447            CopyBoard(boards[0], initial_position);
8448            initialRulePlies = FENrulePlies;
8449            if(blackPlaysFirst) gameMode = MachinePlaysWhite;
8450            else gameMode = MachinePlaysBlack;
8451            DrawPosition(FALSE, boards[currentMove]);
8452         }
8453         return;
8454     }
8455
8456     /*
8457      * Look for communication commands
8458      */
8459     if (!strncmp(message, "telluser ", 9)) {
8460         if(message[9] == '\\' && message[10] == '\\')
8461             EscapeExpand(message+9, message+11); // [HGM] esc: allow escape sequences in popup box
8462         PlayTellSound();
8463         DisplayNote(message + 9);
8464         return;
8465     }
8466     if (!strncmp(message, "tellusererror ", 14)) {
8467         cps->userError = 1;
8468         if(message[14] == '\\' && message[15] == '\\')
8469             EscapeExpand(message+14, message+16); // [HGM] esc: allow escape sequences in popup box
8470         PlayTellSound();
8471         DisplayError(message + 14, 0);
8472         return;
8473     }
8474     if (!strncmp(message, "tellopponent ", 13)) {
8475       if (appData.icsActive) {
8476         if (loggedOn) {
8477           snprintf(buf1, sizeof(buf1), "%ssay %s\n", ics_prefix, message + 13);
8478           SendToICS(buf1);
8479         }
8480       } else {
8481         DisplayNote(message + 13);
8482       }
8483       return;
8484     }
8485     if (!strncmp(message, "tellothers ", 11)) {
8486       if (appData.icsActive) {
8487         if (loggedOn) {
8488           snprintf(buf1, sizeof(buf1), "%swhisper %s\n", ics_prefix, message + 11);
8489           SendToICS(buf1);
8490         }
8491       } else if(appData.autoComment) AppendComment (forwardMostMove, message + 11, 1); // in local mode, add as move comment
8492       return;
8493     }
8494     if (!strncmp(message, "tellall ", 8)) {
8495       if (appData.icsActive) {
8496         if (loggedOn) {
8497           snprintf(buf1, sizeof(buf1), "%skibitz %s\n", ics_prefix, message + 8);
8498           SendToICS(buf1);
8499         }
8500       } else {
8501         DisplayNote(message + 8);
8502       }
8503       return;
8504     }
8505     if (strncmp(message, "warning", 7) == 0) {
8506         /* Undocumented feature, use tellusererror in new code */
8507         DisplayError(message, 0);
8508         return;
8509     }
8510     if (sscanf(message, "askuser %s %[^\n]", buf1, buf2) == 2) {
8511         safeStrCpy(realname, cps->tidy, sizeof(realname)/sizeof(realname[0]));
8512         strcat(realname, " query");
8513         AskQuestion(realname, buf2, buf1, cps->pr);
8514         return;
8515     }
8516     /* Commands from the engine directly to ICS.  We don't allow these to be
8517      *  sent until we are logged on. Crafty kibitzes have been known to
8518      *  interfere with the login process.
8519      */
8520     if (loggedOn) {
8521         if (!strncmp(message, "tellics ", 8)) {
8522             SendToICS(message + 8);
8523             SendToICS("\n");
8524             return;
8525         }
8526         if (!strncmp(message, "tellicsnoalias ", 15)) {
8527             SendToICS(ics_prefix);
8528             SendToICS(message + 15);
8529             SendToICS("\n");
8530             return;
8531         }
8532         /* The following are for backward compatibility only */
8533         if (!strncmp(message,"whisper",7) || !strncmp(message,"kibitz",6) ||
8534             !strncmp(message,"draw",4) || !strncmp(message,"tell",3)) {
8535             SendToICS(ics_prefix);
8536             SendToICS(message);
8537             SendToICS("\n");
8538             return;
8539         }
8540     }
8541     if (sscanf(message, "pong %d", &cps->lastPong) == 1) {
8542         return;
8543     }
8544     /*
8545      * If the move is illegal, cancel it and redraw the board.
8546      * Also deal with other error cases.  Matching is rather loose
8547      * here to accommodate engines written before the spec.
8548      */
8549     if (strncmp(message + 1, "llegal move", 11) == 0 ||
8550         strncmp(message, "Error", 5) == 0) {
8551         if (StrStr(message, "name") ||
8552             StrStr(message, "rating") || StrStr(message, "?") ||
8553             StrStr(message, "result") || StrStr(message, "board") ||
8554             StrStr(message, "bk") || StrStr(message, "computer") ||
8555             StrStr(message, "variant") || StrStr(message, "hint") ||
8556             StrStr(message, "random") || StrStr(message, "depth") ||
8557             StrStr(message, "accepted")) {
8558             return;
8559         }
8560         if (StrStr(message, "protover")) {
8561           /* Program is responding to input, so it's apparently done
8562              initializing, and this error message indicates it is
8563              protocol version 1.  So we don't need to wait any longer
8564              for it to initialize and send feature commands. */
8565           FeatureDone(cps, 1);
8566           cps->protocolVersion = 1;
8567           return;
8568         }
8569         cps->maybeThinking = FALSE;
8570
8571         if (StrStr(message, "draw")) {
8572             /* Program doesn't have "draw" command */
8573             cps->sendDrawOffers = 0;
8574             return;
8575         }
8576         if (cps->sendTime != 1 &&
8577             (StrStr(message, "time") || StrStr(message, "otim"))) {
8578           /* Program apparently doesn't have "time" or "otim" command */
8579           cps->sendTime = 0;
8580           return;
8581         }
8582         if (StrStr(message, "analyze")) {
8583             cps->analysisSupport = FALSE;
8584             cps->analyzing = FALSE;
8585 //          Reset(FALSE, TRUE); // [HGM] this caused discrepancy between display and internal state!
8586             EditGameEvent(); // [HGM] try to preserve loaded game
8587             snprintf(buf2,MSG_SIZ, _("%s does not support analysis"), cps->tidy);
8588             DisplayError(buf2, 0);
8589             return;
8590         }
8591         if (StrStr(message, "(no matching move)st")) {
8592           /* Special kludge for GNU Chess 4 only */
8593           cps->stKludge = TRUE;
8594           SendTimeControl(cps, movesPerSession, timeControl,
8595                           timeIncrement, appData.searchDepth,
8596                           searchTime);
8597           return;
8598         }
8599         if (StrStr(message, "(no matching move)sd")) {
8600           /* Special kludge for GNU Chess 4 only */
8601           cps->sdKludge = TRUE;
8602           SendTimeControl(cps, movesPerSession, timeControl,
8603                           timeIncrement, appData.searchDepth,
8604                           searchTime);
8605           return;
8606         }
8607         if (!StrStr(message, "llegal")) {
8608             return;
8609         }
8610         if (gameMode == BeginningOfGame || gameMode == EndOfGame ||
8611             gameMode == IcsIdle) return;
8612         if (forwardMostMove <= backwardMostMove) return;
8613         if (pausing) PauseEvent();
8614       if(appData.forceIllegal) {
8615             // [HGM] illegal: machine refused move; force position after move into it
8616           SendToProgram("force\n", cps);
8617           if(!cps->useSetboard) { // hideous kludge on kludge, because SendBoard sucks.
8618                 // we have a real problem now, as SendBoard will use the a2a3 kludge
8619                 // when black is to move, while there might be nothing on a2 or black
8620                 // might already have the move. So send the board as if white has the move.
8621                 // But first we must change the stm of the engine, as it refused the last move
8622                 SendBoard(cps, 0); // always kludgeless, as white is to move on boards[0]
8623                 if(WhiteOnMove(forwardMostMove)) {
8624                     SendToProgram("a7a6\n", cps); // for the engine black still had the move
8625                     SendBoard(cps, forwardMostMove); // kludgeless board
8626                 } else {
8627                     SendToProgram("a2a3\n", cps); // for the engine white still had the move
8628                     CopyBoard(boards[forwardMostMove+1], boards[forwardMostMove]);
8629                     SendBoard(cps, forwardMostMove+1); // kludgeless board
8630                 }
8631           } else SendBoard(cps, forwardMostMove); // FEN case, also sets stm properly
8632             if(gameMode == MachinePlaysWhite || gameMode == MachinePlaysBlack ||
8633                  gameMode == TwoMachinesPlay)
8634               SendToProgram("go\n", cps);
8635             return;
8636       } else
8637         if (gameMode == PlayFromGameFile) {
8638             /* Stop reading this game file */
8639             gameMode = EditGame;
8640             ModeHighlight();
8641         }
8642         /* [HGM] illegal-move claim should forfeit game when Xboard */
8643         /* only passes fully legal moves                            */
8644         if( appData.testLegality && gameMode == TwoMachinesPlay ) {
8645             GameEnds( cps->twoMachinesColor[0] == 'w' ? BlackWins : WhiteWins,
8646                                 "False illegal-move claim", GE_XBOARD );
8647             return; // do not take back move we tested as valid
8648         }
8649         currentMove = forwardMostMove-1;
8650         DisplayMove(currentMove-1); /* before DisplayMoveError */
8651         SwitchClocks(forwardMostMove-1); // [HGM] race
8652         DisplayBothClocks();
8653         snprintf(buf1, 10*MSG_SIZ, _("Illegal move \"%s\" (rejected by %s chess program)"),
8654                 parseList[currentMove], _(cps->which));
8655         DisplayMoveError(buf1);
8656         DrawPosition(FALSE, boards[currentMove]);
8657
8658         SetUserThinkingEnables();
8659         return;
8660     }
8661     if (strncmp(message, "time", 4) == 0 && StrStr(message, "Illegal")) {
8662         /* Program has a broken "time" command that
8663            outputs a string not ending in newline.
8664            Don't use it. */
8665         cps->sendTime = 0;
8666     }
8667
8668     /*
8669      * If chess program startup fails, exit with an error message.
8670      * Attempts to recover here are futile. [HGM] Well, we try anyway
8671      */
8672     if ((StrStr(message, "unknown host") != NULL)
8673         || (StrStr(message, "No remote directory") != NULL)
8674         || (StrStr(message, "not found") != NULL)
8675         || (StrStr(message, "No such file") != NULL)
8676         || (StrStr(message, "can't alloc") != NULL)
8677         || (StrStr(message, "Permission denied") != NULL)) {
8678
8679         cps->maybeThinking = FALSE;
8680         snprintf(buf1, sizeof(buf1), _("Failed to start %s chess program %s on %s: %s\n"),
8681                 _(cps->which), cps->program, cps->host, message);
8682         RemoveInputSource(cps->isr);
8683         if(appData.icsActive) DisplayFatalError(buf1, 0, 1); else {
8684             if(LoadError(oldError ? NULL : buf1, cps)) return; // error has then been handled by LoadError
8685             if(!oldError) DisplayError(buf1, 0); // if reason neatly announced, suppress general error popup
8686         }
8687         return;
8688     }
8689
8690     /*
8691      * Look for hint output
8692      */
8693     if (sscanf(message, "Hint: %s", buf1) == 1) {
8694         if (cps == &first && hintRequested) {
8695             hintRequested = FALSE;
8696             if (ParseOneMove(buf1, forwardMostMove, &moveType,
8697                                  &fromX, &fromY, &toX, &toY, &promoChar)) {
8698                 (void) CoordsToAlgebraic(boards[forwardMostMove],
8699                                     PosFlags(forwardMostMove),
8700                                     fromY, fromX, toY, toX, promoChar, buf1);
8701                 snprintf(buf2, sizeof(buf2), _("Hint: %s"), buf1);
8702                 DisplayInformation(buf2);
8703             } else {
8704                 /* Hint move could not be parsed!? */
8705               snprintf(buf2, sizeof(buf2),
8706                         _("Illegal hint move \"%s\"\nfrom %s chess program"),
8707                         buf1, _(cps->which));
8708                 DisplayError(buf2, 0);
8709             }
8710         } else {
8711           safeStrCpy(lastHint, buf1, sizeof(lastHint)/sizeof(lastHint[0]));
8712         }
8713         return;
8714     }
8715
8716     /*
8717      * Ignore other messages if game is not in progress
8718      */
8719     if (gameMode == BeginningOfGame || gameMode == EndOfGame ||
8720         gameMode == IcsIdle || cps->lastPing != cps->lastPong) return;
8721
8722     /*
8723      * look for win, lose, draw, or draw offer
8724      */
8725     if (strncmp(message, "1-0", 3) == 0) {
8726         char *p, *q, *r = "";
8727         p = strchr(message, '{');
8728         if (p) {
8729             q = strchr(p, '}');
8730             if (q) {
8731                 *q = NULLCHAR;
8732                 r = p + 1;
8733             }
8734         }
8735         GameEnds(WhiteWins, r, GE_ENGINE1 + (cps != &first)); /* [HGM] pass claimer indication for claim test */
8736         return;
8737     } else if (strncmp(message, "0-1", 3) == 0) {
8738         char *p, *q, *r = "";
8739         p = strchr(message, '{');
8740         if (p) {
8741             q = strchr(p, '}');
8742             if (q) {
8743                 *q = NULLCHAR;
8744                 r = p + 1;
8745             }
8746         }
8747         /* Kludge for Arasan 4.1 bug */
8748         if (strcmp(r, "Black resigns") == 0) {
8749             GameEnds(WhiteWins, r, GE_ENGINE1 + (cps != &first));
8750             return;
8751         }
8752         GameEnds(BlackWins, r, GE_ENGINE1 + (cps != &first));
8753         return;
8754     } else if (strncmp(message, "1/2", 3) == 0) {
8755         char *p, *q, *r = "";
8756         p = strchr(message, '{');
8757         if (p) {
8758             q = strchr(p, '}');
8759             if (q) {
8760                 *q = NULLCHAR;
8761                 r = p + 1;
8762             }
8763         }
8764
8765         GameEnds(GameIsDrawn, r, GE_ENGINE1 + (cps != &first));
8766         return;
8767
8768     } else if (strncmp(message, "White resign", 12) == 0) {
8769         GameEnds(BlackWins, "White resigns", GE_ENGINE1 + (cps != &first));
8770         return;
8771     } else if (strncmp(message, "Black resign", 12) == 0) {
8772         GameEnds(WhiteWins, "Black resigns", GE_ENGINE1 + (cps != &first));
8773         return;
8774     } else if (strncmp(message, "White matches", 13) == 0 ||
8775                strncmp(message, "Black matches", 13) == 0   ) {
8776         /* [HGM] ignore GNUShogi noises */
8777         return;
8778     } else if (strncmp(message, "White", 5) == 0 &&
8779                message[5] != '(' &&
8780                StrStr(message, "Black") == NULL) {
8781         GameEnds(WhiteWins, "White mates", GE_ENGINE1 + (cps != &first));
8782         return;
8783     } else if (strncmp(message, "Black", 5) == 0 &&
8784                message[5] != '(') {
8785         GameEnds(BlackWins, "Black mates", GE_ENGINE1 + (cps != &first));
8786         return;
8787     } else if (strcmp(message, "resign") == 0 ||
8788                strcmp(message, "computer resigns") == 0) {
8789         switch (gameMode) {
8790           case MachinePlaysBlack:
8791           case IcsPlayingBlack:
8792             GameEnds(WhiteWins, "Black resigns", GE_ENGINE);
8793             break;
8794           case MachinePlaysWhite:
8795           case IcsPlayingWhite:
8796             GameEnds(BlackWins, "White resigns", GE_ENGINE);
8797             break;
8798           case TwoMachinesPlay:
8799             if (cps->twoMachinesColor[0] == 'w')
8800               GameEnds(BlackWins, "White resigns", GE_ENGINE1 + (cps != &first));
8801             else
8802               GameEnds(WhiteWins, "Black resigns", GE_ENGINE1 + (cps != &first));
8803             break;
8804           default:
8805             /* can't happen */
8806             break;
8807         }
8808         return;
8809     } else if (strncmp(message, "opponent mates", 14) == 0) {
8810         switch (gameMode) {
8811           case MachinePlaysBlack:
8812           case IcsPlayingBlack:
8813             GameEnds(WhiteWins, "White mates", GE_ENGINE);
8814             break;
8815           case MachinePlaysWhite:
8816           case IcsPlayingWhite:
8817             GameEnds(BlackWins, "Black mates", GE_ENGINE);
8818             break;
8819           case TwoMachinesPlay:
8820             if (cps->twoMachinesColor[0] == 'w')
8821               GameEnds(BlackWins, "Black mates", GE_ENGINE1 + (cps != &first));
8822             else
8823               GameEnds(WhiteWins, "White mates", GE_ENGINE1 + (cps != &first));
8824             break;
8825           default:
8826             /* can't happen */
8827             break;
8828         }
8829         return;
8830     } else if (strncmp(message, "computer mates", 14) == 0) {
8831         switch (gameMode) {
8832           case MachinePlaysBlack:
8833           case IcsPlayingBlack:
8834             GameEnds(BlackWins, "Black mates", GE_ENGINE1);
8835             break;
8836           case MachinePlaysWhite:
8837           case IcsPlayingWhite:
8838             GameEnds(WhiteWins, "White mates", GE_ENGINE);
8839             break;
8840           case TwoMachinesPlay:
8841             if (cps->twoMachinesColor[0] == 'w')
8842               GameEnds(WhiteWins, "White mates", GE_ENGINE1 + (cps != &first));
8843             else
8844               GameEnds(BlackWins, "Black mates", GE_ENGINE1 + (cps != &first));
8845             break;
8846           default:
8847             /* can't happen */
8848             break;
8849         }
8850         return;
8851     } else if (strncmp(message, "checkmate", 9) == 0) {
8852         if (WhiteOnMove(forwardMostMove)) {
8853             GameEnds(BlackWins, "Black mates", GE_ENGINE1 + (cps != &first));
8854         } else {
8855             GameEnds(WhiteWins, "White mates", GE_ENGINE1 + (cps != &first));
8856         }
8857         return;
8858     } else if (strstr(message, "Draw") != NULL ||
8859                strstr(message, "game is a draw") != NULL) {
8860         GameEnds(GameIsDrawn, "Draw", GE_ENGINE1 + (cps != &first));
8861         return;
8862     } else if (strstr(message, "offer") != NULL &&
8863                strstr(message, "draw") != NULL) {
8864 #if ZIPPY
8865         if (appData.zippyPlay && first.initDone) {
8866             /* Relay offer to ICS */
8867             SendToICS(ics_prefix);
8868             SendToICS("draw\n");
8869         }
8870 #endif
8871         cps->offeredDraw = 2; /* valid until this engine moves twice */
8872         if (gameMode == TwoMachinesPlay) {
8873             if (cps->other->offeredDraw) {
8874                 GameEnds(GameIsDrawn, "Draw agreed", GE_XBOARD);
8875             /* [HGM] in two-machine mode we delay relaying draw offer      */
8876             /* until after we also have move, to see if it is really claim */
8877             }
8878         } else if (gameMode == MachinePlaysWhite ||
8879                    gameMode == MachinePlaysBlack) {
8880           if (userOfferedDraw) {
8881             DisplayInformation(_("Machine accepts your draw offer"));
8882             GameEnds(GameIsDrawn, "Draw agreed", GE_XBOARD);
8883           } else {
8884             DisplayInformation(_("Machine offers a draw\nSelect Action / Draw to agree"));
8885           }
8886         }
8887     }
8888
8889
8890     /*
8891      * Look for thinking output
8892      */
8893     if ( appData.showThinking // [HGM] thinking: test all options that cause this output
8894           || !appData.hideThinkingFromHuman || appData.adjudicateLossThreshold != 0 || EngineOutputIsUp()
8895                                 ) {
8896         int plylev, mvleft, mvtot, curscore, time;
8897         char mvname[MOVE_LEN];
8898         u64 nodes; // [DM]
8899         char plyext;
8900         int ignore = FALSE;
8901         int prefixHint = FALSE;
8902         mvname[0] = NULLCHAR;
8903
8904         switch (gameMode) {
8905           case MachinePlaysBlack:
8906           case IcsPlayingBlack:
8907             if (WhiteOnMove(forwardMostMove)) prefixHint = TRUE;
8908             break;
8909           case MachinePlaysWhite:
8910           case IcsPlayingWhite:
8911             if (!WhiteOnMove(forwardMostMove)) prefixHint = TRUE;
8912             break;
8913           case AnalyzeMode:
8914           case AnalyzeFile:
8915             break;
8916           case IcsObserving: /* [DM] icsEngineAnalyze */
8917             if (!appData.icsEngineAnalyze) ignore = TRUE;
8918             break;
8919           case TwoMachinesPlay:
8920             if ((cps->twoMachinesColor[0] == 'w') != WhiteOnMove(forwardMostMove)) {
8921                 ignore = TRUE;
8922             }
8923             break;
8924           default:
8925             ignore = TRUE;
8926             break;
8927         }
8928
8929         if (!ignore) {
8930             ChessProgramStats tempStats = programStats; // [HGM] info: filter out info lines
8931             buf1[0] = NULLCHAR;
8932             if (sscanf(message, "%d%c %d %d " u64Display " %[^\n]\n",
8933                        &plylev, &plyext, &curscore, &time, &nodes, buf1) >= 5) {
8934
8935                 if (plyext != ' ' && plyext != '\t') {
8936                     time *= 100;
8937                 }
8938
8939                 /* [AS] Negate score if machine is playing black and reporting absolute scores */
8940                 if( cps->scoreIsAbsolute &&
8941                     ( gameMode == MachinePlaysBlack ||
8942                       gameMode == TwoMachinesPlay && cps->twoMachinesColor[0] == 'b' ||
8943                       gameMode == IcsPlayingBlack ||     // [HGM] also add other situations where engine should report black POV
8944                      (gameMode == AnalyzeMode || gameMode == AnalyzeFile || gameMode == IcsObserving && appData.icsEngineAnalyze) &&
8945                      !WhiteOnMove(currentMove)
8946                     ) )
8947                 {
8948                     curscore = -curscore;
8949                 }
8950
8951                 if(appData.pvSAN[cps==&second]) pv = PvToSAN(buf1);
8952
8953                 if(serverMoves && (time > 100 || time == 0 && plylev > 7)) {
8954                         char buf[MSG_SIZ];
8955                         FILE *f;
8956                         snprintf(buf, MSG_SIZ, "%s", appData.serverMovesName);
8957                         buf[strlen(buf)-1] = gameMode == MachinePlaysWhite ? 'w' :
8958                                              gameMode == MachinePlaysBlack ? 'b' : cps->twoMachinesColor[0];
8959                         if(appData.debugMode) fprintf(debugFP, "write PV on file '%s'\n", buf);
8960                         if(f = fopen(buf, "w")) { // export PV to applicable PV file
8961                                 fprintf(f, "%5.2f/%-2d %s", curscore/100., plylev, pv);
8962                                 fclose(f);
8963                         } else DisplayError(_("failed writing PV"), 0);
8964                 }
8965
8966                 tempStats.depth = plylev;
8967                 tempStats.nodes = nodes;
8968                 tempStats.time = time;
8969                 tempStats.score = curscore;
8970                 tempStats.got_only_move = 0;
8971
8972                 if(cps->nps >= 0) { /* [HGM] nps: use engine nodes or time to decrement clock */
8973                         int ticklen;
8974
8975                         if(cps->nps == 0) ticklen = 10*time;                    // use engine reported time
8976                         else ticklen = (1000. * u64ToDouble(nodes)) / cps->nps; // convert node count to time
8977                         if(WhiteOnMove(forwardMostMove) && (gameMode == MachinePlaysWhite ||
8978                                                 gameMode == TwoMachinesPlay && cps->twoMachinesColor[0] == 'w'))
8979                              whiteTimeRemaining = timeRemaining[0][forwardMostMove] - ticklen;
8980                         if(!WhiteOnMove(forwardMostMove) && (gameMode == MachinePlaysBlack ||
8981                                                 gameMode == TwoMachinesPlay && cps->twoMachinesColor[0] == 'b'))
8982                              blackTimeRemaining = timeRemaining[1][forwardMostMove] - ticklen;
8983                 }
8984
8985                 /* Buffer overflow protection */
8986                 if (pv[0] != NULLCHAR) {
8987                     if (strlen(pv) >= sizeof(tempStats.movelist)
8988                         && appData.debugMode) {
8989                         fprintf(debugFP,
8990                                 "PV is too long; using the first %u bytes.\n",
8991                                 (unsigned) sizeof(tempStats.movelist) - 1);
8992                     }
8993
8994                     safeStrCpy( tempStats.movelist, pv, sizeof(tempStats.movelist)/sizeof(tempStats.movelist[0]) );
8995                 } else {
8996                     sprintf(tempStats.movelist, " no PV\n");
8997                 }
8998
8999                 if (tempStats.seen_stat) {
9000                     tempStats.ok_to_send = 1;
9001                 }
9002
9003                 if (strchr(tempStats.movelist, '(') != NULL) {
9004                     tempStats.line_is_book = 1;
9005                     tempStats.nr_moves = 0;
9006                     tempStats.moves_left = 0;
9007                 } else {
9008                     tempStats.line_is_book = 0;
9009                 }
9010
9011                     if(tempStats.score != 0 || tempStats.nodes != 0 || tempStats.time != 0)
9012                         programStats = tempStats; // [HGM] info: only set stats if genuine PV and not an info line
9013
9014                 SendProgramStatsToFrontend( cps, &tempStats );
9015
9016                 /*
9017                     [AS] Protect the thinkOutput buffer from overflow... this
9018                     is only useful if buf1 hasn't overflowed first!
9019                 */
9020                 snprintf(thinkOutput, sizeof(thinkOutput)/sizeof(thinkOutput[0]), "[%d]%c%+.2f %s%s",
9021                          plylev,
9022                          (gameMode == TwoMachinesPlay ?
9023                           ToUpper(cps->twoMachinesColor[0]) : ' '),
9024                          ((double) curscore) / 100.0,
9025                          prefixHint ? lastHint : "",
9026                          prefixHint ? " " : "" );
9027
9028                 if( buf1[0] != NULLCHAR ) {
9029                     unsigned max_len = sizeof(thinkOutput) - strlen(thinkOutput) - 1;
9030
9031                     if( strlen(pv) > max_len ) {
9032                         if( appData.debugMode) {
9033                             fprintf(debugFP,"PV is too long for thinkOutput, truncating.\n");
9034                         }
9035                         pv[max_len+1] = '\0';
9036                     }
9037
9038                     strcat( thinkOutput, pv);
9039                 }
9040
9041                 if (currentMove == forwardMostMove || gameMode == AnalyzeMode
9042                         || gameMode == AnalyzeFile || appData.icsEngineAnalyze) {
9043                     DisplayMove(currentMove - 1);
9044                 }
9045                 return;
9046
9047             } else if ((p=StrStr(message, "(only move)")) != NULL) {
9048                 /* crafty (9.25+) says "(only move) <move>"
9049                  * if there is only 1 legal move
9050                  */
9051                 sscanf(p, "(only move) %s", buf1);
9052                 snprintf(thinkOutput, sizeof(thinkOutput)/sizeof(thinkOutput[0]), "%s (only move)", buf1);
9053                 sprintf(programStats.movelist, "%s (only move)", buf1);
9054                 programStats.depth = 1;
9055                 programStats.nr_moves = 1;
9056                 programStats.moves_left = 1;
9057                 programStats.nodes = 1;
9058                 programStats.time = 1;
9059                 programStats.got_only_move = 1;
9060
9061                 /* Not really, but we also use this member to
9062                    mean "line isn't going to change" (Crafty
9063                    isn't searching, so stats won't change) */
9064                 programStats.line_is_book = 1;
9065
9066                 SendProgramStatsToFrontend( cps, &programStats );
9067
9068                 if (currentMove == forwardMostMove || gameMode==AnalyzeMode ||
9069                            gameMode == AnalyzeFile || appData.icsEngineAnalyze) {
9070                     DisplayMove(currentMove - 1);
9071                 }
9072                 return;
9073             } else if (sscanf(message,"stat01: %d " u64Display " %d %d %d %s",
9074                               &time, &nodes, &plylev, &mvleft,
9075                               &mvtot, mvname) >= 5) {
9076                 /* The stat01: line is from Crafty (9.29+) in response
9077                    to the "." command */
9078                 programStats.seen_stat = 1;
9079                 cps->maybeThinking = TRUE;
9080
9081                 if (programStats.got_only_move || !appData.periodicUpdates)
9082                   return;
9083
9084                 programStats.depth = plylev;
9085                 programStats.time = time;
9086                 programStats.nodes = nodes;
9087                 programStats.moves_left = mvleft;
9088                 programStats.nr_moves = mvtot;
9089                 safeStrCpy(programStats.move_name, mvname, sizeof(programStats.move_name)/sizeof(programStats.move_name[0]));
9090                 programStats.ok_to_send = 1;
9091                 programStats.movelist[0] = '\0';
9092
9093                 SendProgramStatsToFrontend( cps, &programStats );
9094
9095                 return;
9096
9097             } else if (strncmp(message,"++",2) == 0) {
9098                 /* Crafty 9.29+ outputs this */
9099                 programStats.got_fail = 2;
9100                 return;
9101
9102             } else if (strncmp(message,"--",2) == 0) {
9103                 /* Crafty 9.29+ outputs this */
9104                 programStats.got_fail = 1;
9105                 return;
9106
9107             } else if (thinkOutput[0] != NULLCHAR &&
9108                        strncmp(message, "    ", 4) == 0) {
9109                 unsigned message_len;
9110
9111                 p = message;
9112                 while (*p && *p == ' ') p++;
9113
9114                 message_len = strlen( p );
9115
9116                 /* [AS] Avoid buffer overflow */
9117                 if( sizeof(thinkOutput) - strlen(thinkOutput) - 1 > message_len ) {
9118                     strcat(thinkOutput, " ");
9119                     strcat(thinkOutput, p);
9120                 }
9121
9122                 if( sizeof(programStats.movelist) - strlen(programStats.movelist) - 1 > message_len ) {
9123                     strcat(programStats.movelist, " ");
9124                     strcat(programStats.movelist, p);
9125                 }
9126
9127                 if (currentMove == forwardMostMove || gameMode==AnalyzeMode ||
9128                            gameMode == AnalyzeFile || appData.icsEngineAnalyze) {
9129                     DisplayMove(currentMove - 1);
9130                 }
9131                 return;
9132             }
9133         }
9134         else {
9135             buf1[0] = NULLCHAR;
9136
9137             if (sscanf(message, "%d%c %d %d " u64Display " %[^\n]\n",
9138                        &plylev, &plyext, &curscore, &time, &nodes, buf1) >= 5)
9139             {
9140                 ChessProgramStats cpstats;
9141
9142                 if (plyext != ' ' && plyext != '\t') {
9143                     time *= 100;
9144                 }
9145
9146                 /* [AS] Negate score if machine is playing black and reporting absolute scores */
9147                 if( cps->scoreIsAbsolute && ((gameMode == MachinePlaysBlack) || (gameMode == TwoMachinesPlay && cps->twoMachinesColor[0] == 'b')) ) {
9148                     curscore = -curscore;
9149                 }
9150
9151                 cpstats.depth = plylev;
9152                 cpstats.nodes = nodes;
9153                 cpstats.time = time;
9154                 cpstats.score = curscore;
9155                 cpstats.got_only_move = 0;
9156                 cpstats.movelist[0] = '\0';
9157
9158                 if (buf1[0] != NULLCHAR) {
9159                     safeStrCpy( cpstats.movelist, buf1, sizeof(cpstats.movelist)/sizeof(cpstats.movelist[0]) );
9160                 }
9161
9162                 cpstats.ok_to_send = 0;
9163                 cpstats.line_is_book = 0;
9164                 cpstats.nr_moves = 0;
9165                 cpstats.moves_left = 0;
9166
9167                 SendProgramStatsToFrontend( cps, &cpstats );
9168             }
9169         }
9170     }
9171 }
9172
9173
9174 /* Parse a game score from the character string "game", and
9175    record it as the history of the current game.  The game
9176    score is NOT assumed to start from the standard position.
9177    The display is not updated in any way.
9178    */
9179 void
9180 ParseGameHistory (char *game)
9181 {
9182     ChessMove moveType;
9183     int fromX, fromY, toX, toY, boardIndex;
9184     char promoChar;
9185     char *p, *q;
9186     char buf[MSG_SIZ];
9187
9188     if (appData.debugMode)
9189       fprintf(debugFP, "Parsing game history: %s\n", game);
9190
9191     if (gameInfo.event == NULL) gameInfo.event = StrSave("ICS game");
9192     gameInfo.site = StrSave(appData.icsHost);
9193     gameInfo.date = PGNDate();
9194     gameInfo.round = StrSave("-");
9195
9196     /* Parse out names of players */
9197     while (*game == ' ') game++;
9198     p = buf;
9199     while (*game != ' ') *p++ = *game++;
9200     *p = NULLCHAR;
9201     gameInfo.white = StrSave(buf);
9202     while (*game == ' ') game++;
9203     p = buf;
9204     while (*game != ' ' && *game != '\n') *p++ = *game++;
9205     *p = NULLCHAR;
9206     gameInfo.black = StrSave(buf);
9207
9208     /* Parse moves */
9209     boardIndex = blackPlaysFirst ? 1 : 0;
9210     yynewstr(game);
9211     for (;;) {
9212         yyboardindex = boardIndex;
9213         moveType = (ChessMove) Myylex();
9214         switch (moveType) {
9215           case IllegalMove:             /* maybe suicide chess, etc. */
9216   if (appData.debugMode) {
9217     fprintf(debugFP, "Illegal move from ICS: '%s'\n", yy_text);
9218     fprintf(debugFP, "board L=%d, R=%d, H=%d, holdings=%d\n", BOARD_LEFT, BOARD_RGHT, BOARD_HEIGHT, gameInfo.holdingsWidth);
9219     setbuf(debugFP, NULL);
9220   }
9221           case WhitePromotion:
9222           case BlackPromotion:
9223           case WhiteNonPromotion:
9224           case BlackNonPromotion:
9225           case NormalMove:
9226           case WhiteCapturesEnPassant:
9227           case BlackCapturesEnPassant:
9228           case WhiteKingSideCastle:
9229           case WhiteQueenSideCastle:
9230           case BlackKingSideCastle:
9231           case BlackQueenSideCastle:
9232           case WhiteKingSideCastleWild:
9233           case WhiteQueenSideCastleWild:
9234           case BlackKingSideCastleWild:
9235           case BlackQueenSideCastleWild:
9236           /* PUSH Fabien */
9237           case WhiteHSideCastleFR:
9238           case WhiteASideCastleFR:
9239           case BlackHSideCastleFR:
9240           case BlackASideCastleFR:
9241           /* POP Fabien */
9242             fromX = currentMoveString[0] - AAA;
9243             fromY = currentMoveString[1] - ONE;
9244             toX = currentMoveString[2] - AAA;
9245             toY = currentMoveString[3] - ONE;
9246             promoChar = currentMoveString[4];
9247             break;
9248           case WhiteDrop:
9249           case BlackDrop:
9250             if(currentMoveString[0] == '@') continue; // no null moves in ICS mode!
9251             fromX = moveType == WhiteDrop ?
9252               (int) CharToPiece(ToUpper(currentMoveString[0])) :
9253             (int) CharToPiece(ToLower(currentMoveString[0]));
9254             fromY = DROP_RANK;
9255             toX = currentMoveString[2] - AAA;
9256             toY = currentMoveString[3] - ONE;
9257             promoChar = NULLCHAR;
9258             break;
9259           case AmbiguousMove:
9260             /* bug? */
9261             snprintf(buf, MSG_SIZ, _("Ambiguous move in ICS output: \"%s\""), yy_text);
9262   if (appData.debugMode) {
9263     fprintf(debugFP, "Ambiguous move from ICS: '%s'\n", yy_text);
9264     fprintf(debugFP, "board L=%d, R=%d, H=%d, holdings=%d\n", BOARD_LEFT, BOARD_RGHT, BOARD_HEIGHT, gameInfo.holdingsWidth);
9265     setbuf(debugFP, NULL);
9266   }
9267             DisplayError(buf, 0);
9268             return;
9269           case ImpossibleMove:
9270             /* bug? */
9271             snprintf(buf, MSG_SIZ, _("Illegal move in ICS output: \"%s\""), yy_text);
9272   if (appData.debugMode) {
9273     fprintf(debugFP, "Impossible move from ICS: '%s'\n", yy_text);
9274     fprintf(debugFP, "board L=%d, R=%d, H=%d, holdings=%d\n", BOARD_LEFT, BOARD_RGHT, BOARD_HEIGHT, gameInfo.holdingsWidth);
9275     setbuf(debugFP, NULL);
9276   }
9277             DisplayError(buf, 0);
9278             return;
9279           case EndOfFile:
9280             if (boardIndex < backwardMostMove) {
9281                 /* Oops, gap.  How did that happen? */
9282                 DisplayError(_("Gap in move list"), 0);
9283                 return;
9284             }
9285             backwardMostMove =  blackPlaysFirst ? 1 : 0;
9286             if (boardIndex > forwardMostMove) {
9287                 forwardMostMove = boardIndex;
9288             }
9289             return;
9290           case ElapsedTime:
9291             if (boardIndex > (blackPlaysFirst ? 1 : 0)) {
9292                 strcat(parseList[boardIndex-1], " ");
9293                 strcat(parseList[boardIndex-1], yy_text);
9294             }
9295             continue;
9296           case Comment:
9297           case PGNTag:
9298           case NAG:
9299           default:
9300             /* ignore */
9301             continue;
9302           case WhiteWins:
9303           case BlackWins:
9304           case GameIsDrawn:
9305           case GameUnfinished:
9306             if (gameMode == IcsExamining) {
9307                 if (boardIndex < backwardMostMove) {
9308                     /* Oops, gap.  How did that happen? */
9309                     return;
9310                 }
9311                 backwardMostMove = blackPlaysFirst ? 1 : 0;
9312                 return;
9313             }
9314             gameInfo.result = moveType;
9315             p = strchr(yy_text, '{');
9316             if (p == NULL) p = strchr(yy_text, '(');
9317             if (p == NULL) {
9318                 p = yy_text;
9319                 if (p[0] == '0' || p[0] == '1' || p[0] == '*') p = "";
9320             } else {
9321                 q = strchr(p, *p == '{' ? '}' : ')');
9322                 if (q != NULL) *q = NULLCHAR;
9323                 p++;
9324             }
9325             while(q = strchr(p, '\n')) *q = ' '; // [HGM] crush linefeeds in result message
9326             gameInfo.resultDetails = StrSave(p);
9327             continue;
9328         }
9329         if (boardIndex >= forwardMostMove &&
9330             !(gameMode == IcsObserving && ics_gamenum == -1)) {
9331             backwardMostMove = blackPlaysFirst ? 1 : 0;
9332             return;
9333         }
9334         (void) CoordsToAlgebraic(boards[boardIndex], PosFlags(boardIndex),
9335                                  fromY, fromX, toY, toX, promoChar,
9336                                  parseList[boardIndex]);
9337         CopyBoard(boards[boardIndex + 1], boards[boardIndex]);
9338         /* currentMoveString is set as a side-effect of yylex */
9339         safeStrCpy(moveList[boardIndex], currentMoveString, sizeof(moveList[boardIndex])/sizeof(moveList[boardIndex][0]));
9340         strcat(moveList[boardIndex], "\n");
9341         boardIndex++;
9342         ApplyMove(fromX, fromY, toX, toY, promoChar, boards[boardIndex]);
9343         switch (MateTest(boards[boardIndex], PosFlags(boardIndex)) ) {
9344           case MT_NONE:
9345           case MT_STALEMATE:
9346           default:
9347             break;
9348           case MT_CHECK:
9349             if(gameInfo.variant != VariantShogi)
9350                 strcat(parseList[boardIndex - 1], "+");
9351             break;
9352           case MT_CHECKMATE:
9353           case MT_STAINMATE:
9354             strcat(parseList[boardIndex - 1], "#");
9355             break;
9356         }
9357     }
9358 }
9359
9360
9361 /* Apply a move to the given board  */
9362 void
9363 ApplyMove (int fromX, int fromY, int toX, int toY, int promoChar, Board board)
9364 {
9365   ChessSquare captured = board[toY][toX], piece, king; int p, oldEP = EP_NONE, berolina = 0;
9366   int promoRank = gameInfo.variant == VariantMakruk || gameInfo.variant == VariantGrand ? 3 : 1;
9367
9368     /* [HGM] compute & store e.p. status and castling rights for new position */
9369     /* we can always do that 'in place', now pointers to these rights are passed to ApplyMove */
9370
9371       if(gameInfo.variant == VariantBerolina) berolina = EP_BEROLIN_A;
9372       oldEP = (signed char)board[EP_STATUS];
9373       board[EP_STATUS] = EP_NONE;
9374
9375   if (fromY == DROP_RANK) {
9376         /* must be first */
9377         if(fromX == EmptySquare) { // [HGM] pass: empty drop encodes null move; nothing to change.
9378             board[EP_STATUS] = EP_CAPTURE; // null move considered irreversible
9379             return;
9380         }
9381         piece = board[toY][toX] = (ChessSquare) fromX;
9382   } else {
9383       int i;
9384
9385       if( board[toY][toX] != EmptySquare )
9386            board[EP_STATUS] = EP_CAPTURE;
9387
9388       if( board[fromY][fromX] == WhiteLance || board[fromY][fromX] == BlackLance ) {
9389            if( gameInfo.variant != VariantSuper && gameInfo.variant != VariantShogi )
9390                board[EP_STATUS] = EP_PAWN_MOVE; // Lance is Pawn-like in most variants
9391       } else
9392       if( board[fromY][fromX] == WhitePawn ) {
9393            if(fromY != toY) // [HGM] Xiangqi sideway Pawn moves should not count as 50-move breakers
9394                board[EP_STATUS] = EP_PAWN_MOVE;
9395            if( toY-fromY==2) {
9396                if(toX>BOARD_LEFT   && board[toY][toX-1] == BlackPawn &&
9397                         gameInfo.variant != VariantBerolina || toX < fromX)
9398                       board[EP_STATUS] = toX | berolina;
9399                if(toX<BOARD_RGHT-1 && board[toY][toX+1] == BlackPawn &&
9400                         gameInfo.variant != VariantBerolina || toX > fromX)
9401                       board[EP_STATUS] = toX;
9402            }
9403       } else
9404       if( board[fromY][fromX] == BlackPawn ) {
9405            if(fromY != toY) // [HGM] Xiangqi sideway Pawn moves should not count as 50-move breakers
9406                board[EP_STATUS] = EP_PAWN_MOVE;
9407            if( toY-fromY== -2) {
9408                if(toX>BOARD_LEFT   && board[toY][toX-1] == WhitePawn &&
9409                         gameInfo.variant != VariantBerolina || toX < fromX)
9410                       board[EP_STATUS] = toX | berolina;
9411                if(toX<BOARD_RGHT-1 && board[toY][toX+1] == WhitePawn &&
9412                         gameInfo.variant != VariantBerolina || toX > fromX)
9413                       board[EP_STATUS] = toX;
9414            }
9415        }
9416
9417        for(i=0; i<nrCastlingRights; i++) {
9418            if(board[CASTLING][i] == fromX && castlingRank[i] == fromY ||
9419               board[CASTLING][i] == toX   && castlingRank[i] == toY
9420              ) board[CASTLING][i] = NoRights; // revoke for moved or captured piece
9421        }
9422
9423        if(gameInfo.variant == VariantSChess) { // update virginity
9424            if(fromY == 0)              board[VIRGIN][fromX] &= ~VIRGIN_W; // loss by moving
9425            if(fromY == BOARD_HEIGHT-1) board[VIRGIN][fromX] &= ~VIRGIN_B;
9426            if(toY == 0)                board[VIRGIN][toX]   &= ~VIRGIN_W; // loss by capture
9427            if(toY == BOARD_HEIGHT-1)   board[VIRGIN][toX]   &= ~VIRGIN_B;
9428        }
9429
9430      if (fromX == toX && fromY == toY) return;
9431
9432      piece = board[fromY][fromX]; /* [HGM] remember, for Shogi promotion */
9433      king = piece < (int) BlackPawn ? WhiteKing : BlackKing; /* [HGM] Knightmate simplify testing for castling */
9434      if(gameInfo.variant == VariantKnightmate)
9435          king += (int) WhiteUnicorn - (int) WhiteKing;
9436
9437     /* Code added by Tord: */
9438     /* FRC castling assumed when king captures friendly rook. [HGM] or RxK for S-Chess */
9439     if (board[fromY][fromX] == WhiteKing && board[toY][toX] == WhiteRook ||
9440         board[fromY][fromX] == WhiteRook && board[toY][toX] == WhiteKing) {
9441       board[fromY][fromX] = EmptySquare;
9442       board[toY][toX] = EmptySquare;
9443       if((toX > fromX) != (piece == WhiteRook)) {
9444         board[0][BOARD_RGHT-2] = WhiteKing; board[0][BOARD_RGHT-3] = WhiteRook;
9445       } else {
9446         board[0][BOARD_LEFT+2] = WhiteKing; board[0][BOARD_LEFT+3] = WhiteRook;
9447       }
9448     } else if (board[fromY][fromX] == BlackKing && board[toY][toX] == BlackRook ||
9449                board[fromY][fromX] == BlackRook && board[toY][toX] == BlackKing) {
9450       board[fromY][fromX] = EmptySquare;
9451       board[toY][toX] = EmptySquare;
9452       if((toX > fromX) != (piece == BlackRook)) {
9453         board[BOARD_HEIGHT-1][BOARD_RGHT-2] = BlackKing; board[BOARD_HEIGHT-1][BOARD_RGHT-3] = BlackRook;
9454       } else {
9455         board[BOARD_HEIGHT-1][BOARD_LEFT+2] = BlackKing; board[BOARD_HEIGHT-1][BOARD_LEFT+3] = BlackRook;
9456       }
9457     /* End of code added by Tord */
9458
9459     } else if (board[fromY][fromX] == king
9460         && fromX != BOARD_LEFT && fromX != BOARD_RGHT-1 // [HGM] cylinder */
9461         && toY == fromY && toX > fromX+1) {
9462         board[fromY][fromX] = EmptySquare;
9463         board[toY][toX] = king;
9464         board[toY][toX-1] = board[fromY][BOARD_RGHT-1];
9465         board[fromY][BOARD_RGHT-1] = EmptySquare;
9466     } else if (board[fromY][fromX] == king
9467         && fromX != BOARD_LEFT && fromX != BOARD_RGHT-1 // [HGM] cylinder */
9468                && toY == fromY && toX < fromX-1) {
9469         board[fromY][fromX] = EmptySquare;
9470         board[toY][toX] = king;
9471         board[toY][toX+1] = board[fromY][BOARD_LEFT];
9472         board[fromY][BOARD_LEFT] = EmptySquare;
9473     } else if ((board[fromY][fromX] == WhitePawn && gameInfo.variant != VariantXiangqi ||
9474                 board[fromY][fromX] == WhiteLance && gameInfo.variant != VariantSuper && gameInfo.variant != VariantShogi)
9475                && toY >= BOARD_HEIGHT-promoRank && promoChar // defaulting to Q is done elsewhere
9476                ) {
9477         /* white pawn promotion */
9478         board[toY][toX] = CharToPiece(ToUpper(promoChar));
9479         if(board[toY][toX] < WhiteCannon && PieceToChar(PROMOTED board[toY][toX]) == '~') /* [HGM] use shadow piece (if available) */
9480             board[toY][toX] = (ChessSquare) (PROMOTED board[toY][toX]);
9481         board[fromY][fromX] = EmptySquare;
9482     } else if ((fromY >= BOARD_HEIGHT>>1)
9483                && (toX != fromX)
9484                && gameInfo.variant != VariantXiangqi
9485                && gameInfo.variant != VariantBerolina
9486                && (board[fromY][fromX] == WhitePawn)
9487                && (board[toY][toX] == EmptySquare)) {
9488         board[fromY][fromX] = EmptySquare;
9489         board[toY][toX] = WhitePawn;
9490         captured = board[toY - 1][toX];
9491         board[toY - 1][toX] = EmptySquare;
9492     } else if ((fromY == BOARD_HEIGHT-4)
9493                && (toX == fromX)
9494                && gameInfo.variant == VariantBerolina
9495                && (board[fromY][fromX] == WhitePawn)
9496                && (board[toY][toX] == EmptySquare)) {
9497         board[fromY][fromX] = EmptySquare;
9498         board[toY][toX] = WhitePawn;
9499         if(oldEP & EP_BEROLIN_A) {
9500                 captured = board[fromY][fromX-1];
9501                 board[fromY][fromX-1] = EmptySquare;
9502         }else{  captured = board[fromY][fromX+1];
9503                 board[fromY][fromX+1] = EmptySquare;
9504         }
9505     } else if (board[fromY][fromX] == king
9506         && fromX != BOARD_LEFT && fromX != BOARD_RGHT-1 // [HGM] cylinder */
9507                && toY == fromY && toX > fromX+1) {
9508         board[fromY][fromX] = EmptySquare;
9509         board[toY][toX] = king;
9510         board[toY][toX-1] = board[fromY][BOARD_RGHT-1];
9511         board[fromY][BOARD_RGHT-1] = EmptySquare;
9512     } else if (board[fromY][fromX] == king
9513         && fromX != BOARD_LEFT && fromX != BOARD_RGHT-1 // [HGM] cylinder */
9514                && toY == fromY && toX < fromX-1) {
9515         board[fromY][fromX] = EmptySquare;
9516         board[toY][toX] = king;
9517         board[toY][toX+1] = board[fromY][BOARD_LEFT];
9518         board[fromY][BOARD_LEFT] = EmptySquare;
9519     } else if (fromY == 7 && fromX == 3
9520                && board[fromY][fromX] == BlackKing
9521                && toY == 7 && toX == 5) {
9522         board[fromY][fromX] = EmptySquare;
9523         board[toY][toX] = BlackKing;
9524         board[fromY][7] = EmptySquare;
9525         board[toY][4] = BlackRook;
9526     } else if (fromY == 7 && fromX == 3
9527                && board[fromY][fromX] == BlackKing
9528                && toY == 7 && toX == 1) {
9529         board[fromY][fromX] = EmptySquare;
9530         board[toY][toX] = BlackKing;
9531         board[fromY][0] = EmptySquare;
9532         board[toY][2] = BlackRook;
9533     } else if ((board[fromY][fromX] == BlackPawn && gameInfo.variant != VariantXiangqi ||
9534                 board[fromY][fromX] == BlackLance && gameInfo.variant != VariantSuper && gameInfo.variant != VariantShogi)
9535                && toY < promoRank && promoChar
9536                ) {
9537         /* black pawn promotion */
9538         board[toY][toX] = CharToPiece(ToLower(promoChar));
9539         if(board[toY][toX] < BlackCannon && PieceToChar(PROMOTED board[toY][toX]) == '~') /* [HGM] use shadow piece (if available) */
9540             board[toY][toX] = (ChessSquare) (PROMOTED board[toY][toX]);
9541         board[fromY][fromX] = EmptySquare;
9542     } else if ((fromY < BOARD_HEIGHT>>1)
9543                && (toX != fromX)
9544                && gameInfo.variant != VariantXiangqi
9545                && gameInfo.variant != VariantBerolina
9546                && (board[fromY][fromX] == BlackPawn)
9547                && (board[toY][toX] == EmptySquare)) {
9548         board[fromY][fromX] = EmptySquare;
9549         board[toY][toX] = BlackPawn;
9550         captured = board[toY + 1][toX];
9551         board[toY + 1][toX] = EmptySquare;
9552     } else if ((fromY == 3)
9553                && (toX == fromX)
9554                && gameInfo.variant == VariantBerolina
9555                && (board[fromY][fromX] == BlackPawn)
9556                && (board[toY][toX] == EmptySquare)) {
9557         board[fromY][fromX] = EmptySquare;
9558         board[toY][toX] = BlackPawn;
9559         if(oldEP & EP_BEROLIN_A) {
9560                 captured = board[fromY][fromX-1];
9561                 board[fromY][fromX-1] = EmptySquare;
9562         }else{  captured = board[fromY][fromX+1];
9563                 board[fromY][fromX+1] = EmptySquare;
9564         }
9565     } else {
9566         board[toY][toX] = board[fromY][fromX];
9567         board[fromY][fromX] = EmptySquare;
9568     }
9569   }
9570
9571     if (gameInfo.holdingsWidth != 0) {
9572
9573       /* !!A lot more code needs to be written to support holdings  */
9574       /* [HGM] OK, so I have written it. Holdings are stored in the */
9575       /* penultimate board files, so they are automaticlly stored   */
9576       /* in the game history.                                       */
9577       if (fromY == DROP_RANK || gameInfo.variant == VariantSChess
9578                                 && promoChar && piece != WhitePawn && piece != BlackPawn) {
9579         /* Delete from holdings, by decreasing count */
9580         /* and erasing image if necessary            */
9581         p = fromY == DROP_RANK ? (int) fromX : CharToPiece(piece > BlackPawn ? ToLower(promoChar) : ToUpper(promoChar));
9582         if(p < (int) BlackPawn) { /* white drop */
9583              p -= (int)WhitePawn;
9584                  p = PieceToNumber((ChessSquare)p);
9585              if(p >= gameInfo.holdingsSize) p = 0;
9586              if(--board[p][BOARD_WIDTH-2] <= 0)
9587                   board[p][BOARD_WIDTH-1] = EmptySquare;
9588              if((int)board[p][BOARD_WIDTH-2] < 0)
9589                         board[p][BOARD_WIDTH-2] = 0;
9590         } else {                  /* black drop */
9591              p -= (int)BlackPawn;
9592                  p = PieceToNumber((ChessSquare)p);
9593              if(p >= gameInfo.holdingsSize) p = 0;
9594              if(--board[BOARD_HEIGHT-1-p][1] <= 0)
9595                   board[BOARD_HEIGHT-1-p][0] = EmptySquare;
9596              if((int)board[BOARD_HEIGHT-1-p][1] < 0)
9597                         board[BOARD_HEIGHT-1-p][1] = 0;
9598         }
9599       }
9600       if (captured != EmptySquare && gameInfo.holdingsSize > 0
9601           && gameInfo.variant != VariantBughouse && gameInfo.variant != VariantSChess        ) {
9602         /* [HGM] holdings: Add to holdings, if holdings exist */
9603         if(gameInfo.variant == VariantSuper || gameInfo.variant == VariantGreat || gameInfo.variant == VariantGrand) {
9604                 // [HGM] superchess: suppress flipping color of captured pieces by reverse pre-flip
9605                 captured = (int) captured >= (int) BlackPawn ? BLACK_TO_WHITE captured : WHITE_TO_BLACK captured;
9606         }
9607         p = (int) captured;
9608         if (p >= (int) BlackPawn) {
9609           p -= (int)BlackPawn;
9610           if(gameInfo.variant == VariantShogi && DEMOTED p >= 0) {
9611                   /* in Shogi restore piece to its original  first */
9612                   captured = (ChessSquare) (DEMOTED captured);
9613                   p = DEMOTED p;
9614           }
9615           p = PieceToNumber((ChessSquare)p);
9616           if(p >= gameInfo.holdingsSize) { p = 0; captured = BlackPawn; }
9617           board[p][BOARD_WIDTH-2]++;
9618           board[p][BOARD_WIDTH-1] = BLACK_TO_WHITE captured;
9619         } else {
9620           p -= (int)WhitePawn;
9621           if(gameInfo.variant == VariantShogi && DEMOTED p >= 0) {
9622                   captured = (ChessSquare) (DEMOTED captured);
9623                   p = DEMOTED p;
9624           }
9625           p = PieceToNumber((ChessSquare)p);
9626           if(p >= gameInfo.holdingsSize) { p = 0; captured = WhitePawn; }
9627           board[BOARD_HEIGHT-1-p][1]++;
9628           board[BOARD_HEIGHT-1-p][0] = WHITE_TO_BLACK captured;
9629         }
9630       }
9631     } else if (gameInfo.variant == VariantAtomic) {
9632       if (captured != EmptySquare) {
9633         int y, x;
9634         for (y = toY-1; y <= toY+1; y++) {
9635           for (x = toX-1; x <= toX+1; x++) {
9636             if (y >= 0 && y < BOARD_HEIGHT && x >= BOARD_LEFT && x < BOARD_RGHT &&
9637                 board[y][x] != WhitePawn && board[y][x] != BlackPawn) {
9638               board[y][x] = EmptySquare;
9639             }
9640           }
9641         }
9642         board[toY][toX] = EmptySquare;
9643       }
9644     }
9645     if(gameInfo.variant == VariantSChess && promoChar != NULLCHAR && promoChar != '=' && piece != WhitePawn && piece != BlackPawn) {
9646         board[fromY][fromX] = CharToPiece(piece < BlackPawn ? ToUpper(promoChar) : ToLower(promoChar)); // S-Chess gating
9647     } else
9648     if(promoChar == '+') {
9649         /* [HGM] Shogi-style promotions, to piece implied by original (Might overwrite ordinary Pawn promotion) */
9650         board[toY][toX] = (ChessSquare) (PROMOTED piece);
9651     } else if(!appData.testLegality && promoChar != NULLCHAR && promoChar != '=') { // without legality testing, unconditionally believe promoChar
9652         ChessSquare newPiece = CharToPiece(piece < BlackPawn ? ToUpper(promoChar) : ToLower(promoChar));
9653         if((newPiece <= WhiteMan || newPiece >= BlackPawn && newPiece <= BlackMan) // unpromoted piece specified
9654            && pieceToChar[PROMOTED newPiece] == '~') newPiece = PROMOTED newPiece; // but promoted version available
9655         board[toY][toX] = newPiece;
9656     }
9657     if((gameInfo.variant == VariantSuper || gameInfo.variant == VariantGreat || gameInfo.variant == VariantGrand)
9658                 && promoChar != NULLCHAR && gameInfo.holdingsSize) {
9659         // [HGM] superchess: take promotion piece out of holdings
9660         int k = PieceToNumber(CharToPiece(ToUpper(promoChar)));
9661         if((int)piece < (int)BlackPawn) { // determine stm from piece color
9662             if(!--board[k][BOARD_WIDTH-2])
9663                 board[k][BOARD_WIDTH-1] = EmptySquare;
9664         } else {
9665             if(!--board[BOARD_HEIGHT-1-k][1])
9666                 board[BOARD_HEIGHT-1-k][0] = EmptySquare;
9667         }
9668     }
9669
9670 }
9671
9672 /* Updates forwardMostMove */
9673 void
9674 MakeMove (int fromX, int fromY, int toX, int toY, int promoChar)
9675 {
9676 //    forwardMostMove++; // [HGM] bare: moved downstream
9677
9678     (void) CoordsToAlgebraic(boards[forwardMostMove],
9679                              PosFlags(forwardMostMove),
9680                              fromY, fromX, toY, toX, promoChar,
9681                              parseList[forwardMostMove]);
9682
9683     if(serverMoves != NULL) { /* [HGM] write moves on file for broadcasting (should be separate routine, really) */
9684         int timeLeft; static int lastLoadFlag=0; int king, piece;
9685         piece = boards[forwardMostMove][fromY][fromX];
9686         king = piece < (int) BlackPawn ? WhiteKing : BlackKing;
9687         if(gameInfo.variant == VariantKnightmate)
9688             king += (int) WhiteUnicorn - (int) WhiteKing;
9689         if(forwardMostMove == 0) {
9690             if(gameMode == MachinePlaysBlack || gameMode == BeginningOfGame)
9691                 fprintf(serverMoves, "%s;", UserName());
9692             else if(gameMode == TwoMachinesPlay && first.twoMachinesColor[0] == 'b')
9693                 fprintf(serverMoves, "%s;", second.tidy);
9694             fprintf(serverMoves, "%s;", first.tidy);
9695             if(gameMode == MachinePlaysWhite)
9696                 fprintf(serverMoves, "%s;", UserName());
9697             else if(gameMode == TwoMachinesPlay && first.twoMachinesColor[0] == 'w')
9698                 fprintf(serverMoves, "%s;", second.tidy);
9699         } else fprintf(serverMoves, loadFlag|lastLoadFlag ? ":" : ";");
9700         lastLoadFlag = loadFlag;
9701         // print base move
9702         fprintf(serverMoves, "%c%c:%c%c", AAA+fromX, ONE+fromY, AAA+toX, ONE+toY);
9703         // print castling suffix
9704         if( toY == fromY && piece == king ) {
9705             if(toX-fromX > 1)
9706                 fprintf(serverMoves, ":%c%c:%c%c", AAA+BOARD_RGHT-1, ONE+fromY, AAA+toX-1,ONE+toY);
9707             if(fromX-toX >1)
9708                 fprintf(serverMoves, ":%c%c:%c%c", AAA+BOARD_LEFT, ONE+fromY, AAA+toX+1,ONE+toY);
9709         }
9710         // e.p. suffix
9711         if( (boards[forwardMostMove][fromY][fromX] == WhitePawn ||
9712              boards[forwardMostMove][fromY][fromX] == BlackPawn   ) &&
9713              boards[forwardMostMove][toY][toX] == EmptySquare
9714              && fromX != toX && fromY != toY)
9715                 fprintf(serverMoves, ":%c%c:%c%c", AAA+fromX, ONE+fromY, AAA+toX, ONE+fromY);
9716         // promotion suffix
9717         if(promoChar != NULLCHAR) {
9718             if(fromY == 0 || fromY == BOARD_HEIGHT-1)
9719                  fprintf(serverMoves, ":%c%c:%c%c", WhiteOnMove(forwardMostMove) ? 'w' : 'b',
9720                                                  ToLower(promoChar), AAA+fromX, ONE+fromY); // Seirawan gating
9721             else fprintf(serverMoves, ":%c:%c%c", ToLower(promoChar), AAA+toX, ONE+toY);
9722         }
9723         if(!loadFlag) {
9724                 char buf[MOVE_LEN*2], *p; int len;
9725             fprintf(serverMoves, "/%d/%d",
9726                pvInfoList[forwardMostMove].depth, pvInfoList[forwardMostMove].score);
9727             if(forwardMostMove+1 & 1) timeLeft = whiteTimeRemaining/1000;
9728             else                      timeLeft = blackTimeRemaining/1000;
9729             fprintf(serverMoves, "/%d", timeLeft);
9730                 strncpy(buf, parseList[forwardMostMove], MOVE_LEN*2);
9731                 if(p = strchr(buf, '/')) *p = NULLCHAR; else
9732                 if(p = strchr(buf, '=')) *p = NULLCHAR;
9733                 len = strlen(buf); if(len > 1 && buf[len-2] != '-') buf[len-2] = NULLCHAR; // strip to-square
9734             fprintf(serverMoves, "/%s", buf);
9735         }
9736         fflush(serverMoves);
9737     }
9738
9739     if (forwardMostMove+1 > framePtr) { // [HGM] vari: do not run into saved variations..
9740         GameEnds(GameUnfinished, _("Game too long; increase MAX_MOVES and recompile"), GE_XBOARD);
9741       return;
9742     }
9743     UnLoadPV(); // [HGM] pv: if we are looking at a PV, abort this
9744     if (commentList[forwardMostMove+1] != NULL) {
9745         free(commentList[forwardMostMove+1]);
9746         commentList[forwardMostMove+1] = NULL;
9747     }
9748     CopyBoard(boards[forwardMostMove+1], boards[forwardMostMove]);
9749     ApplyMove(fromX, fromY, toX, toY, promoChar, boards[forwardMostMove+1]);
9750     // forwardMostMove++; // [HGM] bare: moved to after ApplyMove, to make sure clock interrupt finds complete board
9751     SwitchClocks(forwardMostMove+1); // [HGM] race: incrementing move nr inside
9752     timeRemaining[0][forwardMostMove] = whiteTimeRemaining;
9753     timeRemaining[1][forwardMostMove] = blackTimeRemaining;
9754     adjustedClock = FALSE;
9755     gameInfo.result = GameUnfinished;
9756     if (gameInfo.resultDetails != NULL) {
9757         free(gameInfo.resultDetails);
9758         gameInfo.resultDetails = NULL;
9759     }
9760     CoordsToComputerAlgebraic(fromY, fromX, toY, toX, promoChar,
9761                               moveList[forwardMostMove - 1]);
9762     switch (MateTest(boards[forwardMostMove], PosFlags(forwardMostMove)) ) {
9763       case MT_NONE:
9764       case MT_STALEMATE:
9765       default:
9766         break;
9767       case MT_CHECK:
9768         if(gameInfo.variant != VariantShogi)
9769             strcat(parseList[forwardMostMove - 1], "+");
9770         break;
9771       case MT_CHECKMATE:
9772       case MT_STAINMATE:
9773         strcat(parseList[forwardMostMove - 1], "#");
9774         break;
9775     }
9776
9777 }
9778
9779 /* Updates currentMove if not pausing */
9780 void
9781 ShowMove (int fromX, int fromY, int toX, int toY)
9782 {
9783     int instant = (gameMode == PlayFromGameFile) ?
9784         (matchMode || (appData.timeDelay == 0 && !pausing)) : pausing;
9785     if(appData.noGUI) return;
9786     if (!pausing || gameMode == PlayFromGameFile || gameMode == AnalyzeFile) {
9787         if (!instant) {
9788             if (forwardMostMove == currentMove + 1) {
9789                 AnimateMove(boards[forwardMostMove - 1],
9790                             fromX, fromY, toX, toY);
9791             }
9792         }
9793         currentMove = forwardMostMove;
9794     }
9795
9796     if (instant) return;
9797
9798     DisplayMove(currentMove - 1);
9799     if (!pausing || gameMode == PlayFromGameFile || gameMode == AnalyzeFile) {
9800             if (appData.highlightLastMove) { // [HGM] moved to after DrawPosition, as with arrow it could redraw old board
9801                 SetHighlights(fromX, fromY, toX, toY);
9802             }
9803     }
9804     DrawPosition(FALSE, boards[currentMove]);
9805     DisplayBothClocks();
9806     HistorySet(parseList,backwardMostMove,forwardMostMove,currentMove-1);
9807 }
9808
9809 void
9810 SendEgtPath (ChessProgramState *cps)
9811 {       /* [HGM] EGT: match formats given in feature with those given by user, and send info for each match */
9812         char buf[MSG_SIZ], name[MSG_SIZ], *p;
9813
9814         if((p = cps->egtFormats) == NULL || appData.egtFormats == NULL) return;
9815
9816         while(*p) {
9817             char c, *q = name+1, *r, *s;
9818
9819             name[0] = ','; // extract next format name from feature and copy with prefixed ','
9820             while(*p && *p != ',') *q++ = *p++;
9821             *q++ = ':'; *q = 0;
9822             if( appData.defaultPathEGTB && appData.defaultPathEGTB[0] &&
9823                 strcmp(name, ",nalimov:") == 0 ) {
9824                 // take nalimov path from the menu-changeable option first, if it is defined
9825               snprintf(buf, MSG_SIZ, "egtpath nalimov %s\n", appData.defaultPathEGTB);
9826                 SendToProgram(buf,cps);     // send egtbpath command for nalimov
9827             } else
9828             if( (s = StrStr(appData.egtFormats, name+1)) == appData.egtFormats ||
9829                 (s = StrStr(appData.egtFormats, name)) != NULL) {
9830                 // format name occurs amongst user-supplied formats, at beginning or immediately after comma
9831                 s = r = StrStr(s, ":") + 1; // beginning of path info
9832                 while(*r && *r != ',') r++; // path info is everything upto next ';' or end of string
9833                 c = *r; *r = 0;             // temporarily null-terminate path info
9834                     *--q = 0;               // strip of trailig ':' from name
9835                     snprintf(buf, MSG_SIZ, "egtpath %s %s\n", name+1, s);
9836                 *r = c;
9837                 SendToProgram(buf,cps);     // send egtbpath command for this format
9838             }
9839             if(*p == ',') p++; // read away comma to position for next format name
9840         }
9841 }
9842
9843 void
9844 InitChessProgram (ChessProgramState *cps, int setup)
9845 /* setup needed to setup FRC opening position */
9846 {
9847     char buf[MSG_SIZ], b[MSG_SIZ]; int overruled;
9848     if (appData.noChessProgram) return;
9849     hintRequested = FALSE;
9850     bookRequested = FALSE;
9851
9852     ParseFeatures(appData.features[cps == &second], cps); // [HGM] allow user to overrule features
9853     /* [HGM] some new WB protocol commands to configure engine are sent now, if engine supports them */
9854     /*       moved to before sending initstring in 4.3.15, so Polyglot can delay UCI 'isready' to recepton of 'new' */
9855     if(cps->memSize) { /* [HGM] memory */
9856       snprintf(buf, MSG_SIZ, "memory %d\n", appData.defaultHashSize + appData.defaultCacheSizeEGTB);
9857         SendToProgram(buf, cps);
9858     }
9859     SendEgtPath(cps); /* [HGM] EGT */
9860     if(cps->maxCores) { /* [HGM] SMP: (protocol specified must be last settings command before new!) */
9861       snprintf(buf, MSG_SIZ, "cores %d\n", appData.smpCores);
9862         SendToProgram(buf, cps);
9863     }
9864
9865     SendToProgram(cps->initString, cps);
9866     if (gameInfo.variant != VariantNormal &&
9867         gameInfo.variant != VariantLoadable
9868         /* [HGM] also send variant if board size non-standard */
9869         || gameInfo.boardWidth != 8 || gameInfo.boardHeight != 8 || gameInfo.holdingsSize != 0
9870                                             ) {
9871       char *v = VariantName(gameInfo.variant);
9872       if (cps->protocolVersion != 1 && StrStr(cps->variants, v) == NULL) {
9873         /* [HGM] in protocol 1 we have to assume all variants valid */
9874         snprintf(buf, MSG_SIZ, _("Variant %s not supported by %s"), v, cps->tidy);
9875         DisplayFatalError(buf, 0, 1);
9876         return;
9877       }
9878
9879       /* [HGM] make prefix for non-standard board size. Awkward testing... */
9880       overruled = gameInfo.boardWidth != 8 || gameInfo.boardHeight != 8 || gameInfo.holdingsSize != 0;
9881       if( gameInfo.variant == VariantXiangqi )
9882            overruled = gameInfo.boardWidth != 9 || gameInfo.boardHeight != 10 || gameInfo.holdingsSize != 0;
9883       if( gameInfo.variant == VariantShogi )
9884            overruled = gameInfo.boardWidth != 9 || gameInfo.boardHeight != 9 || gameInfo.holdingsSize != 7;
9885       if( gameInfo.variant == VariantBughouse || gameInfo.variant == VariantCrazyhouse )
9886            overruled = gameInfo.boardWidth != 8 || gameInfo.boardHeight != 8 || gameInfo.holdingsSize != 5;
9887       if( gameInfo.variant == VariantCapablanca || gameInfo.variant == VariantCapaRandom ||
9888           gameInfo.variant == VariantGothic || gameInfo.variant == VariantFalcon || gameInfo.variant == VariantJanus )
9889            overruled = gameInfo.boardWidth != 10 || gameInfo.boardHeight != 8 || gameInfo.holdingsSize != 0;
9890       if( gameInfo.variant == VariantCourier )
9891            overruled = gameInfo.boardWidth != 12 || gameInfo.boardHeight != 8 || gameInfo.holdingsSize != 0;
9892       if( gameInfo.variant == VariantSuper )
9893            overruled = gameInfo.boardWidth != 8 || gameInfo.boardHeight != 8 || gameInfo.holdingsSize != 8;
9894       if( gameInfo.variant == VariantGreat )
9895            overruled = gameInfo.boardWidth != 10 || gameInfo.boardHeight != 8 || gameInfo.holdingsSize != 8;
9896       if( gameInfo.variant == VariantSChess )
9897            overruled = gameInfo.boardWidth != 8 || gameInfo.boardHeight != 8 || gameInfo.holdingsSize != 7;
9898       if( gameInfo.variant == VariantGrand )
9899            overruled = gameInfo.boardWidth != 10 || gameInfo.boardHeight != 10 || gameInfo.holdingsSize != 7;
9900
9901       if(overruled) {
9902         snprintf(b, MSG_SIZ, "%dx%d+%d_%s", gameInfo.boardWidth, gameInfo.boardHeight,
9903                  gameInfo.holdingsSize, VariantName(gameInfo.variant)); // cook up sized variant name
9904            /* [HGM] varsize: try first if this defiant size variant is specifically known */
9905            if(StrStr(cps->variants, b) == NULL) {
9906                // specific sized variant not known, check if general sizing allowed
9907                if (cps->protocolVersion != 1) { // for protocol 1 we cannot check and hope for the best
9908                    if(StrStr(cps->variants, "boardsize") == NULL) {
9909                      snprintf(buf, MSG_SIZ, "Board size %dx%d+%d not supported by %s",
9910                             gameInfo.boardWidth, gameInfo.boardHeight, gameInfo.holdingsSize, cps->tidy);
9911                        DisplayFatalError(buf, 0, 1);
9912                        return;
9913                    }
9914                    /* [HGM] here we really should compare with the maximum supported board size */
9915                }
9916            }
9917       } else snprintf(b, MSG_SIZ,"%s", VariantName(gameInfo.variant));
9918       snprintf(buf, MSG_SIZ, "variant %s\n", b);
9919       SendToProgram(buf, cps);
9920     }
9921     currentlyInitializedVariant = gameInfo.variant;
9922
9923     /* [HGM] send opening position in FRC to first engine */
9924     if(setup) {
9925           SendToProgram("force\n", cps);
9926           SendBoard(cps, 0);
9927           /* engine is now in force mode! Set flag to wake it up after first move. */
9928           setboardSpoiledMachineBlack = 1;
9929     }
9930
9931     if (cps->sendICS) {
9932       snprintf(buf, sizeof(buf), "ics %s\n", appData.icsActive ? appData.icsHost : "-");
9933       SendToProgram(buf, cps);
9934     }
9935     cps->maybeThinking = FALSE;
9936     cps->offeredDraw = 0;
9937     if (!appData.icsActive) {
9938         SendTimeControl(cps, movesPerSession, timeControl,
9939                         timeIncrement, appData.searchDepth,
9940                         searchTime);
9941     }
9942     if (appData.showThinking
9943         // [HGM] thinking: four options require thinking output to be sent
9944         || !appData.hideThinkingFromHuman || appData.adjudicateLossThreshold != 0 || EngineOutputIsUp()
9945                                 ) {
9946         SendToProgram("post\n", cps);
9947     }
9948     SendToProgram("hard\n", cps);
9949     if (!appData.ponderNextMove) {
9950         /* Warning: "easy" is a toggle in GNU Chess, so don't send
9951            it without being sure what state we are in first.  "hard"
9952            is not a toggle, so that one is OK.
9953          */
9954         SendToProgram("easy\n", cps);
9955     }
9956     if (cps->usePing) {
9957       snprintf(buf, MSG_SIZ, "ping %d\n", ++cps->lastPing);
9958       SendToProgram(buf, cps);
9959     }
9960     cps->initDone = TRUE;
9961     ClearEngineOutputPane(cps == &second);
9962 }
9963
9964
9965 void
9966 ResendOptions (ChessProgramState *cps)
9967 { // send the stored value of the options
9968   int i;
9969   char buf[MSG_SIZ];
9970   Option *opt = cps->option;
9971   for(i=0; i<cps->nrOptions; i++, opt++) {
9972       switch(opt->type) {
9973         case Spin:
9974         case Slider:
9975         case CheckBox:
9976             snprintf(buf, MSG_SIZ, "option %s=%d\n", opt->name, opt->value);
9977           break;
9978         case ComboBox:
9979           snprintf(buf, MSG_SIZ, "option %s=%s\n", opt->name, opt->choice[opt->value]);
9980           break;
9981         default:
9982             snprintf(buf, MSG_SIZ, "option %s=%s\n", opt->name, opt->textValue);
9983           break;
9984         case Button:
9985         case SaveButton:
9986           continue;
9987       }
9988       SendToProgram(buf, cps);
9989   }
9990 }
9991
9992 void
9993 StartChessProgram (ChessProgramState *cps)
9994 {
9995     char buf[MSG_SIZ];
9996     int err;
9997
9998     if (appData.noChessProgram) return;
9999     cps->initDone = FALSE;
10000
10001     if (strcmp(cps->host, "localhost") == 0) {
10002         err = StartChildProcess(cps->program, cps->dir, &cps->pr);
10003     } else if (*appData.remoteShell == NULLCHAR) {
10004         err = OpenRcmd(cps->host, appData.remoteUser, cps->program, &cps->pr);
10005     } else {
10006         if (*appData.remoteUser == NULLCHAR) {
10007           snprintf(buf, sizeof(buf), "%s %s %s", appData.remoteShell, cps->host,
10008                     cps->program);
10009         } else {
10010           snprintf(buf, sizeof(buf), "%s %s -l %s %s", appData.remoteShell,
10011                     cps->host, appData.remoteUser, cps->program);
10012         }
10013         err = StartChildProcess(buf, "", &cps->pr);
10014     }
10015
10016     if (err != 0) {
10017       snprintf(buf, MSG_SIZ, _("Startup failure on '%s'"), cps->program);
10018         DisplayError(buf, err); // [HGM] bit of a rough kludge: ignore failure, (which XBoard would do anyway), and let I/O discover it
10019         if(cps != &first) return;
10020         appData.noChessProgram = TRUE;
10021         ThawUI();
10022         SetNCPMode();
10023 //      DisplayFatalError(buf, err, 1);
10024 //      cps->pr = NoProc;
10025 //      cps->isr = NULL;
10026         return;
10027     }
10028
10029     cps->isr = AddInputSource(cps->pr, TRUE, ReceiveFromProgram, cps);
10030     if (cps->protocolVersion > 1) {
10031       snprintf(buf, MSG_SIZ, "xboard\nprotover %d\n", cps->protocolVersion);
10032       if(!cps->reload) { // do not clear options when reloading because of -xreuse
10033         cps->nrOptions = 0; // [HGM] options: clear all engine-specific options
10034         cps->comboCnt = 0;  //                and values of combo boxes
10035       }
10036       SendToProgram(buf, cps);
10037       if(cps->reload) ResendOptions(cps);
10038     } else {
10039       SendToProgram("xboard\n", cps);
10040     }
10041 }
10042
10043 void
10044 TwoMachinesEventIfReady P((void))
10045 {
10046   static int curMess = 0;
10047   if (first.lastPing != first.lastPong || !first.initDone) {
10048     if(curMess != 1) DisplayMessage("", _("Waiting for first chess program")); curMess = 1;
10049     ScheduleDelayedEvent(TwoMachinesEventIfReady, 10); // [HGM] fast: lowered from 1000
10050     return;
10051   }
10052   if (second.lastPing != second.lastPong) {
10053     if(curMess != 2) DisplayMessage("", _("Waiting for second chess program")); curMess = 2;
10054     ScheduleDelayedEvent(TwoMachinesEventIfReady, 10); // [HGM] fast: lowered from 1000
10055     return;
10056   }
10057   DisplayMessage("", ""); curMess = 0;
10058   ThawUI();
10059   TwoMachinesEvent();
10060 }
10061
10062 char *
10063 MakeName (char *template)
10064 {
10065     time_t clock;
10066     struct tm *tm;
10067     static char buf[MSG_SIZ];
10068     char *p = buf;
10069     int i;
10070
10071     clock = time((time_t *)NULL);
10072     tm = localtime(&clock);
10073
10074     while(*p++ = *template++) if(p[-1] == '%') {
10075         switch(*template++) {
10076           case 0:   *p = 0; return buf;
10077           case 'Y': i = tm->tm_year+1900; break;
10078           case 'y': i = tm->tm_year-100; break;
10079           case 'M': i = tm->tm_mon+1; break;
10080           case 'd': i = tm->tm_mday; break;
10081           case 'h': i = tm->tm_hour; break;
10082           case 'm': i = tm->tm_min; break;
10083           case 's': i = tm->tm_sec; break;
10084           default:  i = 0;
10085         }
10086         snprintf(p-1, MSG_SIZ-10 - (p - buf), "%02d", i); p += strlen(p);
10087     }
10088     return buf;
10089 }
10090
10091 int
10092 CountPlayers (char *p)
10093 {
10094     int n = 0;
10095     while(p = strchr(p, '\n')) p++, n++; // count participants
10096     return n;
10097 }
10098
10099 FILE *
10100 WriteTourneyFile (char *results, FILE *f)
10101 {   // write tournament parameters on tourneyFile; on success return the stream pointer for closing
10102     if(f == NULL) f = fopen(appData.tourneyFile, "w");
10103     if(f == NULL) DisplayError(_("Could not write on tourney file"), 0); else {
10104         // create a file with tournament description
10105         fprintf(f, "-participants {%s}\n", appData.participants);
10106         fprintf(f, "-seedBase %d\n", appData.seedBase);
10107         fprintf(f, "-tourneyType %d\n", appData.tourneyType);
10108         fprintf(f, "-tourneyCycles %d\n", appData.tourneyCycles);
10109         fprintf(f, "-defaultMatchGames %d\n", appData.defaultMatchGames);
10110         fprintf(f, "-syncAfterRound %s\n", appData.roundSync ? "true" : "false");
10111         fprintf(f, "-syncAfterCycle %s\n", appData.cycleSync ? "true" : "false");
10112         fprintf(f, "-saveGameFile \"%s\"\n", appData.saveGameFile);
10113         fprintf(f, "-loadGameFile \"%s\"\n", appData.loadGameFile);
10114         fprintf(f, "-loadGameIndex %d\n", appData.loadGameIndex);
10115         fprintf(f, "-loadPositionFile \"%s\"\n", appData.loadPositionFile);
10116         fprintf(f, "-loadPositionIndex %d\n", appData.loadPositionIndex);
10117         fprintf(f, "-rewindIndex %d\n", appData.rewindIndex);
10118         fprintf(f, "-usePolyglotBook %s\n", appData.usePolyglotBook ? "true" : "false");
10119         fprintf(f, "-polyglotBook %s\n", appData.polyglotBook);
10120         fprintf(f, "-bookDepth %d\n", appData.bookDepth);
10121         fprintf(f, "-bookVariation %d\n", appData.bookStrength);
10122         fprintf(f, "-discourageOwnBooks %s\n", appData.defNoBook ? "true" : "false");
10123         fprintf(f, "-defaultHashSize %d\n", appData.defaultHashSize);
10124         fprintf(f, "-defaultCacheSizeEGTB %d\n", appData.defaultCacheSizeEGTB);
10125         fprintf(f, "-ponderNextMove %s\n", appData.ponderNextMove ? "true" : "false");
10126         fprintf(f, "-smpCores %d\n", appData.smpCores);
10127         if(searchTime > 0)
10128                 fprintf(f, "-searchTime \"%d:%02d\"\n", searchTime/60, searchTime%60);
10129         else {
10130                 fprintf(f, "-mps %d\n", appData.movesPerSession);
10131                 fprintf(f, "-tc %s\n", appData.timeControl);
10132                 fprintf(f, "-inc %.2f\n", appData.timeIncrement);
10133         }
10134         fprintf(f, "-results \"%s\"\n", results);
10135     }
10136     return f;
10137 }
10138
10139 char *command[MAXENGINES], *mnemonic[MAXENGINES];
10140
10141 void
10142 Substitute (char *participants, int expunge)
10143 {
10144     int i, changed, changes=0, nPlayers=0;
10145     char *p, *q, *r, buf[MSG_SIZ];
10146     if(participants == NULL) return;
10147     if(appData.tourneyFile[0] == NULLCHAR) { free(participants); return; }
10148     r = p = participants; q = appData.participants;
10149     while(*p && *p == *q) {
10150         if(*p == '\n') r = p+1, nPlayers++;
10151         p++; q++;
10152     }
10153     if(*p) { // difference
10154         while(*p && *p++ != '\n');
10155         while(*q && *q++ != '\n');
10156       changed = nPlayers;
10157         changes = 1 + (strcmp(p, q) != 0);
10158     }
10159     if(changes == 1) { // a single engine mnemonic was changed
10160         q = r; while(*q) nPlayers += (*q++ == '\n');
10161         p = buf; while(*r && (*p = *r++) != '\n') p++;
10162         *p = NULLCHAR;
10163         NamesToList(firstChessProgramNames, command, mnemonic, "all");
10164         for(i=1; mnemonic[i]; i++) if(!strcmp(buf, mnemonic[i])) break;
10165         if(mnemonic[i]) { // The substitute is valid
10166             FILE *f;
10167             if(appData.tourneyFile[0] && (f = fopen(appData.tourneyFile, "r+")) ) {
10168                 flock(fileno(f), LOCK_EX);
10169                 ParseArgsFromFile(f);
10170                 fseek(f, 0, SEEK_SET);
10171                 FREE(appData.participants); appData.participants = participants;
10172                 if(expunge) { // erase results of replaced engine
10173                     int len = strlen(appData.results), w, b, dummy;
10174                     for(i=0; i<len; i++) {
10175                         Pairing(i, nPlayers, &w, &b, &dummy);
10176                         if((w == changed || b == changed) && appData.results[i] == '*') {
10177                             DisplayError(_("You cannot replace an engine while it is engaged!\nTerminate its game first."), 0);
10178                             fclose(f);
10179                             return;
10180                         }
10181                     }
10182                     for(i=0; i<len; i++) {
10183                         Pairing(i, nPlayers, &w, &b, &dummy);
10184                         if(w == changed || b == changed) appData.results[i] = ' '; // mark as not played
10185                     }
10186                 }
10187                 WriteTourneyFile(appData.results, f);
10188                 fclose(f); // release lock
10189                 return;
10190             }
10191         } else DisplayError(_("No engine with the name you gave is installed"), 0);
10192     }
10193     if(changes == 0) DisplayError(_("First change an engine by editing the participants list\nof the Tournament Options dialog"), 0);
10194     if(changes > 1)  DisplayError(_("You can only change one engine at the time"), 0);
10195     free(participants);
10196     return;
10197 }
10198
10199 int
10200 CheckPlayers (char *participants)
10201 {
10202         int i;
10203         char buf[MSG_SIZ], *p;
10204         NamesToList(firstChessProgramNames, command, mnemonic, "all");
10205         while(p = strchr(participants, '\n')) {
10206             *p = NULLCHAR;
10207             for(i=1; mnemonic[i]; i++) if(!strcmp(participants, mnemonic[i])) break;
10208             if(!mnemonic[i]) {
10209                 snprintf(buf, MSG_SIZ, _("No engine %s is installed"), participants);
10210                 *p = '\n';
10211                 DisplayError(buf, 0);
10212                 return 1;
10213             }
10214             *p = '\n';
10215             participants = p + 1;
10216         }
10217         return 0;
10218 }
10219
10220 int
10221 CreateTourney (char *name)
10222 {
10223         FILE *f;
10224         if(matchMode && strcmp(name, appData.tourneyFile)) {
10225              ASSIGN(name, appData.tourneyFile); //do not allow change of tourneyfile while playing
10226         }
10227         if(name[0] == NULLCHAR) {
10228             if(appData.participants[0])
10229                 DisplayError(_("You must supply a tournament file,\nfor storing the tourney progress"), 0);
10230             return 0;
10231         }
10232         f = fopen(name, "r");
10233         if(f) { // file exists
10234             ASSIGN(appData.tourneyFile, name);
10235             ParseArgsFromFile(f); // parse it
10236         } else {
10237             if(!appData.participants[0]) return 0; // ignore tourney file if non-existing & no participants
10238             if(CountPlayers(appData.participants) < (appData.tourneyType>0 ? appData.tourneyType+1 : 2)) {
10239                 DisplayError(_("Not enough participants"), 0);
10240                 return 0;
10241             }
10242             if(CheckPlayers(appData.participants)) return 0;
10243             ASSIGN(appData.tourneyFile, name);
10244             if(appData.tourneyType < 0) appData.defaultMatchGames = 1; // Swiss forces games/pairing = 1
10245             if((f = WriteTourneyFile("", NULL)) == NULL) return 0;
10246         }
10247         fclose(f);
10248         appData.noChessProgram = FALSE;
10249         appData.clockMode = TRUE;
10250         SetGNUMode();
10251         return 1;
10252 }
10253
10254 int
10255 NamesToList (char *names, char **engineList, char **engineMnemonic, char *group)
10256 {
10257     char buf[MSG_SIZ], *p, *q;
10258     int i=1, header, skip, all = !strcmp(group, "all"), depth = 0;
10259     insert = names; // afterwards, this global will point just after last retrieved engine line or group end in the 'names'
10260     skip = !all && group[0]; // if group requested, we start in skip mode
10261     for(;*names && depth >= 0 && i < MAXENGINES-1; names = p) {
10262         p = names; q = buf; header = 0;
10263         while(*p && *p != '\n') *q++ = *p++;
10264         *q = 0;
10265         if(*p == '\n') p++;
10266         if(buf[0] == '#') {
10267             if(strstr(buf, "# end") == buf) { if(!--depth) insert = p; continue; } // leave group, and suppress printing label
10268             depth++; // we must be entering a new group
10269             if(all) continue; // suppress printing group headers when complete list requested
10270             header = 1;
10271             if(skip && !strcmp(group, buf)) { depth = 0; skip = FALSE; } // start when we reach requested group
10272         }
10273         if(depth != header && !all || skip) continue; // skip contents of group (but print first-level header)
10274         if(engineList[i]) free(engineList[i]);
10275         engineList[i] = strdup(buf);
10276         if(buf[0] != '#') insert = p, TidyProgramName(engineList[i], "localhost", buf); // group headers not tidied
10277         if(engineMnemonic[i]) free(engineMnemonic[i]);
10278         if((q = strstr(engineList[i]+2, "variant")) && q[-2]== ' ' && (q[-1]=='/' || q[-1]=='-') && (q[7]==' ' || q[7]=='=')) {
10279             strcat(buf, " (");
10280             sscanf(q + 8, "%s", buf + strlen(buf));
10281             strcat(buf, ")");
10282         }
10283         engineMnemonic[i] = strdup(buf);
10284         i++;
10285     }
10286     engineList[i] = engineMnemonic[i] = NULL;
10287     return i;
10288 }
10289
10290 // following implemented as macro to avoid type limitations
10291 #define SWAP(item, temp) temp = appData.item[0]; appData.item[0] = appData.item[n]; appData.item[n] = temp;
10292
10293 void
10294 SwapEngines (int n)
10295 {   // swap settings for first engine and other engine (so far only some selected options)
10296     int h;
10297     char *p;
10298     if(n == 0) return;
10299     SWAP(directory, p)
10300     SWAP(chessProgram, p)
10301     SWAP(isUCI, h)
10302     SWAP(hasOwnBookUCI, h)
10303     SWAP(protocolVersion, h)
10304     SWAP(reuse, h)
10305     SWAP(scoreIsAbsolute, h)
10306     SWAP(timeOdds, h)
10307     SWAP(logo, p)
10308     SWAP(pgnName, p)
10309     SWAP(pvSAN, h)
10310     SWAP(engOptions, p)
10311     SWAP(engInitString, p)
10312     SWAP(computerString, p)
10313     SWAP(features, p)
10314     SWAP(fenOverride, p)
10315     SWAP(NPS, h)
10316     SWAP(accumulateTC, h)
10317     SWAP(host, p)
10318 }
10319
10320 int
10321 GetEngineLine (char *s, int n)
10322 {
10323     int i;
10324     char buf[MSG_SIZ];
10325     extern char *icsNames;
10326     if(!s || !*s) return 0;
10327     NamesToList(n >= 10 ? icsNames : firstChessProgramNames, command, mnemonic, "all");
10328     for(i=1; mnemonic[i]; i++) if(!strcmp(s, mnemonic[i])) break;
10329     if(!mnemonic[i]) return 0;
10330     if(n == 11) return 1; // just testing if there was a match
10331     snprintf(buf, MSG_SIZ, "-%s %s", n == 10 ? "icshost" : "fcp", command[i]);
10332     if(n == 1) SwapEngines(n);
10333     ParseArgsFromString(buf);
10334     if(n == 1) SwapEngines(n);
10335     if(n == 0 && *appData.secondChessProgram == NULLCHAR) {
10336         SwapEngines(1); // set second same as first if not yet set (to suppress WB startup dialog)
10337         ParseArgsFromString(buf);
10338     }
10339     return 1;
10340 }
10341
10342 int
10343 SetPlayer (int player, char *p)
10344 {   // [HGM] find the engine line of the partcipant given by number, and parse its options.
10345     int i;
10346     char buf[MSG_SIZ], *engineName;
10347     for(i=0; i<player; i++) p = strchr(p, '\n') + 1;
10348     engineName = strdup(p); if(p = strchr(engineName, '\n')) *p = NULLCHAR;
10349     for(i=1; command[i]; i++) if(!strcmp(mnemonic[i], engineName)) break;
10350     if(mnemonic[i]) {
10351         snprintf(buf, MSG_SIZ, "-fcp %s", command[i]);
10352         ParseArgsFromString(resetOptions); appData.fenOverride[0] = NULL; appData.pvSAN[0] = FALSE;
10353         appData.firstHasOwnBookUCI = !appData.defNoBook; appData.protocolVersion[0] = PROTOVER;
10354         ParseArgsFromString(buf);
10355     } else { // no engine with this nickname is installed!
10356         snprintf(buf, MSG_SIZ, _("No engine %s is installed"), engineName);
10357         ReserveGame(nextGame, ' '); // unreserve game and drop out of match mode with error
10358         matchMode = FALSE; appData.matchGames = matchGame = roundNr = 0;
10359         ModeHighlight();
10360         DisplayError(buf, 0);
10361         return 0;
10362     }
10363     free(engineName);
10364     return i;
10365 }
10366
10367 char *recentEngines;
10368
10369 void
10370 RecentEngineEvent (int nr)
10371 {
10372     int n;
10373 //    SwapEngines(1); // bump first to second
10374 //    ReplaceEngine(&second, 1); // and load it there
10375     NamesToList(firstChessProgramNames, command, mnemonic, "all"); // get mnemonics of installed engines
10376     n = SetPlayer(nr, recentEngines); // select new (using original menu order!)
10377     if(mnemonic[n]) { // if somehow the engine with the selected nickname is no longer found in the list, we skip
10378         ReplaceEngine(&first, 0);
10379         FloatToFront(&appData.recentEngineList, command[n]);
10380     }
10381 }
10382
10383 int
10384 Pairing (int nr, int nPlayers, int *whitePlayer, int *blackPlayer, int *syncInterval)
10385 {   // determine players from game number
10386     int curCycle, curRound, curPairing, gamesPerCycle, gamesPerRound, roundsPerCycle=1, pairingsPerRound=1;
10387
10388     if(appData.tourneyType == 0) {
10389         roundsPerCycle = (nPlayers - 1) | 1;
10390         pairingsPerRound = nPlayers / 2;
10391     } else if(appData.tourneyType > 0) {
10392         roundsPerCycle = nPlayers - appData.tourneyType;
10393         pairingsPerRound = appData.tourneyType;
10394     }
10395     gamesPerRound = pairingsPerRound * appData.defaultMatchGames;
10396     gamesPerCycle = gamesPerRound * roundsPerCycle;
10397     appData.matchGames = gamesPerCycle * appData.tourneyCycles - 1; // fake like all games are one big match
10398     curCycle = nr / gamesPerCycle; nr %= gamesPerCycle;
10399     curRound = nr / gamesPerRound; nr %= gamesPerRound;
10400     curPairing = nr / appData.defaultMatchGames; nr %= appData.defaultMatchGames;
10401     matchGame = nr + curCycle * appData.defaultMatchGames + 1; // fake game nr that loads correct game or position from file
10402     roundNr = (curCycle * roundsPerCycle + curRound) * appData.defaultMatchGames + nr + 1;
10403
10404     if(appData.cycleSync) *syncInterval = gamesPerCycle;
10405     if(appData.roundSync) *syncInterval = gamesPerRound;
10406
10407     if(appData.debugMode) fprintf(debugFP, "cycle=%d, round=%d, pairing=%d curGame=%d\n", curCycle, curRound, curPairing, matchGame);
10408
10409     if(appData.tourneyType == 0) {
10410         if(curPairing == (nPlayers-1)/2 ) {
10411             *whitePlayer = curRound;
10412             *blackPlayer = nPlayers - 1; // this is the 'bye' when nPlayer is odd
10413         } else {
10414             *whitePlayer = curRound - (nPlayers-1)/2 + curPairing;
10415             if(*whitePlayer < 0) *whitePlayer += nPlayers-1+(nPlayers&1);
10416             *blackPlayer = curRound + (nPlayers-1)/2 - curPairing;
10417             if(*blackPlayer >= nPlayers-1+(nPlayers&1)) *blackPlayer -= nPlayers-1+(nPlayers&1);
10418         }
10419     } else if(appData.tourneyType > 1) {
10420         *blackPlayer = curPairing; // in multi-gauntlet, assign gauntlet engines to second, so first an be kept loaded during round
10421         *whitePlayer = curRound + appData.tourneyType;
10422     } else if(appData.tourneyType > 0) {
10423         *whitePlayer = curPairing;
10424         *blackPlayer = curRound + appData.tourneyType;
10425     }
10426
10427     // take care of white/black alternation per round.
10428     // For cycles and games this is already taken care of by default, derived from matchGame!
10429     return curRound & 1;
10430 }
10431
10432 int
10433 NextTourneyGame (int nr, int *swapColors)
10434 {   // !!!major kludge!!! fiddle appData settings to get everything in order for next tourney game
10435     char *p, *q;
10436     int whitePlayer, blackPlayer, firstBusy=1000000000, syncInterval = 0, nPlayers, OK = 1;
10437     FILE *tf;
10438     if(appData.tourneyFile[0] == NULLCHAR) return 1; // no tourney, always allow next game
10439     tf = fopen(appData.tourneyFile, "r");
10440     if(tf == NULL) { DisplayFatalError(_("Bad tournament file"), 0, 1); return 0; }
10441     ParseArgsFromFile(tf); fclose(tf);
10442     InitTimeControls(); // TC might be altered from tourney file
10443
10444     nPlayers = CountPlayers(appData.participants); // count participants
10445     if(appData.tourneyType < 0) syncInterval = nPlayers/2; else
10446     *swapColors = Pairing(nr<0 ? 0 : nr, nPlayers, &whitePlayer, &blackPlayer, &syncInterval);
10447
10448     if(syncInterval) {
10449         p = q = appData.results;
10450         while(*q) if(*q++ == '*' || q[-1] == ' ') { firstBusy = q - p - 1; break; }
10451         if(firstBusy/syncInterval < (nextGame/syncInterval)) {
10452             DisplayMessage(_("Waiting for other game(s)"),"");
10453             waitingForGame = TRUE;
10454             ScheduleDelayedEvent(NextMatchGame, 1000); // wait for all games of previous round to finish
10455             return 0;
10456         }
10457         waitingForGame = FALSE;
10458     }
10459
10460     if(appData.tourneyType < 0) {
10461         if(nr>=0 && !pairingReceived) {
10462             char buf[1<<16];
10463             if(pairing.pr == NoProc) {
10464                 if(!appData.pairingEngine[0]) {
10465                     DisplayFatalError(_("No pairing engine specified"), 0, 1);
10466                     return 0;
10467                 }
10468                 StartChessProgram(&pairing); // starts the pairing engine
10469             }
10470             snprintf(buf, 1<<16, "results %d %s\n", nPlayers, appData.results);
10471             SendToProgram(buf, &pairing);
10472             snprintf(buf, 1<<16, "pairing %d\n", nr+1);
10473             SendToProgram(buf, &pairing);
10474             return 0; // wait for pairing engine to answer (which causes NextTourneyGame to be called again...
10475         }
10476         pairingReceived = 0;                              // ... so we continue here
10477         *swapColors = 0;
10478         appData.matchGames = appData.tourneyCycles * syncInterval - 1;
10479         whitePlayer = savedWhitePlayer-1; blackPlayer = savedBlackPlayer-1;
10480         matchGame = 1; roundNr = nr / syncInterval + 1;
10481     }
10482
10483     if(first.pr != NoProc && second.pr != NoProc || nr<0) return 1; // engines already loaded
10484
10485     // redefine engines, engine dir, etc.
10486     NamesToList(firstChessProgramNames, command, mnemonic, "all"); // get mnemonics of installed engines
10487     if(first.pr == NoProc) {
10488       if(!SetPlayer(whitePlayer, appData.participants)) OK = 0; // find white player amongst it, and parse its engine line
10489       InitEngine(&first, 0);  // initialize ChessProgramStates based on new settings.
10490     }
10491     if(second.pr == NoProc) {
10492       SwapEngines(1);
10493       if(!SetPlayer(blackPlayer, appData.participants)) OK = 0; // find black player amongst it, and parse its engine line
10494       SwapEngines(1);         // and make that valid for second engine by swapping
10495       InitEngine(&second, 1);
10496     }
10497     CommonEngineInit();     // after this TwoMachinesEvent will create correct engine processes
10498     UpdateLogos(FALSE);     // leave display to ModeHiglight()
10499     return OK;
10500 }
10501
10502 void
10503 NextMatchGame ()
10504 {   // performs game initialization that does not invoke engines, and then tries to start the game
10505     int res, firstWhite, swapColors = 0;
10506     if(!NextTourneyGame(nextGame, &swapColors)) return; // this sets matchGame, -fcp / -scp and other options for next game, if needed
10507     if(matchMode && appData.debugMode) { // [HGM] debug split: game is part of a match; we might have to create a debug file just for this game
10508         char buf[MSG_SIZ];
10509         snprintf(buf, MSG_SIZ, appData.nameOfDebugFile, nextGame+1); // expand name of debug file with %d in it
10510         if(strcmp(buf, currentDebugFile)) { // name has changed
10511             FILE *f = fopen(buf, "w");
10512             if(f) { // if opening the new file failed, just keep using the old one
10513                 ASSIGN(currentDebugFile, buf);
10514                 fclose(debugFP);
10515                 debugFP = f;
10516             }
10517             if(appData.serverFileName) {
10518                 if(serverFP) fclose(serverFP);
10519                 serverFP = fopen(appData.serverFileName, "w");
10520                 if(serverFP && first.pr != NoProc) fprintf(serverFP, "StartChildProcess (dir=\".\") .\\%s\n", first.tidy);
10521                 if(serverFP && second.pr != NoProc) fprintf(serverFP, "StartChildProcess (dir=\".\") .\\%s\n", second.tidy);
10522             }
10523         }
10524     }
10525     firstWhite = appData.firstPlaysBlack ^ (matchGame & 1 | appData.sameColorGames > 1); // non-incremental default
10526     firstWhite ^= swapColors; // reverses if NextTourneyGame says we are in an odd round
10527     first.twoMachinesColor =  firstWhite ? "white\n" : "black\n";   // perform actual color assignement
10528     second.twoMachinesColor = firstWhite ? "black\n" : "white\n";
10529     appData.noChessProgram = (first.pr == NoProc); // kludge to prevent Reset from starting up chess program
10530     if(appData.loadGameIndex == -2) srandom(appData.seedBase + 68163*(nextGame & ~1)); // deterministic seed to force same opening
10531     Reset(FALSE, first.pr != NoProc);
10532     res = LoadGameOrPosition(matchGame); // setup game
10533     appData.noChessProgram = FALSE; // LoadGameOrPosition might call Reset too!
10534     if(!res) return; // abort when bad game/pos file
10535     TwoMachinesEvent();
10536 }
10537
10538 void
10539 UserAdjudicationEvent (int result)
10540 {
10541     ChessMove gameResult = GameIsDrawn;
10542
10543     if( result > 0 ) {
10544         gameResult = WhiteWins;
10545     }
10546     else if( result < 0 ) {
10547         gameResult = BlackWins;
10548     }
10549
10550     if( gameMode == TwoMachinesPlay ) {
10551         GameEnds( gameResult, "User adjudication", GE_XBOARD );
10552     }
10553 }
10554
10555
10556 // [HGM] save: calculate checksum of game to make games easily identifiable
10557 int
10558 StringCheckSum (char *s)
10559 {
10560         int i = 0;
10561         if(s==NULL) return 0;
10562         while(*s) i = i*259 + *s++;
10563         return i;
10564 }
10565
10566 int
10567 GameCheckSum ()
10568 {
10569         int i, sum=0;
10570         for(i=backwardMostMove; i<forwardMostMove; i++) {
10571                 sum += pvInfoList[i].depth;
10572                 sum += StringCheckSum(parseList[i]);
10573                 sum += StringCheckSum(commentList[i]);
10574                 sum *= 261;
10575         }
10576         if(i>1 && sum==0) sum++; // make sure never zero for non-empty game
10577         return sum + StringCheckSum(commentList[i]);
10578 } // end of save patch
10579
10580 void
10581 GameEnds (ChessMove result, char *resultDetails, int whosays)
10582 {
10583     GameMode nextGameMode;
10584     int isIcsGame;
10585     char buf[MSG_SIZ], popupRequested = 0, *ranking = NULL;
10586
10587     if(endingGame) return; /* [HGM] crash: forbid recursion */
10588     endingGame = 1;
10589     if(twoBoards) { // [HGM] dual: switch back to one board
10590         twoBoards = partnerUp = 0; InitDrawingSizes(-2, 0);
10591         DrawPosition(TRUE, partnerBoard); // observed game becomes foreground
10592     }
10593     if (appData.debugMode) {
10594       fprintf(debugFP, "GameEnds(%d, %s, %d)\n",
10595               result, resultDetails ? resultDetails : "(null)", whosays);
10596     }
10597
10598     fromX = fromY = -1; // [HGM] abort any move the user is entering.
10599
10600     if(pausing) PauseEvent(); // can happen when we abort a paused game (New Game or Quit)
10601
10602     if (appData.icsActive && (whosays == GE_ENGINE || whosays >= GE_ENGINE1)) {
10603         /* If we are playing on ICS, the server decides when the
10604            game is over, but the engine can offer to draw, claim
10605            a draw, or resign.
10606          */
10607 #if ZIPPY
10608         if (appData.zippyPlay && first.initDone) {
10609             if (result == GameIsDrawn) {
10610                 /* In case draw still needs to be claimed */
10611                 SendToICS(ics_prefix);
10612                 SendToICS("draw\n");
10613             } else if (StrCaseStr(resultDetails, "resign")) {
10614                 SendToICS(ics_prefix);
10615                 SendToICS("resign\n");
10616             }
10617         }
10618 #endif
10619         endingGame = 0; /* [HGM] crash */
10620         return;
10621     }
10622
10623     /* If we're loading the game from a file, stop */
10624     if (whosays == GE_FILE) {
10625       (void) StopLoadGameTimer();
10626       gameFileFP = NULL;
10627     }
10628
10629     /* Cancel draw offers */
10630     first.offeredDraw = second.offeredDraw = 0;
10631
10632     /* If this is an ICS game, only ICS can really say it's done;
10633        if not, anyone can. */
10634     isIcsGame = (gameMode == IcsPlayingWhite ||
10635                  gameMode == IcsPlayingBlack ||
10636                  gameMode == IcsObserving    ||
10637                  gameMode == IcsExamining);
10638
10639     if (!isIcsGame || whosays == GE_ICS) {
10640         /* OK -- not an ICS game, or ICS said it was done */
10641         StopClocks();
10642         if (!isIcsGame && !appData.noChessProgram)
10643           SetUserThinkingEnables();
10644
10645         /* [HGM] if a machine claims the game end we verify this claim */
10646         if(gameMode == TwoMachinesPlay && appData.testClaims) {
10647             if(appData.testLegality && whosays >= GE_ENGINE1 ) {
10648                 char claimer;
10649                 ChessMove trueResult = (ChessMove) -1;
10650
10651                 claimer = whosays == GE_ENGINE1 ?      /* color of claimer */
10652                                             first.twoMachinesColor[0] :
10653                                             second.twoMachinesColor[0] ;
10654
10655                 // [HGM] losers: because the logic is becoming a bit hairy, determine true result first
10656                 if((signed char)boards[forwardMostMove][EP_STATUS] == EP_CHECKMATE) {
10657                     /* [HGM] verify: engine mate claims accepted if they were flagged */
10658                     trueResult = WhiteOnMove(forwardMostMove) ? BlackWins : WhiteWins;
10659                 } else
10660                 if((signed char)boards[forwardMostMove][EP_STATUS] == EP_WINS) { // added code for games where being mated is a win
10661                     /* [HGM] verify: engine mate claims accepted if they were flagged */
10662                     trueResult = WhiteOnMove(forwardMostMove) ? WhiteWins : BlackWins;
10663                 } else
10664                 if((signed char)boards[forwardMostMove][EP_STATUS] == EP_STALEMATE) { // only used to indicate draws now
10665                     trueResult = GameIsDrawn; // default; in variants where stalemate loses, Status is CHECKMATE
10666                 }
10667
10668                 // now verify win claims, but not in drop games, as we don't understand those yet
10669                 if( (gameInfo.holdingsWidth == 0 || gameInfo.variant == VariantSuper
10670                                                  || gameInfo.variant == VariantGreat || gameInfo.variant == VariantGrand) &&
10671                     (result == WhiteWins && claimer == 'w' ||
10672                      result == BlackWins && claimer == 'b'   ) ) { // case to verify: engine claims own win
10673                       if (appData.debugMode) {
10674                         fprintf(debugFP, "result=%d sp=%d move=%d\n",
10675                                 result, (signed char)boards[forwardMostMove][EP_STATUS], forwardMostMove);
10676                       }
10677                       if(result != trueResult) {
10678                         snprintf(buf, MSG_SIZ, "False win claim: '%s'", resultDetails);
10679                               result = claimer == 'w' ? BlackWins : WhiteWins;
10680                               resultDetails = buf;
10681                       }
10682                 } else
10683                 if( result == GameIsDrawn && (signed char)boards[forwardMostMove][EP_STATUS] > EP_DRAWS
10684                     && (forwardMostMove <= backwardMostMove ||
10685                         (signed char)boards[forwardMostMove-1][EP_STATUS] > EP_DRAWS ||
10686                         (claimer=='b')==(forwardMostMove&1))
10687                                                                                   ) {
10688                       /* [HGM] verify: draws that were not flagged are false claims */
10689                   snprintf(buf, MSG_SIZ, "False draw claim: '%s'", resultDetails);
10690                       result = claimer == 'w' ? BlackWins : WhiteWins;
10691                       resultDetails = buf;
10692                 }
10693                 /* (Claiming a loss is accepted no questions asked!) */
10694             } else if(matchMode && result == GameIsDrawn && !strcmp(resultDetails, "Engine Abort Request")) {
10695                 forwardMostMove = backwardMostMove; // [HGM] delete game to surpress saving
10696                 result = GameUnfinished;
10697                 if(!*appData.tourneyFile) matchGame--; // replay even in plain match
10698             }
10699             /* [HGM] bare: don't allow bare King to win */
10700             if((gameInfo.holdingsWidth == 0 || gameInfo.variant == VariantSuper
10701                                             || gameInfo.variant == VariantGreat || gameInfo.variant == VariantGrand)
10702                && gameInfo.variant != VariantLosers && gameInfo.variant != VariantGiveaway
10703                && gameInfo.variant != VariantSuicide // [HGM] losers: except in losers, of course...
10704                && result != GameIsDrawn)
10705             {   int i, j, k=0, color = (result==WhiteWins ? (int)WhitePawn : (int)BlackPawn);
10706                 for(j=BOARD_LEFT; j<BOARD_RGHT; j++) for(i=0; i<BOARD_HEIGHT; i++) {
10707                         int p = (signed char)boards[forwardMostMove][i][j] - color;
10708                         if(p >= 0 && p <= (int)WhiteKing) k++;
10709                 }
10710                 if (appData.debugMode) {
10711                      fprintf(debugFP, "GE(%d, %s, %d) bare king k=%d color=%d\n",
10712                         result, resultDetails ? resultDetails : "(null)", whosays, k, color);
10713                 }
10714                 if(k <= 1) {
10715                         result = GameIsDrawn;
10716                         snprintf(buf, MSG_SIZ, "%s but bare king", resultDetails);
10717                         resultDetails = buf;
10718                 }
10719             }
10720         }
10721
10722
10723         if(serverMoves != NULL && !loadFlag) { char c = '=';
10724             if(result==WhiteWins) c = '+';
10725             if(result==BlackWins) c = '-';
10726             if(resultDetails != NULL)
10727                 fprintf(serverMoves, ";%c;%s\n", c, resultDetails), fflush(serverMoves);
10728         }
10729         if (resultDetails != NULL) {
10730             gameInfo.result = result;
10731             gameInfo.resultDetails = StrSave(resultDetails);
10732
10733             /* display last move only if game was not loaded from file */
10734             if ((whosays != GE_FILE) && (currentMove == forwardMostMove))
10735                 DisplayMove(currentMove - 1);
10736
10737             if (forwardMostMove != 0) {
10738                 if (gameMode != PlayFromGameFile && gameMode != EditGame
10739                     && lastSavedGame != GameCheckSum() // [HGM] save: suppress duplicates
10740                                                                 ) {
10741                     if (*appData.saveGameFile != NULLCHAR) {
10742                         if(result == GameUnfinished && matchMode && *appData.tourneyFile)
10743                             AutoSaveGame(); // [HGM] protect tourney PGN from aborted games, and prompt for name instead
10744                         else
10745                         SaveGameToFile(appData.saveGameFile, TRUE);
10746                     } else if (appData.autoSaveGames) {
10747                         AutoSaveGame();
10748                     }
10749                     if (*appData.savePositionFile != NULLCHAR) {
10750                         SavePositionToFile(appData.savePositionFile);
10751                     }
10752                     AddGameToBook(FALSE); // Only does something during Monte-Carlo book building
10753                 }
10754             }
10755
10756             /* Tell program how game ended in case it is learning */
10757             /* [HGM] Moved this to after saving the PGN, just in case */
10758             /* engine died and we got here through time loss. In that */
10759             /* case we will get a fatal error writing the pipe, which */
10760             /* would otherwise lose us the PGN.                       */
10761             /* [HGM] crash: not needed anymore, but doesn't hurt;     */
10762             /* output during GameEnds should never be fatal anymore   */
10763             if (gameMode == MachinePlaysWhite ||
10764                 gameMode == MachinePlaysBlack ||
10765                 gameMode == TwoMachinesPlay ||
10766                 gameMode == IcsPlayingWhite ||
10767                 gameMode == IcsPlayingBlack ||
10768                 gameMode == BeginningOfGame) {
10769                 char buf[MSG_SIZ];
10770                 snprintf(buf, MSG_SIZ, "result %s {%s}\n", PGNResult(result),
10771                         resultDetails);
10772                 if (first.pr != NoProc) {
10773                     SendToProgram(buf, &first);
10774                 }
10775                 if (second.pr != NoProc &&
10776                     gameMode == TwoMachinesPlay) {
10777                     SendToProgram(buf, &second);
10778                 }
10779             }
10780         }
10781
10782         if (appData.icsActive) {
10783             if (appData.quietPlay &&
10784                 (gameMode == IcsPlayingWhite ||
10785                  gameMode == IcsPlayingBlack)) {
10786                 SendToICS(ics_prefix);
10787                 SendToICS("set shout 1\n");
10788             }
10789             nextGameMode = IcsIdle;
10790             ics_user_moved = FALSE;
10791             /* clean up premove.  It's ugly when the game has ended and the
10792              * premove highlights are still on the board.
10793              */
10794             if (gotPremove) {
10795               gotPremove = FALSE;
10796               ClearPremoveHighlights();
10797               DrawPosition(FALSE, boards[currentMove]);
10798             }
10799             if (whosays == GE_ICS) {
10800                 switch (result) {
10801                 case WhiteWins:
10802                     if (gameMode == IcsPlayingWhite)
10803                         PlayIcsWinSound();
10804                     else if(gameMode == IcsPlayingBlack)
10805                         PlayIcsLossSound();
10806                     break;
10807                 case BlackWins:
10808                     if (gameMode == IcsPlayingBlack)
10809                         PlayIcsWinSound();
10810                     else if(gameMode == IcsPlayingWhite)
10811                         PlayIcsLossSound();
10812                     break;
10813                 case GameIsDrawn:
10814                     PlayIcsDrawSound();
10815                     break;
10816                 default:
10817                     PlayIcsUnfinishedSound();
10818                 }
10819             }
10820         } else if (gameMode == EditGame ||
10821                    gameMode == PlayFromGameFile ||
10822                    gameMode == AnalyzeMode ||
10823                    gameMode == AnalyzeFile) {
10824             nextGameMode = gameMode;
10825         } else {
10826             nextGameMode = EndOfGame;
10827         }
10828         pausing = FALSE;
10829         ModeHighlight();
10830     } else {
10831         nextGameMode = gameMode;
10832     }
10833
10834     if (appData.noChessProgram) {
10835         gameMode = nextGameMode;
10836         ModeHighlight();
10837         endingGame = 0; /* [HGM] crash */
10838         return;
10839     }
10840
10841     if (first.reuse) {
10842         /* Put first chess program into idle state */
10843         if (first.pr != NoProc &&
10844             (gameMode == MachinePlaysWhite ||
10845              gameMode == MachinePlaysBlack ||
10846              gameMode == TwoMachinesPlay ||
10847              gameMode == IcsPlayingWhite ||
10848              gameMode == IcsPlayingBlack ||
10849              gameMode == BeginningOfGame)) {
10850             SendToProgram("force\n", &first);
10851             if (first.usePing) {
10852               char buf[MSG_SIZ];
10853               snprintf(buf, MSG_SIZ, "ping %d\n", ++first.lastPing);
10854               SendToProgram(buf, &first);
10855             }
10856         }
10857     } else if (result != GameUnfinished || nextGameMode == IcsIdle) {
10858         /* Kill off first chess program */
10859         if (first.isr != NULL)
10860           RemoveInputSource(first.isr);
10861         first.isr = NULL;
10862
10863         if (first.pr != NoProc) {
10864             ExitAnalyzeMode();
10865             DoSleep( appData.delayBeforeQuit );
10866             SendToProgram("quit\n", &first);
10867             DoSleep( appData.delayAfterQuit );
10868             DestroyChildProcess(first.pr, first.useSigterm);
10869             first.reload = TRUE;
10870         }
10871         first.pr = NoProc;
10872     }
10873     if (second.reuse) {
10874         /* Put second chess program into idle state */
10875         if (second.pr != NoProc &&
10876             gameMode == TwoMachinesPlay) {
10877             SendToProgram("force\n", &second);
10878             if (second.usePing) {
10879               char buf[MSG_SIZ];
10880               snprintf(buf, MSG_SIZ, "ping %d\n", ++second.lastPing);
10881               SendToProgram(buf, &second);
10882             }
10883         }
10884     } else if (result != GameUnfinished || nextGameMode == IcsIdle) {
10885         /* Kill off second chess program */
10886         if (second.isr != NULL)
10887           RemoveInputSource(second.isr);
10888         second.isr = NULL;
10889
10890         if (second.pr != NoProc) {
10891             DoSleep( appData.delayBeforeQuit );
10892             SendToProgram("quit\n", &second);
10893             DoSleep( appData.delayAfterQuit );
10894             DestroyChildProcess(second.pr, second.useSigterm);
10895             second.reload = TRUE;
10896         }
10897         second.pr = NoProc;
10898     }
10899
10900     if (matchMode && (gameMode == TwoMachinesPlay || waitingForGame && exiting)) {
10901         char resChar = '=';
10902         switch (result) {
10903         case WhiteWins:
10904           resChar = '+';
10905           if (first.twoMachinesColor[0] == 'w') {
10906             first.matchWins++;
10907           } else {
10908             second.matchWins++;
10909           }
10910           break;
10911         case BlackWins:
10912           resChar = '-';
10913           if (first.twoMachinesColor[0] == 'b') {
10914             first.matchWins++;
10915           } else {
10916             second.matchWins++;
10917           }
10918           break;
10919         case GameUnfinished:
10920           resChar = ' ';
10921         default:
10922           break;
10923         }
10924
10925         if(waitingForGame) resChar = ' '; // quit while waiting for round sync: unreserve already reserved game
10926         if(appData.tourneyFile[0]){ // [HGM] we are in a tourney; update tourney file with game result
10927             if(appData.afterGame && appData.afterGame[0]) RunCommand(appData.afterGame);
10928             ReserveGame(nextGame, resChar); // sets nextGame
10929             if(nextGame > appData.matchGames) appData.tourneyFile[0] = 0, ranking = TourneyStandings(3); // tourney is done
10930             else ranking = strdup("busy"); //suppress popup when aborted but not finished
10931         } else roundNr = nextGame = matchGame + 1; // normal match, just increment; round equals matchGame
10932
10933         if (nextGame <= appData.matchGames && !abortMatch) {
10934             gameMode = nextGameMode;
10935             matchGame = nextGame; // this will be overruled in tourney mode!
10936             GetTimeMark(&pauseStart); // [HGM] matchpause: stipulate a pause
10937             ScheduleDelayedEvent(NextMatchGame, 10); // but start game immediately (as it will wait out the pause itself)
10938             endingGame = 0; /* [HGM] crash */
10939             return;
10940         } else {
10941             gameMode = nextGameMode;
10942             snprintf(buf, MSG_SIZ, _("Match %s vs. %s: final score %d-%d-%d"),
10943                      first.tidy, second.tidy,
10944                      first.matchWins, second.matchWins,
10945                      appData.matchGames - (first.matchWins + second.matchWins));
10946             if(!appData.tourneyFile[0]) matchGame++, DisplayTwoMachinesTitle(); // [HGM] update result in window title
10947             if(ranking && strcmp(ranking, "busy") && appData.afterTourney && appData.afterTourney[0]) RunCommand(appData.afterTourney);
10948             popupRequested++; // [HGM] crash: postpone to after resetting endingGame
10949             if (appData.firstPlaysBlack) { // [HGM] match: back to original for next match
10950                 first.twoMachinesColor = "black\n";
10951                 second.twoMachinesColor = "white\n";
10952             } else {
10953                 first.twoMachinesColor = "white\n";
10954                 second.twoMachinesColor = "black\n";
10955             }
10956         }
10957     }
10958     if ((gameMode == AnalyzeMode || gameMode == AnalyzeFile) &&
10959         !(nextGameMode == AnalyzeMode || nextGameMode == AnalyzeFile))
10960       ExitAnalyzeMode();
10961     gameMode = nextGameMode;
10962     ModeHighlight();
10963     endingGame = 0;  /* [HGM] crash */
10964     if(popupRequested) { // [HGM] crash: this calls GameEnds recursively through ExitEvent! Make it a harmless tail recursion.
10965         if(matchMode == TRUE) { // match through command line: exit with or without popup
10966             if(ranking) {
10967                 ToNrEvent(forwardMostMove);
10968                 if(strcmp(ranking, "busy")) DisplayFatalError(ranking, 0, 0);
10969                 else ExitEvent(0);
10970             } else DisplayFatalError(buf, 0, 0);
10971         } else { // match through menu; just stop, with or without popup
10972             matchMode = FALSE; appData.matchGames = matchGame = roundNr = 0;
10973             ModeHighlight();
10974             if(ranking){
10975                 if(strcmp(ranking, "busy")) DisplayNote(ranking);
10976             } else DisplayNote(buf);
10977       }
10978       if(ranking) free(ranking);
10979     }
10980 }
10981
10982 /* Assumes program was just initialized (initString sent).
10983    Leaves program in force mode. */
10984 void
10985 FeedMovesToProgram (ChessProgramState *cps, int upto)
10986 {
10987     int i;
10988
10989     if (appData.debugMode)
10990       fprintf(debugFP, "Feeding %smoves %d through %d to %s chess program\n",
10991               startedFromSetupPosition ? "position and " : "",
10992               backwardMostMove, upto, cps->which);
10993     if(currentlyInitializedVariant != gameInfo.variant) {
10994       char buf[MSG_SIZ];
10995         // [HGM] variantswitch: make engine aware of new variant
10996         if(cps->protocolVersion > 1 && StrStr(cps->variants, VariantName(gameInfo.variant)) == NULL)
10997                 return; // [HGM] refrain from feeding moves altogether if variant is unsupported!
10998         snprintf(buf, MSG_SIZ, "variant %s\n", VariantName(gameInfo.variant));
10999         SendToProgram(buf, cps);
11000         currentlyInitializedVariant = gameInfo.variant;
11001     }
11002     SendToProgram("force\n", cps);
11003     if (startedFromSetupPosition) {
11004         SendBoard(cps, backwardMostMove);
11005     if (appData.debugMode) {
11006         fprintf(debugFP, "feedMoves\n");
11007     }
11008     }
11009     for (i = backwardMostMove; i < upto; i++) {
11010         SendMoveToProgram(i, cps);
11011     }
11012 }
11013
11014
11015 int
11016 ResurrectChessProgram ()
11017 {
11018      /* The chess program may have exited.
11019         If so, restart it and feed it all the moves made so far. */
11020     static int doInit = 0;
11021
11022     if (appData.noChessProgram) return 1;
11023
11024     if(matchMode /*&& appData.tourneyFile[0]*/) { // [HGM] tourney: make sure we get features after engine replacement. (Should we always do this?)
11025         if(WaitForEngine(&first, TwoMachinesEventIfReady)) { doInit = 1; return 0; } // request to do init on next visit
11026         if(!doInit) return 1; // this replaces testing first.pr != NoProc, which is true when we get here, but first time no reason to abort
11027         doInit = 0; // we fell through (first time after starting the engine); make sure it doesn't happen again
11028     } else {
11029         if (first.pr != NoProc) return 1;
11030         StartChessProgram(&first);
11031     }
11032     InitChessProgram(&first, FALSE);
11033     FeedMovesToProgram(&first, currentMove);
11034
11035     if (!first.sendTime) {
11036         /* can't tell gnuchess what its clock should read,
11037            so we bow to its notion. */
11038         ResetClocks();
11039         timeRemaining[0][currentMove] = whiteTimeRemaining;
11040         timeRemaining[1][currentMove] = blackTimeRemaining;
11041     }
11042
11043     if ((gameMode == AnalyzeMode || gameMode == AnalyzeFile ||
11044                 appData.icsEngineAnalyze) && first.analysisSupport) {
11045       SendToProgram("analyze\n", &first);
11046       first.analyzing = TRUE;
11047     }
11048     return 1;
11049 }
11050
11051 /*
11052  * Button procedures
11053  */
11054 void
11055 Reset (int redraw, int init)
11056 {
11057     int i;
11058
11059     if (appData.debugMode) {
11060         fprintf(debugFP, "Reset(%d, %d) from gameMode %d\n",
11061                 redraw, init, gameMode);
11062     }
11063     CleanupTail(); // [HGM] vari: delete any stored variations
11064     CommentPopDown(); // [HGM] make sure no comments to the previous game keep hanging on
11065     pausing = pauseExamInvalid = FALSE;
11066     startedFromSetupPosition = blackPlaysFirst = FALSE;
11067     firstMove = TRUE;
11068     whiteFlag = blackFlag = FALSE;
11069     userOfferedDraw = FALSE;
11070     hintRequested = bookRequested = FALSE;
11071     first.maybeThinking = FALSE;
11072     second.maybeThinking = FALSE;
11073     first.bookSuspend = FALSE; // [HGM] book
11074     second.bookSuspend = FALSE;
11075     thinkOutput[0] = NULLCHAR;
11076     lastHint[0] = NULLCHAR;
11077     ClearGameInfo(&gameInfo);
11078     gameInfo.variant = StringToVariant(appData.variant);
11079     ics_user_moved = ics_clock_paused = FALSE;
11080     ics_getting_history = H_FALSE;
11081     ics_gamenum = -1;
11082     white_holding[0] = black_holding[0] = NULLCHAR;
11083     ClearProgramStats();
11084     opponentKibitzes = FALSE; // [HGM] kibitz: do not reserve space in engine-output window in zippy mode
11085
11086     ResetFrontEnd();
11087     ClearHighlights();
11088     flipView = appData.flipView;
11089     ClearPremoveHighlights();
11090     gotPremove = FALSE;
11091     alarmSounded = FALSE;
11092
11093     GameEnds(EndOfFile, NULL, GE_PLAYER);
11094     if(appData.serverMovesName != NULL) {
11095         /* [HGM] prepare to make moves file for broadcasting */
11096         clock_t t = clock();
11097         if(serverMoves != NULL) fclose(serverMoves);
11098         serverMoves = fopen(appData.serverMovesName, "r");
11099         if(serverMoves != NULL) {
11100             fclose(serverMoves);
11101             /* delay 15 sec before overwriting, so all clients can see end */
11102             while(clock()-t < appData.serverPause*CLOCKS_PER_SEC);
11103         }
11104         serverMoves = fopen(appData.serverMovesName, "w");
11105     }
11106
11107     ExitAnalyzeMode();
11108     gameMode = BeginningOfGame;
11109     ModeHighlight();
11110     if(appData.icsActive) gameInfo.variant = VariantNormal;
11111     currentMove = forwardMostMove = backwardMostMove = 0;
11112     MarkTargetSquares(1);
11113     InitPosition(redraw);
11114     for (i = 0; i < MAX_MOVES; i++) {
11115         if (commentList[i] != NULL) {
11116             free(commentList[i]);
11117             commentList[i] = NULL;
11118         }
11119     }
11120     ResetClocks();
11121     timeRemaining[0][0] = whiteTimeRemaining;
11122     timeRemaining[1][0] = blackTimeRemaining;
11123
11124     if (first.pr == NoProc) {
11125         StartChessProgram(&first);
11126     }
11127     if (init) {
11128             InitChessProgram(&first, startedFromSetupPosition);
11129     }
11130     DisplayTitle("");
11131     DisplayMessage("", "");
11132     HistorySet(parseList, backwardMostMove, forwardMostMove, currentMove-1);
11133     lastSavedGame = 0; // [HGM] save: make sure next game counts as unsaved
11134     ClearMap();        // [HGM] exclude: invalidate map
11135 }
11136
11137 void
11138 AutoPlayGameLoop ()
11139 {
11140     for (;;) {
11141         if (!AutoPlayOneMove())
11142           return;
11143         if (matchMode || appData.timeDelay == 0)
11144           continue;
11145         if (appData.timeDelay < 0)
11146           return;
11147         StartLoadGameTimer((long)(1000.0f * appData.timeDelay));
11148         break;
11149     }
11150 }
11151
11152 void
11153 AnalyzeNextGame()
11154 {
11155     ReloadGame(1); // next game
11156 }
11157
11158 int
11159 AutoPlayOneMove ()
11160 {
11161     int fromX, fromY, toX, toY;
11162
11163     if (appData.debugMode) {
11164       fprintf(debugFP, "AutoPlayOneMove(): current %d\n", currentMove);
11165     }
11166
11167     if (gameMode != PlayFromGameFile && gameMode != AnalyzeFile)
11168       return FALSE;
11169
11170     if (gameMode == AnalyzeFile && currentMove > backwardMostMove) {
11171       pvInfoList[currentMove].depth = programStats.depth;
11172       pvInfoList[currentMove].score = programStats.score;
11173       pvInfoList[currentMove].time  = 0;
11174       if(currentMove < forwardMostMove) AppendComment(currentMove+1, lastPV[0], 2);
11175     }
11176
11177     if (currentMove >= forwardMostMove) {
11178       if(gameMode == AnalyzeFile) {
11179           if(appData.loadGameIndex == -1) {
11180             GameEnds(EndOfFile, NULL, GE_FILE);
11181           ScheduleDelayedEvent(AnalyzeNextGame, 10);
11182           } else {
11183           ExitAnalyzeMode(); SendToProgram("force\n", &first);
11184         }
11185       }
11186 //      gameMode = EndOfGame;
11187 //      ModeHighlight();
11188
11189       /* [AS] Clear current move marker at the end of a game */
11190       /* HistorySet(parseList, backwardMostMove, forwardMostMove, -1); */
11191
11192       return FALSE;
11193     }
11194
11195     toX = moveList[currentMove][2] - AAA;
11196     toY = moveList[currentMove][3] - ONE;
11197
11198     if (moveList[currentMove][1] == '@') {
11199         if (appData.highlightLastMove) {
11200             SetHighlights(-1, -1, toX, toY);
11201         }
11202     } else {
11203         fromX = moveList[currentMove][0] - AAA;
11204         fromY = moveList[currentMove][1] - ONE;
11205
11206         HistorySet(parseList, backwardMostMove, forwardMostMove, currentMove); /* [AS] */
11207
11208         AnimateMove(boards[currentMove], fromX, fromY, toX, toY);
11209
11210         if (appData.highlightLastMove) {
11211             SetHighlights(fromX, fromY, toX, toY);
11212         }
11213     }
11214     DisplayMove(currentMove);
11215     SendMoveToProgram(currentMove++, &first);
11216     DisplayBothClocks();
11217     DrawPosition(FALSE, boards[currentMove]);
11218     // [HGM] PV info: always display, routine tests if empty
11219     DisplayComment(currentMove - 1, commentList[currentMove]);
11220     return TRUE;
11221 }
11222
11223
11224 int
11225 LoadGameOneMove (ChessMove readAhead)
11226 {
11227     int fromX = 0, fromY = 0, toX = 0, toY = 0, done;
11228     char promoChar = NULLCHAR;
11229     ChessMove moveType;
11230     char move[MSG_SIZ];
11231     char *p, *q;
11232
11233     if (gameMode != PlayFromGameFile && gameMode != AnalyzeFile &&
11234         gameMode != AnalyzeMode && gameMode != Training) {
11235         gameFileFP = NULL;
11236         return FALSE;
11237     }
11238
11239     yyboardindex = forwardMostMove;
11240     if (readAhead != EndOfFile) {
11241       moveType = readAhead;
11242     } else {
11243       if (gameFileFP == NULL)
11244           return FALSE;
11245       moveType = (ChessMove) Myylex();
11246     }
11247
11248     done = FALSE;
11249     switch (moveType) {
11250       case Comment:
11251         if (appData.debugMode)
11252           fprintf(debugFP, "Parsed Comment: %s\n", yy_text);
11253         p = yy_text;
11254
11255         /* append the comment but don't display it */
11256         AppendComment(currentMove, p, FALSE);
11257         return TRUE;
11258
11259       case WhiteCapturesEnPassant:
11260       case BlackCapturesEnPassant:
11261       case WhitePromotion:
11262       case BlackPromotion:
11263       case WhiteNonPromotion:
11264       case BlackNonPromotion:
11265       case NormalMove:
11266       case WhiteKingSideCastle:
11267       case WhiteQueenSideCastle:
11268       case BlackKingSideCastle:
11269       case BlackQueenSideCastle:
11270       case WhiteKingSideCastleWild:
11271       case WhiteQueenSideCastleWild:
11272       case BlackKingSideCastleWild:
11273       case BlackQueenSideCastleWild:
11274       /* PUSH Fabien */
11275       case WhiteHSideCastleFR:
11276       case WhiteASideCastleFR:
11277       case BlackHSideCastleFR:
11278       case BlackASideCastleFR:
11279       /* POP Fabien */
11280         if (appData.debugMode)
11281           fprintf(debugFP, "Parsed %s into %s\n", yy_text, currentMoveString);
11282         fromX = currentMoveString[0] - AAA;
11283         fromY = currentMoveString[1] - ONE;
11284         toX = currentMoveString[2] - AAA;
11285         toY = currentMoveString[3] - ONE;
11286         promoChar = currentMoveString[4];
11287         break;
11288
11289       case WhiteDrop:
11290       case BlackDrop:
11291         if (appData.debugMode)
11292           fprintf(debugFP, "Parsed %s into %s\n", yy_text, currentMoveString);
11293         fromX = moveType == WhiteDrop ?
11294           (int) CharToPiece(ToUpper(currentMoveString[0])) :
11295         (int) CharToPiece(ToLower(currentMoveString[0]));
11296         fromY = DROP_RANK;
11297         toX = currentMoveString[2] - AAA;
11298         toY = currentMoveString[3] - ONE;
11299         break;
11300
11301       case WhiteWins:
11302       case BlackWins:
11303       case GameIsDrawn:
11304       case GameUnfinished:
11305         if (appData.debugMode)
11306           fprintf(debugFP, "Parsed game end: %s\n", yy_text);
11307         p = strchr(yy_text, '{');
11308         if (p == NULL) p = strchr(yy_text, '(');
11309         if (p == NULL) {
11310             p = yy_text;
11311             if (p[0] == '0' || p[0] == '1' || p[0] == '*') p = "";
11312         } else {
11313             q = strchr(p, *p == '{' ? '}' : ')');
11314             if (q != NULL) *q = NULLCHAR;
11315             p++;
11316         }
11317         while(q = strchr(p, '\n')) *q = ' '; // [HGM] crush linefeeds in result message
11318         GameEnds(moveType, p, GE_FILE);
11319         done = TRUE;
11320         if (cmailMsgLoaded) {
11321             ClearHighlights();
11322             flipView = WhiteOnMove(currentMove);
11323             if (moveType == GameUnfinished) flipView = !flipView;
11324             if (appData.debugMode)
11325               fprintf(debugFP, "Setting flipView to %d\n", flipView) ;
11326         }
11327         break;
11328
11329       case EndOfFile:
11330         if (appData.debugMode)
11331           fprintf(debugFP, "Parser hit end of file\n");
11332         switch (MateTest(boards[currentMove], PosFlags(currentMove)) ) {
11333           case MT_NONE:
11334           case MT_CHECK:
11335             break;
11336           case MT_CHECKMATE:
11337           case MT_STAINMATE:
11338             if (WhiteOnMove(currentMove)) {
11339                 GameEnds(BlackWins, "Black mates", GE_FILE);
11340             } else {
11341                 GameEnds(WhiteWins, "White mates", GE_FILE);
11342             }
11343             break;
11344           case MT_STALEMATE:
11345             GameEnds(GameIsDrawn, "Stalemate", GE_FILE);
11346             break;
11347         }
11348         done = TRUE;
11349         break;
11350
11351       case MoveNumberOne:
11352         if (lastLoadGameStart == GNUChessGame) {
11353             /* GNUChessGames have numbers, but they aren't move numbers */
11354             if (appData.debugMode)
11355               fprintf(debugFP, "Parser ignoring: '%s' (%d)\n",
11356                       yy_text, (int) moveType);
11357             return LoadGameOneMove(EndOfFile); /* tail recursion */
11358         }
11359         /* else fall thru */
11360
11361       case XBoardGame:
11362       case GNUChessGame:
11363       case PGNTag:
11364         /* Reached start of next game in file */
11365         if (appData.debugMode)
11366           fprintf(debugFP, "Parsed start of next game: %s\n", yy_text);
11367         switch (MateTest(boards[currentMove], PosFlags(currentMove)) ) {
11368           case MT_NONE:
11369           case MT_CHECK:
11370             break;
11371           case MT_CHECKMATE:
11372           case MT_STAINMATE:
11373             if (WhiteOnMove(currentMove)) {
11374                 GameEnds(BlackWins, "Black mates", GE_FILE);
11375             } else {
11376                 GameEnds(WhiteWins, "White mates", GE_FILE);
11377             }
11378             break;
11379           case MT_STALEMATE:
11380             GameEnds(GameIsDrawn, "Stalemate", GE_FILE);
11381             break;
11382         }
11383         done = TRUE;
11384         break;
11385
11386       case PositionDiagram:     /* should not happen; ignore */
11387       case ElapsedTime:         /* ignore */
11388       case NAG:                 /* ignore */
11389         if (appData.debugMode)
11390           fprintf(debugFP, "Parser ignoring: '%s' (%d)\n",
11391                   yy_text, (int) moveType);
11392         return LoadGameOneMove(EndOfFile); /* tail recursion */
11393
11394       case IllegalMove:
11395         if (appData.testLegality) {
11396             if (appData.debugMode)
11397               fprintf(debugFP, "Parsed IllegalMove: %s\n", yy_text);
11398             snprintf(move, MSG_SIZ, _("Illegal move: %d.%s%s"),
11399                     (forwardMostMove / 2) + 1,
11400                     WhiteOnMove(forwardMostMove) ? " " : ".. ", yy_text);
11401             DisplayError(move, 0);
11402             done = TRUE;
11403         } else {
11404             if (appData.debugMode)
11405               fprintf(debugFP, "Parsed %s into IllegalMove %s\n",
11406                       yy_text, currentMoveString);
11407             fromX = currentMoveString[0] - AAA;
11408             fromY = currentMoveString[1] - ONE;
11409             toX = currentMoveString[2] - AAA;
11410             toY = currentMoveString[3] - ONE;
11411             promoChar = currentMoveString[4];
11412         }
11413         break;
11414
11415       case AmbiguousMove:
11416         if (appData.debugMode)
11417           fprintf(debugFP, "Parsed AmbiguousMove: %s\n", yy_text);
11418         snprintf(move, MSG_SIZ, _("Ambiguous move: %d.%s%s"),
11419                 (forwardMostMove / 2) + 1,
11420                 WhiteOnMove(forwardMostMove) ? " " : ".. ", yy_text);
11421         DisplayError(move, 0);
11422         done = TRUE;
11423         break;
11424
11425       default:
11426       case ImpossibleMove:
11427         if (appData.debugMode)
11428           fprintf(debugFP, "Parsed ImpossibleMove (type = %d): %s\n", moveType, yy_text);
11429         snprintf(move, MSG_SIZ, _("Illegal move: %d.%s%s"),
11430                 (forwardMostMove / 2) + 1,
11431                 WhiteOnMove(forwardMostMove) ? " " : ".. ", yy_text);
11432         DisplayError(move, 0);
11433         done = TRUE;
11434         break;
11435     }
11436
11437     if (done) {
11438         if (appData.matchMode || (appData.timeDelay == 0 && !pausing)) {
11439             DrawPosition(FALSE, boards[currentMove]);
11440             DisplayBothClocks();
11441             if (!appData.matchMode) // [HGM] PV info: routine tests if empty
11442               DisplayComment(currentMove - 1, commentList[currentMove]);
11443         }
11444         (void) StopLoadGameTimer();
11445         gameFileFP = NULL;
11446         cmailOldMove = forwardMostMove;
11447         return FALSE;
11448     } else {
11449         /* currentMoveString is set as a side-effect of yylex */
11450
11451         thinkOutput[0] = NULLCHAR;
11452         MakeMove(fromX, fromY, toX, toY, promoChar);
11453         currentMove = forwardMostMove;
11454         return TRUE;
11455     }
11456 }
11457
11458 /* Load the nth game from the given file */
11459 int
11460 LoadGameFromFile (char *filename, int n, char *title, int useList)
11461 {
11462     FILE *f;
11463     char buf[MSG_SIZ];
11464
11465     if (strcmp(filename, "-") == 0) {
11466         f = stdin;
11467         title = "stdin";
11468     } else {
11469         f = fopen(filename, "rb");
11470         if (f == NULL) {
11471           snprintf(buf, sizeof(buf),  _("Can't open \"%s\""), filename);
11472             DisplayError(buf, errno);
11473             return FALSE;
11474         }
11475     }
11476     if (fseek(f, 0, 0) == -1) {
11477         /* f is not seekable; probably a pipe */
11478         useList = FALSE;
11479     }
11480     if (useList && n == 0) {
11481         int error = GameListBuild(f);
11482         if (error) {
11483             DisplayError(_("Cannot build game list"), error);
11484         } else if (!ListEmpty(&gameList) &&
11485                    ((ListGame *) gameList.tailPred)->number > 1) {
11486             GameListPopUp(f, title);
11487             return TRUE;
11488         }
11489         GameListDestroy();
11490         n = 1;
11491     }
11492     if (n == 0) n = 1;
11493     return LoadGame(f, n, title, FALSE);
11494 }
11495
11496
11497 void
11498 MakeRegisteredMove ()
11499 {
11500     int fromX, fromY, toX, toY;
11501     char promoChar;
11502     if (cmailMoveRegistered[lastLoadGameNumber - 1]) {
11503         switch (cmailMoveType[lastLoadGameNumber - 1]) {
11504           case CMAIL_MOVE:
11505           case CMAIL_DRAW:
11506             if (appData.debugMode)
11507               fprintf(debugFP, "Restoring %s for game %d\n",
11508                       cmailMove[lastLoadGameNumber - 1], lastLoadGameNumber);
11509
11510             thinkOutput[0] = NULLCHAR;
11511             safeStrCpy(moveList[currentMove], cmailMove[lastLoadGameNumber - 1], sizeof(moveList[currentMove])/sizeof(moveList[currentMove][0]));
11512             fromX = cmailMove[lastLoadGameNumber - 1][0] - AAA;
11513             fromY = cmailMove[lastLoadGameNumber - 1][1] - ONE;
11514             toX = cmailMove[lastLoadGameNumber - 1][2] - AAA;
11515             toY = cmailMove[lastLoadGameNumber - 1][3] - ONE;
11516             promoChar = cmailMove[lastLoadGameNumber - 1][4];
11517             MakeMove(fromX, fromY, toX, toY, promoChar);
11518             ShowMove(fromX, fromY, toX, toY);
11519
11520             switch (MateTest(boards[currentMove], PosFlags(currentMove)) ) {
11521               case MT_NONE:
11522               case MT_CHECK:
11523                 break;
11524
11525               case MT_CHECKMATE:
11526               case MT_STAINMATE:
11527                 if (WhiteOnMove(currentMove)) {
11528                     GameEnds(BlackWins, "Black mates", GE_PLAYER);
11529                 } else {
11530                     GameEnds(WhiteWins, "White mates", GE_PLAYER);
11531                 }
11532                 break;
11533
11534               case MT_STALEMATE:
11535                 GameEnds(GameIsDrawn, "Stalemate", GE_PLAYER);
11536                 break;
11537             }
11538
11539             break;
11540
11541           case CMAIL_RESIGN:
11542             if (WhiteOnMove(currentMove)) {
11543                 GameEnds(BlackWins, "White resigns", GE_PLAYER);
11544             } else {
11545                 GameEnds(WhiteWins, "Black resigns", GE_PLAYER);
11546             }
11547             break;
11548
11549           case CMAIL_ACCEPT:
11550             GameEnds(GameIsDrawn, "Draw agreed", GE_PLAYER);
11551             break;
11552
11553           default:
11554             break;
11555         }
11556     }
11557
11558     return;
11559 }
11560
11561 /* Wrapper around LoadGame for use when a Cmail message is loaded */
11562 int
11563 CmailLoadGame (FILE *f, int gameNumber, char *title, int useList)
11564 {
11565     int retVal;
11566
11567     if (gameNumber > nCmailGames) {
11568         DisplayError(_("No more games in this message"), 0);
11569         return FALSE;
11570     }
11571     if (f == lastLoadGameFP) {
11572         int offset = gameNumber - lastLoadGameNumber;
11573         if (offset == 0) {
11574             cmailMsg[0] = NULLCHAR;
11575             if (cmailMoveRegistered[lastLoadGameNumber - 1]) {
11576                 cmailMoveRegistered[lastLoadGameNumber - 1] = FALSE;
11577                 nCmailMovesRegistered--;
11578             }
11579             cmailMoveType[lastLoadGameNumber - 1] = CMAIL_MOVE;
11580             if (cmailResult[lastLoadGameNumber - 1] == CMAIL_NEW_RESULT) {
11581                 cmailResult[lastLoadGameNumber - 1] = CMAIL_NOT_RESULT;
11582             }
11583         } else {
11584             if (! RegisterMove()) return FALSE;
11585         }
11586     }
11587
11588     retVal = LoadGame(f, gameNumber, title, useList);
11589
11590     /* Make move registered during previous look at this game, if any */
11591     MakeRegisteredMove();
11592
11593     if (cmailCommentList[lastLoadGameNumber - 1] != NULL) {
11594         commentList[currentMove]
11595           = StrSave(cmailCommentList[lastLoadGameNumber - 1]);
11596         DisplayComment(currentMove - 1, commentList[currentMove]);
11597     }
11598
11599     return retVal;
11600 }
11601
11602 /* Support for LoadNextGame, LoadPreviousGame, ReloadSameGame */
11603 int
11604 ReloadGame (int offset)
11605 {
11606     int gameNumber = lastLoadGameNumber + offset;
11607     if (lastLoadGameFP == NULL) {
11608         DisplayError(_("No game has been loaded yet"), 0);
11609         return FALSE;
11610     }
11611     if (gameNumber <= 0) {
11612         DisplayError(_("Can't back up any further"), 0);
11613         return FALSE;
11614     }
11615     if (cmailMsgLoaded) {
11616         return CmailLoadGame(lastLoadGameFP, gameNumber,
11617                              lastLoadGameTitle, lastLoadGameUseList);
11618     } else {
11619         return LoadGame(lastLoadGameFP, gameNumber,
11620                         lastLoadGameTitle, lastLoadGameUseList);
11621     }
11622 }
11623
11624 int keys[EmptySquare+1];
11625
11626 int
11627 PositionMatches (Board b1, Board b2)
11628 {
11629     int r, f, sum=0;
11630     switch(appData.searchMode) {
11631         case 1: return CompareWithRights(b1, b2);
11632         case 2:
11633             for(r=0; r<BOARD_HEIGHT; r++) for(f=BOARD_LEFT; f<BOARD_RGHT; f++) {
11634                 if(b2[r][f] != EmptySquare && b1[r][f] != b2[r][f]) return FALSE;
11635             }
11636             return TRUE;
11637         case 3:
11638             for(r=0; r<BOARD_HEIGHT; r++) for(f=BOARD_LEFT; f<BOARD_RGHT; f++) {
11639               if((b2[r][f] == WhitePawn || b2[r][f] == BlackPawn) && b1[r][f] != b2[r][f]) return FALSE;
11640                 sum += keys[b1[r][f]] - keys[b2[r][f]];
11641             }
11642             return sum==0;
11643         case 4:
11644             for(r=0; r<BOARD_HEIGHT; r++) for(f=BOARD_LEFT; f<BOARD_RGHT; f++) {
11645                 sum += keys[b1[r][f]] - keys[b2[r][f]];
11646             }
11647             return sum==0;
11648     }
11649     return TRUE;
11650 }
11651
11652 #define Q_PROMO  4
11653 #define Q_EP     3
11654 #define Q_BCASTL 2
11655 #define Q_WCASTL 1
11656
11657 int pieceList[256], quickBoard[256];
11658 ChessSquare pieceType[256] = { EmptySquare };
11659 Board soughtBoard, reverseBoard, flipBoard, rotateBoard;
11660 int counts[EmptySquare], minSought[EmptySquare], minReverse[EmptySquare], maxSought[EmptySquare], maxReverse[EmptySquare];
11661 int soughtTotal, turn;
11662 Boolean epOK, flipSearch;
11663
11664 typedef struct {
11665     unsigned char piece, to;
11666 } Move;
11667
11668 #define DSIZE (250000)
11669
11670 Move initialSpace[DSIZE+1000]; // gamble on that game will not be more than 500 moves
11671 Move *moveDatabase = initialSpace;
11672 unsigned int movePtr, dataSize = DSIZE;
11673
11674 int
11675 MakePieceList (Board board, int *counts)
11676 {
11677     int r, f, n=Q_PROMO, total=0;
11678     for(r=0;r<EmptySquare;r++) counts[r] = 0; // piece-type counts
11679     for(r=0; r<BOARD_HEIGHT; r++) for(f=BOARD_LEFT; f<BOARD_RGHT; f++) {
11680         int sq = f + (r<<4);
11681         if(board[r][f] == EmptySquare) quickBoard[sq] = 0; else {
11682             quickBoard[sq] = ++n;
11683             pieceList[n] = sq;
11684             pieceType[n] = board[r][f];
11685             counts[board[r][f]]++;
11686             if(board[r][f] == WhiteKing) pieceList[1] = n; else
11687             if(board[r][f] == BlackKing) pieceList[2] = n; // remember which are Kings, for castling
11688             total++;
11689         }
11690     }
11691     epOK = gameInfo.variant != VariantXiangqi && gameInfo.variant != VariantBerolina;
11692     return total;
11693 }
11694
11695 void
11696 PackMove (int fromX, int fromY, int toX, int toY, ChessSquare promoPiece)
11697 {
11698     int sq = fromX + (fromY<<4);
11699     int piece = quickBoard[sq];
11700     quickBoard[sq] = 0;
11701     moveDatabase[movePtr].to = pieceList[piece] = sq = toX + (toY<<4);
11702     if(piece == pieceList[1] && fromY == toY && (toX > fromX+1 || toX < fromX-1) && fromX != BOARD_LEFT && fromX != BOARD_RGHT-1) {
11703         int from = toX>fromX ? BOARD_RGHT-1 : BOARD_LEFT;
11704         moveDatabase[movePtr++].piece = Q_WCASTL;
11705         quickBoard[sq] = piece;
11706         piece = quickBoard[from]; quickBoard[from] = 0;
11707         moveDatabase[movePtr].to = pieceList[piece] = sq = toX>fromX ? sq-1 : sq+1;
11708     } else
11709     if(piece == pieceList[2] && fromY == toY && (toX > fromX+1 || toX < fromX-1) && fromX != BOARD_LEFT && fromX != BOARD_RGHT-1) {
11710         int from = (toX>fromX ? BOARD_RGHT-1 : BOARD_LEFT) + (BOARD_HEIGHT-1 <<4);
11711         moveDatabase[movePtr++].piece = Q_BCASTL;
11712         quickBoard[sq] = piece;
11713         piece = quickBoard[from]; quickBoard[from] = 0;
11714         moveDatabase[movePtr].to = pieceList[piece] = sq = toX>fromX ? sq-1 : sq+1;
11715     } else
11716     if(epOK && (pieceType[piece] == WhitePawn || pieceType[piece] == BlackPawn) && fromX != toX && quickBoard[sq] == 0) {
11717         quickBoard[(fromY<<4)+toX] = 0;
11718         moveDatabase[movePtr].piece = Q_EP;
11719         moveDatabase[movePtr++].to = (fromY<<4)+toX;
11720         moveDatabase[movePtr].to = sq;
11721     } else
11722     if(promoPiece != pieceType[piece]) {
11723         moveDatabase[movePtr++].piece = Q_PROMO;
11724         moveDatabase[movePtr].to = pieceType[piece] = (int) promoPiece;
11725     }
11726     moveDatabase[movePtr].piece = piece;
11727     quickBoard[sq] = piece;
11728     movePtr++;
11729 }
11730
11731 int
11732 PackGame (Board board)
11733 {
11734     Move *newSpace = NULL;
11735     moveDatabase[movePtr].piece = 0; // terminate previous game
11736     if(movePtr > dataSize) {
11737         if(appData.debugMode) fprintf(debugFP, "move-cache overflow, enlarge to %d MB\n", dataSize/128);
11738         dataSize *= 8; // increase size by factor 8 (512KB -> 4MB -> 32MB -> 256MB -> 2GB)
11739         if(dataSize) newSpace = (Move*) calloc(dataSize + 1000, sizeof(Move));
11740         if(newSpace) {
11741             int i;
11742             Move *p = moveDatabase, *q = newSpace;
11743             for(i=0; i<movePtr; i++) *q++ = *p++;    // copy to newly allocated space
11744             if(dataSize > 8*DSIZE) free(moveDatabase); // and free old space (if it was allocated)
11745             moveDatabase = newSpace;
11746         } else { // calloc failed, we must be out of memory. Too bad...
11747             dataSize = 0; // prevent calloc events for all subsequent games
11748             return 0;     // and signal this one isn't cached
11749         }
11750     }
11751     movePtr++;
11752     MakePieceList(board, counts);
11753     return movePtr;
11754 }
11755
11756 int
11757 QuickCompare (Board board, int *minCounts, int *maxCounts)
11758 {   // compare according to search mode
11759     int r, f;
11760     switch(appData.searchMode)
11761     {
11762       case 1: // exact position match
11763         if(!(turn & board[EP_STATUS-1])) return FALSE; // wrong side to move
11764         for(r=0; r<BOARD_HEIGHT; r++) for(f=BOARD_LEFT; f<BOARD_RGHT; f++) {
11765             if(board[r][f] != pieceType[quickBoard[(r<<4)+f]]) return FALSE;
11766         }
11767         break;
11768       case 2: // can have extra material on empty squares
11769         for(r=0; r<BOARD_HEIGHT; r++) for(f=BOARD_LEFT; f<BOARD_RGHT; f++) {
11770             if(board[r][f] == EmptySquare) continue;
11771             if(board[r][f] != pieceType[quickBoard[(r<<4)+f]]) return FALSE;
11772         }
11773         break;
11774       case 3: // material with exact Pawn structure
11775         for(r=0; r<BOARD_HEIGHT; r++) for(f=BOARD_LEFT; f<BOARD_RGHT; f++) {
11776             if(board[r][f] != WhitePawn && board[r][f] != BlackPawn) continue;
11777             if(board[r][f] != pieceType[quickBoard[(r<<4)+f]]) return FALSE;
11778         } // fall through to material comparison
11779       case 4: // exact material
11780         for(r=0; r<EmptySquare; r++) if(counts[r] != maxCounts[r]) return FALSE;
11781         break;
11782       case 6: // material range with given imbalance
11783         for(r=0; r<BlackPawn; r++) if(counts[r] - minCounts[r] != counts[r+BlackPawn] - minCounts[r+BlackPawn]) return FALSE;
11784         // fall through to range comparison
11785       case 5: // material range
11786         for(r=0; r<EmptySquare; r++) if(counts[r] < minCounts[r] || counts[r] > maxCounts[r]) return FALSE;
11787     }
11788     return TRUE;
11789 }
11790
11791 int
11792 QuickScan (Board board, Move *move)
11793 {   // reconstruct game,and compare all positions in it
11794     int cnt=0, stretch=0, total = MakePieceList(board, counts);
11795     do {
11796         int piece = move->piece;
11797         int to = move->to, from = pieceList[piece];
11798         if(piece <= Q_PROMO) { // special moves encoded by otherwise invalid piece numbers 1-4
11799           if(!piece) return -1;
11800           if(piece == Q_PROMO) { // promotion, encoded as (Q_PROMO, to) + (piece, promoType)
11801             piece = (++move)->piece;
11802             from = pieceList[piece];
11803             counts[pieceType[piece]]--;
11804             pieceType[piece] = (ChessSquare) move->to;
11805             counts[move->to]++;
11806           } else if(piece == Q_EP) { // e.p. capture, encoded as (Q_EP, ep-sqr) + (piece, to)
11807             counts[pieceType[quickBoard[to]]]--;
11808             quickBoard[to] = 0; total--;
11809             move++;
11810             continue;
11811           } else if(piece <= Q_BCASTL) { // castling, encoded as (Q_XCASTL, king-to) + (rook, rook-to)
11812             piece = pieceList[piece]; // first two elements of pieceList contain King numbers
11813             from  = pieceList[piece]; // so this must be King
11814             quickBoard[from] = 0;
11815             pieceList[piece] = to;
11816             from = pieceList[(++move)->piece]; // for FRC this has to be done here
11817             quickBoard[from] = 0; // rook
11818             quickBoard[to] = piece;
11819             to = move->to; piece = move->piece;
11820             goto aftercastle;
11821           }
11822         }
11823         if(appData.searchMode > 2) counts[pieceType[quickBoard[to]]]--; // account capture
11824         if((total -= (quickBoard[to] != 0)) < soughtTotal) return -1; // piece count dropped below what we search for
11825         quickBoard[from] = 0;
11826       aftercastle:
11827         quickBoard[to] = piece;
11828         pieceList[piece] = to;
11829         cnt++; turn ^= 3;
11830         if(QuickCompare(soughtBoard, minSought, maxSought) ||
11831            appData.ignoreColors && QuickCompare(reverseBoard, minReverse, maxReverse) ||
11832            flipSearch && (QuickCompare(flipBoard, minSought, maxSought) ||
11833                                 appData.ignoreColors && QuickCompare(rotateBoard, minReverse, maxReverse))
11834           ) {
11835             static int lastCounts[EmptySquare+1];
11836             int i;
11837             if(stretch) for(i=0; i<EmptySquare; i++) if(lastCounts[i] != counts[i]) { stretch = 0; break; } // reset if material changes
11838             if(stretch++ == 0) for(i=0; i<EmptySquare; i++) lastCounts[i] = counts[i]; // remember actual material
11839         } else stretch = 0;
11840         if(stretch && (appData.searchMode == 1 || stretch >= appData.stretch)) return cnt + 1 - stretch;
11841         move++;
11842     } while(1);
11843 }
11844
11845 void
11846 InitSearch ()
11847 {
11848     int r, f;
11849     flipSearch = FALSE;
11850     CopyBoard(soughtBoard, boards[currentMove]);
11851     soughtTotal = MakePieceList(soughtBoard, maxSought);
11852     soughtBoard[EP_STATUS-1] = (currentMove & 1) + 1;
11853     if(currentMove == 0 && gameMode == EditPosition) soughtBoard[EP_STATUS-1] = blackPlaysFirst + 1; // (!)
11854     CopyBoard(reverseBoard, boards[currentMove]);
11855     for(r=0; r<BOARD_HEIGHT; r++) for(f=BOARD_LEFT; f<BOARD_RGHT; f++) {
11856         int piece = boards[currentMove][BOARD_HEIGHT-1-r][f];
11857         if(piece < BlackPawn) piece += BlackPawn; else if(piece < EmptySquare) piece -= BlackPawn; // color-flip
11858         reverseBoard[r][f] = piece;
11859     }
11860     reverseBoard[EP_STATUS-1] = soughtBoard[EP_STATUS-1] ^ 3;
11861     for(r=0; r<6; r++) reverseBoard[CASTLING][r] = boards[currentMove][CASTLING][(r+3)%6];
11862     if(appData.findMirror && appData.searchMode <= 3 && (!nrCastlingRights
11863                  || (boards[currentMove][CASTLING][2] == NoRights ||
11864                      boards[currentMove][CASTLING][0] == NoRights && boards[currentMove][CASTLING][1] == NoRights )
11865                  && (boards[currentMove][CASTLING][5] == NoRights ||
11866                      boards[currentMove][CASTLING][3] == NoRights && boards[currentMove][CASTLING][4] == NoRights ) )
11867       ) {
11868         flipSearch = TRUE;
11869         CopyBoard(flipBoard, soughtBoard);
11870         CopyBoard(rotateBoard, reverseBoard);
11871         for(r=0; r<BOARD_HEIGHT; r++) for(f=BOARD_LEFT; f<BOARD_RGHT; f++) {
11872             flipBoard[r][f]    = soughtBoard[r][BOARD_WIDTH-1-f];
11873             rotateBoard[r][f] = reverseBoard[r][BOARD_WIDTH-1-f];
11874         }
11875     }
11876     for(r=0; r<BlackPawn; r++) maxReverse[r] = maxSought[r+BlackPawn], maxReverse[r+BlackPawn] = maxSought[r];
11877     if(appData.searchMode >= 5) {
11878         for(r=BOARD_HEIGHT/2; r<BOARD_HEIGHT; r++) for(f=BOARD_LEFT; f<BOARD_RGHT; f++) soughtBoard[r][f] = EmptySquare;
11879         MakePieceList(soughtBoard, minSought);
11880         for(r=0; r<BlackPawn; r++) minReverse[r] = minSought[r+BlackPawn], minReverse[r+BlackPawn] = minSought[r];
11881     }
11882     if(gameInfo.variant == VariantCrazyhouse || gameInfo.variant == VariantShogi || gameInfo.variant == VariantBughouse)
11883         soughtTotal = 0; // in drop games nr of pieces does not fall monotonously
11884 }
11885
11886 GameInfo dummyInfo;
11887 static int creatingBook;
11888
11889 int
11890 GameContainsPosition (FILE *f, ListGame *lg)
11891 {
11892     int next, btm=0, plyNr=0, scratch=forwardMostMove+2&~1;
11893     int fromX, fromY, toX, toY;
11894     char promoChar;
11895     static int initDone=FALSE;
11896
11897     // weed out games based on numerical tag comparison
11898     if(lg->gameInfo.variant != gameInfo.variant) return -1; // wrong variant
11899     if(appData.eloThreshold1 && (lg->gameInfo.whiteRating < appData.eloThreshold1 && lg->gameInfo.blackRating < appData.eloThreshold1)) return -1;
11900     if(appData.eloThreshold2 && (lg->gameInfo.whiteRating < appData.eloThreshold2 || lg->gameInfo.blackRating < appData.eloThreshold2)) return -1;
11901     if(appData.dateThreshold && (!lg->gameInfo.date || atoi(lg->gameInfo.date) < appData.dateThreshold)) return -1;
11902     if(!initDone) {
11903         for(next = WhitePawn; next<EmptySquare; next++) keys[next] = random()>>8 ^ random()<<6 ^random()<<20;
11904         initDone = TRUE;
11905     }
11906     if(lg->gameInfo.fen) ParseFEN(boards[scratch], &btm, lg->gameInfo.fen);
11907     else CopyBoard(boards[scratch], initialPosition); // default start position
11908     if(lg->moves) {
11909         turn = btm + 1;
11910         if((next = QuickScan( boards[scratch], &moveDatabase[lg->moves] )) < 0) return -1; // quick scan rules out it is there
11911         if(appData.searchMode >= 4) return next; // for material searches, trust QuickScan.
11912     }
11913     if(btm) plyNr++;
11914     if(PositionMatches(boards[scratch], boards[currentMove])) return plyNr;
11915     fseek(f, lg->offset, 0);
11916     yynewfile(f);
11917     while(1) {
11918         yyboardindex = scratch;
11919         quickFlag = plyNr+1;
11920         next = Myylex();
11921         quickFlag = 0;
11922         switch(next) {
11923             case PGNTag:
11924                 if(plyNr) return -1; // after we have seen moves, any tags will be start of next game
11925             default:
11926                 continue;
11927
11928             case XBoardGame:
11929             case GNUChessGame:
11930                 if(plyNr) return -1; // after we have seen moves, this is for new game
11931               continue;
11932
11933             case AmbiguousMove: // we cannot reconstruct the game beyond these two
11934             case ImpossibleMove:
11935             case WhiteWins: // game ends here with these four
11936             case BlackWins:
11937             case GameIsDrawn:
11938             case GameUnfinished:
11939                 return -1;
11940
11941             case IllegalMove:
11942                 if(appData.testLegality) return -1;
11943             case WhiteCapturesEnPassant:
11944             case BlackCapturesEnPassant:
11945             case WhitePromotion:
11946             case BlackPromotion:
11947             case WhiteNonPromotion:
11948             case BlackNonPromotion:
11949             case NormalMove:
11950             case WhiteKingSideCastle:
11951             case WhiteQueenSideCastle:
11952             case BlackKingSideCastle:
11953             case BlackQueenSideCastle:
11954             case WhiteKingSideCastleWild:
11955             case WhiteQueenSideCastleWild:
11956             case BlackKingSideCastleWild:
11957             case BlackQueenSideCastleWild:
11958             case WhiteHSideCastleFR:
11959             case WhiteASideCastleFR:
11960             case BlackHSideCastleFR:
11961             case BlackASideCastleFR:
11962                 fromX = currentMoveString[0] - AAA;
11963                 fromY = currentMoveString[1] - ONE;
11964                 toX = currentMoveString[2] - AAA;
11965                 toY = currentMoveString[3] - ONE;
11966                 promoChar = currentMoveString[4];
11967                 break;
11968             case WhiteDrop:
11969             case BlackDrop:
11970                 fromX = next == WhiteDrop ?
11971                   (int) CharToPiece(ToUpper(currentMoveString[0])) :
11972                   (int) CharToPiece(ToLower(currentMoveString[0]));
11973                 fromY = DROP_RANK;
11974                 toX = currentMoveString[2] - AAA;
11975                 toY = currentMoveString[3] - ONE;
11976                 promoChar = 0;
11977                 break;
11978         }
11979         // Move encountered; peform it. We need to shuttle between two boards, as even/odd index determines side to move
11980         plyNr++;
11981         ApplyMove(fromX, fromY, toX, toY, promoChar, boards[scratch]);
11982         if(PositionMatches(boards[scratch], boards[currentMove])) return plyNr;
11983         if(appData.ignoreColors && PositionMatches(boards[scratch], reverseBoard)) return plyNr;
11984         if(appData.findMirror) {
11985             if(PositionMatches(boards[scratch], flipBoard)) return plyNr;
11986             if(appData.ignoreColors && PositionMatches(boards[scratch], rotateBoard)) return plyNr;
11987         }
11988     }
11989 }
11990
11991 /* Load the nth game from open file f */
11992 int
11993 LoadGame (FILE *f, int gameNumber, char *title, int useList)
11994 {
11995     ChessMove cm;
11996     char buf[MSG_SIZ];
11997     int gn = gameNumber;
11998     ListGame *lg = NULL;
11999     int numPGNTags = 0;
12000     int err, pos = -1;
12001     GameMode oldGameMode;
12002     VariantClass oldVariant = gameInfo.variant; /* [HGM] PGNvariant */
12003
12004     if (appData.debugMode)
12005         fprintf(debugFP, "LoadGame(): on entry, gameMode %d\n", gameMode);
12006
12007     if (gameMode == Training )
12008         SetTrainingModeOff();
12009
12010     oldGameMode = gameMode;
12011     if (gameMode != BeginningOfGame) {
12012       Reset(FALSE, TRUE);
12013     }
12014
12015     gameFileFP = f;
12016     if (lastLoadGameFP != NULL && lastLoadGameFP != f) {
12017         fclose(lastLoadGameFP);
12018     }
12019
12020     if (useList) {
12021         lg = (ListGame *) ListElem(&gameList, gameNumber-1);
12022
12023         if (lg) {
12024             fseek(f, lg->offset, 0);
12025             GameListHighlight(gameNumber);
12026             pos = lg->position;
12027             gn = 1;
12028         }
12029         else {
12030             if(gameMode == AnalyzeFile && appData.loadGameIndex == -1)
12031               appData.loadGameIndex = 0; // [HGM] suppress error message if we reach file end after auto-stepping analysis
12032             else
12033             DisplayError(_("Game number out of range"), 0);
12034             return FALSE;
12035         }
12036     } else {
12037         GameListDestroy();
12038         if (fseek(f, 0, 0) == -1) {
12039             if (f == lastLoadGameFP ?
12040                 gameNumber == lastLoadGameNumber + 1 :
12041                 gameNumber == 1) {
12042                 gn = 1;
12043             } else {
12044                 DisplayError(_("Can't seek on game file"), 0);
12045                 return FALSE;
12046             }
12047         }
12048     }
12049     lastLoadGameFP = f;
12050     lastLoadGameNumber = gameNumber;
12051     safeStrCpy(lastLoadGameTitle, title, sizeof(lastLoadGameTitle)/sizeof(lastLoadGameTitle[0]));
12052     lastLoadGameUseList = useList;
12053
12054     yynewfile(f);
12055
12056     if (lg && lg->gameInfo.white && lg->gameInfo.black) {
12057       snprintf(buf, sizeof(buf), "%s %s %s", lg->gameInfo.white, _("vs."),
12058                 lg->gameInfo.black);
12059             DisplayTitle(buf);
12060     } else if (*title != NULLCHAR) {
12061         if (gameNumber > 1) {
12062           snprintf(buf, MSG_SIZ, "%s %d", title, gameNumber);
12063             DisplayTitle(buf);
12064         } else {
12065             DisplayTitle(title);
12066         }
12067     }
12068
12069     if (gameMode != AnalyzeFile && gameMode != AnalyzeMode) {
12070         gameMode = PlayFromGameFile;
12071         ModeHighlight();
12072     }
12073
12074     currentMove = forwardMostMove = backwardMostMove = 0;
12075     CopyBoard(boards[0], initialPosition);
12076     StopClocks();
12077
12078     /*
12079      * Skip the first gn-1 games in the file.
12080      * Also skip over anything that precedes an identifiable
12081      * start of game marker, to avoid being confused by
12082      * garbage at the start of the file.  Currently
12083      * recognized start of game markers are the move number "1",
12084      * the pattern "gnuchess .* game", the pattern
12085      * "^[#;%] [^ ]* game file", and a PGN tag block.
12086      * A game that starts with one of the latter two patterns
12087      * will also have a move number 1, possibly
12088      * following a position diagram.
12089      * 5-4-02: Let's try being more lenient and allowing a game to
12090      * start with an unnumbered move.  Does that break anything?
12091      */
12092     cm = lastLoadGameStart = EndOfFile;
12093     while (gn > 0) {
12094         yyboardindex = forwardMostMove;
12095         cm = (ChessMove) Myylex();
12096         switch (cm) {
12097           case EndOfFile:
12098             if (cmailMsgLoaded) {
12099                 nCmailGames = CMAIL_MAX_GAMES - gn;
12100             } else {
12101                 Reset(TRUE, TRUE);
12102                 DisplayError(_("Game not found in file"), 0);
12103             }
12104             return FALSE;
12105
12106           case GNUChessGame:
12107           case XBoardGame:
12108             gn--;
12109             lastLoadGameStart = cm;
12110             break;
12111
12112           case MoveNumberOne:
12113             switch (lastLoadGameStart) {
12114               case GNUChessGame:
12115               case XBoardGame:
12116               case PGNTag:
12117                 break;
12118               case MoveNumberOne:
12119               case EndOfFile:
12120                 gn--;           /* count this game */
12121                 lastLoadGameStart = cm;
12122                 break;
12123               default:
12124                 /* impossible */
12125                 break;
12126             }
12127             break;
12128
12129           case PGNTag:
12130             switch (lastLoadGameStart) {
12131               case GNUChessGame:
12132               case PGNTag:
12133               case MoveNumberOne:
12134               case EndOfFile:
12135                 gn--;           /* count this game */
12136                 lastLoadGameStart = cm;
12137                 break;
12138               case XBoardGame:
12139                 lastLoadGameStart = cm; /* game counted already */
12140                 break;
12141               default:
12142                 /* impossible */
12143                 break;
12144             }
12145             if (gn > 0) {
12146                 do {
12147                     yyboardindex = forwardMostMove;
12148                     cm = (ChessMove) Myylex();
12149                 } while (cm == PGNTag || cm == Comment);
12150             }
12151             break;
12152
12153           case WhiteWins:
12154           case BlackWins:
12155           case GameIsDrawn:
12156             if (cmailMsgLoaded && (CMAIL_MAX_GAMES == lastLoadGameNumber)) {
12157                 if (   cmailResult[CMAIL_MAX_GAMES - gn - 1]
12158                     != CMAIL_OLD_RESULT) {
12159                     nCmailResults ++ ;
12160                     cmailResult[  CMAIL_MAX_GAMES
12161                                 - gn - 1] = CMAIL_OLD_RESULT;
12162                 }
12163             }
12164             break;
12165
12166           case NormalMove:
12167             /* Only a NormalMove can be at the start of a game
12168              * without a position diagram. */
12169             if (lastLoadGameStart == EndOfFile ) {
12170               gn--;
12171               lastLoadGameStart = MoveNumberOne;
12172             }
12173             break;
12174
12175           default:
12176             break;
12177         }
12178     }
12179
12180     if (appData.debugMode)
12181       fprintf(debugFP, "Parsed game start '%s' (%d)\n", yy_text, (int) cm);
12182
12183     if (cm == XBoardGame) {
12184         /* Skip any header junk before position diagram and/or move 1 */
12185         for (;;) {
12186             yyboardindex = forwardMostMove;
12187             cm = (ChessMove) Myylex();
12188
12189             if (cm == EndOfFile ||
12190                 cm == GNUChessGame || cm == XBoardGame) {
12191                 /* Empty game; pretend end-of-file and handle later */
12192                 cm = EndOfFile;
12193                 break;
12194             }
12195
12196             if (cm == MoveNumberOne || cm == PositionDiagram ||
12197                 cm == PGNTag || cm == Comment)
12198               break;
12199         }
12200     } else if (cm == GNUChessGame) {
12201         if (gameInfo.event != NULL) {
12202             free(gameInfo.event);
12203         }
12204         gameInfo.event = StrSave(yy_text);
12205     }
12206
12207     startedFromSetupPosition = FALSE;
12208     while (cm == PGNTag) {
12209         if (appData.debugMode)
12210           fprintf(debugFP, "Parsed PGNTag: %s\n", yy_text);
12211         err = ParsePGNTag(yy_text, &gameInfo);
12212         if (!err) numPGNTags++;
12213
12214         /* [HGM] PGNvariant: automatically switch to variant given in PGN tag */
12215         if(gameInfo.variant != oldVariant) {
12216             startedFromPositionFile = FALSE; /* [HGM] loadPos: variant switch likely makes position invalid */
12217             ResetFrontEnd(); // [HGM] might need other bitmaps. Cannot use Reset() because it clears gameInfo :-(
12218             InitPosition(TRUE);
12219             oldVariant = gameInfo.variant;
12220             if (appData.debugMode)
12221               fprintf(debugFP, "New variant %d\n", (int) oldVariant);
12222         }
12223
12224
12225         if (gameInfo.fen != NULL) {
12226           Board initial_position;
12227           startedFromSetupPosition = TRUE;
12228           if (!ParseFEN(initial_position, &blackPlaysFirst, gameInfo.fen)) {
12229             Reset(TRUE, TRUE);
12230             DisplayError(_("Bad FEN position in file"), 0);
12231             return FALSE;
12232           }
12233           CopyBoard(boards[0], initial_position);
12234           if (blackPlaysFirst) {
12235             currentMove = forwardMostMove = backwardMostMove = 1;
12236             CopyBoard(boards[1], initial_position);
12237             safeStrCpy(moveList[0], "", sizeof(moveList[0])/sizeof(moveList[0][0]));
12238             safeStrCpy(parseList[0], "", sizeof(parseList[0])/sizeof(parseList[0][0]));
12239             timeRemaining[0][1] = whiteTimeRemaining;
12240             timeRemaining[1][1] = blackTimeRemaining;
12241             if (commentList[0] != NULL) {
12242               commentList[1] = commentList[0];
12243               commentList[0] = NULL;
12244             }
12245           } else {
12246             currentMove = forwardMostMove = backwardMostMove = 0;
12247           }
12248           /* [HGM] copy FEN attributes as well. Bugfix 4.3.14m and 4.3.15e: moved to after 'blackPlaysFirst' */
12249           {   int i;
12250               initialRulePlies = FENrulePlies;
12251               for( i=0; i< nrCastlingRights; i++ )
12252                   initialRights[i] = initial_position[CASTLING][i];
12253           }
12254           yyboardindex = forwardMostMove;
12255           free(gameInfo.fen);
12256           gameInfo.fen = NULL;
12257         }
12258
12259         yyboardindex = forwardMostMove;
12260         cm = (ChessMove) Myylex();
12261
12262         /* Handle comments interspersed among the tags */
12263         while (cm == Comment) {
12264             char *p;
12265             if (appData.debugMode)
12266               fprintf(debugFP, "Parsed Comment: %s\n", yy_text);
12267             p = yy_text;
12268             AppendComment(currentMove, p, FALSE);
12269             yyboardindex = forwardMostMove;
12270             cm = (ChessMove) Myylex();
12271         }
12272     }
12273
12274     /* don't rely on existence of Event tag since if game was
12275      * pasted from clipboard the Event tag may not exist
12276      */
12277     if (numPGNTags > 0){
12278         char *tags;
12279         if (gameInfo.variant == VariantNormal) {
12280           VariantClass v = StringToVariant(gameInfo.event);
12281           // [HGM] do not recognize variants from event tag that were introduced after supporting variant tag
12282           if(v < VariantShogi) gameInfo.variant = v;
12283         }
12284         if (!matchMode) {
12285           if( appData.autoDisplayTags ) {
12286             tags = PGNTags(&gameInfo);
12287             TagsPopUp(tags, CmailMsg());
12288             free(tags);
12289           }
12290         }
12291     } else {
12292         /* Make something up, but don't display it now */
12293         SetGameInfo();
12294         TagsPopDown();
12295     }
12296
12297     if (cm == PositionDiagram) {
12298         int i, j;
12299         char *p;
12300         Board initial_position;
12301
12302         if (appData.debugMode)
12303           fprintf(debugFP, "Parsed PositionDiagram: %s\n", yy_text);
12304
12305         if (!startedFromSetupPosition) {
12306             p = yy_text;
12307             for (i = BOARD_HEIGHT - 1; i >= 0; i--)
12308               for (j = BOARD_LEFT; j < BOARD_RGHT; p++)
12309                 switch (*p) {
12310                   case '{':
12311                   case '[':
12312                   case '-':
12313                   case ' ':
12314                   case '\t':
12315                   case '\n':
12316                   case '\r':
12317                     break;
12318                   default:
12319                     initial_position[i][j++] = CharToPiece(*p);
12320                     break;
12321                 }
12322             while (*p == ' ' || *p == '\t' ||
12323                    *p == '\n' || *p == '\r') p++;
12324
12325             if (strncmp(p, "black", strlen("black"))==0)
12326               blackPlaysFirst = TRUE;
12327             else
12328               blackPlaysFirst = FALSE;
12329             startedFromSetupPosition = TRUE;
12330
12331             CopyBoard(boards[0], initial_position);
12332             if (blackPlaysFirst) {
12333                 currentMove = forwardMostMove = backwardMostMove = 1;
12334                 CopyBoard(boards[1], initial_position);
12335                 safeStrCpy(moveList[0], "", sizeof(moveList[0])/sizeof(moveList[0][0]));
12336                 safeStrCpy(parseList[0], "", sizeof(parseList[0])/sizeof(parseList[0][0]));
12337                 timeRemaining[0][1] = whiteTimeRemaining;
12338                 timeRemaining[1][1] = blackTimeRemaining;
12339                 if (commentList[0] != NULL) {
12340                     commentList[1] = commentList[0];
12341                     commentList[0] = NULL;
12342                 }
12343             } else {
12344                 currentMove = forwardMostMove = backwardMostMove = 0;
12345             }
12346         }
12347         yyboardindex = forwardMostMove;
12348         cm = (ChessMove) Myylex();
12349     }
12350
12351   if(!creatingBook) {
12352     if (first.pr == NoProc) {
12353         StartChessProgram(&first);
12354     }
12355     InitChessProgram(&first, FALSE);
12356     SendToProgram("force\n", &first);
12357     if (startedFromSetupPosition) {
12358         SendBoard(&first, forwardMostMove);
12359     if (appData.debugMode) {
12360         fprintf(debugFP, "Load Game\n");
12361     }
12362         DisplayBothClocks();
12363     }
12364   }
12365
12366     /* [HGM] server: flag to write setup moves in broadcast file as one */
12367     loadFlag = appData.suppressLoadMoves;
12368
12369     while (cm == Comment) {
12370         char *p;
12371         if (appData.debugMode)
12372           fprintf(debugFP, "Parsed Comment: %s\n", yy_text);
12373         p = yy_text;
12374         AppendComment(currentMove, p, FALSE);
12375         yyboardindex = forwardMostMove;
12376         cm = (ChessMove) Myylex();
12377     }
12378
12379     if ((cm == EndOfFile && lastLoadGameStart != EndOfFile ) ||
12380         cm == WhiteWins || cm == BlackWins ||
12381         cm == GameIsDrawn || cm == GameUnfinished) {
12382         DisplayMessage("", _("No moves in game"));
12383         if (cmailMsgLoaded) {
12384             if (appData.debugMode)
12385               fprintf(debugFP, "Setting flipView to %d.\n", FALSE);
12386             ClearHighlights();
12387             flipView = FALSE;
12388         }
12389         DrawPosition(FALSE, boards[currentMove]);
12390         DisplayBothClocks();
12391         gameMode = EditGame;
12392         ModeHighlight();
12393         gameFileFP = NULL;
12394         cmailOldMove = 0;
12395         return TRUE;
12396     }
12397
12398     // [HGM] PV info: routine tests if comment empty
12399     if (!matchMode && (pausing || appData.timeDelay != 0)) {
12400         DisplayComment(currentMove - 1, commentList[currentMove]);
12401     }
12402     if (!matchMode && appData.timeDelay != 0)
12403       DrawPosition(FALSE, boards[currentMove]);
12404
12405     if (gameMode == AnalyzeFile || gameMode == AnalyzeMode) {
12406       programStats.ok_to_send = 1;
12407     }
12408
12409     /* if the first token after the PGN tags is a move
12410      * and not move number 1, retrieve it from the parser
12411      */
12412     if (cm != MoveNumberOne)
12413         LoadGameOneMove(cm);
12414
12415     /* load the remaining moves from the file */
12416     while (LoadGameOneMove(EndOfFile)) {
12417       timeRemaining[0][forwardMostMove] = whiteTimeRemaining;
12418       timeRemaining[1][forwardMostMove] = blackTimeRemaining;
12419     }
12420
12421     /* rewind to the start of the game */
12422     currentMove = backwardMostMove;
12423
12424     HistorySet(parseList, backwardMostMove, forwardMostMove, currentMove-1);
12425
12426     if (oldGameMode == AnalyzeFile ||
12427         oldGameMode == AnalyzeMode) {
12428       appData.loadGameIndex = -1; // [HGM] order auto-stepping through games
12429       AnalyzeFileEvent();
12430     }
12431
12432     if(creatingBook) return TRUE;
12433     if (!matchMode && pos > 0) {
12434         ToNrEvent(pos); // [HGM] no autoplay if selected on position
12435     } else
12436     if (matchMode || appData.timeDelay == 0) {
12437       ToEndEvent();
12438     } else if (appData.timeDelay > 0) {
12439       AutoPlayGameLoop();
12440     }
12441
12442     if (appData.debugMode)
12443         fprintf(debugFP, "LoadGame(): on exit, gameMode %d\n", gameMode);
12444
12445     loadFlag = 0; /* [HGM] true game starts */
12446     return TRUE;
12447 }
12448
12449 /* Support for LoadNextPosition, LoadPreviousPosition, ReloadSamePosition */
12450 int
12451 ReloadPosition (int offset)
12452 {
12453     int positionNumber = lastLoadPositionNumber + offset;
12454     if (lastLoadPositionFP == NULL) {
12455         DisplayError(_("No position has been loaded yet"), 0);
12456         return FALSE;
12457     }
12458     if (positionNumber <= 0) {
12459         DisplayError(_("Can't back up any further"), 0);
12460         return FALSE;
12461     }
12462     return LoadPosition(lastLoadPositionFP, positionNumber,
12463                         lastLoadPositionTitle);
12464 }
12465
12466 /* Load the nth position from the given file */
12467 int
12468 LoadPositionFromFile (char *filename, int n, char *title)
12469 {
12470     FILE *f;
12471     char buf[MSG_SIZ];
12472
12473     if (strcmp(filename, "-") == 0) {
12474         return LoadPosition(stdin, n, "stdin");
12475     } else {
12476         f = fopen(filename, "rb");
12477         if (f == NULL) {
12478             snprintf(buf, sizeof(buf), _("Can't open \"%s\""), filename);
12479             DisplayError(buf, errno);
12480             return FALSE;
12481         } else {
12482             return LoadPosition(f, n, title);
12483         }
12484     }
12485 }
12486
12487 /* Load the nth position from the given open file, and close it */
12488 int
12489 LoadPosition (FILE *f, int positionNumber, char *title)
12490 {
12491     char *p, line[MSG_SIZ];
12492     Board initial_position;
12493     int i, j, fenMode, pn;
12494
12495     if (gameMode == Training )
12496         SetTrainingModeOff();
12497
12498     if (gameMode != BeginningOfGame) {
12499         Reset(FALSE, TRUE);
12500     }
12501     if (lastLoadPositionFP != NULL && lastLoadPositionFP != f) {
12502         fclose(lastLoadPositionFP);
12503     }
12504     if (positionNumber == 0) positionNumber = 1;
12505     lastLoadPositionFP = f;
12506     lastLoadPositionNumber = positionNumber;
12507     safeStrCpy(lastLoadPositionTitle, title, sizeof(lastLoadPositionTitle)/sizeof(lastLoadPositionTitle[0]));
12508     if (first.pr == NoProc && !appData.noChessProgram) {
12509       StartChessProgram(&first);
12510       InitChessProgram(&first, FALSE);
12511     }
12512     pn = positionNumber;
12513     if (positionNumber < 0) {
12514         /* Negative position number means to seek to that byte offset */
12515         if (fseek(f, -positionNumber, 0) == -1) {
12516             DisplayError(_("Can't seek on position file"), 0);
12517             return FALSE;
12518         };
12519         pn = 1;
12520     } else {
12521         if (fseek(f, 0, 0) == -1) {
12522             if (f == lastLoadPositionFP ?
12523                 positionNumber == lastLoadPositionNumber + 1 :
12524                 positionNumber == 1) {
12525                 pn = 1;
12526             } else {
12527                 DisplayError(_("Can't seek on position file"), 0);
12528                 return FALSE;
12529             }
12530         }
12531     }
12532     /* See if this file is FEN or old-style xboard */
12533     if (fgets(line, MSG_SIZ, f) == NULL) {
12534         DisplayError(_("Position not found in file"), 0);
12535         return FALSE;
12536     }
12537     // [HGM] FEN can begin with digit, any piece letter valid in this variant, or a + for Shogi promoted pieces
12538     fenMode = line[0] >= '0' && line[0] <= '9' || line[0] == '+' || CharToPiece(line[0]) != EmptySquare;
12539
12540     if (pn >= 2) {
12541         if (fenMode || line[0] == '#') pn--;
12542         while (pn > 0) {
12543             /* skip positions before number pn */
12544             if (fgets(line, MSG_SIZ, f) == NULL) {
12545                 Reset(TRUE, TRUE);
12546                 DisplayError(_("Position not found in file"), 0);
12547                 return FALSE;
12548             }
12549             if (fenMode || line[0] == '#') pn--;
12550         }
12551     }
12552
12553     if (fenMode) {
12554         if (!ParseFEN(initial_position, &blackPlaysFirst, line)) {
12555             DisplayError(_("Bad FEN position in file"), 0);
12556             return FALSE;
12557         }
12558     } else {
12559         (void) fgets(line, MSG_SIZ, f);
12560         (void) fgets(line, MSG_SIZ, f);
12561
12562         for (i = BOARD_HEIGHT - 1; i >= 0; i--) {
12563             (void) fgets(line, MSG_SIZ, f);
12564             for (p = line, j = BOARD_LEFT; j < BOARD_RGHT; p++) {
12565                 if (*p == ' ')
12566                   continue;
12567                 initial_position[i][j++] = CharToPiece(*p);
12568             }
12569         }
12570
12571         blackPlaysFirst = FALSE;
12572         if (!feof(f)) {
12573             (void) fgets(line, MSG_SIZ, f);
12574             if (strncmp(line, "black", strlen("black"))==0)
12575               blackPlaysFirst = TRUE;
12576         }
12577     }
12578     startedFromSetupPosition = TRUE;
12579
12580     CopyBoard(boards[0], initial_position);
12581     if (blackPlaysFirst) {
12582         currentMove = forwardMostMove = backwardMostMove = 1;
12583         safeStrCpy(moveList[0], "", sizeof(moveList[0])/sizeof(moveList[0][0]));
12584         safeStrCpy(parseList[0], "", sizeof(parseList[0])/sizeof(parseList[0][0]));
12585         CopyBoard(boards[1], initial_position);
12586         DisplayMessage("", _("Black to play"));
12587     } else {
12588         currentMove = forwardMostMove = backwardMostMove = 0;
12589         DisplayMessage("", _("White to play"));
12590     }
12591     initialRulePlies = FENrulePlies; /* [HGM] copy FEN attributes as well */
12592     if(first.pr != NoProc) { // [HGM] in tourney-mode a position can be loaded before the chess engine is installed
12593         SendToProgram("force\n", &first);
12594         SendBoard(&first, forwardMostMove);
12595     }
12596     if (appData.debugMode) {
12597 int i, j;
12598   for(i=0;i<2;i++){for(j=0;j<6;j++)fprintf(debugFP, " %d", boards[i][CASTLING][j]);fprintf(debugFP,"\n");}
12599   for(j=0;j<6;j++)fprintf(debugFP, " %d", initialRights[j]);fprintf(debugFP,"\n");
12600         fprintf(debugFP, "Load Position\n");
12601     }
12602
12603     if (positionNumber > 1) {
12604       snprintf(line, MSG_SIZ, "%s %d", title, positionNumber);
12605         DisplayTitle(line);
12606     } else {
12607         DisplayTitle(title);
12608     }
12609     gameMode = EditGame;
12610     ModeHighlight();
12611     ResetClocks();
12612     timeRemaining[0][1] = whiteTimeRemaining;
12613     timeRemaining[1][1] = blackTimeRemaining;
12614     DrawPosition(FALSE, boards[currentMove]);
12615
12616     return TRUE;
12617 }
12618
12619
12620 void
12621 CopyPlayerNameIntoFileName (char **dest, char *src)
12622 {
12623     while (*src != NULLCHAR && *src != ',') {
12624         if (*src == ' ') {
12625             *(*dest)++ = '_';
12626             src++;
12627         } else {
12628             *(*dest)++ = *src++;
12629         }
12630     }
12631 }
12632
12633 char *
12634 DefaultFileName (char *ext)
12635 {
12636     static char def[MSG_SIZ];
12637     char *p;
12638
12639     if (gameInfo.white != NULL && gameInfo.white[0] != '-') {
12640         p = def;
12641         CopyPlayerNameIntoFileName(&p, gameInfo.white);
12642         *p++ = '-';
12643         CopyPlayerNameIntoFileName(&p, gameInfo.black);
12644         *p++ = '.';
12645         safeStrCpy(p, ext, MSG_SIZ-2-strlen(gameInfo.white)-strlen(gameInfo.black));
12646     } else {
12647         def[0] = NULLCHAR;
12648     }
12649     return def;
12650 }
12651
12652 /* Save the current game to the given file */
12653 int
12654 SaveGameToFile (char *filename, int append)
12655 {
12656     FILE *f;
12657     char buf[MSG_SIZ];
12658     int result, i, t,tot=0;
12659
12660     if (strcmp(filename, "-") == 0) {
12661         return SaveGame(stdout, 0, NULL);
12662     } else {
12663         for(i=0; i<10; i++) { // upto 10 tries
12664              f = fopen(filename, append ? "a" : "w");
12665              if(f && i) fprintf(f, "[Delay \"%d retries, %d msec\"]\n",i,tot);
12666              if(f || errno != 13) break;
12667              DoSleep(t = 5 + random()%11); // wait 5-15 msec
12668              tot += t;
12669         }
12670         if (f == NULL) {
12671             snprintf(buf, sizeof(buf), _("Can't open \"%s\""), filename);
12672             DisplayError(buf, errno);
12673             return FALSE;
12674         } else {
12675             safeStrCpy(buf, lastMsg, MSG_SIZ);
12676             DisplayMessage(_("Waiting for access to save file"), "");
12677             flock(fileno(f), LOCK_EX); // [HGM] lock: lock file while we are writing
12678             DisplayMessage(_("Saving game"), "");
12679             if(lseek(fileno(f), 0, SEEK_END) == -1) DisplayError(_("Bad Seek"), errno);     // better safe than sorry...
12680             result = SaveGame(f, 0, NULL);
12681             DisplayMessage(buf, "");
12682             return result;
12683         }
12684     }
12685 }
12686
12687 char *
12688 SavePart (char *str)
12689 {
12690     static char buf[MSG_SIZ];
12691     char *p;
12692
12693     p = strchr(str, ' ');
12694     if (p == NULL) return str;
12695     strncpy(buf, str, p - str);
12696     buf[p - str] = NULLCHAR;
12697     return buf;
12698 }
12699
12700 #define PGN_MAX_LINE 75
12701
12702 #define PGN_SIDE_WHITE  0
12703 #define PGN_SIDE_BLACK  1
12704
12705 static int
12706 FindFirstMoveOutOfBook (int side)
12707 {
12708     int result = -1;
12709
12710     if( backwardMostMove == 0 && ! startedFromSetupPosition) {
12711         int index = backwardMostMove;
12712         int has_book_hit = 0;
12713
12714         if( (index % 2) != side ) {
12715             index++;
12716         }
12717
12718         while( index < forwardMostMove ) {
12719             /* Check to see if engine is in book */
12720             int depth = pvInfoList[index].depth;
12721             int score = pvInfoList[index].score;
12722             int in_book = 0;
12723
12724             if( depth <= 2 ) {
12725                 in_book = 1;
12726             }
12727             else if( score == 0 && depth == 63 ) {
12728                 in_book = 1; /* Zappa */
12729             }
12730             else if( score == 2 && depth == 99 ) {
12731                 in_book = 1; /* Abrok */
12732             }
12733
12734             has_book_hit += in_book;
12735
12736             if( ! in_book ) {
12737                 result = index;
12738
12739                 break;
12740             }
12741
12742             index += 2;
12743         }
12744     }
12745
12746     return result;
12747 }
12748
12749 void
12750 GetOutOfBookInfo (char * buf)
12751 {
12752     int oob[2];
12753     int i;
12754     int offset = backwardMostMove & (~1L); /* output move numbers start at 1 */
12755
12756     oob[0] = FindFirstMoveOutOfBook( PGN_SIDE_WHITE );
12757     oob[1] = FindFirstMoveOutOfBook( PGN_SIDE_BLACK );
12758
12759     *buf = '\0';
12760
12761     if( oob[0] >= 0 || oob[1] >= 0 ) {
12762         for( i=0; i<2; i++ ) {
12763             int idx = oob[i];
12764
12765             if( idx >= 0 ) {
12766                 if( i > 0 && oob[0] >= 0 ) {
12767                     strcat( buf, "   " );
12768                 }
12769
12770                 sprintf( buf+strlen(buf), "%d%s. ", (idx - offset)/2 + 1, idx & 1 ? ".." : "" );
12771                 sprintf( buf+strlen(buf), "%s%.2f",
12772                     pvInfoList[idx].score >= 0 ? "+" : "",
12773                     pvInfoList[idx].score / 100.0 );
12774             }
12775         }
12776     }
12777 }
12778
12779 /* Save game in PGN style and close the file */
12780 int
12781 SaveGamePGN (FILE *f)
12782 {
12783     int i, offset, linelen, newblock;
12784 //    char *movetext;
12785     char numtext[32];
12786     int movelen, numlen, blank;
12787     char move_buffer[100]; /* [AS] Buffer for move+PV info */
12788
12789     offset = backwardMostMove & (~1L); /* output move numbers start at 1 */
12790
12791     PrintPGNTags(f, &gameInfo);
12792
12793     if(appData.numberTag && matchMode) fprintf(f, "[Number \"%d\"]\n", nextGame+1); // [HGM] number tag
12794
12795     if (backwardMostMove > 0 || startedFromSetupPosition) {
12796         char *fen = PositionToFEN(backwardMostMove, NULL);
12797         fprintf(f, "[FEN \"%s\"]\n[SetUp \"1\"]\n", fen);
12798         fprintf(f, "\n{--------------\n");
12799         PrintPosition(f, backwardMostMove);
12800         fprintf(f, "--------------}\n");
12801         free(fen);
12802     }
12803     else {
12804         /* [AS] Out of book annotation */
12805         if( appData.saveOutOfBookInfo ) {
12806             char buf[64];
12807
12808             GetOutOfBookInfo( buf );
12809
12810             if( buf[0] != '\0' ) {
12811                 fprintf( f, "[%s \"%s\"]\n", PGN_OUT_OF_BOOK, buf );
12812             }
12813         }
12814
12815         fprintf(f, "\n");
12816     }
12817
12818     i = backwardMostMove;
12819     linelen = 0;
12820     newblock = TRUE;
12821
12822     while (i < forwardMostMove) {
12823         /* Print comments preceding this move */
12824         if (commentList[i] != NULL) {
12825             if (linelen > 0) fprintf(f, "\n");
12826             fprintf(f, "%s", commentList[i]);
12827             linelen = 0;
12828             newblock = TRUE;
12829         }
12830
12831         /* Format move number */
12832         if ((i % 2) == 0)
12833           snprintf(numtext, sizeof(numtext)/sizeof(numtext[0]),"%d.", (i - offset)/2 + 1);
12834         else
12835           if (newblock)
12836             snprintf(numtext, sizeof(numtext)/sizeof(numtext[0]), "%d...", (i - offset)/2 + 1);
12837           else
12838             numtext[0] = NULLCHAR;
12839
12840         numlen = strlen(numtext);
12841         newblock = FALSE;
12842
12843         /* Print move number */
12844         blank = linelen > 0 && numlen > 0;
12845         if (linelen + (blank ? 1 : 0) + numlen > PGN_MAX_LINE) {
12846             fprintf(f, "\n");
12847             linelen = 0;
12848             blank = 0;
12849         }
12850         if (blank) {
12851             fprintf(f, " ");
12852             linelen++;
12853         }
12854         fprintf(f, "%s", numtext);
12855         linelen += numlen;
12856
12857         /* Get move */
12858         safeStrCpy(move_buffer, SavePart(parseList[i]), sizeof(move_buffer)/sizeof(move_buffer[0])); // [HGM] pgn: print move via buffer, so it can be edited
12859         movelen = strlen(move_buffer); /* [HGM] pgn: line-break point before move */
12860
12861         /* Print move */
12862         blank = linelen > 0 && movelen > 0;
12863         if (linelen + (blank ? 1 : 0) + movelen > PGN_MAX_LINE) {
12864             fprintf(f, "\n");
12865             linelen = 0;
12866             blank = 0;
12867         }
12868         if (blank) {
12869             fprintf(f, " ");
12870             linelen++;
12871         }
12872         fprintf(f, "%s", move_buffer);
12873         linelen += movelen;
12874
12875         /* [AS] Add PV info if present */
12876         if( i >= 0 && appData.saveExtendedInfoInPGN && pvInfoList[i].depth > 0 ) {
12877             /* [HGM] add time */
12878             char buf[MSG_SIZ]; int seconds;
12879
12880             seconds = (pvInfoList[i].time+5)/10; // deci-seconds, rounded to nearest
12881
12882             if( seconds <= 0)
12883               buf[0] = 0;
12884             else
12885               if( seconds < 30 )
12886                 snprintf(buf, MSG_SIZ, " %3.1f%c", seconds/10., 0);
12887               else
12888                 {
12889                   seconds = (seconds + 4)/10; // round to full seconds
12890                   if( seconds < 60 )
12891                     snprintf(buf, MSG_SIZ, " %d%c", seconds, 0);
12892                   else
12893                     snprintf(buf, MSG_SIZ, " %d:%02d%c", seconds/60, seconds%60, 0);
12894                 }
12895
12896             snprintf( move_buffer, sizeof(move_buffer)/sizeof(move_buffer[0]),"{%s%.2f/%d%s}",
12897                       pvInfoList[i].score >= 0 ? "+" : "",
12898                       pvInfoList[i].score / 100.0,
12899                       pvInfoList[i].depth,
12900                       buf );
12901
12902             movelen = strlen(move_buffer); /* [HGM] pgn: line-break point after move */
12903
12904             /* Print score/depth */
12905             blank = linelen > 0 && movelen > 0;
12906             if (linelen + (blank ? 1 : 0) + movelen > PGN_MAX_LINE) {
12907                 fprintf(f, "\n");
12908                 linelen = 0;
12909                 blank = 0;
12910             }
12911             if (blank) {
12912                 fprintf(f, " ");
12913                 linelen++;
12914             }
12915             fprintf(f, "%s", move_buffer);
12916             linelen += movelen;
12917         }
12918
12919         i++;
12920     }
12921
12922     /* Start a new line */
12923     if (linelen > 0) fprintf(f, "\n");
12924
12925     /* Print comments after last move */
12926     if (commentList[i] != NULL) {
12927         fprintf(f, "%s\n", commentList[i]);
12928     }
12929
12930     /* Print result */
12931     if (gameInfo.resultDetails != NULL &&
12932         gameInfo.resultDetails[0] != NULLCHAR) {
12933         fprintf(f, "{%s} %s\n\n", gameInfo.resultDetails,
12934                 PGNResult(gameInfo.result));
12935     } else {
12936         fprintf(f, "%s\n\n", PGNResult(gameInfo.result));
12937     }
12938
12939     fclose(f);
12940     lastSavedGame = GameCheckSum(); // [HGM] save: remember ID of last saved game to prevent double saving
12941     return TRUE;
12942 }
12943
12944 /* Save game in old style and close the file */
12945 int
12946 SaveGameOldStyle (FILE *f)
12947 {
12948     int i, offset;
12949     time_t tm;
12950
12951     tm = time((time_t *) NULL);
12952
12953     fprintf(f, "# %s game file -- %s", programName, ctime(&tm));
12954     PrintOpponents(f);
12955
12956     if (backwardMostMove > 0 || startedFromSetupPosition) {
12957         fprintf(f, "\n[--------------\n");
12958         PrintPosition(f, backwardMostMove);
12959         fprintf(f, "--------------]\n");
12960     } else {
12961         fprintf(f, "\n");
12962     }
12963
12964     i = backwardMostMove;
12965     offset = backwardMostMove & (~1L); /* output move numbers start at 1 */
12966
12967     while (i < forwardMostMove) {
12968         if (commentList[i] != NULL) {
12969             fprintf(f, "[%s]\n", commentList[i]);
12970         }
12971
12972         if ((i % 2) == 1) {
12973             fprintf(f, "%d. ...  %s\n", (i - offset)/2 + 1, parseList[i]);
12974             i++;
12975         } else {
12976             fprintf(f, "%d. %s  ", (i - offset)/2 + 1, parseList[i]);
12977             i++;
12978             if (commentList[i] != NULL) {
12979                 fprintf(f, "\n");
12980                 continue;
12981             }
12982             if (i >= forwardMostMove) {
12983                 fprintf(f, "\n");
12984                 break;
12985             }
12986             fprintf(f, "%s\n", parseList[i]);
12987             i++;
12988         }
12989     }
12990
12991     if (commentList[i] != NULL) {
12992         fprintf(f, "[%s]\n", commentList[i]);
12993     }
12994
12995     /* This isn't really the old style, but it's close enough */
12996     if (gameInfo.resultDetails != NULL &&
12997         gameInfo.resultDetails[0] != NULLCHAR) {
12998         fprintf(f, "%s (%s)\n\n", PGNResult(gameInfo.result),
12999                 gameInfo.resultDetails);
13000     } else {
13001         fprintf(f, "%s\n\n", PGNResult(gameInfo.result));
13002     }
13003
13004     fclose(f);
13005     return TRUE;
13006 }
13007
13008 /* Save the current game to open file f and close the file */
13009 int
13010 SaveGame (FILE *f, int dummy, char *dummy2)
13011 {
13012     if (gameMode == EditPosition) EditPositionDone(TRUE);
13013     lastSavedGame = GameCheckSum(); // [HGM] save: remember ID of last saved game to prevent double saving
13014     if (appData.oldSaveStyle)
13015       return SaveGameOldStyle(f);
13016     else
13017       return SaveGamePGN(f);
13018 }
13019
13020 /* Save the current position to the given file */
13021 int
13022 SavePositionToFile (char *filename)
13023 {
13024     FILE *f;
13025     char buf[MSG_SIZ];
13026
13027     if (strcmp(filename, "-") == 0) {
13028         return SavePosition(stdout, 0, NULL);
13029     } else {
13030         f = fopen(filename, "a");
13031         if (f == NULL) {
13032             snprintf(buf, sizeof(buf), _("Can't open \"%s\""), filename);
13033             DisplayError(buf, errno);
13034             return FALSE;
13035         } else {
13036             safeStrCpy(buf, lastMsg, MSG_SIZ);
13037             DisplayMessage(_("Waiting for access to save file"), "");
13038             flock(fileno(f), LOCK_EX); // [HGM] lock
13039             DisplayMessage(_("Saving position"), "");
13040             lseek(fileno(f), 0, SEEK_END);     // better safe than sorry...
13041             SavePosition(f, 0, NULL);
13042             DisplayMessage(buf, "");
13043             return TRUE;
13044         }
13045     }
13046 }
13047
13048 /* Save the current position to the given open file and close the file */
13049 int
13050 SavePosition (FILE *f, int dummy, char *dummy2)
13051 {
13052     time_t tm;
13053     char *fen;
13054
13055     if (gameMode == EditPosition) EditPositionDone(TRUE);
13056     if (appData.oldSaveStyle) {
13057         tm = time((time_t *) NULL);
13058
13059         fprintf(f, "# %s position file -- %s", programName, ctime(&tm));
13060         PrintOpponents(f);
13061         fprintf(f, "[--------------\n");
13062         PrintPosition(f, currentMove);
13063         fprintf(f, "--------------]\n");
13064     } else {
13065         fen = PositionToFEN(currentMove, NULL);
13066         fprintf(f, "%s\n", fen);
13067         free(fen);
13068     }
13069     fclose(f);
13070     return TRUE;
13071 }
13072
13073 void
13074 ReloadCmailMsgEvent (int unregister)
13075 {
13076 #if !WIN32
13077     static char *inFilename = NULL;
13078     static char *outFilename;
13079     int i;
13080     struct stat inbuf, outbuf;
13081     int status;
13082
13083     /* Any registered moves are unregistered if unregister is set, */
13084     /* i.e. invoked by the signal handler */
13085     if (unregister) {
13086         for (i = 0; i < CMAIL_MAX_GAMES; i ++) {
13087             cmailMoveRegistered[i] = FALSE;
13088             if (cmailCommentList[i] != NULL) {
13089                 free(cmailCommentList[i]);
13090                 cmailCommentList[i] = NULL;
13091             }
13092         }
13093         nCmailMovesRegistered = 0;
13094     }
13095
13096     for (i = 0; i < CMAIL_MAX_GAMES; i ++) {
13097         cmailResult[i] = CMAIL_NOT_RESULT;
13098     }
13099     nCmailResults = 0;
13100
13101     if (inFilename == NULL) {
13102         /* Because the filenames are static they only get malloced once  */
13103         /* and they never get freed                                      */
13104         inFilename = (char *) malloc(strlen(appData.cmailGameName) + 9);
13105         sprintf(inFilename, "%s.game.in", appData.cmailGameName);
13106
13107         outFilename = (char *) malloc(strlen(appData.cmailGameName) + 5);
13108         sprintf(outFilename, "%s.out", appData.cmailGameName);
13109     }
13110
13111     status = stat(outFilename, &outbuf);
13112     if (status < 0) {
13113         cmailMailedMove = FALSE;
13114     } else {
13115         status = stat(inFilename, &inbuf);
13116         cmailMailedMove = (inbuf.st_mtime < outbuf.st_mtime);
13117     }
13118
13119     /* LoadGameFromFile(CMAIL_MAX_GAMES) with cmailMsgLoaded == TRUE
13120        counts the games, notes how each one terminated, etc.
13121
13122        It would be nice to remove this kludge and instead gather all
13123        the information while building the game list.  (And to keep it
13124        in the game list nodes instead of having a bunch of fixed-size
13125        parallel arrays.)  Note this will require getting each game's
13126        termination from the PGN tags, as the game list builder does
13127        not process the game moves.  --mann
13128        */
13129     cmailMsgLoaded = TRUE;
13130     LoadGameFromFile(inFilename, CMAIL_MAX_GAMES, "", FALSE);
13131
13132     /* Load first game in the file or popup game menu */
13133     LoadGameFromFile(inFilename, 0, appData.cmailGameName, TRUE);
13134
13135 #endif /* !WIN32 */
13136     return;
13137 }
13138
13139 int
13140 RegisterMove ()
13141 {
13142     FILE *f;
13143     char string[MSG_SIZ];
13144
13145     if (   cmailMailedMove
13146         || (cmailResult[lastLoadGameNumber - 1] == CMAIL_OLD_RESULT)) {
13147         return TRUE;            /* Allow free viewing  */
13148     }
13149
13150     /* Unregister move to ensure that we don't leave RegisterMove        */
13151     /* with the move registered when the conditions for registering no   */
13152     /* longer hold                                                       */
13153     if (cmailMoveRegistered[lastLoadGameNumber - 1]) {
13154         cmailMoveRegistered[lastLoadGameNumber - 1] = FALSE;
13155         nCmailMovesRegistered --;
13156
13157         if (cmailCommentList[lastLoadGameNumber - 1] != NULL)
13158           {
13159               free(cmailCommentList[lastLoadGameNumber - 1]);
13160               cmailCommentList[lastLoadGameNumber - 1] = NULL;
13161           }
13162     }
13163
13164     if (cmailOldMove == -1) {
13165         DisplayError(_("You have edited the game history.\nUse Reload Same Game and make your move again."), 0);
13166         return FALSE;
13167     }
13168
13169     if (currentMove > cmailOldMove + 1) {
13170         DisplayError(_("You have entered too many moves.\nBack up to the correct position and try again."), 0);
13171         return FALSE;
13172     }
13173
13174     if (currentMove < cmailOldMove) {
13175         DisplayError(_("Displayed position is not current.\nStep forward to the correct position and try again."), 0);
13176         return FALSE;
13177     }
13178
13179     if (forwardMostMove > currentMove) {
13180         /* Silently truncate extra moves */
13181         TruncateGame();
13182     }
13183
13184     if (   (currentMove == cmailOldMove + 1)
13185         || (   (currentMove == cmailOldMove)
13186             && (   (cmailMoveType[lastLoadGameNumber - 1] == CMAIL_ACCEPT)
13187                 || (cmailMoveType[lastLoadGameNumber - 1] == CMAIL_RESIGN)))) {
13188         if (gameInfo.result != GameUnfinished) {
13189             cmailResult[lastLoadGameNumber - 1] = CMAIL_NEW_RESULT;
13190         }
13191
13192         if (commentList[currentMove] != NULL) {
13193             cmailCommentList[lastLoadGameNumber - 1]
13194               = StrSave(commentList[currentMove]);
13195         }
13196         safeStrCpy(cmailMove[lastLoadGameNumber - 1], moveList[currentMove - 1], sizeof(cmailMove[lastLoadGameNumber - 1])/sizeof(cmailMove[lastLoadGameNumber - 1][0]));
13197
13198         if (appData.debugMode)
13199           fprintf(debugFP, "Saving %s for game %d\n",
13200                   cmailMove[lastLoadGameNumber - 1], lastLoadGameNumber);
13201
13202         snprintf(string, MSG_SIZ, "%s.game.out.%d", appData.cmailGameName, lastLoadGameNumber);
13203
13204         f = fopen(string, "w");
13205         if (appData.oldSaveStyle) {
13206             SaveGameOldStyle(f); /* also closes the file */
13207
13208             snprintf(string, MSG_SIZ, "%s.pos.out", appData.cmailGameName);
13209             f = fopen(string, "w");
13210             SavePosition(f, 0, NULL); /* also closes the file */
13211         } else {
13212             fprintf(f, "{--------------\n");
13213             PrintPosition(f, currentMove);
13214             fprintf(f, "--------------}\n\n");
13215
13216             SaveGame(f, 0, NULL); /* also closes the file*/
13217         }
13218
13219         cmailMoveRegistered[lastLoadGameNumber - 1] = TRUE;
13220         nCmailMovesRegistered ++;
13221     } else if (nCmailGames == 1) {
13222         DisplayError(_("You have not made a move yet"), 0);
13223         return FALSE;
13224     }
13225
13226     return TRUE;
13227 }
13228
13229 void
13230 MailMoveEvent ()
13231 {
13232 #if !WIN32
13233     static char *partCommandString = "cmail -xv%s -remail -game %s 2>&1";
13234     FILE *commandOutput;
13235     char buffer[MSG_SIZ], msg[MSG_SIZ], string[MSG_SIZ];
13236     int nBytes = 0;             /*  Suppress warnings on uninitialized variables    */
13237     int nBuffers;
13238     int i;
13239     int archived;
13240     char *arcDir;
13241
13242     if (! cmailMsgLoaded) {
13243         DisplayError(_("The cmail message is not loaded.\nUse Reload CMail Message and make your move again."), 0);
13244         return;
13245     }
13246
13247     if (nCmailGames == nCmailResults) {
13248         DisplayError(_("No unfinished games"), 0);
13249         return;
13250     }
13251
13252 #if CMAIL_PROHIBIT_REMAIL
13253     if (cmailMailedMove) {
13254       snprintf(msg, MSG_SIZ, _("You have already mailed a move.\nWait until a move arrives from your opponent.\nTo resend the same move, type\n\"cmail -remail -game %s\"\non the command line."), appData.cmailGameName);
13255         DisplayError(msg, 0);
13256         return;
13257     }
13258 #endif
13259
13260     if (! (cmailMailedMove || RegisterMove())) return;
13261
13262     if (   cmailMailedMove
13263         || (nCmailMovesRegistered + nCmailResults == nCmailGames)) {
13264       snprintf(string, MSG_SIZ, partCommandString,
13265                appData.debugMode ? " -v" : "", appData.cmailGameName);
13266         commandOutput = popen(string, "r");
13267
13268         if (commandOutput == NULL) {
13269             DisplayError(_("Failed to invoke cmail"), 0);
13270         } else {
13271             for (nBuffers = 0; (! feof(commandOutput)); nBuffers ++) {
13272                 nBytes = fread(buffer, 1, MSG_SIZ - 1, commandOutput);
13273             }
13274             if (nBuffers > 1) {
13275                 (void) memcpy(msg, buffer + nBytes, MSG_SIZ - nBytes - 1);
13276                 (void) memcpy(msg + MSG_SIZ - nBytes - 1, buffer, nBytes);
13277                 nBytes = MSG_SIZ - 1;
13278             } else {
13279                 (void) memcpy(msg, buffer, nBytes);
13280             }
13281             *(msg + nBytes) = '\0'; /* \0 for end-of-string*/
13282
13283             if(StrStr(msg, "Mailed cmail message to ") != NULL) {
13284                 cmailMailedMove = TRUE; /* Prevent >1 moves    */
13285
13286                 archived = TRUE;
13287                 for (i = 0; i < nCmailGames; i ++) {
13288                     if (cmailResult[i] == CMAIL_NOT_RESULT) {
13289                         archived = FALSE;
13290                     }
13291                 }
13292                 if (   archived
13293                     && (   (arcDir = (char *) getenv("CMAIL_ARCDIR"))
13294                         != NULL)) {
13295                   snprintf(buffer, MSG_SIZ, "%s/%s.%s.archive",
13296                            arcDir,
13297                            appData.cmailGameName,
13298                            gameInfo.date);
13299                     LoadGameFromFile(buffer, 1, buffer, FALSE);
13300                     cmailMsgLoaded = FALSE;
13301                 }
13302             }
13303
13304             DisplayInformation(msg);
13305             pclose(commandOutput);
13306         }
13307     } else {
13308         if ((*cmailMsg) != '\0') {
13309             DisplayInformation(cmailMsg);
13310         }
13311     }
13312
13313     return;
13314 #endif /* !WIN32 */
13315 }
13316
13317 char *
13318 CmailMsg ()
13319 {
13320 #if WIN32
13321     return NULL;
13322 #else
13323     int  prependComma = 0;
13324     char number[5];
13325     char string[MSG_SIZ];       /* Space for game-list */
13326     int  i;
13327
13328     if (!cmailMsgLoaded) return "";
13329
13330     if (cmailMailedMove) {
13331       snprintf(cmailMsg, MSG_SIZ, _("Waiting for reply from opponent\n"));
13332     } else {
13333         /* Create a list of games left */
13334       snprintf(string, MSG_SIZ, "[");
13335         for (i = 0; i < nCmailGames; i ++) {
13336             if (! (   cmailMoveRegistered[i]
13337                    || (cmailResult[i] == CMAIL_OLD_RESULT))) {
13338                 if (prependComma) {
13339                     snprintf(number, sizeof(number)/sizeof(number[0]), ",%d", i + 1);
13340                 } else {
13341                     snprintf(number, sizeof(number)/sizeof(number[0]), "%d", i + 1);
13342                     prependComma = 1;
13343                 }
13344
13345                 strcat(string, number);
13346             }
13347         }
13348         strcat(string, "]");
13349
13350         if (nCmailMovesRegistered + nCmailResults == 0) {
13351             switch (nCmailGames) {
13352               case 1:
13353                 snprintf(cmailMsg, MSG_SIZ, _("Still need to make move for game\n"));
13354                 break;
13355
13356               case 2:
13357                 snprintf(cmailMsg, MSG_SIZ, _("Still need to make moves for both games\n"));
13358                 break;
13359
13360               default:
13361                 snprintf(cmailMsg, MSG_SIZ, _("Still need to make moves for all %d games\n"),
13362                          nCmailGames);
13363                 break;
13364             }
13365         } else {
13366             switch (nCmailGames - nCmailMovesRegistered - nCmailResults) {
13367               case 1:
13368                 snprintf(cmailMsg, MSG_SIZ, _("Still need to make a move for game %s\n"),
13369                          string);
13370                 break;
13371
13372               case 0:
13373                 if (nCmailResults == nCmailGames) {
13374                   snprintf(cmailMsg, MSG_SIZ, _("No unfinished games\n"));
13375                 } else {
13376                   snprintf(cmailMsg, MSG_SIZ, _("Ready to send mail\n"));
13377                 }
13378                 break;
13379
13380               default:
13381                 snprintf(cmailMsg, MSG_SIZ, _("Still need to make moves for games %s\n"),
13382                          string);
13383             }
13384         }
13385     }
13386     return cmailMsg;
13387 #endif /* WIN32 */
13388 }
13389
13390 void
13391 ResetGameEvent ()
13392 {
13393     if (gameMode == Training)
13394       SetTrainingModeOff();
13395
13396     Reset(TRUE, TRUE);
13397     cmailMsgLoaded = FALSE;
13398     if (appData.icsActive) {
13399       SendToICS(ics_prefix);
13400       SendToICS("refresh\n");
13401     }
13402 }
13403
13404 void
13405 ExitEvent (int status)
13406 {
13407     exiting++;
13408     if (exiting > 2) {
13409       /* Give up on clean exit */
13410       exit(status);
13411     }
13412     if (exiting > 1) {
13413       /* Keep trying for clean exit */
13414       return;
13415     }
13416
13417     if (appData.icsActive && appData.colorize) Colorize(ColorNone, FALSE);
13418
13419     if (telnetISR != NULL) {
13420       RemoveInputSource(telnetISR);
13421     }
13422     if (icsPR != NoProc) {
13423       DestroyChildProcess(icsPR, TRUE);
13424     }
13425
13426     /* [HGM] crash: leave writing PGN and position entirely to GameEnds() */
13427     GameEnds(gameInfo.result, gameInfo.resultDetails==NULL ? "xboard exit" : gameInfo.resultDetails, GE_PLAYER);
13428
13429     /* [HGM] crash: the above GameEnds() is a dud if another one was running */
13430     /* make sure this other one finishes before killing it!                  */
13431     if(endingGame) { int count = 0;
13432         if(appData.debugMode) fprintf(debugFP, "ExitEvent() during GameEnds(), wait\n");
13433         while(endingGame && count++ < 10) DoSleep(1);
13434         if(appData.debugMode && endingGame) fprintf(debugFP, "GameEnds() seems stuck, proceed exiting\n");
13435     }
13436
13437     /* Kill off chess programs */
13438     if (first.pr != NoProc) {
13439         ExitAnalyzeMode();
13440
13441         DoSleep( appData.delayBeforeQuit );
13442         SendToProgram("quit\n", &first);
13443         DoSleep( appData.delayAfterQuit );
13444         DestroyChildProcess(first.pr, 10 /* [AS] first.useSigterm */ );
13445     }
13446     if (second.pr != NoProc) {
13447         DoSleep( appData.delayBeforeQuit );
13448         SendToProgram("quit\n", &second);
13449         DoSleep( appData.delayAfterQuit );
13450         DestroyChildProcess(second.pr, 10 /* [AS] second.useSigterm */ );
13451     }
13452     if (first.isr != NULL) {
13453         RemoveInputSource(first.isr);
13454     }
13455     if (second.isr != NULL) {
13456         RemoveInputSource(second.isr);
13457     }
13458
13459     if (pairing.pr != NoProc) SendToProgram("quit\n", &pairing);
13460     if (pairing.isr != NULL) RemoveInputSource(pairing.isr);
13461
13462     ShutDownFrontEnd();
13463     exit(status);
13464 }
13465
13466 void
13467 PauseEngine (ChessProgramState *cps)
13468 {
13469     SendToProgram("pause\n", cps);
13470     cps->pause = 2;
13471 }
13472
13473 void
13474 UnPauseEngine (ChessProgramState *cps)
13475 {
13476     SendToProgram("resume\n", cps);
13477     cps->pause = 1;
13478 }
13479
13480 void
13481 PauseEvent ()
13482 {
13483     if (appData.debugMode)
13484         fprintf(debugFP, "PauseEvent(): pausing %d\n", pausing);
13485     if (pausing) {
13486         pausing = FALSE;
13487         ModeHighlight();
13488         if(stalledEngine) { // [HGM] pause: resume game by releasing withheld move
13489             StartClocks();
13490             if(gameMode == TwoMachinesPlay) { // we might have to make the opponent resume pondering
13491                 if(stalledEngine->other->pause == 2) UnPauseEngine(stalledEngine->other);
13492                 else if(appData.ponderNextMove) SendToProgram("hard\n", stalledEngine->other);
13493             }
13494             if(appData.ponderNextMove) SendToProgram("hard\n", stalledEngine);
13495             HandleMachineMove(stashedInputMove, stalledEngine);
13496             stalledEngine = NULL;
13497             return;
13498         }
13499         if (gameMode == MachinePlaysWhite ||
13500             gameMode == TwoMachinesPlay   ||
13501             gameMode == MachinePlaysBlack) { // the thinking engine must have used pause mode, or it would have been stalledEngine
13502             if(first.pause)  UnPauseEngine(&first);
13503             else if(appData.ponderNextMove) SendToProgram("hard\n", &first);
13504             if(second.pause) UnPauseEngine(&second);
13505             else if(gameMode == TwoMachinesPlay && appData.ponderNextMove) SendToProgram("hard\n", &second);
13506             StartClocks();
13507         } else {
13508             DisplayBothClocks();
13509         }
13510         if (gameMode == PlayFromGameFile) {
13511             if (appData.timeDelay >= 0)
13512                 AutoPlayGameLoop();
13513         } else if (gameMode == IcsExamining && pauseExamInvalid) {
13514             Reset(FALSE, TRUE);
13515             SendToICS(ics_prefix);
13516             SendToICS("refresh\n");
13517         } else if (currentMove < forwardMostMove && gameMode != AnalyzeMode) {
13518             ForwardInner(forwardMostMove);
13519         }
13520         pauseExamInvalid = FALSE;
13521     } else {
13522         switch (gameMode) {
13523           default:
13524             return;
13525           case IcsExamining:
13526             pauseExamForwardMostMove = forwardMostMove;
13527             pauseExamInvalid = FALSE;
13528             /* fall through */
13529           case IcsObserving:
13530           case IcsPlayingWhite:
13531           case IcsPlayingBlack:
13532             pausing = TRUE;
13533             ModeHighlight();
13534             return;
13535           case PlayFromGameFile:
13536             (void) StopLoadGameTimer();
13537             pausing = TRUE;
13538             ModeHighlight();
13539             break;
13540           case BeginningOfGame:
13541             if (appData.icsActive) return;
13542             /* else fall through */
13543           case MachinePlaysWhite:
13544           case MachinePlaysBlack:
13545           case TwoMachinesPlay:
13546             if (forwardMostMove == 0)
13547               return;           /* don't pause if no one has moved */
13548             if(gameMode == TwoMachinesPlay) { // [HGM] pause: stop clocks if engine can be paused immediately
13549                 ChessProgramState *onMove = (WhiteOnMove(forwardMostMove) == (first.twoMachinesColor[0] == 'w') ? &first : &second);
13550                 if(onMove->pause) {           // thinking engine can be paused
13551                     PauseEngine(onMove);      // do it
13552                     if(onMove->other->pause)  // pondering opponent can always be paused immediately
13553                         PauseEngine(onMove->other);
13554                     else
13555                         SendToProgram("easy\n", onMove->other);
13556                     StopClocks();
13557                 } else if(appData.ponderNextMove) SendToProgram("easy\n", onMove); // pre-emptively bring out of ponder
13558             } else if(gameMode == (WhiteOnMove(forwardMostMove) ? MachinePlaysWhite : MachinePlaysBlack)) { // engine on move
13559                 if(first.pause) {
13560                     PauseEngine(&first);
13561                     StopClocks();
13562                 } else if(appData.ponderNextMove) SendToProgram("easy\n", &first); // pre-emptively bring out of ponder
13563             } else { // human on move, pause pondering by either method
13564                 if(first.pause)
13565                     PauseEngine(&first);
13566                 else if(appData.ponderNextMove)
13567                     SendToProgram("easy\n", &first);
13568                 StopClocks();
13569             }
13570             // if no immediate pausing is possible, wait for engine to move, and stop clocks then
13571           case AnalyzeMode:
13572             pausing = TRUE;
13573             ModeHighlight();
13574             break;
13575         }
13576     }
13577 }
13578
13579 void
13580 EditCommentEvent ()
13581 {
13582     char title[MSG_SIZ];
13583
13584     if (currentMove < 1 || parseList[currentMove - 1][0] == NULLCHAR) {
13585       safeStrCpy(title, _("Edit comment"), sizeof(title)/sizeof(title[0]));
13586     } else {
13587       snprintf(title, MSG_SIZ, _("Edit comment on %d.%s%s"), (currentMove - 1) / 2 + 1,
13588                WhiteOnMove(currentMove - 1) ? " " : ".. ",
13589                parseList[currentMove - 1]);
13590     }
13591
13592     EditCommentPopUp(currentMove, title, commentList[currentMove]);
13593 }
13594
13595
13596 void
13597 EditTagsEvent ()
13598 {
13599     char *tags = PGNTags(&gameInfo);
13600     bookUp = FALSE;
13601     EditTagsPopUp(tags, NULL);
13602     free(tags);
13603 }
13604
13605 void
13606 ToggleSecond ()
13607 {
13608   if(second.analyzing) {
13609     SendToProgram("exit\n", &second);
13610     second.analyzing = FALSE;
13611   } else {
13612     if (second.pr == NoProc) StartChessProgram(&second);
13613     InitChessProgram(&second, FALSE);
13614     FeedMovesToProgram(&second, currentMove);
13615
13616     SendToProgram("analyze\n", &second);
13617     second.analyzing = TRUE;
13618   }
13619 }
13620
13621 /* Toggle ShowThinking */
13622 void
13623 ToggleShowThinking()
13624 {
13625   appData.showThinking = !appData.showThinking;
13626   ShowThinkingEvent();
13627 }
13628
13629 int
13630 AnalyzeModeEvent ()
13631 {
13632     char buf[MSG_SIZ];
13633
13634     if (!first.analysisSupport) {
13635       snprintf(buf, sizeof(buf), _("%s does not support analysis"), first.tidy);
13636       DisplayError(buf, 0);
13637       return 0;
13638     }
13639     /* [DM] icsEngineAnalyze [HGM] This is horrible code; reverse the gameMode and isEngineAnalyze tests! */
13640     if (appData.icsActive) {
13641         if (gameMode != IcsObserving) {
13642           snprintf(buf, MSG_SIZ, _("You are not observing a game"));
13643             DisplayError(buf, 0);
13644             /* secure check */
13645             if (appData.icsEngineAnalyze) {
13646                 if (appData.debugMode)
13647                     fprintf(debugFP, _("Found unexpected active ICS engine analyze \n"));
13648                 ExitAnalyzeMode();
13649                 ModeHighlight();
13650             }
13651             return 0;
13652         }
13653         /* if enable, user wants to disable icsEngineAnalyze */
13654         if (appData.icsEngineAnalyze) {
13655                 ExitAnalyzeMode();
13656                 ModeHighlight();
13657                 return 0;
13658         }
13659         appData.icsEngineAnalyze = TRUE;
13660         if (appData.debugMode)
13661             fprintf(debugFP, _("ICS engine analyze starting... \n"));
13662     }
13663
13664     if (gameMode == AnalyzeMode) { ToggleSecond(); return 0; }
13665     if (appData.noChessProgram || gameMode == AnalyzeMode)
13666       return 0;
13667
13668     if (gameMode != AnalyzeFile) {
13669         if (!appData.icsEngineAnalyze) {
13670                EditGameEvent();
13671                if (gameMode != EditGame) return 0;
13672         }
13673         if (!appData.showThinking) ToggleShowThinking();
13674         ResurrectChessProgram();
13675         SendToProgram("analyze\n", &first);
13676         first.analyzing = TRUE;
13677         /*first.maybeThinking = TRUE;*/
13678         first.maybeThinking = FALSE; /* avoid killing GNU Chess */
13679         EngineOutputPopUp();
13680     }
13681     if (!appData.icsEngineAnalyze) gameMode = AnalyzeMode;
13682     pausing = FALSE;
13683     ModeHighlight();
13684     SetGameInfo();
13685
13686     StartAnalysisClock();
13687     GetTimeMark(&lastNodeCountTime);
13688     lastNodeCount = 0;
13689     return 1;
13690 }
13691
13692 void
13693 AnalyzeFileEvent ()
13694 {
13695     if (appData.noChessProgram || gameMode == AnalyzeFile)
13696       return;
13697
13698     if (!first.analysisSupport) {
13699       char buf[MSG_SIZ];
13700       snprintf(buf, sizeof(buf), _("%s does not support analysis"), first.tidy);
13701       DisplayError(buf, 0);
13702       return;
13703     }
13704
13705     if (gameMode != AnalyzeMode) {
13706         keepInfo = 1; // mere annotating should not alter PGN tags
13707         EditGameEvent();
13708         keepInfo = 0;
13709         if (gameMode != EditGame) return;
13710         if (!appData.showThinking) ToggleShowThinking();
13711         ResurrectChessProgram();
13712         SendToProgram("analyze\n", &first);
13713         first.analyzing = TRUE;
13714         /*first.maybeThinking = TRUE;*/
13715         first.maybeThinking = FALSE; /* avoid killing GNU Chess */
13716         EngineOutputPopUp();
13717     }
13718     gameMode = AnalyzeFile;
13719     pausing = FALSE;
13720     ModeHighlight();
13721
13722     StartAnalysisClock();
13723     GetTimeMark(&lastNodeCountTime);
13724     lastNodeCount = 0;
13725     if(appData.timeDelay > 0) StartLoadGameTimer((long)(1000.0f * appData.timeDelay));
13726     AnalysisPeriodicEvent(1);
13727 }
13728
13729 void
13730 MachineWhiteEvent ()
13731 {
13732     char buf[MSG_SIZ];
13733     char *bookHit = NULL;
13734
13735     if (appData.noChessProgram || (gameMode == MachinePlaysWhite))
13736       return;
13737
13738
13739     if (gameMode == PlayFromGameFile ||
13740         gameMode == TwoMachinesPlay  ||
13741         gameMode == Training         ||
13742         gameMode == AnalyzeMode      ||
13743         gameMode == EndOfGame)
13744         EditGameEvent();
13745
13746     if (gameMode == EditPosition)
13747         EditPositionDone(TRUE);
13748
13749     if (!WhiteOnMove(currentMove)) {
13750         DisplayError(_("It is not White's turn"), 0);
13751         return;
13752     }
13753
13754     if (gameMode == AnalyzeMode || gameMode == AnalyzeFile)
13755       ExitAnalyzeMode();
13756
13757     if (gameMode == EditGame || gameMode == AnalyzeMode ||
13758         gameMode == AnalyzeFile)
13759         TruncateGame();
13760
13761     ResurrectChessProgram();    /* in case it isn't running */
13762     if(gameMode == BeginningOfGame) { /* [HGM] time odds: to get right odds in human mode */
13763         gameMode = MachinePlaysWhite;
13764         ResetClocks();
13765     } else
13766     gameMode = MachinePlaysWhite;
13767     pausing = FALSE;
13768     ModeHighlight();
13769     SetGameInfo();
13770     snprintf(buf, MSG_SIZ, "%s %s %s", gameInfo.white, _("vs."), gameInfo.black);
13771     DisplayTitle(buf);
13772     if (first.sendName) {
13773       snprintf(buf, MSG_SIZ, "name %s\n", gameInfo.black);
13774       SendToProgram(buf, &first);
13775     }
13776     if (first.sendTime) {
13777       if (first.useColors) {
13778         SendToProgram("black\n", &first); /*gnu kludge*/
13779       }
13780       SendTimeRemaining(&first, TRUE);
13781     }
13782     if (first.useColors) {
13783       SendToProgram("white\n", &first); // [HGM] book: send 'go' separately
13784     }
13785     bookHit = SendMoveToBookUser(forwardMostMove-1, &first, TRUE); // [HGM] book: send go or retrieve book move
13786     SetMachineThinkingEnables();
13787     first.maybeThinking = TRUE;
13788     StartClocks();
13789     firstMove = FALSE;
13790
13791     if (appData.autoFlipView && !flipView) {
13792       flipView = !flipView;
13793       DrawPosition(FALSE, NULL);
13794       DisplayBothClocks();       // [HGM] logo: clocks might have to be exchanged;
13795     }
13796
13797     if(bookHit) { // [HGM] book: simulate book reply
13798         static char bookMove[MSG_SIZ]; // a bit generous?
13799
13800         programStats.nodes = programStats.depth = programStats.time =
13801         programStats.score = programStats.got_only_move = 0;
13802         sprintf(programStats.movelist, "%s (xbook)", bookHit);
13803
13804         safeStrCpy(bookMove, "move ", sizeof(bookMove)/sizeof(bookMove[0]));
13805         strcat(bookMove, bookHit);
13806         HandleMachineMove(bookMove, &first);
13807     }
13808 }
13809
13810 void
13811 MachineBlackEvent ()
13812 {
13813   char buf[MSG_SIZ];
13814   char *bookHit = NULL;
13815
13816     if (appData.noChessProgram || (gameMode == MachinePlaysBlack))
13817         return;
13818
13819
13820     if (gameMode == PlayFromGameFile ||
13821         gameMode == TwoMachinesPlay  ||
13822         gameMode == Training         ||
13823         gameMode == AnalyzeMode      ||
13824         gameMode == EndOfGame)
13825         EditGameEvent();
13826
13827     if (gameMode == EditPosition)
13828         EditPositionDone(TRUE);
13829
13830     if (WhiteOnMove(currentMove)) {
13831         DisplayError(_("It is not Black's turn"), 0);
13832         return;
13833     }
13834
13835     if (gameMode == AnalyzeMode || gameMode == AnalyzeFile)
13836       ExitAnalyzeMode();
13837
13838     if (gameMode == EditGame || gameMode == AnalyzeMode ||
13839         gameMode == AnalyzeFile)
13840         TruncateGame();
13841
13842     ResurrectChessProgram();    /* in case it isn't running */
13843     gameMode = MachinePlaysBlack;
13844     pausing = FALSE;
13845     ModeHighlight();
13846     SetGameInfo();
13847     snprintf(buf, MSG_SIZ, "%s %s %s", gameInfo.white, _("vs."), gameInfo.black);
13848     DisplayTitle(buf);
13849     if (first.sendName) {
13850       snprintf(buf, MSG_SIZ, "name %s\n", gameInfo.white);
13851       SendToProgram(buf, &first);
13852     }
13853     if (first.sendTime) {
13854       if (first.useColors) {
13855         SendToProgram("white\n", &first); /*gnu kludge*/
13856       }
13857       SendTimeRemaining(&first, FALSE);
13858     }
13859     if (first.useColors) {
13860       SendToProgram("black\n", &first); // [HGM] book: 'go' sent separately
13861     }
13862     bookHit = SendMoveToBookUser(forwardMostMove-1, &first, TRUE); // [HGM] book: send go or retrieve book move
13863     SetMachineThinkingEnables();
13864     first.maybeThinking = TRUE;
13865     StartClocks();
13866
13867     if (appData.autoFlipView && flipView) {
13868       flipView = !flipView;
13869       DrawPosition(FALSE, NULL);
13870       DisplayBothClocks();       // [HGM] logo: clocks might have to be exchanged;
13871     }
13872     if(bookHit) { // [HGM] book: simulate book reply
13873         static char bookMove[MSG_SIZ]; // a bit generous?
13874
13875         programStats.nodes = programStats.depth = programStats.time =
13876         programStats.score = programStats.got_only_move = 0;
13877         sprintf(programStats.movelist, "%s (xbook)", bookHit);
13878
13879         safeStrCpy(bookMove, "move ", sizeof(bookMove)/sizeof(bookMove[0]));
13880         strcat(bookMove, bookHit);
13881         HandleMachineMove(bookMove, &first);
13882     }
13883 }
13884
13885
13886 void
13887 DisplayTwoMachinesTitle ()
13888 {
13889     char buf[MSG_SIZ];
13890     if (appData.matchGames > 0) {
13891         if(appData.tourneyFile[0]) {
13892           snprintf(buf, MSG_SIZ, "%s %s %s (%d/%d%s)",
13893                    gameInfo.white, _("vs."), gameInfo.black,
13894                    nextGame+1, appData.matchGames+1,
13895                    appData.tourneyType>0 ? "gt" : appData.tourneyType<0 ? "sw" : "rr");
13896         } else
13897         if (first.twoMachinesColor[0] == 'w') {
13898           snprintf(buf, MSG_SIZ, "%s %s %s (%d-%d-%d)",
13899                    gameInfo.white, _("vs."),  gameInfo.black,
13900                    first.matchWins, second.matchWins,
13901                    matchGame - 1 - (first.matchWins + second.matchWins));
13902         } else {
13903           snprintf(buf, MSG_SIZ, "%s %s %s (%d-%d-%d)",
13904                    gameInfo.white, _("vs."), gameInfo.black,
13905                    second.matchWins, first.matchWins,
13906                    matchGame - 1 - (first.matchWins + second.matchWins));
13907         }
13908     } else {
13909       snprintf(buf, MSG_SIZ, "%s %s %s", gameInfo.white, _("vs."), gameInfo.black);
13910     }
13911     DisplayTitle(buf);
13912 }
13913
13914 void
13915 SettingsMenuIfReady ()
13916 {
13917   if (second.lastPing != second.lastPong) {
13918     DisplayMessage("", _("Waiting for second chess program"));
13919     ScheduleDelayedEvent(SettingsMenuIfReady, 10); // [HGM] fast: lowered from 1000
13920     return;
13921   }
13922   ThawUI();
13923   DisplayMessage("", "");
13924   SettingsPopUp(&second);
13925 }
13926
13927 int
13928 WaitForEngine (ChessProgramState *cps, DelayedEventCallback retry)
13929 {
13930     char buf[MSG_SIZ];
13931     if (cps->pr == NoProc) {
13932         StartChessProgram(cps);
13933         if (cps->protocolVersion == 1) {
13934           retry();
13935         } else {
13936           /* kludge: allow timeout for initial "feature" command */
13937           FreezeUI();
13938           snprintf(buf, MSG_SIZ, _("Starting %s chess program"), _(cps->which));
13939           DisplayMessage("", buf);
13940           ScheduleDelayedEvent(retry, FEATURE_TIMEOUT);
13941         }
13942         return 1;
13943     }
13944     return 0;
13945 }
13946
13947 void
13948 TwoMachinesEvent P((void))
13949 {
13950     int i;
13951     char buf[MSG_SIZ];
13952     ChessProgramState *onmove;
13953     char *bookHit = NULL;
13954     static int stalling = 0;
13955     TimeMark now;
13956     long wait;
13957
13958     if (appData.noChessProgram) return;
13959
13960     switch (gameMode) {
13961       case TwoMachinesPlay:
13962         return;
13963       case MachinePlaysWhite:
13964       case MachinePlaysBlack:
13965         if (WhiteOnMove(forwardMostMove) == (gameMode == MachinePlaysWhite)) {
13966             DisplayError(_("Wait until your turn,\nor select Move Now"), 0);
13967             return;
13968         }
13969         /* fall through */
13970       case BeginningOfGame:
13971       case PlayFromGameFile:
13972       case EndOfGame:
13973         EditGameEvent();
13974         if (gameMode != EditGame) return;
13975         break;
13976       case EditPosition:
13977         EditPositionDone(TRUE);
13978         break;
13979       case AnalyzeMode:
13980       case AnalyzeFile:
13981         ExitAnalyzeMode();
13982         break;
13983       case EditGame:
13984       default:
13985         break;
13986     }
13987
13988 //    forwardMostMove = currentMove;
13989     TruncateGame(); // [HGM] vari: MachineWhite and MachineBlack do this...
13990
13991     if(!ResurrectChessProgram()) return;   /* in case first program isn't running (unbalances its ping due to InitChessProgram!) */
13992
13993     if(WaitForEngine(&second, TwoMachinesEventIfReady)) return; // (if needed:) started up second engine, so wait for features
13994     if(first.lastPing != first.lastPong) { // [HGM] wait till we are sure first engine has set up position
13995       ScheduleDelayedEvent(TwoMachinesEventIfReady, 10);
13996       return;
13997     }
13998
13999     if(second.protocolVersion >= 2 && !strstr(second.variants, VariantName(gameInfo.variant))) {
14000         DisplayError("second engine does not play this", 0);
14001         return;
14002     }
14003
14004     if(!stalling) {
14005       InitChessProgram(&second, FALSE); // unbalances ping of second engine
14006       SendToProgram("force\n", &second);
14007       stalling = 1;
14008       ScheduleDelayedEvent(TwoMachinesEventIfReady, 10);
14009       return;
14010     }
14011     GetTimeMark(&now); // [HGM] matchpause: implement match pause after engine load
14012     if(appData.matchPause>10000 || appData.matchPause<10)
14013                 appData.matchPause = 10000; /* [HGM] make pause adjustable */
14014     wait = SubtractTimeMarks(&now, &pauseStart);
14015     if(wait < appData.matchPause) {
14016         ScheduleDelayedEvent(TwoMachinesEventIfReady, appData.matchPause - wait);
14017         return;
14018     }
14019     // we are now committed to starting the game
14020     stalling = 0;
14021     DisplayMessage("", "");
14022     if (startedFromSetupPosition) {
14023         SendBoard(&second, backwardMostMove);
14024     if (appData.debugMode) {
14025         fprintf(debugFP, "Two Machines\n");
14026     }
14027     }
14028     for (i = backwardMostMove; i < forwardMostMove; i++) {
14029         SendMoveToProgram(i, &second);
14030     }
14031
14032     gameMode = TwoMachinesPlay;
14033     pausing = FALSE;
14034     ModeHighlight(); // [HGM] logo: this triggers display update of logos
14035     SetGameInfo();
14036     DisplayTwoMachinesTitle();
14037     firstMove = TRUE;
14038     if ((first.twoMachinesColor[0] == 'w') == WhiteOnMove(forwardMostMove)) {
14039         onmove = &first;
14040     } else {
14041         onmove = &second;
14042     }
14043     if(appData.debugMode) fprintf(debugFP, "New game (%d): %s-%s (%c)\n", matchGame, first.tidy, second.tidy, first.twoMachinesColor[0]);
14044     SendToProgram(first.computerString, &first);
14045     if (first.sendName) {
14046       snprintf(buf, MSG_SIZ, "name %s\n", second.tidy);
14047       SendToProgram(buf, &first);
14048     }
14049     SendToProgram(second.computerString, &second);
14050     if (second.sendName) {
14051       snprintf(buf, MSG_SIZ, "name %s\n", first.tidy);
14052       SendToProgram(buf, &second);
14053     }
14054
14055     ResetClocks();
14056     if (!first.sendTime || !second.sendTime) {
14057         timeRemaining[0][forwardMostMove] = whiteTimeRemaining;
14058         timeRemaining[1][forwardMostMove] = blackTimeRemaining;
14059     }
14060     if (onmove->sendTime) {
14061       if (onmove->useColors) {
14062         SendToProgram(onmove->other->twoMachinesColor, onmove); /*gnu kludge*/
14063       }
14064       SendTimeRemaining(onmove, WhiteOnMove(forwardMostMove));
14065     }
14066     if (onmove->useColors) {
14067       SendToProgram(onmove->twoMachinesColor, onmove);
14068     }
14069     bookHit = SendMoveToBookUser(forwardMostMove-1, onmove, TRUE); // [HGM] book: send go or retrieve book move
14070 //    SendToProgram("go\n", onmove);
14071     onmove->maybeThinking = TRUE;
14072     SetMachineThinkingEnables();
14073
14074     StartClocks();
14075
14076     if(bookHit) { // [HGM] book: simulate book reply
14077         static char bookMove[MSG_SIZ]; // a bit generous?
14078
14079         programStats.nodes = programStats.depth = programStats.time =
14080         programStats.score = programStats.got_only_move = 0;
14081         sprintf(programStats.movelist, "%s (xbook)", bookHit);
14082
14083         safeStrCpy(bookMove, "move ", sizeof(bookMove)/sizeof(bookMove[0]));
14084         strcat(bookMove, bookHit);
14085         savedMessage = bookMove; // args for deferred call
14086         savedState = onmove;
14087         ScheduleDelayedEvent(DeferredBookMove, 1);
14088     }
14089 }
14090
14091 void
14092 TrainingEvent ()
14093 {
14094     if (gameMode == Training) {
14095       SetTrainingModeOff();
14096       gameMode = PlayFromGameFile;
14097       DisplayMessage("", _("Training mode off"));
14098     } else {
14099       gameMode = Training;
14100       animateTraining = appData.animate;
14101
14102       /* make sure we are not already at the end of the game */
14103       if (currentMove < forwardMostMove) {
14104         SetTrainingModeOn();
14105         DisplayMessage("", _("Training mode on"));
14106       } else {
14107         gameMode = PlayFromGameFile;
14108         DisplayError(_("Already at end of game"), 0);
14109       }
14110     }
14111     ModeHighlight();
14112 }
14113
14114 void
14115 IcsClientEvent ()
14116 {
14117     if (!appData.icsActive) return;
14118     switch (gameMode) {
14119       case IcsPlayingWhite:
14120       case IcsPlayingBlack:
14121       case IcsObserving:
14122       case IcsIdle:
14123       case BeginningOfGame:
14124       case IcsExamining:
14125         return;
14126
14127       case EditGame:
14128         break;
14129
14130       case EditPosition:
14131         EditPositionDone(TRUE);
14132         break;
14133
14134       case AnalyzeMode:
14135       case AnalyzeFile:
14136         ExitAnalyzeMode();
14137         break;
14138
14139       default:
14140         EditGameEvent();
14141         break;
14142     }
14143
14144     gameMode = IcsIdle;
14145     ModeHighlight();
14146     return;
14147 }
14148
14149 void
14150 EditGameEvent ()
14151 {
14152     int i;
14153
14154     switch (gameMode) {
14155       case Training:
14156         SetTrainingModeOff();
14157         break;
14158       case MachinePlaysWhite:
14159       case MachinePlaysBlack:
14160       case BeginningOfGame:
14161         SendToProgram("force\n", &first);
14162         SetUserThinkingEnables();
14163         break;
14164       case PlayFromGameFile:
14165         (void) StopLoadGameTimer();
14166         if (gameFileFP != NULL) {
14167             gameFileFP = NULL;
14168         }
14169         break;
14170       case EditPosition:
14171         EditPositionDone(TRUE);
14172         break;
14173       case AnalyzeMode:
14174       case AnalyzeFile:
14175         ExitAnalyzeMode();
14176         SendToProgram("force\n", &first);
14177         break;
14178       case TwoMachinesPlay:
14179         GameEnds(EndOfFile, NULL, GE_PLAYER);
14180         ResurrectChessProgram();
14181         SetUserThinkingEnables();
14182         break;
14183       case EndOfGame:
14184         ResurrectChessProgram();
14185         break;
14186       case IcsPlayingBlack:
14187       case IcsPlayingWhite:
14188         DisplayError(_("Warning: You are still playing a game"), 0);
14189         break;
14190       case IcsObserving:
14191         DisplayError(_("Warning: You are still observing a game"), 0);
14192         break;
14193       case IcsExamining:
14194         DisplayError(_("Warning: You are still examining a game"), 0);
14195         break;
14196       case IcsIdle:
14197         break;
14198       case EditGame:
14199       default:
14200         return;
14201     }
14202
14203     pausing = FALSE;
14204     StopClocks();
14205     first.offeredDraw = second.offeredDraw = 0;
14206
14207     if (gameMode == PlayFromGameFile) {
14208         whiteTimeRemaining = timeRemaining[0][currentMove];
14209         blackTimeRemaining = timeRemaining[1][currentMove];
14210         DisplayTitle("");
14211     }
14212
14213     if (gameMode == MachinePlaysWhite ||
14214         gameMode == MachinePlaysBlack ||
14215         gameMode == TwoMachinesPlay ||
14216         gameMode == EndOfGame) {
14217         i = forwardMostMove;
14218         while (i > currentMove) {
14219             SendToProgram("undo\n", &first);
14220             i--;
14221         }
14222         if(!adjustedClock) {
14223         whiteTimeRemaining = timeRemaining[0][currentMove];
14224         blackTimeRemaining = timeRemaining[1][currentMove];
14225         DisplayBothClocks();
14226         }
14227         if (whiteFlag || blackFlag) {
14228             whiteFlag = blackFlag = 0;
14229         }
14230         DisplayTitle("");
14231     }
14232
14233     gameMode = EditGame;
14234     ModeHighlight();
14235     SetGameInfo();
14236 }
14237
14238
14239 void
14240 EditPositionEvent ()
14241 {
14242     if (gameMode == EditPosition) {
14243         EditGameEvent();
14244         return;
14245     }
14246
14247     EditGameEvent();
14248     if (gameMode != EditGame) return;
14249
14250     gameMode = EditPosition;
14251     ModeHighlight();
14252     SetGameInfo();
14253     if (currentMove > 0)
14254       CopyBoard(boards[0], boards[currentMove]);
14255
14256     blackPlaysFirst = !WhiteOnMove(currentMove);
14257     ResetClocks();
14258     currentMove = forwardMostMove = backwardMostMove = 0;
14259     HistorySet(parseList, backwardMostMove, forwardMostMove, currentMove-1);
14260     DisplayMove(-1);
14261     if(!appData.pieceMenu) DisplayMessage(_("Click clock to clear board"), "");
14262 }
14263
14264 void
14265 ExitAnalyzeMode ()
14266 {
14267     /* [DM] icsEngineAnalyze - possible call from other functions */
14268     if (appData.icsEngineAnalyze) {
14269         appData.icsEngineAnalyze = FALSE;
14270
14271         DisplayMessage("",_("Close ICS engine analyze..."));
14272     }
14273     if (first.analysisSupport && first.analyzing) {
14274       SendToBoth("exit\n");
14275       first.analyzing = second.analyzing = FALSE;
14276     }
14277     thinkOutput[0] = NULLCHAR;
14278 }
14279
14280 void
14281 EditPositionDone (Boolean fakeRights)
14282 {
14283     int king = gameInfo.variant == VariantKnightmate ? WhiteUnicorn : WhiteKing;
14284
14285     startedFromSetupPosition = TRUE;
14286     InitChessProgram(&first, FALSE);
14287     if(fakeRights) { // [HGM] suppress this if we just pasted a FEN.
14288       boards[0][EP_STATUS] = EP_NONE;
14289       boards[0][CASTLING][2] = boards[0][CASTLING][5] = BOARD_WIDTH>>1;
14290       if(boards[0][0][BOARD_WIDTH>>1] == king) {
14291         boards[0][CASTLING][1] = boards[0][0][BOARD_LEFT] == WhiteRook ? BOARD_LEFT : NoRights;
14292         boards[0][CASTLING][0] = boards[0][0][BOARD_RGHT-1] == WhiteRook ? BOARD_RGHT-1 : NoRights;
14293       } else boards[0][CASTLING][2] = NoRights;
14294       if(boards[0][BOARD_HEIGHT-1][BOARD_WIDTH>>1] == WHITE_TO_BLACK king) {
14295         boards[0][CASTLING][4] = boards[0][BOARD_HEIGHT-1][BOARD_LEFT] == BlackRook ? BOARD_LEFT : NoRights;
14296         boards[0][CASTLING][3] = boards[0][BOARD_HEIGHT-1][BOARD_RGHT-1] == BlackRook ? BOARD_RGHT-1 : NoRights;
14297       } else boards[0][CASTLING][5] = NoRights;
14298       if(gameInfo.variant == VariantSChess) {
14299         int i;
14300         for(i=BOARD_LEFT; i<BOARD_RGHT; i++) { // pieces in their original position are assumed virgin
14301           boards[0][VIRGIN][i] = 0;
14302           if(boards[0][0][i]              == FIDEArray[0][i-BOARD_LEFT]) boards[0][VIRGIN][i] |= VIRGIN_W;
14303           if(boards[0][BOARD_HEIGHT-1][i] == FIDEArray[1][i-BOARD_LEFT]) boards[0][VIRGIN][i] |= VIRGIN_B;
14304         }
14305       }
14306     }
14307     SendToProgram("force\n", &first);
14308     if (blackPlaysFirst) {
14309         safeStrCpy(moveList[0], "", sizeof(moveList[0])/sizeof(moveList[0][0]));
14310         safeStrCpy(parseList[0], "", sizeof(parseList[0])/sizeof(parseList[0][0]));
14311         currentMove = forwardMostMove = backwardMostMove = 1;
14312         CopyBoard(boards[1], boards[0]);
14313     } else {
14314         currentMove = forwardMostMove = backwardMostMove = 0;
14315     }
14316     SendBoard(&first, forwardMostMove);
14317     if (appData.debugMode) {
14318         fprintf(debugFP, "EditPosDone\n");
14319     }
14320     DisplayTitle("");
14321     DisplayMessage("", "");
14322     timeRemaining[0][forwardMostMove] = whiteTimeRemaining;
14323     timeRemaining[1][forwardMostMove] = blackTimeRemaining;
14324     gameMode = EditGame;
14325     ModeHighlight();
14326     HistorySet(parseList, backwardMostMove, forwardMostMove, currentMove-1);
14327     ClearHighlights(); /* [AS] */
14328 }
14329
14330 /* Pause for `ms' milliseconds */
14331 /* !! Ugh, this is a kludge. Fix it sometime. --tpm */
14332 void
14333 TimeDelay (long ms)
14334 {
14335     TimeMark m1, m2;
14336
14337     GetTimeMark(&m1);
14338     do {
14339         GetTimeMark(&m2);
14340     } while (SubtractTimeMarks(&m2, &m1) < ms);
14341 }
14342
14343 /* !! Ugh, this is a kludge. Fix it sometime. --tpm */
14344 void
14345 SendMultiLineToICS (char *buf)
14346 {
14347     char temp[MSG_SIZ+1], *p;
14348     int len;
14349
14350     len = strlen(buf);
14351     if (len > MSG_SIZ)
14352       len = MSG_SIZ;
14353
14354     strncpy(temp, buf, len);
14355     temp[len] = 0;
14356
14357     p = temp;
14358     while (*p) {
14359         if (*p == '\n' || *p == '\r')
14360           *p = ' ';
14361         ++p;
14362     }
14363
14364     strcat(temp, "\n");
14365     SendToICS(temp);
14366     SendToPlayer(temp, strlen(temp));
14367 }
14368
14369 void
14370 SetWhiteToPlayEvent ()
14371 {
14372     if (gameMode == EditPosition) {
14373         blackPlaysFirst = FALSE;
14374         DisplayBothClocks();    /* works because currentMove is 0 */
14375     } else if (gameMode == IcsExamining) {
14376         SendToICS(ics_prefix);
14377         SendToICS("tomove white\n");
14378     }
14379 }
14380
14381 void
14382 SetBlackToPlayEvent ()
14383 {
14384     if (gameMode == EditPosition) {
14385         blackPlaysFirst = TRUE;
14386         currentMove = 1;        /* kludge */
14387         DisplayBothClocks();
14388         currentMove = 0;
14389     } else if (gameMode == IcsExamining) {
14390         SendToICS(ics_prefix);
14391         SendToICS("tomove black\n");
14392     }
14393 }
14394
14395 void
14396 EditPositionMenuEvent (ChessSquare selection, int x, int y)
14397 {
14398     char buf[MSG_SIZ];
14399     ChessSquare piece = boards[0][y][x];
14400
14401     if (gameMode != EditPosition && gameMode != IcsExamining) return;
14402
14403     switch (selection) {
14404       case ClearBoard:
14405         if (gameMode == IcsExamining && ics_type == ICS_FICS) {
14406             SendToICS(ics_prefix);
14407             SendToICS("bsetup clear\n");
14408         } else if (gameMode == IcsExamining && ics_type == ICS_ICC) {
14409             SendToICS(ics_prefix);
14410             SendToICS("clearboard\n");
14411         } else {
14412             for (x = 0; x < BOARD_WIDTH; x++) { ChessSquare p = EmptySquare;
14413                 if(x == BOARD_LEFT-1 || x == BOARD_RGHT) p = (ChessSquare) 0; /* [HGM] holdings */
14414                 for (y = 0; y < BOARD_HEIGHT; y++) {
14415                     if (gameMode == IcsExamining) {
14416                         if (boards[currentMove][y][x] != EmptySquare) {
14417                           snprintf(buf, MSG_SIZ, "%sx@%c%c\n", ics_prefix,
14418                                     AAA + x, ONE + y);
14419                             SendToICS(buf);
14420                         }
14421                     } else {
14422                         boards[0][y][x] = p;
14423                     }
14424                 }
14425             }
14426         }
14427         if (gameMode == EditPosition) {
14428             DrawPosition(FALSE, boards[0]);
14429         }
14430         break;
14431
14432       case WhitePlay:
14433         SetWhiteToPlayEvent();
14434         break;
14435
14436       case BlackPlay:
14437         SetBlackToPlayEvent();
14438         break;
14439
14440       case EmptySquare:
14441         if (gameMode == IcsExamining) {
14442             if (x < BOARD_LEFT || x >= BOARD_RGHT) break; // [HGM] holdings
14443             snprintf(buf, MSG_SIZ, "%sx@%c%c\n", ics_prefix, AAA + x, ONE + y);
14444             SendToICS(buf);
14445         } else {
14446             if(x < BOARD_LEFT || x >= BOARD_RGHT) {
14447                 if(x == BOARD_LEFT-2) {
14448                     if(y < BOARD_HEIGHT-1-gameInfo.holdingsSize) break;
14449                     boards[0][y][1] = 0;
14450                 } else
14451                 if(x == BOARD_RGHT+1) {
14452                     if(y >= gameInfo.holdingsSize) break;
14453                     boards[0][y][BOARD_WIDTH-2] = 0;
14454                 } else break;
14455             }
14456             boards[0][y][x] = EmptySquare;
14457             DrawPosition(FALSE, boards[0]);
14458         }
14459         break;
14460
14461       case PromotePiece:
14462         if(piece >= (int)WhitePawn && piece < (int)WhiteMan ||
14463            piece >= (int)BlackPawn && piece < (int)BlackMan   ) {
14464             selection = (ChessSquare) (PROMOTED piece);
14465         } else if(piece == EmptySquare) selection = WhiteSilver;
14466         else selection = (ChessSquare)((int)piece - 1);
14467         goto defaultlabel;
14468
14469       case DemotePiece:
14470         if(piece > (int)WhiteMan && piece <= (int)WhiteKing ||
14471            piece > (int)BlackMan && piece <= (int)BlackKing   ) {
14472             selection = (ChessSquare) (DEMOTED piece);
14473         } else if(piece == EmptySquare) selection = BlackSilver;
14474         else selection = (ChessSquare)((int)piece + 1);
14475         goto defaultlabel;
14476
14477       case WhiteQueen:
14478       case BlackQueen:
14479         if(gameInfo.variant == VariantShatranj ||
14480            gameInfo.variant == VariantXiangqi  ||
14481            gameInfo.variant == VariantCourier  ||
14482            gameInfo.variant == VariantMakruk     )
14483             selection = (ChessSquare)((int)selection - (int)WhiteQueen + (int)WhiteFerz);
14484         goto defaultlabel;
14485
14486       case WhiteKing:
14487       case BlackKing:
14488         if(gameInfo.variant == VariantXiangqi)
14489             selection = (ChessSquare)((int)selection - (int)WhiteKing + (int)WhiteWazir);
14490         if(gameInfo.variant == VariantKnightmate)
14491             selection = (ChessSquare)((int)selection - (int)WhiteKing + (int)WhiteUnicorn);
14492       default:
14493         defaultlabel:
14494         if (gameMode == IcsExamining) {
14495             if (x < BOARD_LEFT || x >= BOARD_RGHT) break; // [HGM] holdings
14496             snprintf(buf, MSG_SIZ, "%s%c@%c%c\n", ics_prefix,
14497                      PieceToChar(selection), AAA + x, ONE + y);
14498             SendToICS(buf);
14499         } else {
14500             if(x < BOARD_LEFT || x >= BOARD_RGHT) {
14501                 int n;
14502                 if(x == BOARD_LEFT-2 && selection >= BlackPawn) {
14503                     n = PieceToNumber(selection - BlackPawn);
14504                     if(n >= gameInfo.holdingsSize) { n = 0; selection = BlackPawn; }
14505                     boards[0][BOARD_HEIGHT-1-n][0] = selection;
14506                     boards[0][BOARD_HEIGHT-1-n][1]++;
14507                 } else
14508                 if(x == BOARD_RGHT+1 && selection < BlackPawn) {
14509                     n = PieceToNumber(selection);
14510                     if(n >= gameInfo.holdingsSize) { n = 0; selection = WhitePawn; }
14511                     boards[0][n][BOARD_WIDTH-1] = selection;
14512                     boards[0][n][BOARD_WIDTH-2]++;
14513                 }
14514             } else
14515             boards[0][y][x] = selection;
14516             DrawPosition(TRUE, boards[0]);
14517             ClearHighlights();
14518             fromX = fromY = -1;
14519         }
14520         break;
14521     }
14522 }
14523
14524
14525 void
14526 DropMenuEvent (ChessSquare selection, int x, int y)
14527 {
14528     ChessMove moveType;
14529
14530     switch (gameMode) {
14531       case IcsPlayingWhite:
14532       case MachinePlaysBlack:
14533         if (!WhiteOnMove(currentMove)) {
14534             DisplayMoveError(_("It is Black's turn"));
14535             return;
14536         }
14537         moveType = WhiteDrop;
14538         break;
14539       case IcsPlayingBlack:
14540       case MachinePlaysWhite:
14541         if (WhiteOnMove(currentMove)) {
14542             DisplayMoveError(_("It is White's turn"));
14543             return;
14544         }
14545         moveType = BlackDrop;
14546         break;
14547       case EditGame:
14548         moveType = WhiteOnMove(currentMove) ? WhiteDrop : BlackDrop;
14549         break;
14550       default:
14551         return;
14552     }
14553
14554     if (moveType == BlackDrop && selection < BlackPawn) {
14555       selection = (ChessSquare) ((int) selection
14556                                  + (int) BlackPawn - (int) WhitePawn);
14557     }
14558     if (boards[currentMove][y][x] != EmptySquare) {
14559         DisplayMoveError(_("That square is occupied"));
14560         return;
14561     }
14562
14563     FinishMove(moveType, (int) selection, DROP_RANK, x, y, NULLCHAR);
14564 }
14565
14566 void
14567 AcceptEvent ()
14568 {
14569     /* Accept a pending offer of any kind from opponent */
14570
14571     if (appData.icsActive) {
14572         SendToICS(ics_prefix);
14573         SendToICS("accept\n");
14574     } else if (cmailMsgLoaded) {
14575         if (currentMove == cmailOldMove &&
14576             commentList[cmailOldMove] != NULL &&
14577             StrStr(commentList[cmailOldMove], WhiteOnMove(cmailOldMove) ?
14578                    "Black offers a draw" : "White offers a draw")) {
14579             TruncateGame();
14580             GameEnds(GameIsDrawn, "Draw agreed", GE_PLAYER);
14581             cmailMoveType[lastLoadGameNumber - 1] = CMAIL_ACCEPT;
14582         } else {
14583             DisplayError(_("There is no pending offer on this move"), 0);
14584             cmailMoveType[lastLoadGameNumber - 1] = CMAIL_MOVE;
14585         }
14586     } else {
14587         /* Not used for offers from chess program */
14588     }
14589 }
14590
14591 void
14592 DeclineEvent ()
14593 {
14594     /* Decline a pending offer of any kind from opponent */
14595
14596     if (appData.icsActive) {
14597         SendToICS(ics_prefix);
14598         SendToICS("decline\n");
14599     } else if (cmailMsgLoaded) {
14600         if (currentMove == cmailOldMove &&
14601             commentList[cmailOldMove] != NULL &&
14602             StrStr(commentList[cmailOldMove], WhiteOnMove(cmailOldMove) ?
14603                    "Black offers a draw" : "White offers a draw")) {
14604 #ifdef NOTDEF
14605             AppendComment(cmailOldMove, "Draw declined", TRUE);
14606             DisplayComment(cmailOldMove - 1, "Draw declined");
14607 #endif /*NOTDEF*/
14608         } else {
14609             DisplayError(_("There is no pending offer on this move"), 0);
14610         }
14611     } else {
14612         /* Not used for offers from chess program */
14613     }
14614 }
14615
14616 void
14617 RematchEvent ()
14618 {
14619     /* Issue ICS rematch command */
14620     if (appData.icsActive) {
14621         SendToICS(ics_prefix);
14622         SendToICS("rematch\n");
14623     }
14624 }
14625
14626 void
14627 CallFlagEvent ()
14628 {
14629     /* Call your opponent's flag (claim a win on time) */
14630     if (appData.icsActive) {
14631         SendToICS(ics_prefix);
14632         SendToICS("flag\n");
14633     } else {
14634         switch (gameMode) {
14635           default:
14636             return;
14637           case MachinePlaysWhite:
14638             if (whiteFlag) {
14639                 if (blackFlag)
14640                   GameEnds(GameIsDrawn, "Both players ran out of time",
14641                            GE_PLAYER);
14642                 else
14643                   GameEnds(BlackWins, "Black wins on time", GE_PLAYER);
14644             } else {
14645                 DisplayError(_("Your opponent is not out of time"), 0);
14646             }
14647             break;
14648           case MachinePlaysBlack:
14649             if (blackFlag) {
14650                 if (whiteFlag)
14651                   GameEnds(GameIsDrawn, "Both players ran out of time",
14652                            GE_PLAYER);
14653                 else
14654                   GameEnds(WhiteWins, "White wins on time", GE_PLAYER);
14655             } else {
14656                 DisplayError(_("Your opponent is not out of time"), 0);
14657             }
14658             break;
14659         }
14660     }
14661 }
14662
14663 void
14664 ClockClick (int which)
14665 {       // [HGM] code moved to back-end from winboard.c
14666         if(which) { // black clock
14667           if (gameMode == EditPosition || gameMode == IcsExamining) {
14668             if(!appData.pieceMenu && blackPlaysFirst) EditPositionMenuEvent(ClearBoard, 0, 0);
14669             SetBlackToPlayEvent();
14670           } else if ((gameMode == AnalyzeMode || gameMode == EditGame) && !blackFlag && WhiteOnMove(currentMove)) {
14671           UserMoveEvent((int)EmptySquare, DROP_RANK, 0, 0, 0); // [HGM] multi-move: if not out of time, enters null move
14672           } else if (shiftKey) {
14673             AdjustClock(which, -1);
14674           } else if (gameMode == IcsPlayingWhite ||
14675                      gameMode == MachinePlaysBlack) {
14676             CallFlagEvent();
14677           }
14678         } else { // white clock
14679           if (gameMode == EditPosition || gameMode == IcsExamining) {
14680             if(!appData.pieceMenu && !blackPlaysFirst) EditPositionMenuEvent(ClearBoard, 0, 0);
14681             SetWhiteToPlayEvent();
14682           } else if ((gameMode == AnalyzeMode || gameMode == EditGame) && !whiteFlag && !WhiteOnMove(currentMove)) {
14683           UserMoveEvent((int)EmptySquare, DROP_RANK, 0, 0, 0); // [HGM] multi-move
14684           } else if (shiftKey) {
14685             AdjustClock(which, -1);
14686           } else if (gameMode == IcsPlayingBlack ||
14687                    gameMode == MachinePlaysWhite) {
14688             CallFlagEvent();
14689           }
14690         }
14691 }
14692
14693 void
14694 DrawEvent ()
14695 {
14696     /* Offer draw or accept pending draw offer from opponent */
14697
14698     if (appData.icsActive) {
14699         /* Note: tournament rules require draw offers to be
14700            made after you make your move but before you punch
14701            your clock.  Currently ICS doesn't let you do that;
14702            instead, you immediately punch your clock after making
14703            a move, but you can offer a draw at any time. */
14704
14705         SendToICS(ics_prefix);
14706         SendToICS("draw\n");
14707         userOfferedDraw = TRUE; // [HGM] drawclaim: also set flag in ICS play
14708     } else if (cmailMsgLoaded) {
14709         if (currentMove == cmailOldMove &&
14710             commentList[cmailOldMove] != NULL &&
14711             StrStr(commentList[cmailOldMove], WhiteOnMove(cmailOldMove) ?
14712                    "Black offers a draw" : "White offers a draw")) {
14713             GameEnds(GameIsDrawn, "Draw agreed", GE_PLAYER);
14714             cmailMoveType[lastLoadGameNumber - 1] = CMAIL_ACCEPT;
14715         } else if (currentMove == cmailOldMove + 1) {
14716             char *offer = WhiteOnMove(cmailOldMove) ?
14717               "White offers a draw" : "Black offers a draw";
14718             AppendComment(currentMove, offer, TRUE);
14719             DisplayComment(currentMove - 1, offer);
14720             cmailMoveType[lastLoadGameNumber - 1] = CMAIL_DRAW;
14721         } else {
14722             DisplayError(_("You must make your move before offering a draw"), 0);
14723             cmailMoveType[lastLoadGameNumber - 1] = CMAIL_MOVE;
14724         }
14725     } else if (first.offeredDraw) {
14726         GameEnds(GameIsDrawn, "Draw agreed", GE_XBOARD);
14727     } else {
14728         if (first.sendDrawOffers) {
14729             SendToProgram("draw\n", &first);
14730             userOfferedDraw = TRUE;
14731         }
14732     }
14733 }
14734
14735 void
14736 AdjournEvent ()
14737 {
14738     /* Offer Adjourn or accept pending Adjourn offer from opponent */
14739
14740     if (appData.icsActive) {
14741         SendToICS(ics_prefix);
14742         SendToICS("adjourn\n");
14743     } else {
14744         /* Currently GNU Chess doesn't offer or accept Adjourns */
14745     }
14746 }
14747
14748
14749 void
14750 AbortEvent ()
14751 {
14752     /* Offer Abort or accept pending Abort offer from opponent */
14753
14754     if (appData.icsActive) {
14755         SendToICS(ics_prefix);
14756         SendToICS("abort\n");
14757     } else {
14758         GameEnds(GameUnfinished, "Game aborted", GE_PLAYER);
14759     }
14760 }
14761
14762 void
14763 ResignEvent ()
14764 {
14765     /* Resign.  You can do this even if it's not your turn. */
14766
14767     if (appData.icsActive) {
14768         SendToICS(ics_prefix);
14769         SendToICS("resign\n");
14770     } else {
14771         switch (gameMode) {
14772           case MachinePlaysWhite:
14773             GameEnds(WhiteWins, "Black resigns", GE_PLAYER);
14774             break;
14775           case MachinePlaysBlack:
14776             GameEnds(BlackWins, "White resigns", GE_PLAYER);
14777             break;
14778           case EditGame:
14779             if (cmailMsgLoaded) {
14780                 TruncateGame();
14781                 if (WhiteOnMove(cmailOldMove)) {
14782                     GameEnds(BlackWins, "White resigns", GE_PLAYER);
14783                 } else {
14784                     GameEnds(WhiteWins, "Black resigns", GE_PLAYER);
14785                 }
14786                 cmailMoveType[lastLoadGameNumber - 1] = CMAIL_RESIGN;
14787             }
14788             break;
14789           default:
14790             break;
14791         }
14792     }
14793 }
14794
14795
14796 void
14797 StopObservingEvent ()
14798 {
14799     /* Stop observing current games */
14800     SendToICS(ics_prefix);
14801     SendToICS("unobserve\n");
14802 }
14803
14804 void
14805 StopExaminingEvent ()
14806 {
14807     /* Stop observing current game */
14808     SendToICS(ics_prefix);
14809     SendToICS("unexamine\n");
14810 }
14811
14812 void
14813 ForwardInner (int target)
14814 {
14815     int limit; int oldSeekGraphUp = seekGraphUp;
14816
14817     if (appData.debugMode)
14818         fprintf(debugFP, "ForwardInner(%d), current %d, forward %d\n",
14819                 target, currentMove, forwardMostMove);
14820
14821     if (gameMode == EditPosition)
14822       return;
14823
14824     seekGraphUp = FALSE;
14825     MarkTargetSquares(1);
14826
14827     if (gameMode == PlayFromGameFile && !pausing)
14828       PauseEvent();
14829
14830     if (gameMode == IcsExamining && pausing)
14831       limit = pauseExamForwardMostMove;
14832     else
14833       limit = forwardMostMove;
14834
14835     if (target > limit) target = limit;
14836
14837     if (target > 0 && moveList[target - 1][0]) {
14838         int fromX, fromY, toX, toY;
14839         toX = moveList[target - 1][2] - AAA;
14840         toY = moveList[target - 1][3] - ONE;
14841         if (moveList[target - 1][1] == '@') {
14842             if (appData.highlightLastMove) {
14843                 SetHighlights(-1, -1, toX, toY);
14844             }
14845         } else {
14846             fromX = moveList[target - 1][0] - AAA;
14847             fromY = moveList[target - 1][1] - ONE;
14848             if (target == currentMove + 1) {
14849                 AnimateMove(boards[currentMove], fromX, fromY, toX, toY);
14850             }
14851             if (appData.highlightLastMove) {
14852                 SetHighlights(fromX, fromY, toX, toY);
14853             }
14854         }
14855     }
14856     if (gameMode == EditGame || gameMode == AnalyzeMode ||
14857         gameMode == Training || gameMode == PlayFromGameFile ||
14858         gameMode == AnalyzeFile) {
14859         while (currentMove < target) {
14860             if(second.analyzing) SendMoveToProgram(currentMove, &second);
14861             SendMoveToProgram(currentMove++, &first);
14862         }
14863     } else {
14864         currentMove = target;
14865     }
14866
14867     if (gameMode == EditGame || gameMode == EndOfGame) {
14868         whiteTimeRemaining = timeRemaining[0][currentMove];
14869         blackTimeRemaining = timeRemaining[1][currentMove];
14870     }
14871     DisplayBothClocks();
14872     DisplayMove(currentMove - 1);
14873     DrawPosition(oldSeekGraphUp, boards[currentMove]);
14874     HistorySet(parseList,backwardMostMove,forwardMostMove,currentMove-1);
14875     if ( !matchMode && gameMode != Training) { // [HGM] PV info: routine tests if empty
14876         DisplayComment(currentMove - 1, commentList[currentMove]);
14877     }
14878     ClearMap(); // [HGM] exclude: invalidate map
14879 }
14880
14881
14882 void
14883 ForwardEvent ()
14884 {
14885     if (gameMode == IcsExamining && !pausing) {
14886         SendToICS(ics_prefix);
14887         SendToICS("forward\n");
14888     } else {
14889         ForwardInner(currentMove + 1);
14890     }
14891 }
14892
14893 void
14894 ToEndEvent ()
14895 {
14896     if (gameMode == AnalyzeMode || gameMode == AnalyzeFile) {
14897         /* to optimze, we temporarily turn off analysis mode while we feed
14898          * the remaining moves to the engine. Otherwise we get analysis output
14899          * after each move.
14900          */
14901         if (first.analysisSupport) {
14902           SendToProgram("exit\nforce\n", &first);
14903           first.analyzing = FALSE;
14904         }
14905     }
14906
14907     if (gameMode == IcsExamining && !pausing) {
14908         SendToICS(ics_prefix);
14909         SendToICS("forward 999999\n");
14910     } else {
14911         ForwardInner(forwardMostMove);
14912     }
14913
14914     if (gameMode == AnalyzeMode || gameMode == AnalyzeFile) {
14915         /* we have fed all the moves, so reactivate analysis mode */
14916         SendToProgram("analyze\n", &first);
14917         first.analyzing = TRUE;
14918         /*first.maybeThinking = TRUE;*/
14919         first.maybeThinking = FALSE; /* avoid killing GNU Chess */
14920     }
14921 }
14922
14923 void
14924 BackwardInner (int target)
14925 {
14926     int full_redraw = TRUE; /* [AS] Was FALSE, had to change it! */
14927
14928     if (appData.debugMode)
14929         fprintf(debugFP, "BackwardInner(%d), current %d, forward %d\n",
14930                 target, currentMove, forwardMostMove);
14931
14932     if (gameMode == EditPosition) return;
14933     seekGraphUp = FALSE;
14934     MarkTargetSquares(1);
14935     if (currentMove <= backwardMostMove) {
14936         ClearHighlights();
14937         DrawPosition(full_redraw, boards[currentMove]);
14938         return;
14939     }
14940     if (gameMode == PlayFromGameFile && !pausing)
14941       PauseEvent();
14942
14943     if (moveList[target][0]) {
14944         int fromX, fromY, toX, toY;
14945         toX = moveList[target][2] - AAA;
14946         toY = moveList[target][3] - ONE;
14947         if (moveList[target][1] == '@') {
14948             if (appData.highlightLastMove) {
14949                 SetHighlights(-1, -1, toX, toY);
14950             }
14951         } else {
14952             fromX = moveList[target][0] - AAA;
14953             fromY = moveList[target][1] - ONE;
14954             if (target == currentMove - 1) {
14955                 AnimateMove(boards[currentMove], toX, toY, fromX, fromY);
14956             }
14957             if (appData.highlightLastMove) {
14958                 SetHighlights(fromX, fromY, toX, toY);
14959             }
14960         }
14961     }
14962     if (gameMode == EditGame || gameMode==AnalyzeMode ||
14963         gameMode == PlayFromGameFile || gameMode == AnalyzeFile) {
14964         while (currentMove > target) {
14965             if(moveList[currentMove-1][1] == '@' && moveList[currentMove-1][0] == '@') {
14966                 // null move cannot be undone. Reload program with move history before it.
14967                 int i;
14968                 for(i=target; i>backwardMostMove; i--) { // seek back to start or previous null move
14969                     if(moveList[i-1][1] == '@' && moveList[i-1][0] == '@') break;
14970                 }
14971                 SendBoard(&first, i);
14972               if(second.analyzing) SendBoard(&second, i);
14973                 for(currentMove=i; currentMove<target; currentMove++) {
14974                     SendMoveToProgram(currentMove, &first);
14975                     if(second.analyzing) SendMoveToProgram(currentMove, &second);
14976                 }
14977                 break;
14978             }
14979             SendToBoth("undo\n");
14980             currentMove--;
14981         }
14982     } else {
14983         currentMove = target;
14984     }
14985
14986     if (gameMode == EditGame || gameMode == EndOfGame) {
14987         whiteTimeRemaining = timeRemaining[0][currentMove];
14988         blackTimeRemaining = timeRemaining[1][currentMove];
14989     }
14990     DisplayBothClocks();
14991     DisplayMove(currentMove - 1);
14992     DrawPosition(full_redraw, boards[currentMove]);
14993     HistorySet(parseList,backwardMostMove,forwardMostMove,currentMove-1);
14994     // [HGM] PV info: routine tests if comment empty
14995     DisplayComment(currentMove - 1, commentList[currentMove]);
14996     ClearMap(); // [HGM] exclude: invalidate map
14997 }
14998
14999 void
15000 BackwardEvent ()
15001 {
15002     if (gameMode == IcsExamining && !pausing) {
15003         SendToICS(ics_prefix);
15004         SendToICS("backward\n");
15005     } else {
15006         BackwardInner(currentMove - 1);
15007     }
15008 }
15009
15010 void
15011 ToStartEvent ()
15012 {
15013     if (gameMode == AnalyzeMode || gameMode == AnalyzeFile) {
15014         /* to optimize, we temporarily turn off analysis mode while we undo
15015          * all the moves. Otherwise we get analysis output after each undo.
15016          */
15017         if (first.analysisSupport) {
15018           SendToProgram("exit\nforce\n", &first);
15019           first.analyzing = FALSE;
15020         }
15021     }
15022
15023     if (gameMode == IcsExamining && !pausing) {
15024         SendToICS(ics_prefix);
15025         SendToICS("backward 999999\n");
15026     } else {
15027         BackwardInner(backwardMostMove);
15028     }
15029
15030     if (gameMode == AnalyzeMode || gameMode == AnalyzeFile) {
15031         /* we have fed all the moves, so reactivate analysis mode */
15032         SendToProgram("analyze\n", &first);
15033         first.analyzing = TRUE;
15034         /*first.maybeThinking = TRUE;*/
15035         first.maybeThinking = FALSE; /* avoid killing GNU Chess */
15036     }
15037 }
15038
15039 void
15040 ToNrEvent (int to)
15041 {
15042   if (gameMode == PlayFromGameFile && !pausing) PauseEvent();
15043   if (to >= forwardMostMove) to = forwardMostMove;
15044   if (to <= backwardMostMove) to = backwardMostMove;
15045   if (to < currentMove) {
15046     BackwardInner(to);
15047   } else {
15048     ForwardInner(to);
15049   }
15050 }
15051
15052 void
15053 RevertEvent (Boolean annotate)
15054 {
15055     if(PopTail(annotate)) { // [HGM] vari: restore old game tail
15056         return;
15057     }
15058     if (gameMode != IcsExamining) {
15059         DisplayError(_("You are not examining a game"), 0);
15060         return;
15061     }
15062     if (pausing) {
15063         DisplayError(_("You can't revert while pausing"), 0);
15064         return;
15065     }
15066     SendToICS(ics_prefix);
15067     SendToICS("revert\n");
15068 }
15069
15070 void
15071 RetractMoveEvent ()
15072 {
15073     switch (gameMode) {
15074       case MachinePlaysWhite:
15075       case MachinePlaysBlack:
15076         if (WhiteOnMove(forwardMostMove) == (gameMode == MachinePlaysWhite)) {
15077             DisplayError(_("Wait until your turn,\nor select Move Now"), 0);
15078             return;
15079         }
15080         if (forwardMostMove < 2) return;
15081         currentMove = forwardMostMove = forwardMostMove - 2;
15082         whiteTimeRemaining = timeRemaining[0][currentMove];
15083         blackTimeRemaining = timeRemaining[1][currentMove];
15084         DisplayBothClocks();
15085         DisplayMove(currentMove - 1);
15086         ClearHighlights();/*!! could figure this out*/
15087         DrawPosition(TRUE, boards[currentMove]); /* [AS] Changed to full redraw! */
15088         SendToProgram("remove\n", &first);
15089         /*first.maybeThinking = TRUE;*/ /* GNU Chess does not ponder here */
15090         break;
15091
15092       case BeginningOfGame:
15093       default:
15094         break;
15095
15096       case IcsPlayingWhite:
15097       case IcsPlayingBlack:
15098         if (WhiteOnMove(forwardMostMove) == (gameMode == IcsPlayingWhite)) {
15099             SendToICS(ics_prefix);
15100             SendToICS("takeback 2\n");
15101         } else {
15102             SendToICS(ics_prefix);
15103             SendToICS("takeback 1\n");
15104         }
15105         break;
15106     }
15107 }
15108
15109 void
15110 MoveNowEvent ()
15111 {
15112     ChessProgramState *cps;
15113
15114     switch (gameMode) {
15115       case MachinePlaysWhite:
15116         if (!WhiteOnMove(forwardMostMove)) {
15117             DisplayError(_("It is your turn"), 0);
15118             return;
15119         }
15120         cps = &first;
15121         break;
15122       case MachinePlaysBlack:
15123         if (WhiteOnMove(forwardMostMove)) {
15124             DisplayError(_("It is your turn"), 0);
15125             return;
15126         }
15127         cps = &first;
15128         break;
15129       case TwoMachinesPlay:
15130         if (WhiteOnMove(forwardMostMove) ==
15131             (first.twoMachinesColor[0] == 'w')) {
15132             cps = &first;
15133         } else {
15134             cps = &second;
15135         }
15136         break;
15137       case BeginningOfGame:
15138       default:
15139         return;
15140     }
15141     SendToProgram("?\n", cps);
15142 }
15143
15144 void
15145 TruncateGameEvent ()
15146 {
15147     EditGameEvent();
15148     if (gameMode != EditGame) return;
15149     TruncateGame();
15150 }
15151
15152 void
15153 TruncateGame ()
15154 {
15155     CleanupTail(); // [HGM] vari: only keep current variation if we explicitly truncate
15156     if (forwardMostMove > currentMove) {
15157         if (gameInfo.resultDetails != NULL) {
15158             free(gameInfo.resultDetails);
15159             gameInfo.resultDetails = NULL;
15160             gameInfo.result = GameUnfinished;
15161         }
15162         forwardMostMove = currentMove;
15163         HistorySet(parseList, backwardMostMove, forwardMostMove,
15164                    currentMove-1);
15165     }
15166 }
15167
15168 void
15169 HintEvent ()
15170 {
15171     if (appData.noChessProgram) return;
15172     switch (gameMode) {
15173       case MachinePlaysWhite:
15174         if (WhiteOnMove(forwardMostMove)) {
15175             DisplayError(_("Wait until your turn"), 0);
15176             return;
15177         }
15178         break;
15179       case BeginningOfGame:
15180       case MachinePlaysBlack:
15181         if (!WhiteOnMove(forwardMostMove)) {
15182             DisplayError(_("Wait until your turn"), 0);
15183             return;
15184         }
15185         break;
15186       default:
15187         DisplayError(_("No hint available"), 0);
15188         return;
15189     }
15190     SendToProgram("hint\n", &first);
15191     hintRequested = TRUE;
15192 }
15193
15194 void
15195 CreateBookEvent ()
15196 {
15197     ListGame * lg = (ListGame *) gameList.head;
15198     FILE *f;
15199     int nItem;
15200     static int secondTime = FALSE;
15201
15202     if( !(f = GameFile()) || ((ListGame *) gameList.tailPred)->number <= 0 ) {
15203         DisplayError(_("Game list not loaded or empty"), 0);
15204         return;
15205     }
15206
15207     if(!secondTime && (f = fopen(appData.polyglotBook, "r"))) {
15208         fclose(f);
15209         secondTime++;
15210         DisplayNote(_("Book file exists! Try again for overwrite."));
15211         return;
15212     }
15213
15214     creatingBook = TRUE;
15215     secondTime = FALSE;
15216
15217     /* Get list size */
15218     for (nItem = 1; nItem <= ((ListGame *) gameList.tailPred)->number; nItem++){
15219         LoadGame(f, nItem, "", TRUE);
15220         AddGameToBook(TRUE);
15221         lg = (ListGame *) lg->node.succ;
15222     }
15223
15224     creatingBook = FALSE;
15225     FlushBook();
15226 }
15227
15228 void
15229 BookEvent ()
15230 {
15231     if (appData.noChessProgram) return;
15232     switch (gameMode) {
15233       case MachinePlaysWhite:
15234         if (WhiteOnMove(forwardMostMove)) {
15235             DisplayError(_("Wait until your turn"), 0);
15236             return;
15237         }
15238         break;
15239       case BeginningOfGame:
15240       case MachinePlaysBlack:
15241         if (!WhiteOnMove(forwardMostMove)) {
15242             DisplayError(_("Wait until your turn"), 0);
15243             return;
15244         }
15245         break;
15246       case EditPosition:
15247         EditPositionDone(TRUE);
15248         break;
15249       case TwoMachinesPlay:
15250         return;
15251       default:
15252         break;
15253     }
15254     SendToProgram("bk\n", &first);
15255     bookOutput[0] = NULLCHAR;
15256     bookRequested = TRUE;
15257 }
15258
15259 void
15260 AboutGameEvent ()
15261 {
15262     char *tags = PGNTags(&gameInfo);
15263     TagsPopUp(tags, CmailMsg());
15264     free(tags);
15265 }
15266
15267 /* end button procedures */
15268
15269 void
15270 PrintPosition (FILE *fp, int move)
15271 {
15272     int i, j;
15273
15274     for (i = BOARD_HEIGHT - 1; i >= 0; i--) {
15275         for (j = BOARD_LEFT; j < BOARD_RGHT; j++) {
15276             char c = PieceToChar(boards[move][i][j]);
15277             fputc(c == 'x' ? '.' : c, fp);
15278             fputc(j == BOARD_RGHT - 1 ? '\n' : ' ', fp);
15279         }
15280     }
15281     if ((gameMode == EditPosition) ? !blackPlaysFirst : (move % 2 == 0))
15282       fprintf(fp, "white to play\n");
15283     else
15284       fprintf(fp, "black to play\n");
15285 }
15286
15287 void
15288 PrintOpponents (FILE *fp)
15289 {
15290     if (gameInfo.white != NULL) {
15291         fprintf(fp, "\t%s vs. %s\n", gameInfo.white, gameInfo.black);
15292     } else {
15293         fprintf(fp, "\n");
15294     }
15295 }
15296
15297 /* Find last component of program's own name, using some heuristics */
15298 void
15299 TidyProgramName (char *prog, char *host, char buf[MSG_SIZ])
15300 {
15301     char *p, *q, c;
15302     int local = (strcmp(host, "localhost") == 0);
15303     while (!local && (p = strchr(prog, ';')) != NULL) {
15304         p++;
15305         while (*p == ' ') p++;
15306         prog = p;
15307     }
15308     if (*prog == '"' || *prog == '\'') {
15309         q = strchr(prog + 1, *prog);
15310     } else {
15311         q = strchr(prog, ' ');
15312     }
15313     if (q == NULL) q = prog + strlen(prog);
15314     p = q;
15315     while (p >= prog && *p != '/' && *p != '\\') p--;
15316     p++;
15317     if(p == prog && *p == '"') p++;
15318     c = *q; *q = 0;
15319     if (q - p >= 4 && StrCaseCmp(q - 4, ".exe") == 0) *q = c, q -= 4; else *q = c;
15320     memcpy(buf, p, q - p);
15321     buf[q - p] = NULLCHAR;
15322     if (!local) {
15323         strcat(buf, "@");
15324         strcat(buf, host);
15325     }
15326 }
15327
15328 char *
15329 TimeControlTagValue ()
15330 {
15331     char buf[MSG_SIZ];
15332     if (!appData.clockMode) {
15333       safeStrCpy(buf, "-", sizeof(buf)/sizeof(buf[0]));
15334     } else if (movesPerSession > 0) {
15335       snprintf(buf, MSG_SIZ, "%d/%ld", movesPerSession, timeControl/1000);
15336     } else if (timeIncrement == 0) {
15337       snprintf(buf, MSG_SIZ, "%ld", timeControl/1000);
15338     } else {
15339       snprintf(buf, MSG_SIZ, "%ld+%ld", timeControl/1000, timeIncrement/1000);
15340     }
15341     return StrSave(buf);
15342 }
15343
15344 void
15345 SetGameInfo ()
15346 {
15347     /* This routine is used only for certain modes */
15348     VariantClass v = gameInfo.variant;
15349     ChessMove r = GameUnfinished;
15350     char *p = NULL;
15351
15352     if(keepInfo) return;
15353
15354     if(gameMode == EditGame) { // [HGM] vari: do not erase result on EditGame
15355         r = gameInfo.result;
15356         p = gameInfo.resultDetails;
15357         gameInfo.resultDetails = NULL;
15358     }
15359     ClearGameInfo(&gameInfo);
15360     gameInfo.variant = v;
15361
15362     switch (gameMode) {
15363       case MachinePlaysWhite:
15364         gameInfo.event = StrSave( appData.pgnEventHeader );
15365         gameInfo.site = StrSave(HostName());
15366         gameInfo.date = PGNDate();
15367         gameInfo.round = StrSave("-");
15368         gameInfo.white = StrSave(first.tidy);
15369         gameInfo.black = StrSave(UserName());
15370         gameInfo.timeControl = TimeControlTagValue();
15371         break;
15372
15373       case MachinePlaysBlack:
15374         gameInfo.event = StrSave( appData.pgnEventHeader );
15375         gameInfo.site = StrSave(HostName());
15376         gameInfo.date = PGNDate();
15377         gameInfo.round = StrSave("-");
15378         gameInfo.white = StrSave(UserName());
15379         gameInfo.black = StrSave(first.tidy);
15380         gameInfo.timeControl = TimeControlTagValue();
15381         break;
15382
15383       case TwoMachinesPlay:
15384         gameInfo.event = StrSave( appData.pgnEventHeader );
15385         gameInfo.site = StrSave(HostName());
15386         gameInfo.date = PGNDate();
15387         if (roundNr > 0) {
15388             char buf[MSG_SIZ];
15389             snprintf(buf, MSG_SIZ, "%d", roundNr);
15390             gameInfo.round = StrSave(buf);
15391         } else {
15392             gameInfo.round = StrSave("-");
15393         }
15394         if (first.twoMachinesColor[0] == 'w') {
15395             gameInfo.white = StrSave(appData.pgnName[0][0] ? appData.pgnName[0] : first.tidy);
15396             gameInfo.black = StrSave(appData.pgnName[1][0] ? appData.pgnName[1] : second.tidy);
15397         } else {
15398             gameInfo.white = StrSave(appData.pgnName[1][0] ? appData.pgnName[1] : second.tidy);
15399             gameInfo.black = StrSave(appData.pgnName[0][0] ? appData.pgnName[0] : first.tidy);
15400         }
15401         gameInfo.timeControl = TimeControlTagValue();
15402         break;
15403
15404       case EditGame:
15405         gameInfo.event = StrSave("Edited game");
15406         gameInfo.site = StrSave(HostName());
15407         gameInfo.date = PGNDate();
15408         gameInfo.round = StrSave("-");
15409         gameInfo.white = StrSave("-");
15410         gameInfo.black = StrSave("-");
15411         gameInfo.result = r;
15412         gameInfo.resultDetails = p;
15413         break;
15414
15415       case EditPosition:
15416         gameInfo.event = StrSave("Edited position");
15417         gameInfo.site = StrSave(HostName());
15418         gameInfo.date = PGNDate();
15419         gameInfo.round = StrSave("-");
15420         gameInfo.white = StrSave("-");
15421         gameInfo.black = StrSave("-");
15422         break;
15423
15424       case IcsPlayingWhite:
15425       case IcsPlayingBlack:
15426       case IcsObserving:
15427       case IcsExamining:
15428         break;
15429
15430       case PlayFromGameFile:
15431         gameInfo.event = StrSave("Game from non-PGN file");
15432         gameInfo.site = StrSave(HostName());
15433         gameInfo.date = PGNDate();
15434         gameInfo.round = StrSave("-");
15435         gameInfo.white = StrSave("?");
15436         gameInfo.black = StrSave("?");
15437         break;
15438
15439       default:
15440         break;
15441     }
15442 }
15443
15444 void
15445 ReplaceComment (int index, char *text)
15446 {
15447     int len;
15448     char *p;
15449     float score;
15450
15451     if(index && sscanf(text, "%f/%d", &score, &len) == 2 &&
15452        pvInfoList[index-1].depth == len &&
15453        fabs(pvInfoList[index-1].score - score*100.) < 0.5 &&
15454        (p = strchr(text, '\n'))) text = p; // [HGM] strip off first line with PV info, if any
15455     while (*text == '\n') text++;
15456     len = strlen(text);
15457     while (len > 0 && text[len - 1] == '\n') len--;
15458
15459     if (commentList[index] != NULL)
15460       free(commentList[index]);
15461
15462     if (len == 0) {
15463         commentList[index] = NULL;
15464         return;
15465     }
15466   if( *text == '{' && strchr(text, '}') || // [HGM] braces: if certainy malformed, put braces
15467       *text == '[' && strchr(text, ']') || // otherwise hope the user knows what he is doing
15468       *text == '(' && strchr(text, ')')) { // (perhaps check if this parses as comment-only?)
15469     commentList[index] = (char *) malloc(len + 2);
15470     strncpy(commentList[index], text, len);
15471     commentList[index][len] = '\n';
15472     commentList[index][len + 1] = NULLCHAR;
15473   } else {
15474     // [HGM] braces: if text does not start with known OK delimiter, put braces around it.
15475     char *p;
15476     commentList[index] = (char *) malloc(len + 7);
15477     safeStrCpy(commentList[index], "{\n", 3);
15478     safeStrCpy(commentList[index]+2, text, len+1);
15479     commentList[index][len+2] = NULLCHAR;
15480     while(p = strchr(commentList[index], '}')) *p = ')'; // kill all } to make it one comment
15481     strcat(commentList[index], "\n}\n");
15482   }
15483 }
15484
15485 void
15486 CrushCRs (char *text)
15487 {
15488   char *p = text;
15489   char *q = text;
15490   char ch;
15491
15492   do {
15493     ch = *p++;
15494     if (ch == '\r') continue;
15495     *q++ = ch;
15496   } while (ch != '\0');
15497 }
15498
15499 void
15500 AppendComment (int index, char *text, Boolean addBraces)
15501 /* addBraces  tells if we should add {} */
15502 {
15503     int oldlen, len;
15504     char *old;
15505
15506 if(appData.debugMode) fprintf(debugFP, "Append: in='%s' %d\n", text, addBraces); fflush(debugFP);
15507     text = GetInfoFromComment( index, text ); /* [HGM] PV time: strip PV info from comment */
15508
15509     CrushCRs(text);
15510     while (*text == '\n') text++;
15511     len = strlen(text);
15512     while (len > 0 && text[len - 1] == '\n') len--;
15513     text[len] = NULLCHAR;
15514
15515     if (len == 0) return;
15516
15517     if (commentList[index] != NULL) {
15518       Boolean addClosingBrace = addBraces;
15519         old = commentList[index];
15520         oldlen = strlen(old);
15521         while(commentList[index][oldlen-1] ==  '\n')
15522           commentList[index][--oldlen] = NULLCHAR;
15523         commentList[index] = (char *) malloc(oldlen + len + 6); // might waste 4
15524         safeStrCpy(commentList[index], old, oldlen + len + 6);
15525         free(old);
15526         // [HGM] braces: join "{A\n}\n" + "{\nB}" as "{A\nB\n}"
15527         if(commentList[index][oldlen-1] == '}' && (text[0] == '{' || addBraces == TRUE)) {
15528           if(addBraces == TRUE) addBraces = FALSE; else { text++; len--; }
15529           while (*text == '\n') { text++; len--; }
15530           commentList[index][--oldlen] = NULLCHAR;
15531       }
15532         if(addBraces) strcat(commentList[index], addBraces == 2 ? "\n(" : "\n{\n");
15533         else          strcat(commentList[index], "\n");
15534         strcat(commentList[index], text);
15535         if(addClosingBrace) strcat(commentList[index], addClosingBrace == 2 ? ")\n" : "\n}\n");
15536         else          strcat(commentList[index], "\n");
15537     } else {
15538         commentList[index] = (char *) malloc(len + 6); // perhaps wastes 4...
15539         if(addBraces)
15540           safeStrCpy(commentList[index], addBraces == 2 ? "(" : "{\n", 3);
15541         else commentList[index][0] = NULLCHAR;
15542         strcat(commentList[index], text);
15543         strcat(commentList[index], addBraces == 2 ? ")\n" : "\n");
15544         if(addBraces == TRUE) strcat(commentList[index], "}\n");
15545     }
15546 }
15547
15548 static char *
15549 FindStr (char * text, char * sub_text)
15550 {
15551     char * result = strstr( text, sub_text );
15552
15553     if( result != NULL ) {
15554         result += strlen( sub_text );
15555     }
15556
15557     return result;
15558 }
15559
15560 /* [AS] Try to extract PV info from PGN comment */
15561 /* [HGM] PV time: and then remove it, to prevent it appearing twice */
15562 char *
15563 GetInfoFromComment (int index, char * text)
15564 {
15565     char * sep = text, *p;
15566
15567     if( text != NULL && index > 0 ) {
15568         int score = 0;
15569         int depth = 0;
15570         int time = -1, sec = 0, deci;
15571         char * s_eval = FindStr( text, "[%eval " );
15572         char * s_emt = FindStr( text, "[%emt " );
15573
15574         if( s_eval != NULL || s_emt != NULL ) {
15575             /* New style */
15576             char delim;
15577
15578             if( s_eval != NULL ) {
15579                 if( sscanf( s_eval, "%d,%d%c", &score, &depth, &delim ) != 3 ) {
15580                     return text;
15581                 }
15582
15583                 if( delim != ']' ) {
15584                     return text;
15585                 }
15586             }
15587
15588             if( s_emt != NULL ) {
15589             }
15590                 return text;
15591         }
15592         else {
15593             /* We expect something like: [+|-]nnn.nn/dd */
15594             int score_lo = 0;
15595
15596             if(*text != '{') return text; // [HGM] braces: must be normal comment
15597
15598             sep = strchr( text, '/' );
15599             if( sep == NULL || sep < (text+4) ) {
15600                 return text;
15601             }
15602
15603             p = text;
15604             if(p[1] == '(') { // comment starts with PV
15605                p = strchr(p, ')'); // locate end of PV
15606                if(p == NULL || sep < p+5) return text;
15607                // at this point we have something like "{(.*) +0.23/6 ..."
15608                p = text; while(*++p != ')') p[-1] = *p; p[-1] = ')';
15609                *p = '\n'; while(*p == ' ' || *p == '\n') p++; *--p = '{';
15610                // we now moved the brace to behind the PV: "(.*) {+0.23/6 ..."
15611             }
15612             time = -1; sec = -1; deci = -1;
15613             if( sscanf( p+1, "%d.%d/%d %d:%d", &score, &score_lo, &depth, &time, &sec ) != 5 &&
15614                 sscanf( p+1, "%d.%d/%d %d.%d", &score, &score_lo, &depth, &time, &deci ) != 5 &&
15615                 sscanf( p+1, "%d.%d/%d %d", &score, &score_lo, &depth, &time ) != 4 &&
15616                 sscanf( p+1, "%d.%d/%d", &score, &score_lo, &depth ) != 3   ) {
15617                 return text;
15618             }
15619
15620             if( score_lo < 0 || score_lo >= 100 ) {
15621                 return text;
15622             }
15623
15624             if(sec >= 0) time = 600*time + 10*sec; else
15625             if(deci >= 0) time = 10*time + deci; else time *= 10; // deci-sec
15626
15627             score = score >= 0 ? score*100 + score_lo : score*100 - score_lo;
15628
15629             /* [HGM] PV time: now locate end of PV info */
15630             while( *++sep >= '0' && *sep <= '9'); // strip depth
15631             if(time >= 0)
15632             while( *++sep >= '0' && *sep <= '9' || *sep == '\n'); // strip time
15633             if(sec >= 0)
15634             while( *++sep >= '0' && *sep <= '9'); // strip seconds
15635             if(deci >= 0)
15636             while( *++sep >= '0' && *sep <= '9'); // strip fractional seconds
15637             while(*sep == ' ' || *sep == '\n' || *sep == '\r') sep++;
15638         }
15639
15640         if( depth <= 0 ) {
15641             return text;
15642         }
15643
15644         if( time < 0 ) {
15645             time = -1;
15646         }
15647
15648         pvInfoList[index-1].depth = depth;
15649         pvInfoList[index-1].score = score;
15650         pvInfoList[index-1].time  = 10*time; // centi-sec
15651         if(*sep == '}') *sep = 0; else *--sep = '{';
15652         if(p != text) { while(*p++ = *sep++); sep = text; } // squeeze out space between PV and comment, and return both
15653     }
15654     return sep;
15655 }
15656
15657 void
15658 SendToProgram (char *message, ChessProgramState *cps)
15659 {
15660     int count, outCount, error;
15661     char buf[MSG_SIZ];
15662
15663     if (cps->pr == NoProc) return;
15664     Attention(cps);
15665
15666     if (appData.debugMode) {
15667         TimeMark now;
15668         GetTimeMark(&now);
15669         fprintf(debugFP, "%ld >%-6s: %s",
15670                 SubtractTimeMarks(&now, &programStartTime),
15671                 cps->which, message);
15672         if(serverFP)
15673             fprintf(serverFP, "%ld >%-6s: %s",
15674                 SubtractTimeMarks(&now, &programStartTime),
15675                 cps->which, message), fflush(serverFP);
15676     }
15677
15678     count = strlen(message);
15679     outCount = OutputToProcess(cps->pr, message, count, &error);
15680     if (outCount < count && !exiting
15681                          && !endingGame) { /* [HGM] crash: to not hang GameEnds() writing to deceased engines */
15682       if(!cps->initDone) return; // [HGM] should not generate fatal error during engine load
15683       snprintf(buf, MSG_SIZ, _("Error writing to %s chess program"), _(cps->which));
15684         if(gameInfo.resultDetails==NULL) { /* [HGM] crash: if game in progress, give reason for abort */
15685             if((signed char)boards[forwardMostMove][EP_STATUS] <= EP_DRAWS) {
15686                 snprintf(buf, MSG_SIZ, _("%s program exits in draw position (%s)"), _(cps->which), cps->program);
15687                 if(matchMode && appData.tourneyFile[0]) { cps->pr = NoProc; GameEnds(GameIsDrawn, buf, GE_XBOARD); return; }
15688                 gameInfo.result = GameIsDrawn; /* [HGM] accept exit as draw claim */
15689             } else {
15690                 ChessMove res = cps->twoMachinesColor[0]=='w' ? BlackWins : WhiteWins;
15691                 if(matchMode && appData.tourneyFile[0]) { cps->pr = NoProc; GameEnds(res, buf, GE_XBOARD); return; }
15692                 gameInfo.result = res;
15693             }
15694             gameInfo.resultDetails = StrSave(buf);
15695         }
15696         if(matchMode && appData.tourneyFile[0]) { cps->pr = NoProc; return; }
15697         if(!cps->userError || !appData.popupExitMessage) DisplayFatalError(buf, error, 1); else errorExitStatus = 1;
15698     }
15699 }
15700
15701 void
15702 ReceiveFromProgram (InputSourceRef isr, VOIDSTAR closure, char *message, int count, int error)
15703 {
15704     char *end_str;
15705     char buf[MSG_SIZ];
15706     ChessProgramState *cps = (ChessProgramState *)closure;
15707
15708     if (isr != cps->isr) return; /* Killed intentionally */
15709     if (count <= 0) {
15710         if (count == 0) {
15711             RemoveInputSource(cps->isr);
15712             snprintf(buf, MSG_SIZ, _("Error: %s chess program (%s) exited unexpectedly"),
15713                     _(cps->which), cps->program);
15714             if(LoadError(cps->userError ? NULL : buf, cps)) return; // [HGM] should not generate fatal error during engine load
15715             if(gameInfo.resultDetails==NULL) { /* [HGM] crash: if game in progress, give reason for abort */
15716                 if((signed char)boards[forwardMostMove][EP_STATUS] <= EP_DRAWS) {
15717                     snprintf(buf, MSG_SIZ, _("%s program exits in draw position (%s)"), _(cps->which), cps->program);
15718                     if(matchMode && appData.tourneyFile[0]) { cps->pr = NoProc; GameEnds(GameIsDrawn, buf, GE_XBOARD); return; }
15719                     gameInfo.result = GameIsDrawn; /* [HGM] accept exit as draw claim */
15720                 } else {
15721                     ChessMove res = cps->twoMachinesColor[0]=='w' ? BlackWins : WhiteWins;
15722                     if(matchMode && appData.tourneyFile[0]) { cps->pr = NoProc; GameEnds(res, buf, GE_XBOARD); return; }
15723                     gameInfo.result = res;
15724                 }
15725                 gameInfo.resultDetails = StrSave(buf);
15726             }
15727             if(matchMode && appData.tourneyFile[0]) { cps->pr = NoProc; return; }
15728             if(!cps->userError || !appData.popupExitMessage) DisplayFatalError(buf, 0, 1); else errorExitStatus = 1;
15729         } else {
15730             snprintf(buf, MSG_SIZ, _("Error reading from %s chess program (%s)"),
15731                     _(cps->which), cps->program);
15732             RemoveInputSource(cps->isr);
15733
15734             /* [AS] Program is misbehaving badly... kill it */
15735             if( count == -2 ) {
15736                 DestroyChildProcess( cps->pr, 9 );
15737                 cps->pr = NoProc;
15738             }
15739
15740             if(!cps->userError || !appData.popupExitMessage) DisplayFatalError(buf, error, 1); else errorExitStatus = 1;
15741         }
15742         return;
15743     }
15744
15745     if ((end_str = strchr(message, '\r')) != NULL)
15746       *end_str = NULLCHAR;
15747     if ((end_str = strchr(message, '\n')) != NULL)
15748       *end_str = NULLCHAR;
15749
15750     if (appData.debugMode) {
15751         TimeMark now; int print = 1;
15752         char *quote = ""; char c; int i;
15753
15754         if(appData.engineComments != 1) { /* [HGM] debug: decide if protocol-violating output is written */
15755                 char start = message[0];
15756                 if(start >='A' && start <= 'Z') start += 'a' - 'A'; // be tolerant to capitalizing
15757                 if(sscanf(message, "%d%c%d%d%d", &i, &c, &i, &i, &i) != 5 &&
15758                    sscanf(message, "move %c", &c)!=1  && sscanf(message, "offer%c", &c)!=1 &&
15759                    sscanf(message, "resign%c", &c)!=1 && sscanf(message, "feature %c", &c)!=1 &&
15760                    sscanf(message, "error %c", &c)!=1 && sscanf(message, "illegal %c", &c)!=1 &&
15761                    sscanf(message, "tell%c", &c)!=1   && sscanf(message, "0-1 %c", &c)!=1 &&
15762                    sscanf(message, "1-0 %c", &c)!=1   && sscanf(message, "1/2-1/2 %c", &c)!=1 &&
15763                    sscanf(message, "setboard %c", &c)!=1   && sscanf(message, "setup %c", &c)!=1 &&
15764                    sscanf(message, "hint: %c", &c)!=1 &&
15765                    sscanf(message, "pong %c", &c)!=1   && start != '#') {
15766                     quote = appData.engineComments == 2 ? "# " : "### NON-COMPLIANT! ### ";
15767                     print = (appData.engineComments >= 2);
15768                 }
15769                 message[0] = start; // restore original message
15770         }
15771         if(print) {
15772                 GetTimeMark(&now);
15773                 fprintf(debugFP, "%ld <%-6s: %s%s\n",
15774                         SubtractTimeMarks(&now, &programStartTime), cps->which,
15775                         quote,
15776                         message);
15777                 if(serverFP)
15778                     fprintf(serverFP, "%ld <%-6s: %s%s\n",
15779                         SubtractTimeMarks(&now, &programStartTime), cps->which,
15780                         quote,
15781                         message), fflush(serverFP);
15782         }
15783     }
15784
15785     /* [DM] if icsEngineAnalyze is active we block all whisper and kibitz output, because nobody want to see this */
15786     if (appData.icsEngineAnalyze) {
15787         if (strstr(message, "whisper") != NULL ||
15788              strstr(message, "kibitz") != NULL ||
15789             strstr(message, "tellics") != NULL) return;
15790     }
15791
15792     HandleMachineMove(message, cps);
15793 }
15794
15795
15796 void
15797 SendTimeControl (ChessProgramState *cps, int mps, long tc, int inc, int sd, int st)
15798 {
15799     char buf[MSG_SIZ];
15800     int seconds;
15801
15802     if( timeControl_2 > 0 ) {
15803         if( (gameMode == MachinePlaysBlack) || (gameMode == TwoMachinesPlay && cps->twoMachinesColor[0] == 'b') ) {
15804             tc = timeControl_2;
15805         }
15806     }
15807     tc  /= cps->timeOdds; /* [HGM] time odds: apply before telling engine */
15808     inc /= cps->timeOdds;
15809     st  /= cps->timeOdds;
15810
15811     seconds = (tc / 1000) % 60; /* [HGM] displaced to after applying odds */
15812
15813     if (st > 0) {
15814       /* Set exact time per move, normally using st command */
15815       if (cps->stKludge) {
15816         /* GNU Chess 4 has no st command; uses level in a nonstandard way */
15817         seconds = st % 60;
15818         if (seconds == 0) {
15819           snprintf(buf, MSG_SIZ, "level 1 %d\n", st/60);
15820         } else {
15821           snprintf(buf, MSG_SIZ, "level 1 %d:%02d\n", st/60, seconds);
15822         }
15823       } else {
15824         snprintf(buf, MSG_SIZ, "st %d\n", st);
15825       }
15826     } else {
15827       /* Set conventional or incremental time control, using level command */
15828       if (seconds == 0) {
15829         /* Note old gnuchess bug -- minutes:seconds used to not work.
15830            Fixed in later versions, but still avoid :seconds
15831            when seconds is 0. */
15832         snprintf(buf, MSG_SIZ, "level %d %ld %g\n", mps, tc/60000, inc/1000.);
15833       } else {
15834         snprintf(buf, MSG_SIZ, "level %d %ld:%02d %g\n", mps, tc/60000,
15835                  seconds, inc/1000.);
15836       }
15837     }
15838     SendToProgram(buf, cps);
15839
15840     /* Orthoganally (except for GNU Chess 4), limit time to st seconds */
15841     /* Orthogonally, limit search to given depth */
15842     if (sd > 0) {
15843       if (cps->sdKludge) {
15844         snprintf(buf, MSG_SIZ, "depth\n%d\n", sd);
15845       } else {
15846         snprintf(buf, MSG_SIZ, "sd %d\n", sd);
15847       }
15848       SendToProgram(buf, cps);
15849     }
15850
15851     if(cps->nps >= 0) { /* [HGM] nps */
15852         if(cps->supportsNPS == FALSE)
15853           cps->nps = -1; // don't use if engine explicitly says not supported!
15854         else {
15855           snprintf(buf, MSG_SIZ, "nps %d\n", cps->nps);
15856           SendToProgram(buf, cps);
15857         }
15858     }
15859 }
15860
15861 ChessProgramState *
15862 WhitePlayer ()
15863 /* [HGM] return pointer to 'first' or 'second', depending on who plays white */
15864 {
15865     if(gameMode == TwoMachinesPlay && first.twoMachinesColor[0] == 'b' ||
15866        gameMode == BeginningOfGame || gameMode == MachinePlaysBlack)
15867         return &second;
15868     return &first;
15869 }
15870
15871 void
15872 SendTimeRemaining (ChessProgramState *cps, int machineWhite)
15873 {
15874     char message[MSG_SIZ];
15875     long time, otime;
15876
15877     /* Note: this routine must be called when the clocks are stopped
15878        or when they have *just* been set or switched; otherwise
15879        it will be off by the time since the current tick started.
15880     */
15881     if (machineWhite) {
15882         time = whiteTimeRemaining / 10;
15883         otime = blackTimeRemaining / 10;
15884     } else {
15885         time = blackTimeRemaining / 10;
15886         otime = whiteTimeRemaining / 10;
15887     }
15888     /* [HGM] translate opponent's time by time-odds factor */
15889     otime = (otime * cps->other->timeOdds) / cps->timeOdds;
15890
15891     if (time <= 0) time = 1;
15892     if (otime <= 0) otime = 1;
15893
15894     snprintf(message, MSG_SIZ, "time %ld\n", time);
15895     SendToProgram(message, cps);
15896
15897     snprintf(message, MSG_SIZ, "otim %ld\n", otime);
15898     SendToProgram(message, cps);
15899 }
15900
15901 int
15902 BoolFeature (char **p, char *name, int *loc, ChessProgramState *cps)
15903 {
15904   char buf[MSG_SIZ];
15905   int len = strlen(name);
15906   int val;
15907
15908   if (strncmp((*p), name, len) == 0 && (*p)[len] == '=') {
15909     (*p) += len + 1;
15910     sscanf(*p, "%d", &val);
15911     *loc = (val != 0);
15912     while (**p && **p != ' ')
15913       (*p)++;
15914     snprintf(buf, MSG_SIZ, "accepted %s\n", name);
15915     SendToProgram(buf, cps);
15916     return TRUE;
15917   }
15918   return FALSE;
15919 }
15920
15921 int
15922 IntFeature (char **p, char *name, int *loc, ChessProgramState *cps)
15923 {
15924   char buf[MSG_SIZ];
15925   int len = strlen(name);
15926   if (strncmp((*p), name, len) == 0 && (*p)[len] == '=') {
15927     (*p) += len + 1;
15928     sscanf(*p, "%d", loc);
15929     while (**p && **p != ' ') (*p)++;
15930     snprintf(buf, MSG_SIZ, "accepted %s\n", name);
15931     SendToProgram(buf, cps);
15932     return TRUE;
15933   }
15934   return FALSE;
15935 }
15936
15937 int
15938 StringFeature (char **p, char *name, char loc[], ChessProgramState *cps)
15939 {
15940   char buf[MSG_SIZ];
15941   int len = strlen(name);
15942   if (strncmp((*p), name, len) == 0
15943       && (*p)[len] == '=' && (*p)[len+1] == '\"') {
15944     (*p) += len + 2;
15945     sscanf(*p, "%[^\"]", loc);
15946     while (**p && **p != '\"') (*p)++;
15947     if (**p == '\"') (*p)++;
15948     snprintf(buf, MSG_SIZ, "accepted %s\n", name);
15949     SendToProgram(buf, cps);
15950     return TRUE;
15951   }
15952   return FALSE;
15953 }
15954
15955 int
15956 ParseOption (Option *opt, ChessProgramState *cps)
15957 // [HGM] options: process the string that defines an engine option, and determine
15958 // name, type, default value, and allowed value range
15959 {
15960         char *p, *q, buf[MSG_SIZ];
15961         int n, min = (-1)<<31, max = 1<<31, def;
15962
15963         if(p = strstr(opt->name, " -spin ")) {
15964             if((n = sscanf(p, " -spin %d %d %d", &def, &min, &max)) < 3 ) return FALSE;
15965             if(max < min) max = min; // enforce consistency
15966             if(def < min) def = min;
15967             if(def > max) def = max;
15968             opt->value = def;
15969             opt->min = min;
15970             opt->max = max;
15971             opt->type = Spin;
15972         } else if((p = strstr(opt->name, " -slider "))) {
15973             // for now -slider is a synonym for -spin, to already provide compatibility with future polyglots
15974             if((n = sscanf(p, " -slider %d %d %d", &def, &min, &max)) < 3 ) return FALSE;
15975             if(max < min) max = min; // enforce consistency
15976             if(def < min) def = min;
15977             if(def > max) def = max;
15978             opt->value = def;
15979             opt->min = min;
15980             opt->max = max;
15981             opt->type = Spin; // Slider;
15982         } else if((p = strstr(opt->name, " -string "))) {
15983             opt->textValue = p+9;
15984             opt->type = TextBox;
15985         } else if((p = strstr(opt->name, " -file "))) {
15986             // for now -file is a synonym for -string, to already provide compatibility with future polyglots
15987             opt->textValue = p+7;
15988             opt->type = FileName; // FileName;
15989         } else if((p = strstr(opt->name, " -path "))) {
15990             // for now -file is a synonym for -string, to already provide compatibility with future polyglots
15991             opt->textValue = p+7;
15992             opt->type = PathName; // PathName;
15993         } else if(p = strstr(opt->name, " -check ")) {
15994             if(sscanf(p, " -check %d", &def) < 1) return FALSE;
15995             opt->value = (def != 0);
15996             opt->type = CheckBox;
15997         } else if(p = strstr(opt->name, " -combo ")) {
15998             opt->textValue = (char*) (opt->choice = &cps->comboList[cps->comboCnt]); // cheat with pointer type
15999             cps->comboList[cps->comboCnt++] = q = p+8; // holds possible choices
16000             if(*q == '*') cps->comboList[cps->comboCnt-1]++;
16001             opt->value = n = 0;
16002             while(q = StrStr(q, " /// ")) {
16003                 n++; *q = 0;    // count choices, and null-terminate each of them
16004                 q += 5;
16005                 if(*q == '*') { // remember default, which is marked with * prefix
16006                     q++;
16007                     opt->value = n;
16008                 }
16009                 cps->comboList[cps->comboCnt++] = q;
16010             }
16011             cps->comboList[cps->comboCnt++] = NULL;
16012             opt->max = n + 1;
16013             opt->type = ComboBox;
16014         } else if(p = strstr(opt->name, " -button")) {
16015             opt->type = Button;
16016         } else if(p = strstr(opt->name, " -save")) {
16017             opt->type = SaveButton;
16018         } else return FALSE;
16019         *p = 0; // terminate option name
16020         // now look if the command-line options define a setting for this engine option.
16021         if(cps->optionSettings && cps->optionSettings[0])
16022             p = strstr(cps->optionSettings, opt->name); else p = NULL;
16023         if(p && (p == cps->optionSettings || p[-1] == ',')) {
16024           snprintf(buf, MSG_SIZ, "option %s", p);
16025                 if(p = strstr(buf, ",")) *p = 0;
16026                 if(q = strchr(buf, '=')) switch(opt->type) {
16027                     case ComboBox:
16028                         for(n=0; n<opt->max; n++)
16029                             if(!strcmp(((char**)opt->textValue)[n], q+1)) opt->value = n;
16030                         break;
16031                     case TextBox:
16032                         safeStrCpy(opt->textValue, q+1, MSG_SIZ - (opt->textValue - opt->name));
16033                         break;
16034                     case Spin:
16035                     case CheckBox:
16036                         opt->value = atoi(q+1);
16037                     default:
16038                         break;
16039                 }
16040                 strcat(buf, "\n");
16041                 SendToProgram(buf, cps);
16042         }
16043         return TRUE;
16044 }
16045
16046 void
16047 FeatureDone (ChessProgramState *cps, int val)
16048 {
16049   DelayedEventCallback cb = GetDelayedEvent();
16050   if ((cb == InitBackEnd3 && cps == &first) ||
16051       (cb == SettingsMenuIfReady && cps == &second) ||
16052       (cb == LoadEngine) ||
16053       (cb == TwoMachinesEventIfReady)) {
16054     CancelDelayedEvent();
16055     ScheduleDelayedEvent(cb, val ? 1 : 3600000);
16056   }
16057   cps->initDone = val;
16058   if(val) cps->reload = FALSE;
16059 }
16060
16061 /* Parse feature command from engine */
16062 void
16063 ParseFeatures (char *args, ChessProgramState *cps)
16064 {
16065   char *p = args;
16066   char *q;
16067   int val;
16068   char buf[MSG_SIZ];
16069
16070   for (;;) {
16071     while (*p == ' ') p++;
16072     if (*p == NULLCHAR) return;
16073
16074     if (BoolFeature(&p, "setboard", &cps->useSetboard, cps)) continue;
16075     if (BoolFeature(&p, "xedit", &cps->extendedEdit, cps)) continue;
16076     if (BoolFeature(&p, "time", &cps->sendTime, cps)) continue;
16077     if (BoolFeature(&p, "draw", &cps->sendDrawOffers, cps)) continue;
16078     if (BoolFeature(&p, "sigint", &cps->useSigint, cps)) continue;
16079     if (BoolFeature(&p, "sigterm", &cps->useSigterm, cps)) continue;
16080     if (BoolFeature(&p, "reuse", &val, cps)) {
16081       /* Engine can disable reuse, but can't enable it if user said no */
16082       if (!val) cps->reuse = FALSE;
16083       continue;
16084     }
16085     if (BoolFeature(&p, "analyze", &cps->analysisSupport, cps)) continue;
16086     if (StringFeature(&p, "myname", cps->tidy, cps)) {
16087       if (gameMode == TwoMachinesPlay) {
16088         DisplayTwoMachinesTitle();
16089       } else {
16090         DisplayTitle("");
16091       }
16092       continue;
16093     }
16094     if (StringFeature(&p, "variants", cps->variants, cps)) continue;
16095     if (BoolFeature(&p, "san", &cps->useSAN, cps)) continue;
16096     if (BoolFeature(&p, "ping", &cps->usePing, cps)) continue;
16097     if (BoolFeature(&p, "playother", &cps->usePlayother, cps)) continue;
16098     if (BoolFeature(&p, "colors", &cps->useColors, cps)) continue;
16099     if (BoolFeature(&p, "usermove", &cps->useUsermove, cps)) continue;
16100     if (BoolFeature(&p, "exclude", &cps->excludeMoves, cps)) continue;
16101     if (BoolFeature(&p, "ics", &cps->sendICS, cps)) continue;
16102     if (BoolFeature(&p, "name", &cps->sendName, cps)) continue;
16103     if (BoolFeature(&p, "pause", &cps->pause, cps)) continue; // [HGM] pause
16104     if (IntFeature(&p, "done", &val, cps)) {
16105       FeatureDone(cps, val);
16106       continue;
16107     }
16108     /* Added by Tord: */
16109     if (BoolFeature(&p, "fen960", &cps->useFEN960, cps)) continue;
16110     if (BoolFeature(&p, "oocastle", &cps->useOOCastle, cps)) continue;
16111     /* End of additions by Tord */
16112
16113     /* [HGM] added features: */
16114     if (BoolFeature(&p, "debug", &cps->debug, cps)) continue;
16115     if (BoolFeature(&p, "nps", &cps->supportsNPS, cps)) continue;
16116     if (IntFeature(&p, "level", &cps->maxNrOfSessions, cps)) continue;
16117     if (BoolFeature(&p, "memory", &cps->memSize, cps)) continue;
16118     if (BoolFeature(&p, "smp", &cps->maxCores, cps)) continue;
16119     if (StringFeature(&p, "egt", cps->egtFormats, cps)) continue;
16120     if (StringFeature(&p, "option", buf, cps)) {
16121         if(cps->reload) continue; // we are reloading because of xreuse
16122         FREE(cps->option[cps->nrOptions].name);
16123         cps->option[cps->nrOptions].name = malloc(MSG_SIZ);
16124         safeStrCpy(cps->option[cps->nrOptions].name, buf, MSG_SIZ);
16125         if(!ParseOption(&(cps->option[cps->nrOptions++]), cps)) { // [HGM] options: add option feature
16126           snprintf(buf, MSG_SIZ, "rejected option %s\n", cps->option[--cps->nrOptions].name);
16127             SendToProgram(buf, cps);
16128             continue;
16129         }
16130         if(cps->nrOptions >= MAX_OPTIONS) {
16131             cps->nrOptions--;
16132             snprintf(buf, MSG_SIZ, _("%s engine has too many options\n"), _(cps->which));
16133             DisplayError(buf, 0);
16134         }
16135         continue;
16136     }
16137     /* End of additions by HGM */
16138
16139     /* unknown feature: complain and skip */
16140     q = p;
16141     while (*q && *q != '=') q++;
16142     snprintf(buf, MSG_SIZ,"rejected %.*s\n", (int)(q-p), p);
16143     SendToProgram(buf, cps);
16144     p = q;
16145     if (*p == '=') {
16146       p++;
16147       if (*p == '\"') {
16148         p++;
16149         while (*p && *p != '\"') p++;
16150         if (*p == '\"') p++;
16151       } else {
16152         while (*p && *p != ' ') p++;
16153       }
16154     }
16155   }
16156
16157 }
16158
16159 void
16160 PeriodicUpdatesEvent (int newState)
16161 {
16162     if (newState == appData.periodicUpdates)
16163       return;
16164
16165     appData.periodicUpdates=newState;
16166
16167     /* Display type changes, so update it now */
16168 //    DisplayAnalysis();
16169
16170     /* Get the ball rolling again... */
16171     if (newState) {
16172         AnalysisPeriodicEvent(1);
16173         StartAnalysisClock();
16174     }
16175 }
16176
16177 void
16178 PonderNextMoveEvent (int newState)
16179 {
16180     if (newState == appData.ponderNextMove) return;
16181     if (gameMode == EditPosition) EditPositionDone(TRUE);
16182     if (newState) {
16183         SendToProgram("hard\n", &first);
16184         if (gameMode == TwoMachinesPlay) {
16185             SendToProgram("hard\n", &second);
16186         }
16187     } else {
16188         SendToProgram("easy\n", &first);
16189         thinkOutput[0] = NULLCHAR;
16190         if (gameMode == TwoMachinesPlay) {
16191             SendToProgram("easy\n", &second);
16192         }
16193     }
16194     appData.ponderNextMove = newState;
16195 }
16196
16197 void
16198 NewSettingEvent (int option, int *feature, char *command, int value)
16199 {
16200     char buf[MSG_SIZ];
16201
16202     if (gameMode == EditPosition) EditPositionDone(TRUE);
16203     snprintf(buf, MSG_SIZ,"%s%s %d\n", (option ? "option ": ""), command, value);
16204     if(feature == NULL || *feature) SendToProgram(buf, &first);
16205     if (gameMode == TwoMachinesPlay) {
16206         if(feature == NULL || feature[(int*)&second - (int*)&first]) SendToProgram(buf, &second);
16207     }
16208 }
16209
16210 void
16211 ShowThinkingEvent ()
16212 // [HGM] thinking: this routine is now also called from "Options -> Engine..." popup
16213 {
16214     static int oldState = 2; // kludge alert! Neither true nor fals, so first time oldState is always updated
16215     int newState = appData.showThinking
16216         // [HGM] thinking: other features now need thinking output as well
16217         || !appData.hideThinkingFromHuman || appData.adjudicateLossThreshold != 0 || EngineOutputIsUp();
16218
16219     if (oldState == newState) return;
16220     oldState = newState;
16221     if (gameMode == EditPosition) EditPositionDone(TRUE);
16222     if (oldState) {
16223         SendToProgram("post\n", &first);
16224         if (gameMode == TwoMachinesPlay) {
16225             SendToProgram("post\n", &second);
16226         }
16227     } else {
16228         SendToProgram("nopost\n", &first);
16229         thinkOutput[0] = NULLCHAR;
16230         if (gameMode == TwoMachinesPlay) {
16231             SendToProgram("nopost\n", &second);
16232         }
16233     }
16234 //    appData.showThinking = newState; // [HGM] thinking: responsible option should already have be changed when calling this routine!
16235 }
16236
16237 void
16238 AskQuestionEvent (char *title, char *question, char *replyPrefix, char *which)
16239 {
16240   ProcRef pr = (which[0] == '1') ? first.pr : second.pr;
16241   if (pr == NoProc) return;
16242   AskQuestion(title, question, replyPrefix, pr);
16243 }
16244
16245 void
16246 TypeInEvent (char firstChar)
16247 {
16248     if ((gameMode == BeginningOfGame && !appData.icsActive) ||
16249         gameMode == MachinePlaysWhite || gameMode == MachinePlaysBlack ||
16250         gameMode == AnalyzeMode || gameMode == EditGame ||
16251         gameMode == EditPosition || gameMode == IcsExamining ||
16252         gameMode == IcsPlayingWhite || gameMode == IcsPlayingBlack ||
16253         isdigit(firstChar) && // [HGM] movenum: allow typing in of move nr in 'passive' modes
16254                 ( gameMode == AnalyzeFile || gameMode == PlayFromGameFile ||
16255                   gameMode == IcsObserving || gameMode == TwoMachinesPlay    ) ||
16256         gameMode == Training) PopUpMoveDialog(firstChar);
16257 }
16258
16259 void
16260 TypeInDoneEvent (char *move)
16261 {
16262         Board board;
16263         int n, fromX, fromY, toX, toY;
16264         char promoChar;
16265         ChessMove moveType;
16266
16267         // [HGM] FENedit
16268         if(gameMode == EditPosition && ParseFEN(board, &n, move) ) {
16269                 EditPositionPasteFEN(move);
16270                 return;
16271         }
16272         // [HGM] movenum: allow move number to be typed in any mode
16273         if(sscanf(move, "%d", &n) == 1 && n != 0 ) {
16274           ToNrEvent(2*n-1);
16275           return;
16276         }
16277         // undocumented kludge: allow command-line option to be typed in!
16278         // (potentially fatal, and does not implement the effect of the option.)
16279         // should only be used for options that are values on which future decisions will be made,
16280         // and definitely not on options that would be used during initialization.
16281         if(strstr(move, "!!! -") == move) {
16282             ParseArgsFromString(move+4);
16283             return;
16284         }
16285
16286       if (gameMode != EditGame && currentMove != forwardMostMove &&
16287         gameMode != Training) {
16288         DisplayMoveError(_("Displayed move is not current"));
16289       } else {
16290         int ok = ParseOneMove(move, gameMode == EditPosition ? blackPlaysFirst : currentMove,
16291           &moveType, &fromX, &fromY, &toX, &toY, &promoChar);
16292         if(!ok && move[0] >= 'a') { move[0] += 'A' - 'a'; ok = 2; } // [HGM] try also capitalized
16293         if (ok==1 || ok && ParseOneMove(move, gameMode == EditPosition ? blackPlaysFirst : currentMove,
16294           &moveType, &fromX, &fromY, &toX, &toY, &promoChar)) {
16295           UserMoveEvent(fromX, fromY, toX, toY, promoChar);
16296         } else {
16297           DisplayMoveError(_("Could not parse move"));
16298         }
16299       }
16300 }
16301
16302 void
16303 DisplayMove (int moveNumber)
16304 {
16305     char message[MSG_SIZ];
16306     char res[MSG_SIZ];
16307     char cpThinkOutput[MSG_SIZ];
16308
16309     if(appData.noGUI) return; // [HGM] fast: suppress display of moves
16310
16311     if (moveNumber == forwardMostMove - 1 ||
16312         gameMode == AnalyzeMode || gameMode == AnalyzeFile) {
16313
16314         safeStrCpy(cpThinkOutput, thinkOutput, sizeof(cpThinkOutput)/sizeof(cpThinkOutput[0]));
16315
16316         if (strchr(cpThinkOutput, '\n')) {
16317             *strchr(cpThinkOutput, '\n') = NULLCHAR;
16318         }
16319     } else {
16320         *cpThinkOutput = NULLCHAR;
16321     }
16322
16323     /* [AS] Hide thinking from human user */
16324     if( appData.hideThinkingFromHuman && gameMode != TwoMachinesPlay ) {
16325         *cpThinkOutput = NULLCHAR;
16326         if( thinkOutput[0] != NULLCHAR ) {
16327             int i;
16328
16329             for( i=0; i<=hiddenThinkOutputState; i++ ) {
16330                 cpThinkOutput[i] = '.';
16331             }
16332             cpThinkOutput[i] = NULLCHAR;
16333             hiddenThinkOutputState = (hiddenThinkOutputState + 1) % 3;
16334         }
16335     }
16336
16337     if (moveNumber == forwardMostMove - 1 &&
16338         gameInfo.resultDetails != NULL) {
16339         if (gameInfo.resultDetails[0] == NULLCHAR) {
16340           snprintf(res, MSG_SIZ, " %s", PGNResult(gameInfo.result));
16341         } else {
16342           snprintf(res, MSG_SIZ, " {%s} %s",
16343                     T_(gameInfo.resultDetails), PGNResult(gameInfo.result));
16344         }
16345     } else {
16346         res[0] = NULLCHAR;
16347     }
16348
16349     if (moveNumber < 0 || parseList[moveNumber][0] == NULLCHAR) {
16350         DisplayMessage(res, cpThinkOutput);
16351     } else {
16352       snprintf(message, MSG_SIZ, "%d.%s%s%s", moveNumber / 2 + 1,
16353                 WhiteOnMove(moveNumber) ? " " : ".. ",
16354                 parseList[moveNumber], res);
16355         DisplayMessage(message, cpThinkOutput);
16356     }
16357 }
16358
16359 void
16360 DisplayComment (int moveNumber, char *text)
16361 {
16362     char title[MSG_SIZ];
16363
16364     if (moveNumber < 0 || parseList[moveNumber][0] == NULLCHAR) {
16365       safeStrCpy(title, "Comment", sizeof(title)/sizeof(title[0]));
16366     } else {
16367       snprintf(title,MSG_SIZ, "Comment on %d.%s%s", moveNumber / 2 + 1,
16368               WhiteOnMove(moveNumber) ? " " : ".. ",
16369               parseList[moveNumber]);
16370     }
16371     if (text != NULL && (appData.autoDisplayComment || commentUp))
16372         CommentPopUp(title, text);
16373 }
16374
16375 /* This routine sends a ^C interrupt to gnuchess, to awaken it if it
16376  * might be busy thinking or pondering.  It can be omitted if your
16377  * gnuchess is configured to stop thinking immediately on any user
16378  * input.  However, that gnuchess feature depends on the FIONREAD
16379  * ioctl, which does not work properly on some flavors of Unix.
16380  */
16381 void
16382 Attention (ChessProgramState *cps)
16383 {
16384 #if ATTENTION
16385     if (!cps->useSigint) return;
16386     if (appData.noChessProgram || (cps->pr == NoProc)) return;
16387     switch (gameMode) {
16388       case MachinePlaysWhite:
16389       case MachinePlaysBlack:
16390       case TwoMachinesPlay:
16391       case IcsPlayingWhite:
16392       case IcsPlayingBlack:
16393       case AnalyzeMode:
16394       case AnalyzeFile:
16395         /* Skip if we know it isn't thinking */
16396         if (!cps->maybeThinking) return;
16397         if (appData.debugMode)
16398           fprintf(debugFP, "Interrupting %s\n", cps->which);
16399         InterruptChildProcess(cps->pr);
16400         cps->maybeThinking = FALSE;
16401         break;
16402       default:
16403         break;
16404     }
16405 #endif /*ATTENTION*/
16406 }
16407
16408 int
16409 CheckFlags ()
16410 {
16411     if (whiteTimeRemaining <= 0) {
16412         if (!whiteFlag) {
16413             whiteFlag = TRUE;
16414             if (appData.icsActive) {
16415                 if (appData.autoCallFlag &&
16416                     gameMode == IcsPlayingBlack && !blackFlag) {
16417                   SendToICS(ics_prefix);
16418                   SendToICS("flag\n");
16419                 }
16420             } else {
16421                 if (blackFlag) {
16422                     if(gameMode != TwoMachinesPlay) DisplayTitle(_("Both flags fell"));
16423                 } else {
16424                     if(gameMode != TwoMachinesPlay) DisplayTitle(_("White's flag fell"));
16425                     if (appData.autoCallFlag) {
16426                         GameEnds(BlackWins, "Black wins on time", GE_XBOARD);
16427                         return TRUE;
16428                     }
16429                 }
16430             }
16431         }
16432     }
16433     if (blackTimeRemaining <= 0) {
16434         if (!blackFlag) {
16435             blackFlag = TRUE;
16436             if (appData.icsActive) {
16437                 if (appData.autoCallFlag &&
16438                     gameMode == IcsPlayingWhite && !whiteFlag) {
16439                   SendToICS(ics_prefix);
16440                   SendToICS("flag\n");
16441                 }
16442             } else {
16443                 if (whiteFlag) {
16444                     if(gameMode != TwoMachinesPlay) DisplayTitle(_("Both flags fell"));
16445                 } else {
16446                     if(gameMode != TwoMachinesPlay) DisplayTitle(_("Black's flag fell"));
16447                     if (appData.autoCallFlag) {
16448                         GameEnds(WhiteWins, "White wins on time", GE_XBOARD);
16449                         return TRUE;
16450                     }
16451                 }
16452             }
16453         }
16454     }
16455     return FALSE;
16456 }
16457
16458 void
16459 CheckTimeControl ()
16460 {
16461     if (!appData.clockMode || appData.icsActive || searchTime || // [HGM] st: no inc in st mode
16462         gameMode == PlayFromGameFile || forwardMostMove == 0) return;
16463
16464     /*
16465      * add time to clocks when time control is achieved ([HGM] now also used for increment)
16466      */
16467     if ( !WhiteOnMove(forwardMostMove) ) {
16468         /* White made time control */
16469         lastWhite -= whiteTimeRemaining; // [HGM] contains start time, socalculate thinking time
16470         whiteTimeRemaining += GetTimeQuota((forwardMostMove-whiteStartMove-1)/2, lastWhite, whiteTC)
16471         /* [HGM] time odds: correct new time quota for time odds! */
16472                                             / WhitePlayer()->timeOdds;
16473         lastBlack = blackTimeRemaining; // [HGM] leave absolute time (after quota), so next switch we can us it to calculate thinking time
16474     } else {
16475         lastBlack -= blackTimeRemaining;
16476         /* Black made time control */
16477         blackTimeRemaining += GetTimeQuota((forwardMostMove-blackStartMove-1)/2, lastBlack, blackTC)
16478                                             / WhitePlayer()->other->timeOdds;
16479         lastWhite = whiteTimeRemaining;
16480     }
16481 }
16482
16483 void
16484 DisplayBothClocks ()
16485 {
16486     int wom = gameMode == EditPosition ?
16487       !blackPlaysFirst : WhiteOnMove(currentMove);
16488     DisplayWhiteClock(whiteTimeRemaining, wom);
16489     DisplayBlackClock(blackTimeRemaining, !wom);
16490 }
16491
16492
16493 /* Timekeeping seems to be a portability nightmare.  I think everyone
16494    has ftime(), but I'm really not sure, so I'm including some ifdefs
16495    to use other calls if you don't.  Clocks will be less accurate if
16496    you have neither ftime nor gettimeofday.
16497 */
16498
16499 /* VS 2008 requires the #include outside of the function */
16500 #if !HAVE_GETTIMEOFDAY && HAVE_FTIME
16501 #include <sys/timeb.h>
16502 #endif
16503
16504 /* Get the current time as a TimeMark */
16505 void
16506 GetTimeMark (TimeMark *tm)
16507 {
16508 #if HAVE_GETTIMEOFDAY
16509
16510     struct timeval timeVal;
16511     struct timezone timeZone;
16512
16513     gettimeofday(&timeVal, &timeZone);
16514     tm->sec = (long) timeVal.tv_sec;
16515     tm->ms = (int) (timeVal.tv_usec / 1000L);
16516
16517 #else /*!HAVE_GETTIMEOFDAY*/
16518 #if HAVE_FTIME
16519
16520 // include <sys/timeb.h> / moved to just above start of function
16521     struct timeb timeB;
16522
16523     ftime(&timeB);
16524     tm->sec = (long) timeB.time;
16525     tm->ms = (int) timeB.millitm;
16526
16527 #else /*!HAVE_FTIME && !HAVE_GETTIMEOFDAY*/
16528     tm->sec = (long) time(NULL);
16529     tm->ms = 0;
16530 #endif
16531 #endif
16532 }
16533
16534 /* Return the difference in milliseconds between two
16535    time marks.  We assume the difference will fit in a long!
16536 */
16537 long
16538 SubtractTimeMarks (TimeMark *tm2, TimeMark *tm1)
16539 {
16540     return 1000L*(tm2->sec - tm1->sec) +
16541            (long) (tm2->ms - tm1->ms);
16542 }
16543
16544
16545 /*
16546  * Code to manage the game clocks.
16547  *
16548  * In tournament play, black starts the clock and then white makes a move.
16549  * We give the human user a slight advantage if he is playing white---the
16550  * clocks don't run until he makes his first move, so it takes zero time.
16551  * Also, we don't account for network lag, so we could get out of sync
16552  * with GNU Chess's clock -- but then, referees are always right.
16553  */
16554
16555 static TimeMark tickStartTM;
16556 static long intendedTickLength;
16557
16558 long
16559 NextTickLength (long timeRemaining)
16560 {
16561     long nominalTickLength, nextTickLength;
16562
16563     if (timeRemaining > 0L && timeRemaining <= 10000L)
16564       nominalTickLength = 100L;
16565     else
16566       nominalTickLength = 1000L;
16567     nextTickLength = timeRemaining % nominalTickLength;
16568     if (nextTickLength <= 0) nextTickLength += nominalTickLength;
16569
16570     return nextTickLength;
16571 }
16572
16573 /* Adjust clock one minute up or down */
16574 void
16575 AdjustClock (Boolean which, int dir)
16576 {
16577     if(appData.autoCallFlag) { DisplayError(_("Clock adjustment not allowed in auto-flag mode"), 0); return; }
16578     if(which) blackTimeRemaining += 60000*dir;
16579     else      whiteTimeRemaining += 60000*dir;
16580     DisplayBothClocks();
16581     adjustedClock = TRUE;
16582 }
16583
16584 /* Stop clocks and reset to a fresh time control */
16585 void
16586 ResetClocks ()
16587 {
16588     (void) StopClockTimer();
16589     if (appData.icsActive) {
16590         whiteTimeRemaining = blackTimeRemaining = 0;
16591     } else if (searchTime) {
16592         whiteTimeRemaining = 1000*searchTime / WhitePlayer()->timeOdds;
16593         blackTimeRemaining = 1000*searchTime / WhitePlayer()->other->timeOdds;
16594     } else { /* [HGM] correct new time quote for time odds */
16595         whiteTC = blackTC = fullTimeControlString;
16596         whiteTimeRemaining = GetTimeQuota(-1, 0, whiteTC) / WhitePlayer()->timeOdds;
16597         blackTimeRemaining = GetTimeQuota(-1, 0, blackTC) / WhitePlayer()->other->timeOdds;
16598     }
16599     if (whiteFlag || blackFlag) {
16600         DisplayTitle("");
16601         whiteFlag = blackFlag = FALSE;
16602     }
16603     lastWhite = lastBlack = whiteStartMove = blackStartMove = 0;
16604     DisplayBothClocks();
16605     adjustedClock = FALSE;
16606 }
16607
16608 #define FUDGE 25 /* 25ms = 1/40 sec; should be plenty even for 50 Hz clocks */
16609
16610 /* Decrement running clock by amount of time that has passed */
16611 void
16612 DecrementClocks ()
16613 {
16614     long timeRemaining;
16615     long lastTickLength, fudge;
16616     TimeMark now;
16617
16618     if (!appData.clockMode) return;
16619     if (gameMode==AnalyzeMode || gameMode == AnalyzeFile) return;
16620
16621     GetTimeMark(&now);
16622
16623     lastTickLength = SubtractTimeMarks(&now, &tickStartTM);
16624
16625     /* Fudge if we woke up a little too soon */
16626     fudge = intendedTickLength - lastTickLength;
16627     if (fudge < 0 || fudge > FUDGE) fudge = 0;
16628
16629     if (WhiteOnMove(forwardMostMove)) {
16630         if(whiteNPS >= 0) lastTickLength = 0;
16631         timeRemaining = whiteTimeRemaining -= lastTickLength;
16632         if(timeRemaining < 0 && !appData.icsActive) {
16633             GetTimeQuota((forwardMostMove-whiteStartMove-1)/2, 0, whiteTC); // sets suddenDeath & nextSession;
16634             if(suddenDeath) { // [HGM] if we run out of a non-last incremental session, go to the next
16635                 whiteStartMove = forwardMostMove; whiteTC = nextSession;
16636                 lastWhite= timeRemaining = whiteTimeRemaining += GetTimeQuota(-1, 0, whiteTC);
16637             }
16638         }
16639         DisplayWhiteClock(whiteTimeRemaining - fudge,
16640                           WhiteOnMove(currentMove < forwardMostMove ? currentMove : forwardMostMove));
16641     } else {
16642         if(blackNPS >= 0) lastTickLength = 0;
16643         timeRemaining = blackTimeRemaining -= lastTickLength;
16644         if(timeRemaining < 0 && !appData.icsActive) { // [HGM] if we run out of a non-last incremental session, go to the next
16645             GetTimeQuota((forwardMostMove-blackStartMove-1)/2, 0, blackTC);
16646             if(suddenDeath) {
16647                 blackStartMove = forwardMostMove;
16648                 lastBlack = timeRemaining = blackTimeRemaining += GetTimeQuota(-1, 0, blackTC=nextSession);
16649             }
16650         }
16651         DisplayBlackClock(blackTimeRemaining - fudge,
16652                           !WhiteOnMove(currentMove < forwardMostMove ? currentMove : forwardMostMove));
16653     }
16654     if (CheckFlags()) return;
16655
16656     if(twoBoards) { // count down secondary board's clocks as well
16657         activePartnerTime -= lastTickLength;
16658         partnerUp = 1;
16659         if(activePartner == 'W')
16660             DisplayWhiteClock(activePartnerTime, TRUE); // the counting clock is always the highlighted one!
16661         else
16662             DisplayBlackClock(activePartnerTime, TRUE);
16663         partnerUp = 0;
16664     }
16665
16666     tickStartTM = now;
16667     intendedTickLength = NextTickLength(timeRemaining - fudge) + fudge;
16668     StartClockTimer(intendedTickLength);
16669
16670     /* if the time remaining has fallen below the alarm threshold, sound the
16671      * alarm. if the alarm has sounded and (due to a takeback or time control
16672      * with increment) the time remaining has increased to a level above the
16673      * threshold, reset the alarm so it can sound again.
16674      */
16675
16676     if (appData.icsActive && appData.icsAlarm) {
16677
16678         /* make sure we are dealing with the user's clock */
16679         if (!( ((gameMode == IcsPlayingWhite) && WhiteOnMove(currentMove)) ||
16680                ((gameMode == IcsPlayingBlack) && !WhiteOnMove(currentMove))
16681            )) return;
16682
16683         if (alarmSounded && (timeRemaining > appData.icsAlarmTime)) {
16684             alarmSounded = FALSE;
16685         } else if (!alarmSounded && (timeRemaining <= appData.icsAlarmTime)) {
16686             PlayAlarmSound();
16687             alarmSounded = TRUE;
16688         }
16689     }
16690 }
16691
16692
16693 /* A player has just moved, so stop the previously running
16694    clock and (if in clock mode) start the other one.
16695    We redisplay both clocks in case we're in ICS mode, because
16696    ICS gives us an update to both clocks after every move.
16697    Note that this routine is called *after* forwardMostMove
16698    is updated, so the last fractional tick must be subtracted
16699    from the color that is *not* on move now.
16700 */
16701 void
16702 SwitchClocks (int newMoveNr)
16703 {
16704     long lastTickLength;
16705     TimeMark now;
16706     int flagged = FALSE;
16707
16708     GetTimeMark(&now);
16709
16710     if (StopClockTimer() && appData.clockMode) {
16711         lastTickLength = SubtractTimeMarks(&now, &tickStartTM);
16712         if (!WhiteOnMove(forwardMostMove)) {
16713             if(blackNPS >= 0) lastTickLength = 0;
16714             blackTimeRemaining -= lastTickLength;
16715            /* [HGM] PGNtime: save time for PGN file if engine did not give it */
16716 //         if(pvInfoList[forwardMostMove].time == -1)
16717                  pvInfoList[forwardMostMove].time =               // use GUI time
16718                       (timeRemaining[1][forwardMostMove-1] - blackTimeRemaining)/10;
16719         } else {
16720            if(whiteNPS >= 0) lastTickLength = 0;
16721            whiteTimeRemaining -= lastTickLength;
16722            /* [HGM] PGNtime: save time for PGN file if engine did not give it */
16723 //         if(pvInfoList[forwardMostMove].time == -1)
16724                  pvInfoList[forwardMostMove].time =
16725                       (timeRemaining[0][forwardMostMove-1] - whiteTimeRemaining)/10;
16726         }
16727         flagged = CheckFlags();
16728     }
16729     forwardMostMove = newMoveNr; // [HGM] race: change stm when no timer interrupt scheduled
16730     CheckTimeControl();
16731
16732     if (flagged || !appData.clockMode) return;
16733
16734     switch (gameMode) {
16735       case MachinePlaysBlack:
16736       case MachinePlaysWhite:
16737       case BeginningOfGame:
16738         if (pausing) return;
16739         break;
16740
16741       case EditGame:
16742       case PlayFromGameFile:
16743       case IcsExamining:
16744         return;
16745
16746       default:
16747         break;
16748     }
16749
16750     if (searchTime) { // [HGM] st: set clock of player that has to move to max time
16751         if(WhiteOnMove(forwardMostMove))
16752              whiteTimeRemaining = 1000*searchTime / WhitePlayer()->timeOdds;
16753         else blackTimeRemaining = 1000*searchTime / WhitePlayer()->other->timeOdds;
16754     }
16755
16756     tickStartTM = now;
16757     intendedTickLength = NextTickLength(WhiteOnMove(forwardMostMove) ?
16758       whiteTimeRemaining : blackTimeRemaining);
16759     StartClockTimer(intendedTickLength);
16760 }
16761
16762
16763 /* Stop both clocks */
16764 void
16765 StopClocks ()
16766 {
16767     long lastTickLength;
16768     TimeMark now;
16769
16770     if (!StopClockTimer()) return;
16771     if (!appData.clockMode) return;
16772
16773     GetTimeMark(&now);
16774
16775     lastTickLength = SubtractTimeMarks(&now, &tickStartTM);
16776     if (WhiteOnMove(forwardMostMove)) {
16777         if(whiteNPS >= 0) lastTickLength = 0;
16778         whiteTimeRemaining -= lastTickLength;
16779         DisplayWhiteClock(whiteTimeRemaining, WhiteOnMove(currentMove));
16780     } else {
16781         if(blackNPS >= 0) lastTickLength = 0;
16782         blackTimeRemaining -= lastTickLength;
16783         DisplayBlackClock(blackTimeRemaining, !WhiteOnMove(currentMove));
16784     }
16785     CheckFlags();
16786 }
16787
16788 /* Start clock of player on move.  Time may have been reset, so
16789    if clock is already running, stop and restart it. */
16790 void
16791 StartClocks ()
16792 {
16793     (void) StopClockTimer(); /* in case it was running already */
16794     DisplayBothClocks();
16795     if (CheckFlags()) return;
16796
16797     if (!appData.clockMode) return;
16798     if (gameMode == AnalyzeMode || gameMode == AnalyzeFile) return;
16799
16800     GetTimeMark(&tickStartTM);
16801     intendedTickLength = NextTickLength(WhiteOnMove(forwardMostMove) ?
16802       whiteTimeRemaining : blackTimeRemaining);
16803
16804    /* [HGM] nps: figure out nps factors, by determining which engine plays white and/or black once and for all */
16805     whiteNPS = blackNPS = -1;
16806     if(gameMode == MachinePlaysWhite || gameMode == TwoMachinesPlay && first.twoMachinesColor[0] == 'w'
16807        || appData.zippyPlay && gameMode == IcsPlayingBlack) // first (perhaps only) engine has white
16808         whiteNPS = first.nps;
16809     if(gameMode == MachinePlaysBlack || gameMode == TwoMachinesPlay && first.twoMachinesColor[0] == 'b'
16810        || appData.zippyPlay && gameMode == IcsPlayingWhite) // first (perhaps only) engine has black
16811         blackNPS = first.nps;
16812     if(gameMode == TwoMachinesPlay && first.twoMachinesColor[0] == 'b') // second only used in Two-Machines mode
16813         whiteNPS = second.nps;
16814     if(gameMode == TwoMachinesPlay && first.twoMachinesColor[0] == 'w')
16815         blackNPS = second.nps;
16816     if(appData.debugMode) fprintf(debugFP, "nps: w=%d, b=%d\n", whiteNPS, blackNPS);
16817
16818     StartClockTimer(intendedTickLength);
16819 }
16820
16821 char *
16822 TimeString (long ms)
16823 {
16824     long second, minute, hour, day;
16825     char *sign = "";
16826     static char buf[32];
16827
16828     if (ms > 0 && ms <= 9900) {
16829       /* convert milliseconds to tenths, rounding up */
16830       double tenths = floor( ((double)(ms + 99L)) / 100.00 );
16831
16832       snprintf(buf,sizeof(buf)/sizeof(buf[0]), " %03.1f ", tenths/10.0);
16833       return buf;
16834     }
16835
16836     /* convert milliseconds to seconds, rounding up */
16837     /* use floating point to avoid strangeness of integer division
16838        with negative dividends on many machines */
16839     second = (long) floor(((double) (ms + 999L)) / 1000.0);
16840
16841     if (second < 0) {
16842         sign = "-";
16843         second = -second;
16844     }
16845
16846     day = second / (60 * 60 * 24);
16847     second = second % (60 * 60 * 24);
16848     hour = second / (60 * 60);
16849     second = second % (60 * 60);
16850     minute = second / 60;
16851     second = second % 60;
16852
16853     if (day > 0)
16854       snprintf(buf, sizeof(buf)/sizeof(buf[0]), " %s%ld:%02ld:%02ld:%02ld ",
16855               sign, day, hour, minute, second);
16856     else if (hour > 0)
16857       snprintf(buf, sizeof(buf)/sizeof(buf[0]), " %s%ld:%02ld:%02ld ", sign, hour, minute, second);
16858     else
16859       snprintf(buf, sizeof(buf)/sizeof(buf[0]), " %s%2ld:%02ld ", sign, minute, second);
16860
16861     return buf;
16862 }
16863
16864
16865 /*
16866  * This is necessary because some C libraries aren't ANSI C compliant yet.
16867  */
16868 char *
16869 StrStr (char *string, char *match)
16870 {
16871     int i, length;
16872
16873     length = strlen(match);
16874
16875     for (i = strlen(string) - length; i >= 0; i--, string++)
16876       if (!strncmp(match, string, length))
16877         return string;
16878
16879     return NULL;
16880 }
16881
16882 char *
16883 StrCaseStr (char *string, char *match)
16884 {
16885     int i, j, length;
16886
16887     length = strlen(match);
16888
16889     for (i = strlen(string) - length; i >= 0; i--, string++) {
16890         for (j = 0; j < length; j++) {
16891             if (ToLower(match[j]) != ToLower(string[j]))
16892               break;
16893         }
16894         if (j == length) return string;
16895     }
16896
16897     return NULL;
16898 }
16899
16900 #ifndef _amigados
16901 int
16902 StrCaseCmp (char *s1, char *s2)
16903 {
16904     char c1, c2;
16905
16906     for (;;) {
16907         c1 = ToLower(*s1++);
16908         c2 = ToLower(*s2++);
16909         if (c1 > c2) return 1;
16910         if (c1 < c2) return -1;
16911         if (c1 == NULLCHAR) return 0;
16912     }
16913 }
16914
16915
16916 int
16917 ToLower (int c)
16918 {
16919     return isupper(c) ? tolower(c) : c;
16920 }
16921
16922
16923 int
16924 ToUpper (int c)
16925 {
16926     return islower(c) ? toupper(c) : c;
16927 }
16928 #endif /* !_amigados    */
16929
16930 char *
16931 StrSave (char *s)
16932 {
16933   char *ret;
16934
16935   if ((ret = (char *) malloc(strlen(s) + 1)))
16936     {
16937       safeStrCpy(ret, s, strlen(s)+1);
16938     }
16939   return ret;
16940 }
16941
16942 char *
16943 StrSavePtr (char *s, char **savePtr)
16944 {
16945     if (*savePtr) {
16946         free(*savePtr);
16947     }
16948     if ((*savePtr = (char *) malloc(strlen(s) + 1))) {
16949       safeStrCpy(*savePtr, s, strlen(s)+1);
16950     }
16951     return(*savePtr);
16952 }
16953
16954 char *
16955 PGNDate ()
16956 {
16957     time_t clock;
16958     struct tm *tm;
16959     char buf[MSG_SIZ];
16960
16961     clock = time((time_t *)NULL);
16962     tm = localtime(&clock);
16963     snprintf(buf, MSG_SIZ, "%04d.%02d.%02d",
16964             tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday);
16965     return StrSave(buf);
16966 }
16967
16968
16969 char *
16970 PositionToFEN (int move, char *overrideCastling)
16971 {
16972     int i, j, fromX, fromY, toX, toY;
16973     int whiteToPlay;
16974     char buf[MSG_SIZ];
16975     char *p, *q;
16976     int emptycount;
16977     ChessSquare piece;
16978
16979     whiteToPlay = (gameMode == EditPosition) ?
16980       !blackPlaysFirst : (move % 2 == 0);
16981     p = buf;
16982
16983     /* Piece placement data */
16984     for (i = BOARD_HEIGHT - 1; i >= 0; i--) {
16985         if(MSG_SIZ - (p - buf) < BOARD_RGHT - BOARD_LEFT + 20) { *p = 0; return StrSave(buf); }
16986         emptycount = 0;
16987         for (j = BOARD_LEFT; j < BOARD_RGHT; j++) {
16988             if (boards[move][i][j] == EmptySquare) {
16989                 emptycount++;
16990             } else { ChessSquare piece = boards[move][i][j];
16991                 if (emptycount > 0) {
16992                     if(emptycount<10) /* [HGM] can be >= 10 */
16993                         *p++ = '0' + emptycount;
16994                     else { *p++ = '0' + emptycount/10; *p++ = '0' + emptycount%10; }
16995                     emptycount = 0;
16996                 }
16997                 if(PieceToChar(piece) == '+') {
16998                     /* [HGM] write promoted pieces as '+<unpromoted>' (Shogi) */
16999                     *p++ = '+';
17000                     piece = (ChessSquare)(DEMOTED piece);
17001                 }
17002                 *p++ = PieceToChar(piece);
17003                 if(p[-1] == '~') {
17004                     /* [HGM] flag promoted pieces as '<promoted>~' (Crazyhouse) */
17005                     p[-1] = PieceToChar((ChessSquare)(DEMOTED piece));
17006                     *p++ = '~';
17007                 }
17008             }
17009         }
17010         if (emptycount > 0) {
17011             if(emptycount<10) /* [HGM] can be >= 10 */
17012                 *p++ = '0' + emptycount;
17013             else { *p++ = '0' + emptycount/10; *p++ = '0' + emptycount%10; }
17014             emptycount = 0;
17015         }
17016         *p++ = '/';
17017     }
17018     *(p - 1) = ' ';
17019
17020     /* [HGM] print Crazyhouse or Shogi holdings */
17021     if( gameInfo.holdingsWidth ) {
17022         *(p-1) = '['; /* if we wanted to support BFEN, this could be '/' */
17023         q = p;
17024         for(i=0; i<gameInfo.holdingsSize; i++) { /* white holdings */
17025             piece = boards[move][i][BOARD_WIDTH-1];
17026             if( piece != EmptySquare )
17027               for(j=0; j<(int) boards[move][i][BOARD_WIDTH-2]; j++)
17028                   *p++ = PieceToChar(piece);
17029         }
17030         for(i=0; i<gameInfo.holdingsSize; i++) { /* black holdings */
17031             piece = boards[move][BOARD_HEIGHT-i-1][0];
17032             if( piece != EmptySquare )
17033               for(j=0; j<(int) boards[move][BOARD_HEIGHT-i-1][1]; j++)
17034                   *p++ = PieceToChar(piece);
17035         }
17036
17037         if( q == p ) *p++ = '-';
17038         *p++ = ']';
17039         *p++ = ' ';
17040     }
17041
17042     /* Active color */
17043     *p++ = whiteToPlay ? 'w' : 'b';
17044     *p++ = ' ';
17045
17046   if(q = overrideCastling) { // [HGM] FRC: override castling & e.p fields for non-compliant engines
17047     while(*p++ = *q++); if(q != overrideCastling+1) p[-1] = ' '; else --p;
17048   } else {
17049   if(nrCastlingRights) {
17050      q = p;
17051      if(gameInfo.variant == VariantFischeRandom || gameInfo.variant == VariantCapaRandom) {
17052        /* [HGM] write directly from rights */
17053            if(boards[move][CASTLING][2] != NoRights &&
17054               boards[move][CASTLING][0] != NoRights   )
17055                 *p++ = boards[move][CASTLING][0] + AAA + 'A' - 'a';
17056            if(boards[move][CASTLING][2] != NoRights &&
17057               boards[move][CASTLING][1] != NoRights   )
17058                 *p++ = boards[move][CASTLING][1] + AAA + 'A' - 'a';
17059            if(boards[move][CASTLING][5] != NoRights &&
17060               boards[move][CASTLING][3] != NoRights   )
17061                 *p++ = boards[move][CASTLING][3] + AAA;
17062            if(boards[move][CASTLING][5] != NoRights &&
17063               boards[move][CASTLING][4] != NoRights   )
17064                 *p++ = boards[move][CASTLING][4] + AAA;
17065      } else {
17066
17067         /* [HGM] write true castling rights */
17068         if( nrCastlingRights == 6 ) {
17069             int q, k=0;
17070             if(boards[move][CASTLING][0] == BOARD_RGHT-1 &&
17071                boards[move][CASTLING][2] != NoRights  ) k = 1, *p++ = 'K';
17072             q = (boards[move][CASTLING][1] == BOARD_LEFT &&
17073                  boards[move][CASTLING][2] != NoRights  );
17074             if(gameInfo.variant == VariantSChess) { // for S-Chess, indicate all vrgin backrank pieces
17075                 for(i=j=0; i<BOARD_HEIGHT; i++) j += boards[move][i][BOARD_RGHT]; // count white held pieces
17076                 for(i=BOARD_RGHT-1-k; i>=BOARD_LEFT+q && j; i--)
17077                     if((boards[move][0][i] != WhiteKing || k+q == 0) &&
17078                         boards[move][VIRGIN][i] & VIRGIN_W) *p++ = i + AAA + 'A' - 'a';
17079             }
17080             if(q) *p++ = 'Q';
17081             k = 0;
17082             if(boards[move][CASTLING][3] == BOARD_RGHT-1 &&
17083                boards[move][CASTLING][5] != NoRights  ) k = 1, *p++ = 'k';
17084             q = (boards[move][CASTLING][4] == BOARD_LEFT &&
17085                  boards[move][CASTLING][5] != NoRights  );
17086             if(gameInfo.variant == VariantSChess) {
17087                 for(i=j=0; i<BOARD_HEIGHT; i++) j += boards[move][i][BOARD_LEFT-1]; // count black held pieces
17088                 for(i=BOARD_RGHT-1-k; i>=BOARD_LEFT+q && j; i--)
17089                     if((boards[move][BOARD_HEIGHT-1][i] != BlackKing || k+q == 0) &&
17090                         boards[move][VIRGIN][i] & VIRGIN_B) *p++ = i + AAA;
17091             }
17092             if(q) *p++ = 'q';
17093         }
17094      }
17095      if (q == p) *p++ = '-'; /* No castling rights */
17096      *p++ = ' ';
17097   }
17098
17099   if(gameInfo.variant != VariantShogi    && gameInfo.variant != VariantXiangqi &&
17100      gameInfo.variant != VariantShatranj && gameInfo.variant != VariantCourier && gameInfo.variant != VariantMakruk ) {
17101     /* En passant target square */
17102     if (move > backwardMostMove) {
17103         fromX = moveList[move - 1][0] - AAA;
17104         fromY = moveList[move - 1][1] - ONE;
17105         toX = moveList[move - 1][2] - AAA;
17106         toY = moveList[move - 1][3] - ONE;
17107         if (fromY == (whiteToPlay ? BOARD_HEIGHT-2 : 1) &&
17108             toY == (whiteToPlay ? BOARD_HEIGHT-4 : 3) &&
17109             boards[move][toY][toX] == (whiteToPlay ? BlackPawn : WhitePawn) &&
17110             fromX == toX) {
17111             /* 2-square pawn move just happened */
17112             *p++ = toX + AAA;
17113             *p++ = whiteToPlay ? '6'+BOARD_HEIGHT-8 : '3';
17114         } else {
17115             *p++ = '-';
17116         }
17117     } else if(move == backwardMostMove) {
17118         // [HGM] perhaps we should always do it like this, and forget the above?
17119         if((signed char)boards[move][EP_STATUS] >= 0) {
17120             *p++ = boards[move][EP_STATUS] + AAA;
17121             *p++ = whiteToPlay ? '6'+BOARD_HEIGHT-8 : '3';
17122         } else {
17123             *p++ = '-';
17124         }
17125     } else {
17126         *p++ = '-';
17127     }
17128     *p++ = ' ';
17129   }
17130   }
17131
17132     /* [HGM] find reversible plies */
17133     {   int i = 0, j=move;
17134
17135         if (appData.debugMode) { int k;
17136             fprintf(debugFP, "write FEN 50-move: %d %d %d\n", initialRulePlies, forwardMostMove, backwardMostMove);
17137             for(k=backwardMostMove; k<=forwardMostMove; k++)
17138                 fprintf(debugFP, "e%d. p=%d\n", k, (signed char)boards[k][EP_STATUS]);
17139
17140         }
17141
17142         while(j > backwardMostMove && (signed char)boards[j][EP_STATUS] <= EP_NONE) j--,i++;
17143         if( j == backwardMostMove ) i += initialRulePlies;
17144         sprintf(p, "%d ", i);
17145         p += i>=100 ? 4 : i >= 10 ? 3 : 2;
17146     }
17147     /* Fullmove number */
17148     sprintf(p, "%d", (move / 2) + 1);
17149
17150     return StrSave(buf);
17151 }
17152
17153 Boolean
17154 ParseFEN (Board board, int *blackPlaysFirst, char *fen)
17155 {
17156     int i, j;
17157     char *p, c;
17158     int emptycount, virgin[BOARD_FILES];
17159     ChessSquare piece;
17160
17161     p = fen;
17162
17163     /* [HGM] by default clear Crazyhouse holdings, if present */
17164     if(gameInfo.holdingsWidth) {
17165        for(i=0; i<BOARD_HEIGHT; i++) {
17166            board[i][0]             = EmptySquare; /* black holdings */
17167            board[i][BOARD_WIDTH-1] = EmptySquare; /* white holdings */
17168            board[i][1]             = (ChessSquare) 0; /* black counts */
17169            board[i][BOARD_WIDTH-2] = (ChessSquare) 0; /* white counts */
17170        }
17171     }
17172
17173     /* Piece placement data */
17174     for (i = BOARD_HEIGHT - 1; i >= 0; i--) {
17175         j = 0;
17176         for (;;) {
17177             if (*p == '/' || *p == ' ' || (*p == '[' && i == 0) ) {
17178                 if (*p == '/') p++;
17179                 emptycount = gameInfo.boardWidth - j;
17180                 while (emptycount--)
17181                         board[i][(j++)+gameInfo.holdingsWidth] = EmptySquare;
17182                 break;
17183 #if(BOARD_FILES >= 10)
17184             } else if(*p=='x' || *p=='X') { /* [HGM] X means 10 */
17185                 p++; emptycount=10;
17186                 if (j + emptycount > gameInfo.boardWidth) return FALSE;
17187                 while (emptycount--)
17188                         board[i][(j++)+gameInfo.holdingsWidth] = EmptySquare;
17189 #endif
17190             } else if (isdigit(*p)) {
17191                 emptycount = *p++ - '0';
17192                 while(isdigit(*p)) emptycount = 10*emptycount + *p++ - '0'; /* [HGM] allow > 9 */
17193                 if (j + emptycount > gameInfo.boardWidth) return FALSE;
17194                 while (emptycount--)
17195                         board[i][(j++)+gameInfo.holdingsWidth] = EmptySquare;
17196             } else if (*p == '+' || isalpha(*p)) {
17197                 if (j >= gameInfo.boardWidth) return FALSE;
17198                 if(*p=='+') {
17199                     piece = CharToPiece(*++p);
17200                     if(piece == EmptySquare) return FALSE; /* unknown piece */
17201                     piece = (ChessSquare) (PROMOTED piece ); p++;
17202                     if(PieceToChar(piece) != '+') return FALSE; /* unpromotable piece */
17203                 } else piece = CharToPiece(*p++);
17204
17205                 if(piece==EmptySquare) return FALSE; /* unknown piece */
17206                 if(*p == '~') { /* [HGM] make it a promoted piece for Crazyhouse */
17207                     piece = (ChessSquare) (PROMOTED piece);
17208                     if(PieceToChar(piece) != '~') return FALSE; /* cannot be a promoted piece */
17209                     p++;
17210                 }
17211                 board[i][(j++)+gameInfo.holdingsWidth] = piece;
17212             } else {
17213                 return FALSE;
17214             }
17215         }
17216     }
17217     while (*p == '/' || *p == ' ') p++;
17218
17219     /* [HGM] look for Crazyhouse holdings here */
17220     while(*p==' ') p++;
17221     if( gameInfo.holdingsWidth && p[-1] == '/' || *p == '[') {
17222         if(*p == '[') p++;
17223         if(*p == '-' ) p++; /* empty holdings */ else {
17224             if( !gameInfo.holdingsWidth ) return FALSE; /* no room to put holdings! */
17225             /* if we would allow FEN reading to set board size, we would   */
17226             /* have to add holdings and shift the board read so far here   */
17227             while( (piece = CharToPiece(*p) ) != EmptySquare ) {
17228                 p++;
17229                 if((int) piece >= (int) BlackPawn ) {
17230                     i = (int)piece - (int)BlackPawn;
17231                     i = PieceToNumber((ChessSquare)i);
17232                     if( i >= gameInfo.holdingsSize ) return FALSE;
17233                     board[BOARD_HEIGHT-1-i][0] = piece; /* black holdings */
17234                     board[BOARD_HEIGHT-1-i][1]++;       /* black counts   */
17235                 } else {
17236                     i = (int)piece - (int)WhitePawn;
17237                     i = PieceToNumber((ChessSquare)i);
17238                     if( i >= gameInfo.holdingsSize ) return FALSE;
17239                     board[i][BOARD_WIDTH-1] = piece;    /* white holdings */
17240                     board[i][BOARD_WIDTH-2]++;          /* black holdings */
17241                 }
17242             }
17243         }
17244         if(*p == ']') p++;
17245     }
17246
17247     while(*p == ' ') p++;
17248
17249     /* Active color */
17250     c = *p++;
17251     if(appData.colorNickNames) {
17252       if( c == appData.colorNickNames[0] ) c = 'w'; else
17253       if( c == appData.colorNickNames[1] ) c = 'b';
17254     }
17255     switch (c) {
17256       case 'w':
17257         *blackPlaysFirst = FALSE;
17258         break;
17259       case 'b':
17260         *blackPlaysFirst = TRUE;
17261         break;
17262       default:
17263         return FALSE;
17264     }
17265
17266     /* [HGM] We NO LONGER ignore the rest of the FEN notation */
17267     /* return the extra info in global variiables             */
17268
17269     /* set defaults in case FEN is incomplete */
17270     board[EP_STATUS] = EP_UNKNOWN;
17271     for(i=0; i<nrCastlingRights; i++ ) {
17272         board[CASTLING][i] =
17273             gameInfo.variant == VariantFischeRandom || gameInfo.variant == VariantCapaRandom ? NoRights : initialRights[i];
17274     }   /* assume possible unless obviously impossible */
17275     if(initialRights[0]!=NoRights && board[castlingRank[0]][initialRights[0]] != WhiteRook) board[CASTLING][0] = NoRights;
17276     if(initialRights[1]!=NoRights && board[castlingRank[1]][initialRights[1]] != WhiteRook) board[CASTLING][1] = NoRights;
17277     if(initialRights[2]!=NoRights && board[castlingRank[2]][initialRights[2]] != WhiteUnicorn
17278                                   && board[castlingRank[2]][initialRights[2]] != WhiteKing) board[CASTLING][2] = NoRights;
17279     if(initialRights[3]!=NoRights && board[castlingRank[3]][initialRights[3]] != BlackRook) board[CASTLING][3] = NoRights;
17280     if(initialRights[4]!=NoRights && board[castlingRank[4]][initialRights[4]] != BlackRook) board[CASTLING][4] = NoRights;
17281     if(initialRights[5]!=NoRights && board[castlingRank[5]][initialRights[5]] != BlackUnicorn
17282                                   && board[castlingRank[5]][initialRights[5]] != BlackKing) board[CASTLING][5] = NoRights;
17283     FENrulePlies = 0;
17284
17285     while(*p==' ') p++;
17286     if(nrCastlingRights) {
17287       if(gameInfo.variant == VariantSChess) for(i=0; i<BOARD_FILES; i++) virgin[i] = 0;
17288       if(*p >= 'A' && *p <= 'Z' || *p >= 'a' && *p <= 'z' || *p=='-') {
17289           /* castling indicator present, so default becomes no castlings */
17290           for(i=0; i<nrCastlingRights; i++ ) {
17291                  board[CASTLING][i] = NoRights;
17292           }
17293       }
17294       while(*p=='K' || *p=='Q' || *p=='k' || *p=='q' || *p=='-' ||
17295              (gameInfo.variant == VariantFischeRandom || gameInfo.variant == VariantCapaRandom || gameInfo.variant == VariantSChess) &&
17296              ( *p >= 'a' && *p < 'a' + gameInfo.boardWidth) ||
17297              ( *p >= 'A' && *p < 'A' + gameInfo.boardWidth)   ) {
17298         int c = *p++, whiteKingFile=NoRights, blackKingFile=NoRights;
17299
17300         for(i=BOARD_LEFT; i<BOARD_RGHT; i++) {
17301             if(board[BOARD_HEIGHT-1][i] == BlackKing) blackKingFile = i;
17302             if(board[0             ][i] == WhiteKing) whiteKingFile = i;
17303         }
17304         if(gameInfo.variant == VariantTwoKings || gameInfo.variant == VariantKnightmate)
17305             whiteKingFile = blackKingFile = BOARD_WIDTH >> 1; // for these variant scanning fails
17306         if(whiteKingFile == NoRights || board[0][whiteKingFile] != WhiteUnicorn
17307                                      && board[0][whiteKingFile] != WhiteKing) whiteKingFile = NoRights;
17308         if(blackKingFile == NoRights || board[BOARD_HEIGHT-1][blackKingFile] != BlackUnicorn
17309                                      && board[BOARD_HEIGHT-1][blackKingFile] != BlackKing) blackKingFile = NoRights;
17310         switch(c) {
17311           case'K':
17312               for(i=BOARD_RGHT-1; board[0][i]!=WhiteRook && i>whiteKingFile; i--);
17313               board[CASTLING][0] = i != whiteKingFile ? i : NoRights;
17314               board[CASTLING][2] = whiteKingFile;
17315               if(board[CASTLING][0] != NoRights) virgin[board[CASTLING][0]] |= VIRGIN_W;
17316               if(board[CASTLING][2] != NoRights) virgin[board[CASTLING][2]] |= VIRGIN_W;
17317               break;
17318           case'Q':
17319               for(i=BOARD_LEFT;  i<BOARD_RGHT && board[0][i]!=WhiteRook && i<whiteKingFile; i++);
17320               board[CASTLING][1] = i != whiteKingFile ? i : NoRights;
17321               board[CASTLING][2] = whiteKingFile;
17322               if(board[CASTLING][1] != NoRights) virgin[board[CASTLING][1]] |= VIRGIN_W;
17323               if(board[CASTLING][2] != NoRights) virgin[board[CASTLING][2]] |= VIRGIN_W;
17324               break;
17325           case'k':
17326               for(i=BOARD_RGHT-1; board[BOARD_HEIGHT-1][i]!=BlackRook && i>blackKingFile; i--);
17327               board[CASTLING][3] = i != blackKingFile ? i : NoRights;
17328               board[CASTLING][5] = blackKingFile;
17329               if(board[CASTLING][3] != NoRights) virgin[board[CASTLING][3]] |= VIRGIN_B;
17330               if(board[CASTLING][5] != NoRights) virgin[board[CASTLING][5]] |= VIRGIN_B;
17331               break;
17332           case'q':
17333               for(i=BOARD_LEFT; i<BOARD_RGHT && board[BOARD_HEIGHT-1][i]!=BlackRook && i<blackKingFile; i++);
17334               board[CASTLING][4] = i != blackKingFile ? i : NoRights;
17335               board[CASTLING][5] = blackKingFile;
17336               if(board[CASTLING][4] != NoRights) virgin[board[CASTLING][4]] |= VIRGIN_B;
17337               if(board[CASTLING][5] != NoRights) virgin[board[CASTLING][5]] |= VIRGIN_B;
17338           case '-':
17339               break;
17340           default: /* FRC castlings */
17341               if(c >= 'a') { /* black rights */
17342                   if(gameInfo.variant == VariantSChess) { virgin[c-AAA] |= VIRGIN_B; break; } // in S-Chess castlings are always kq, so just virginity
17343                   for(i=BOARD_LEFT; i<BOARD_RGHT; i++)
17344                     if(board[BOARD_HEIGHT-1][i] == BlackKing) break;
17345                   if(i == BOARD_RGHT) break;
17346                   board[CASTLING][5] = i;
17347                   c -= AAA;
17348                   if(board[BOARD_HEIGHT-1][c] <  BlackPawn ||
17349                      board[BOARD_HEIGHT-1][c] >= BlackKing   ) break;
17350                   if(c > i)
17351                       board[CASTLING][3] = c;
17352                   else
17353                       board[CASTLING][4] = c;
17354               } else { /* white rights */
17355                   if(gameInfo.variant == VariantSChess) { virgin[c-AAA-'A'+'a'] |= VIRGIN_W; break; } // in S-Chess castlings are always KQ
17356                   for(i=BOARD_LEFT; i<BOARD_RGHT; i++)
17357                     if(board[0][i] == WhiteKing) break;
17358                   if(i == BOARD_RGHT) break;
17359                   board[CASTLING][2] = i;
17360                   c -= AAA - 'a' + 'A';
17361                   if(board[0][c] >= WhiteKing) break;
17362                   if(c > i)
17363                       board[CASTLING][0] = c;
17364                   else
17365                       board[CASTLING][1] = c;
17366               }
17367         }
17368       }
17369       for(i=0; i<nrCastlingRights; i++)
17370         if(board[CASTLING][i] != NoRights) initialRights[i] = board[CASTLING][i];
17371       if(gameInfo.variant == VariantSChess) for(i=0; i<BOARD_FILES; i++) board[VIRGIN][i] = virgin[i];
17372     if (appData.debugMode) {
17373         fprintf(debugFP, "FEN castling rights:");
17374         for(i=0; i<nrCastlingRights; i++)
17375         fprintf(debugFP, " %d", board[CASTLING][i]);
17376         fprintf(debugFP, "\n");
17377     }
17378
17379       while(*p==' ') p++;
17380     }
17381
17382     /* read e.p. field in games that know e.p. capture */
17383     if(gameInfo.variant != VariantShogi    && gameInfo.variant != VariantXiangqi &&
17384        gameInfo.variant != VariantShatranj && gameInfo.variant != VariantCourier && gameInfo.variant != VariantMakruk ) {
17385       if(*p=='-') {
17386         p++; board[EP_STATUS] = EP_NONE;
17387       } else {
17388          char c = *p++ - AAA;
17389
17390          if(c < BOARD_LEFT || c >= BOARD_RGHT) return TRUE;
17391          if(*p >= '0' && *p <='9') p++;
17392          board[EP_STATUS] = c;
17393       }
17394     }
17395
17396
17397     if(sscanf(p, "%d", &i) == 1) {
17398         FENrulePlies = i; /* 50-move ply counter */
17399         /* (The move number is still ignored)    */
17400     }
17401
17402     return TRUE;
17403 }
17404
17405 void
17406 EditPositionPasteFEN (char *fen)
17407 {
17408   if (fen != NULL) {
17409     Board initial_position;
17410
17411     if (!ParseFEN(initial_position, &blackPlaysFirst, fen)) {
17412       DisplayError(_("Bad FEN position in clipboard"), 0);
17413       return ;
17414     } else {
17415       int savedBlackPlaysFirst = blackPlaysFirst;
17416       EditPositionEvent();
17417       blackPlaysFirst = savedBlackPlaysFirst;
17418       CopyBoard(boards[0], initial_position);
17419       initialRulePlies = FENrulePlies; /* [HGM] copy FEN attributes as well */
17420       EditPositionDone(FALSE); // [HGM] fake: do not fake rights if we had FEN
17421       DisplayBothClocks();
17422       DrawPosition(FALSE, boards[currentMove]);
17423     }
17424   }
17425 }
17426
17427 static char cseq[12] = "\\   ";
17428
17429 Boolean
17430 set_cont_sequence (char *new_seq)
17431 {
17432     int len;
17433     Boolean ret;
17434
17435     // handle bad attempts to set the sequence
17436         if (!new_seq)
17437                 return 0; // acceptable error - no debug
17438
17439     len = strlen(new_seq);
17440     ret = (len > 0) && (len < sizeof(cseq));
17441     if (ret)
17442       safeStrCpy(cseq, new_seq, sizeof(cseq)/sizeof(cseq[0]));
17443     else if (appData.debugMode)
17444       fprintf(debugFP, "Invalid continuation sequence \"%s\"  (maximum length is: %u)\n", new_seq, (unsigned) sizeof(cseq)-1);
17445     return ret;
17446 }
17447
17448 /*
17449     reformat a source message so words don't cross the width boundary.  internal
17450     newlines are not removed.  returns the wrapped size (no null character unless
17451     included in source message).  If dest is NULL, only calculate the size required
17452     for the dest buffer.  lp argument indicats line position upon entry, and it's
17453     passed back upon exit.
17454 */
17455 int
17456 wrap (char *dest, char *src, int count, int width, int *lp)
17457 {
17458     int len, i, ansi, cseq_len, line, old_line, old_i, old_len, clen;
17459
17460     cseq_len = strlen(cseq);
17461     old_line = line = *lp;
17462     ansi = len = clen = 0;
17463
17464     for (i=0; i < count; i++)
17465     {
17466         if (src[i] == '\033')
17467             ansi = 1;
17468
17469         // if we hit the width, back up
17470         if (!ansi && (line >= width) && src[i] != '\n' && src[i] != ' ')
17471         {
17472             // store i & len in case the word is too long
17473             old_i = i, old_len = len;
17474
17475             // find the end of the last word
17476             while (i && src[i] != ' ' && src[i] != '\n')
17477             {
17478                 i--;
17479                 len--;
17480             }
17481
17482             // word too long?  restore i & len before splitting it
17483             if ((old_i-i+clen) >= width)
17484             {
17485                 i = old_i;
17486                 len = old_len;
17487             }
17488
17489             // extra space?
17490             if (i && src[i-1] == ' ')
17491                 len--;
17492
17493             if (src[i] != ' ' && src[i] != '\n')
17494             {
17495                 i--;
17496                 if (len)
17497                     len--;
17498             }
17499
17500             // now append the newline and continuation sequence
17501             if (dest)
17502                 dest[len] = '\n';
17503             len++;
17504             if (dest)
17505                 strncpy(dest+len, cseq, cseq_len);
17506             len += cseq_len;
17507             line = cseq_len;
17508             clen = cseq_len;
17509             continue;
17510         }
17511
17512         if (dest)
17513             dest[len] = src[i];
17514         len++;
17515         if (!ansi)
17516             line++;
17517         if (src[i] == '\n')
17518             line = 0;
17519         if (src[i] == 'm')
17520             ansi = 0;
17521     }
17522     if (dest && appData.debugMode)
17523     {
17524         fprintf(debugFP, "wrap(count:%d,width:%d,line:%d,len:%d,*lp:%d,src: ",
17525             count, width, line, len, *lp);
17526         show_bytes(debugFP, src, count);
17527         fprintf(debugFP, "\ndest: ");
17528         show_bytes(debugFP, dest, len);
17529         fprintf(debugFP, "\n");
17530     }
17531     *lp = dest ? line : old_line;
17532
17533     return len;
17534 }
17535
17536 // [HGM] vari: routines for shelving variations
17537 Boolean modeRestore = FALSE;
17538
17539 void
17540 PushInner (int firstMove, int lastMove)
17541 {
17542         int i, j, nrMoves = lastMove - firstMove;
17543
17544         // push current tail of game on stack
17545         savedResult[storedGames] = gameInfo.result;
17546         savedDetails[storedGames] = gameInfo.resultDetails;
17547         gameInfo.resultDetails = NULL;
17548         savedFirst[storedGames] = firstMove;
17549         savedLast [storedGames] = lastMove;
17550         savedFramePtr[storedGames] = framePtr;
17551         framePtr -= nrMoves; // reserve space for the boards
17552         for(i=nrMoves; i>=1; i--) { // copy boards to stack, working downwards, in case of overlap
17553             CopyBoard(boards[framePtr+i], boards[firstMove+i]);
17554             for(j=0; j<MOVE_LEN; j++)
17555                 moveList[framePtr+i][j] = moveList[firstMove+i-1][j];
17556             for(j=0; j<2*MOVE_LEN; j++)
17557                 parseList[framePtr+i][j] = parseList[firstMove+i-1][j];
17558             timeRemaining[0][framePtr+i] = timeRemaining[0][firstMove+i];
17559             timeRemaining[1][framePtr+i] = timeRemaining[1][firstMove+i];
17560             pvInfoList[framePtr+i] = pvInfoList[firstMove+i-1];
17561             pvInfoList[firstMove+i-1].depth = 0;
17562             commentList[framePtr+i] = commentList[firstMove+i];
17563             commentList[firstMove+i] = NULL;
17564         }
17565
17566         storedGames++;
17567         forwardMostMove = firstMove; // truncate game so we can start variation
17568 }
17569
17570 void
17571 PushTail (int firstMove, int lastMove)
17572 {
17573         if(appData.icsActive) { // only in local mode
17574                 forwardMostMove = currentMove; // mimic old ICS behavior
17575                 return;
17576         }
17577         if(storedGames >= MAX_VARIATIONS-2) return; // leave one for PV-walk
17578
17579         PushInner(firstMove, lastMove);
17580         if(storedGames == 1) GreyRevert(FALSE);
17581         if(gameMode == PlayFromGameFile) gameMode = EditGame, modeRestore = TRUE;
17582 }
17583
17584 void
17585 PopInner (Boolean annotate)
17586 {
17587         int i, j, nrMoves;
17588         char buf[8000], moveBuf[20];
17589
17590         ToNrEvent(savedFirst[storedGames-1]); // sets currentMove
17591         storedGames--; // do this after ToNrEvent, to make sure HistorySet will refresh entire game after PopInner returns
17592         nrMoves = savedLast[storedGames] - currentMove;
17593         if(annotate) {
17594                 int cnt = 10;
17595                 if(!WhiteOnMove(currentMove))
17596                   snprintf(buf, sizeof(buf)/sizeof(buf[0]),"(%d...", (currentMove+2)>>1);
17597                 else safeStrCpy(buf, "(", sizeof(buf)/sizeof(buf[0]));
17598                 for(i=currentMove; i<forwardMostMove; i++) {
17599                         if(WhiteOnMove(i))
17600                           snprintf(moveBuf, sizeof(moveBuf)/sizeof(moveBuf[0]), " %d. %s", (i+2)>>1, SavePart(parseList[i]));
17601                         else snprintf(moveBuf, sizeof(moveBuf)/sizeof(moveBuf[0])," %s", SavePart(parseList[i]));
17602                         strcat(buf, moveBuf);
17603                         if(commentList[i]) { strcat(buf, " "); strcat(buf, commentList[i]); }
17604                         if(!--cnt) { strcat(buf, "\n"); cnt = 10; }
17605                 }
17606                 strcat(buf, ")");
17607         }
17608         for(i=1; i<=nrMoves; i++) { // copy last variation back
17609             CopyBoard(boards[currentMove+i], boards[framePtr+i]);
17610             for(j=0; j<MOVE_LEN; j++)
17611                 moveList[currentMove+i-1][j] = moveList[framePtr+i][j];
17612             for(j=0; j<2*MOVE_LEN; j++)
17613                 parseList[currentMove+i-1][j] = parseList[framePtr+i][j];
17614             timeRemaining[0][currentMove+i] = timeRemaining[0][framePtr+i];
17615             timeRemaining[1][currentMove+i] = timeRemaining[1][framePtr+i];
17616             pvInfoList[currentMove+i-1] = pvInfoList[framePtr+i];
17617             if(commentList[currentMove+i]) free(commentList[currentMove+i]);
17618             commentList[currentMove+i] = commentList[framePtr+i];
17619             commentList[framePtr+i] = NULL;
17620         }
17621         if(annotate) AppendComment(currentMove+1, buf, FALSE);
17622         framePtr = savedFramePtr[storedGames];
17623         gameInfo.result = savedResult[storedGames];
17624         if(gameInfo.resultDetails != NULL) {
17625             free(gameInfo.resultDetails);
17626       }
17627         gameInfo.resultDetails = savedDetails[storedGames];
17628         forwardMostMove = currentMove + nrMoves;
17629 }
17630
17631 Boolean
17632 PopTail (Boolean annotate)
17633 {
17634         if(appData.icsActive) return FALSE; // only in local mode
17635         if(!storedGames) return FALSE; // sanity
17636         CommentPopDown(); // make sure no stale variation comments to the destroyed line can remain open
17637
17638         PopInner(annotate);
17639         if(currentMove < forwardMostMove) ForwardEvent(); else
17640         HistorySet(parseList, backwardMostMove, forwardMostMove, currentMove-1);
17641
17642         if(storedGames == 0) { GreyRevert(TRUE); if(modeRestore) modeRestore = FALSE, gameMode = PlayFromGameFile; }
17643         return TRUE;
17644 }
17645
17646 void
17647 CleanupTail ()
17648 {       // remove all shelved variations
17649         int i;
17650         for(i=0; i<storedGames; i++) {
17651             if(savedDetails[i])
17652                 free(savedDetails[i]);
17653             savedDetails[i] = NULL;
17654         }
17655         for(i=framePtr; i<MAX_MOVES; i++) {
17656                 if(commentList[i]) free(commentList[i]);
17657                 commentList[i] = NULL;
17658         }
17659         framePtr = MAX_MOVES-1;
17660         storedGames = 0;
17661 }
17662
17663 void
17664 LoadVariation (int index, char *text)
17665 {       // [HGM] vari: shelve previous line and load new variation, parsed from text around text[index]
17666         char *p = text, *start = NULL, *end = NULL, wait = NULLCHAR;
17667         int level = 0, move;
17668
17669         if(gameMode != EditGame && gameMode != AnalyzeMode && gameMode != PlayFromGameFile) return;
17670         // first find outermost bracketing variation
17671         while(*p) { // hope I got this right... Non-nesting {} and [] can screen each other and nesting ()
17672             if(!wait) { // while inside [] pr {}, ignore everyting except matching closing ]}
17673                 if(*p == '{') wait = '}'; else
17674                 if(*p == '[') wait = ']'; else
17675                 if(*p == '(' && level++ == 0 && p-text < index) start = p+1;
17676                 if(*p == ')' && level > 0 && --level == 0 && p-text > index && end == NULL) end = p-1;
17677             }
17678             if(*p == wait) wait = NULLCHAR; // closing ]} found
17679             p++;
17680         }
17681         if(!start || !end) return; // no variation found, or syntax error in PGN: ignore click
17682         if(appData.debugMode) fprintf(debugFP, "at move %d load variation '%s'\n", currentMove, start);
17683         end[1] = NULLCHAR; // clip off comment beyond variation
17684         ToNrEvent(currentMove-1);
17685         PushTail(currentMove, forwardMostMove); // shelve main variation. This truncates game
17686         // kludge: use ParsePV() to append variation to game
17687         move = currentMove;
17688         ParsePV(start, TRUE, TRUE);
17689         forwardMostMove = endPV; endPV = -1; currentMove = move; // cleanup what ParsePV did
17690         ClearPremoveHighlights();
17691         CommentPopDown();
17692         ToNrEvent(currentMove+1);
17693 }
17694
17695 void
17696 LoadTheme ()
17697 {
17698     char *p, *q, buf[MSG_SIZ];
17699     if(engineLine && engineLine[0]) { // a theme was selected from the listbox
17700         snprintf(buf, MSG_SIZ, "-theme %s", engineLine);
17701         ParseArgsFromString(buf);
17702         ActivateTheme(TRUE); // also redo colors
17703         return;
17704     }
17705     p = nickName;
17706     if(*p && !strchr(p, '"')) // theme name specified and well-formed; add settings to theme list
17707     {
17708         int len;
17709         q = appData.themeNames;
17710         snprintf(buf, MSG_SIZ, "\"%s\"", nickName);
17711       if(appData.useBitmaps) {
17712         snprintf(buf+strlen(buf), MSG_SIZ-strlen(buf), " -ubt true -lbtf \"%s\" -dbtf \"%s\" -lbtm %d -dbtm %d",
17713                 appData.liteBackTextureFile, appData.darkBackTextureFile,
17714                 appData.liteBackTextureMode,
17715                 appData.darkBackTextureMode );
17716       } else {
17717         snprintf(buf+strlen(buf), MSG_SIZ-strlen(buf), " -ubt false -lsc %s -dsc %s",
17718                 Col2Text(2),   // lightSquareColor
17719                 Col2Text(3) ); // darkSquareColor
17720       }
17721       if(appData.useBorder) {
17722         snprintf(buf+strlen(buf), MSG_SIZ-strlen(buf), " -ub true -border \"%s\"",
17723                 appData.border);
17724       } else {
17725         snprintf(buf+strlen(buf), MSG_SIZ-strlen(buf), " -ub false");
17726       }
17727       if(appData.useFont) {
17728         snprintf(buf+strlen(buf), MSG_SIZ-strlen(buf), " -upf true -pf \"%s\" -fptc \"%s\" -fpfcw %s -fpbcb %s",
17729                 appData.renderPiecesWithFont,
17730                 appData.fontToPieceTable,
17731                 Col2Text(9),    // appData.fontBackColorWhite
17732                 Col2Text(10) ); // appData.fontForeColorBlack
17733       } else {
17734         snprintf(buf+strlen(buf), MSG_SIZ-strlen(buf), " -upf false -pid \"%s\"",
17735                 appData.pieceDirectory);
17736         if(!appData.pieceDirectory[0])
17737           snprintf(buf+strlen(buf), MSG_SIZ-strlen(buf), " -wpc %s -bpc %s",
17738                 Col2Text(0),   // whitePieceColor
17739                 Col2Text(1) ); // blackPieceColor
17740       }
17741       snprintf(buf+strlen(buf), MSG_SIZ-strlen(buf), " -hsc %s -phc %s\n",
17742                 Col2Text(4),   // highlightSquareColor
17743                 Col2Text(5) ); // premoveHighlightColor
17744         appData.themeNames = malloc(len = strlen(q) + strlen(buf) + 1);
17745         if(insert != q) insert[-1] = NULLCHAR;
17746         snprintf(appData.themeNames, len, "%s\n%s%s", q, buf, insert);
17747         if(q)   free(q);
17748     }
17749     ActivateTheme(FALSE);
17750 }