作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试编写一个程序,如果棋盘上的白王在检查中,它将返回 True。棋盘上的棋子以字符串形式生成并格式化,其中小写值为白色,大写值为黑色。:
r*x***k****p***P*****Q*****kp****K*****p***Pb****p***PP***X***KR
| | |X| | | |K|R|
| |p| | | |P|P| |
| | | |P|b| | | |
| |K| | | | | |p|
| | | |k|p| | | |
| | | | | |Q| | |
| | | |p| | | |P|
|r| |x| | | |k| |
我了解如何将棋盘上的单位转换为 x 和 y 坐标,以及棋盘上棋子的数学运算(检查 +7 和 +9 上的棋子,检查 ...-2、-1、+1 上的车,+2... 和...-16, -8, +8, +16...,但我无法将其转换为 python,或者如果它碰到另一块或在它“过去”之前停止检查"电路板并再次循环。到目前为止,这是我的代码,但没有真正正常工作:
def white_check(coded_position):
w_king = coded_position.find("x")
w_king_x = w_king%8
w_king_y = w_king//8
result = False
print(w_king)
# This doesn't work if king is on x = 0 or 8
# Returns true if pawn checks
# if coded_position[w_king+7] == "P" or coded_position[w_king+9] == "P":
#result = True
# try using for loops and going up 1 / 8 at a time and trying each case for rooks / and bishops
# checks right side for rooks
for i in range(w_king,w_king-w_king_x+8):
if coded_position[i] != "*" and coded_position[i] != "K":
result = False
break
if coded_position[i] == "K":
result = True
# checks left side for rooks
for i in range(w_king,w_king-w_king_x,-1):
if coded_position[i] != "*" and coded_position[i] != "K":
result = False
break
if coded_position[i] == "K":
result = True
print(result)
return result
我想我真的把这个复杂化了,有什么明显的我遗漏了吗?
最佳答案
我不会给你代码(至少现在是),但我可以给出一些步骤。
目前看起来您将所有内容都存储为长输入行上的索引。这使它变得更难,所以第一步是将棋盘表示为一个字符串列表,其中一个是 8 长。
你想要的结果是
board = ["r*x***k*",
"***p***P",
"*****Q**",
"***kp***",
"*K*****p",
"***Pb***",
"*p***PP*",
"**X***KR"]
所以现在白王在
board[0][2]
,黑色在棋盘上向上移动。我们称之为 (0, 2)。
movements = {
"P": [(1,-1), (1,1)],
"R": [*[(0, i), (0, -i), (i, 0), (-i, 0)] for i in range(7)],
}
这是一个兵和车的 Action 。如果 (0, 2)+(1, 1) 或 (0, 2)+(1,-1) 上有 pawn,并且这些位置在网格内,则 pawn 正在检查 (0, 2)。
关于python - bool 函数,用于确定棋盘上给定位置的白王是否在检查中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64825821/
我是一名优秀的程序员,十分优秀!