From: Arun Persaud Date: Sat, 9 Jan 2010 23:18:42 +0000 (-0800) Subject: fixed merge: messed up backend.c and forgot to add it before commiting X-Git-Tag: gtk-20100118~12 X-Git-Url: http://winboard.nl/cgi-bin?p=xboard.git;a=commitdiff_plain;h=5514b4ae4147a322cb8c818e8bf25a785f881cc9 fixed merge: messed up backend.c and forgot to add it before commiting --- diff --git a/backend.c b/backend.c index 3223279..4808895 100644 --- a/backend.c +++ b/backend.c @@ -5458,8 +5458,6 @@ FinishMove(moveType, fromX, fromY, toX, toY, promoChar) } ModeHighlight(); } - ModeHighlight(); - } /* Relay move to ICS or chess engine */ if (appData.icsActive) @@ -5498,21 +5496,35 @@ FinishMove(moveType, fromX, fromY, toX, toY, promoChar) switch (gameMode) { case EditGame: - switch (MateTest(boards[currentMove], PosFlags(currentMove)) ) { - case MT_NONE: - case MT_CHECK: - break; - + switch (MateTest(boards[currentMove], PosFlags(currentMove)) ) + { + case MT_NONE: + case MT_CHECK: + break; + case MT_CHECKMATE: + case MT_STAINMATE: + if (WhiteOnMove(currentMove)) { + GameEnds(BlackWins, "Black mates", GE_PLAYER); + } else { + GameEnds(WhiteWins, "White mates", GE_PLAYER); + } + break; + case MT_STALEMATE: + GameEnds(GameIsDrawn, "Stalemate", GE_PLAYER); + break; + } + break; + case MachinePlaysBlack: case MachinePlaysWhite: /* disable certain menu options while machine is thinking */ SetMachineThinkingEnables(); break; - + default: break; } - + if(bookHit) { // [HGM] book: simulate book reply static char bookMove[MSG_SIZ]; // a bit generous?