-4
I’m doing a python project of game four online and have the value function that tells me what value is placed at a certain point of the table.
grelha = [[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0]]
fim = False
vencedor = None
jogador = 1
linha_vitoria = None
jogo = (grelha, fim, vencedor, jogador, linha_vitoria)
def valor(jogo, linha, coluna):
'valor'
## grelha = jogo[0]
## jogador_1 = 1
## jogador_2 = 2
## valor = 0
##
## if grelha[linha][coluna] == 1:
## valor = 1
## elif grelha[linha][coluna] == jogador_2:
## valor = 2
## else:
## valor = 0
##
## return valor
linha = linha - 1
coluna = coluna - 1
grelha = jogo[0]
return grelha[linha][coluna]
Then I have the graphic mode that will use pygame to create the game chart and use the value function to get at a given table position which piece to put yellow or red.
def construir_frame_jogo():
# a frame de jogo é sempre construída para o jogador humano. O
# computador joga imediatamente a seguir ao jogador humano no
# evento da jogada do jogador humano.
global nova_frame
# criar uma nova frame
nova_frame = pygame.Surface(tamanho)
# cor de fundo
nova_frame.fill(cor_fundo)
linha = 1
coluna_mouse = get_coluna_mouse()
peca = ordem_escolhida
if ha_espaco(jogo, coluna_mouse):
desenha_peca_jogo(linha, coluna_mouse, peca)
for l in range(6):
for c in range(7):
peca = valor(jogo, l+1, c+1)
desenha_peca_jogo(l+1+1, c+1, peca)
# processar jogada
if mouse_click == True:
processar_jogada()
But when I run the code gives me the following mistake and I can’t figure out why. Thank you for your attention.
I couldn’t notice where you set the object
jogo
– Woss
I’ve played the game
– Joao Joao