gpt4 book ai didi

python - 如何将鼠标按钮选择存储在列表中?

转载 作者:太空宇宙 更新时间:2023-11-04 04:00:32 25 4
gpt4 key购买 nike

所以我尝试使用 pygame 在 python 中创建一个更具交互性的 mastermind 游戏版本。基本上,CPU 将生成一个随机的元组列表(长度为 4),其中每个元组代表一个 RGB 组合(例如 [(255,0,0), (135,6,79), (45,67,18), (12,90,235,4)])。该程序将允许用户从 3x3 颜色网格中选择 4 种颜色。如果选项与 CPU 生成的选项匹配,则用户获胜。

我尝试遍历每个用坐标 (x,y) 区分的案例,其中我尝试将元组附加到 guess_list。然而,我得到的是包含 4 个相同元组的列表(例如 [(255,0,0), (255,0,0), (255,0,0), (255,0,0)])。另外,我想处理用户点击彩色方 block 之外的区域(黑色区域)的情况

#main game loop
execute = True
while execute:
game_screen.fill(black) #black background

#display the rectangles. args: ((screen where the object is to be displayed), (color), (position(x,y)), (dimensions))
pygame.draw.rect(game_screen, red, ((1/7)*screen_width, (screen_height//2) - 80, 40, 40))
pygame.draw.rect(game_screen, green, ((3/7)*screen_width - 80, (screen_height//2) - 80, 40, 40))
pygame.draw.rect(game_screen, blue, ((5/7)*screen_width - 160, (screen_height//2) - 80, 40, 40))
pygame.draw.rect(game_screen, yellow, ((1/7)*screen_width, (screen_height//2), 40, 40))
pygame.draw.rect(game_screen, orange, ((3/7)*screen_width - 80, (screen_height//2), 40, 40))
pygame.draw.rect(game_screen, purple, ((5/7)*screen_width - 160, (screen_height//2), 40, 40))
pygame.draw.rect(game_screen, maroon, ((1/7)*screen_width, (screen_height//2) + 80, 40, 40))
pygame.draw.rect(game_screen, pink, ((3/7)*screen_width - 80, (screen_height//2) + 80, 40, 40))
pygame.draw.rect(game_screen, brown, ((5/7)*screen_width - 160, (screen_height//2) + 80, 40, 40))

#event block
for event in pygame.event.get(): #loop through user events i.e. keyboard, mouse
if event.type == pygame.QUIT: #exit button
execute = False
if event.type == pygame.MOUSEBUTTONDOWN:
i = 1
while i <= 12: #gets inputs 12 times
black_count = 0
white_count = 0
guess_list = []
x_mouse, y_mouse = pygame.mouse.get_pos()

for clicks in range(5): #gets clicks 4 times
if 80 <= x_mouse <= 120 and 235 <= y_mouse <= 275:
guess_list.append(red)
elif 160 <= x_mouse <= 200 and 235 <= y_mouse <= 275:
guess_list.append(green)
elif 240 <= x_mouse <= 280 and 235 <= y_mouse <= 275:
guess_list.append(blue)
elif 80 <= x_mouse <= 120 and 315 <= y_mouse <= 365:
guess_list.append(yellow)
elif 160 <= x_mouse <= 200 and 315 <= y_mouse <= 365:
guess_list.append(orange)
elif 240 <= x_mouse <= 280 and 315 <= y_mouse <= 365:
guess_list.append(purple)
elif 80 <= x_mouse <= 120 and 395 <= y_mouse <= 435:
guess_list.append(maroon)
elif 160 <= x_mouse <= 200 and 395 <= y_mouse <= 435:
guess_list.append(pink)
elif 240 <= x_mouse <= 280 and 395 <= y_mouse <= 435:
guess_list.append(brown)
else: #clicks outside the squares
print("Only click on the colored squares!!") #this loops 48 times (fix ASAP)

#scoring block i.e. for updating black_count, white_count (code ASAP)
i += 1
print(guess_list)


pygame.display.update()

clock.tick(40) #sets fps
pygame.quit()

最佳答案

您的游戏循环运行,因此当玩家点击某处时,您必须跟踪它是否处于您的游戏状态。游戏状态可以是任何东西,从复杂的对象图到简单的变量。

你只需要记住,当事情随着时间的推移发生(比如玩家多次点击)时,你必须以某种方式跟踪它。

这是我一起破解的一个简单示例。你会明白的。注意评论。

import pygame
import random

def main():

# first, we create a simple list of the possible colors
# pygame has a big internal list of predefined colors we
# can use, like 'blue' or 'lightgrey' etc
# also note that we can easily extend our game by adding
# other colors; and we don't have to touch any other code
# since we use lists and loop over them to draw the game
# and handle inputs. No big if/else monsters
colors = ['blue', 'red', 'green', 'yellow', 'white']

# next, we create a list of rects that represent the part
# of the screen where the user can click to select a color.
# the first one is located at (10, 10), and each rect has a
# size of (32, 32), with a gab of 10 between them
# We use pygame's Rect class so we don't have to do the math
# ourself
rects = {}
x, y = 10, 10
for color in colors:
rects[color] = pygame.Rect(x, y, 32, 32)
x += 32 + 10

# since your game runs in a loop, we have to store the choices
# of the player somewhere. We create a list of the colors the
# user picked this turn, and list of where we store the picks
# of previous turns.
picked = []
history = []

# pick the solution the player has to guess
solution = colors[:]
random.shuffle(solution)
solution = solution[:4]
# let's print the solution so we can cheat :-)
print(solution)

pygame.init()
screen = pygame.display.set_mode((800, 600))
while True:
## EVENT HANDLING
events = pygame.event.get()
for e in events:
if e.type == pygame.QUIT:
return
if e.type == pygame.MOUSEBUTTONDOWN:
# the use clicked somewhere, so here we decide what happens
# first, check if a color was clicked. Since we have the list
# of rects, it's quite easy.
# we make use of the collidepoint function of the Rect class
# which will return True of the coordinate is inside the Rect
clicked_list = [color for color in rects if rects[color].collidepoint(e.pos)]
if clicked_list:
# the expression above returned a list, and
# the clicked color is the first and only element
color = clicked_list[0]
# so the user clicked a color button
# now add the color to the list of clicked buttons
# we don't allow duplicates
if not color in picked:
picked.append(color)
# that's it. We don't need to do anything more
# here in this event handling part

## DRAWING
screen.fill((50, 50, 50))
# draw the buttons
for color in rects:
pygame.draw.rect(screen, pygame.Color(color), rects[color])

# draw the history
# again, 32 is the size of the buttons, and 10 is the gap between tem
# feel free to use constants and/or extract a function for drawing
# instead of using magic numbers.
x, y = 300, 500 - 32 - 10
for turn in history:
for color in turn:
pygame.draw.rect(screen, pygame.Color(color), (x, y, 32, 32))
x += 32 + 10
y -= 32 + 10
x = 300

# draw what the player picked
x, y = 300, 500
for color in picked:
pygame.draw.rect(screen, pygame.Color(color), (x, y, 32, 32))
x += 32 + 10

pygame.display.flip()

## GAME LOGIC
# check if the player has picked 4 colors
if len(picked) == 4:
# check if the player has won
# this works because picked and solution are
# simple lists of strings
if picked == solution:
print("WIN!")
return

# move the picked colors to the history list
history.append(picked)
picked = []

if __name__ == '__main__':
main()

enter image description here

关于python - 如何将鼠标按钮选择存储在列表中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58446395/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com