1

我正处于国际象棋实施的早期阶段,我正在研究如何移动棋子。问题是,我无法弄清楚列表切片发生了什么!

这是我的变量board

board = [['R', 'N', 'B', 'Q', 'K', 'B', 'N', 'R'], 
['P', 'P', 'P', 'P', 'P', 'P', 'P', 'P'], 
['-', '-', '-', '-', '-', '-', '-', '-'], 
['-', '-', '-', '-', '-', '-', '-', '-'], 
['-', '-', '-', '-', '-', '-', '-', '-'], 
['-', '-', '-', '-', '-', '-', '-', '-'], 
['p', 'p', 'p', 'p', 'p', 'p', 'p', 'p'], 
['r', 'n', 'b', 'q', 'k', 'b', 'n', 'r']]

看起来像:

R  N  B  Q  K  B  N  R
P  P  P  P  P  P  P  P
-  -  -  -  -  -  -  -
-  -  -  -  -  -  -  -
-  -  -  -  -  -  -  -
-  -  -  -  -  -  -  -
p  p  p  p  p  p  p  p
r  n  b  q  k  b  n  r

因此,我开始通过执行以下操作来遍历棋子以找到棋子可接受的移动:

for i in range(1):
    for j in range(1):
        if board[i][j].lower() == 'p':
            p_moves(board,i,j)

哪里p_moves是:

def p_moves(board_state, row, col):

    valid_moves = []
    #copy the board to make modifications to the new one and store it
    new = board_state[:]

    #find if the space ahead of it is blank
    if board_state[row+1][col] == "-":

        #use a throwaway value just to test the function and we can see easily what changed
        new[row+1][col] = "Z"
        #clear where the piece was
        new[row][col] = "-" 

        #add the board to the list of possible moves
        valid_moves.append(new) 
    return valid_moves

最终发生的事情是new每次调用函数时板似乎都没有清除,我不明白为什么,因为我将它作为一个新变量切片,并且它在内存中的 ID 与 board_state 不同,所以我我不太确定这里发生了什么。

为了澄清,在循环通过顶部之后(我什至没有考虑下半部分 - 最小的一块怎么这么痛苦?!),下一个可能的董事会状态最终看起来像:

R  N  B  Q  K  B  N  R
-  -  -  -  -  -  -  -
Z  Z  Z  Z  Z  Z  Z  Z
-  -  -  -  -  -  -  -
-  -  -  -  -  -  -  -
-  -  -  -  -  -  -  -
p  p  p  p  p  p  p  p
r  n  b  q  k  b  n  r

谢谢你的帮助。

4

0 回答 0