获取棋子在 Python-Chess 中的位置

Get Location of Piece in Python-Chess

我目前正在使用 Python-Chess 构建一个国际象棋游戏,我正在尝试使用 SVG 模块生成棋盘的 SVG 图像。生成 svg 的参数之一是 check (here),它是一个“要标记的正方形表示检查”。但是,从文档中,我无法找到找出玩家之王所在位置的方法。

我想要发生的是,每当 board.is_check() 我希望它使用当前玩家国王的当前位置生成 check= 的 svg。我该如何解决这个问题?在找到正确的国王之前,我是否必须遍历每个方格并检查那里有什么棋子?或者有没有我没看到的功能?感谢任何帮助,提前致谢!

这里有一个获取国王位置的函数:https://python-chess.readthedocs.io/en/latest/core.html#chess.BaseBoard.king

下面是一些示例代码:

import chess
board = chess.Board()
# get the current square index of the white king
king_square_index = board.king(chess.WHITE)
# get the current square name of the white king
king_square_name = chess.square_name(king_square_index)
print(king_square_name) # e1
# Move white pawn to e4
board.push_san("e4")
# Move black pawn to e5
board.push_san("e5")
# Move white king to e2
board.push_san("Ke2")
# get the current square index of the white king
king_square_index = board.king(chess.WHITE)
# get the current square name of the white king
king_square_name = chess.square_name(king_square_index)
print(king_square_name) # e2