我想寫一個蟒蛇程序,將隨機俄羅斯方塊的形狀繪製到板上。 這裏是我的代碼:隨機俄羅斯方塊形狀
def __init__(self, win):
self.board = Board(win, self.BOARD_WIDTH, self.BOARD_HEIGHT)
self.win = win
self.delay = 1000
self.current_shape = self.create_new_shape()
# Draw the current_shape oan the board
self.current_shape = Board.draw_shape(the_shape)
def create_new_shape(self):
''' Return value: type: Shape
Create a random new shape that is centered
at y = 0 and x = int(self.BOARD_WIDTH/2)
return the shape
'''
y = 0
x = int(self.BOARD_WIDTH/2)
self.shapes = [O_shape,
T_shape,
L_shape,
J_shape,
Z_shape,
S_shape,
I_shape]
the_shape = random.choice(self.shapes)
return the_shape
我的問題是,在「self.current_shape = Board.draw_shape(the_shape)它說the_shape沒有定義,但我認爲我在create_new_shape定義它