Fix #7. Recoded check and checkmates warnings
This commit is contained in:
pare
3253f95d5f
commit
c7b17abe18
S'han modificat 1 arxius amb 20 adicions i 10 eliminacions
|
@ -1055,9 +1055,7 @@ if __name__ == '__main__':
|
||||||
|
|
||||||
board.push(chess.Move.from_uci(moving))
|
board.push(chess.Move.from_uci(moving))
|
||||||
|
|
||||||
if board.is_check() == True:
|
if bool(board.is_check()):
|
||||||
|
|
||||||
toot_text = "@"+playing_user + ": " + "@"+username + " t'ha fet escac!"
|
|
||||||
|
|
||||||
if username == white_user:
|
if username == white_user:
|
||||||
|
|
||||||
|
@ -1073,16 +1071,28 @@ if __name__ == '__main__':
|
||||||
|
|
||||||
game_moves = board.ply()
|
game_moves = board.ply()
|
||||||
|
|
||||||
toot_text += "\nEscac i mat! (en " + str(game_moves) + " moviments)" + "\n\nEl guanyador és: " + "@"+username + '\n'
|
close_game()
|
||||||
|
|
||||||
|
checkmate = True
|
||||||
|
|
||||||
|
else:
|
||||||
|
|
||||||
|
checkmate = False
|
||||||
|
|
||||||
|
if check == True and checkmate == False:
|
||||||
|
|
||||||
|
toot_text = "@"+playing_user + " " + username + " t'ha fet escac!\n"
|
||||||
|
|
||||||
|
elif check == True and checkmate == True:
|
||||||
|
|
||||||
|
toot_text = "\nEscac i mat! (en " + str(game_moves) + " moviments)" + "\n\nEl guanyador és: " + "@"+username + '\n'
|
||||||
|
|
||||||
toot_text += "\n@"+playing_user + ": ben jugat!" + "\n"
|
toot_text += "\n@"+playing_user + ": ben jugat!" + "\n"
|
||||||
|
|
||||||
close_game()
|
toot_text += "\nPartides guanyades:" + "\n"
|
||||||
|
|
||||||
played_games, wins = get_stats(username)
|
played_games, wins = get_stats(username)
|
||||||
|
|
||||||
toot_text += "\nPartides guanyades" + "\n"
|
|
||||||
|
|
||||||
toot_text += username + ": " + str(wins) + " de " + str(played_games) + "\n"
|
toot_text += username + ": " + str(wins) + " de " + str(played_games) + "\n"
|
||||||
|
|
||||||
played_games, wins = get_stats(playing_user)
|
played_games, wins = get_stats(playing_user)
|
||||||
|
@ -1091,11 +1101,11 @@ if __name__ == '__main__':
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
|
||||||
toot_text = "@"+playing_user + ' el teu torn.'+ '\n'
|
toot_text = "@"+playing_user + ' el teu torn.'+ '\n'
|
||||||
|
|
||||||
if capture:
|
if capture == True and checkmate == False:
|
||||||
|
|
||||||
toot_text += "\n* has perdut " + piece_name + "!\n"
|
toot_text += "\n* has perdut " + piece_name + "!\n"
|
||||||
|
|
||||||
toot_text += '\n#escacs' + '\n'
|
toot_text += '\n#escacs' + '\n'
|
||||||
|
|
||||||
|
|
Loading…
Referencia en una nova incidència