繁体   English   中英

多次在pygame中注册

[英]multiple clicks registering in pygame

我正在尝试制作一个在鼠标左键单击时会改变颜色的板。 但是,当我单击它时,它会循环is_square_clicked()3次。 这是一个问题,我只希望它执行一次。 您可能会猜到,这会导致我的程序出现问题。 那么如何将其限制为每次点击一次通过? 谢谢!

def is_square_clicked(mousepos):
    x, y = mousepos
    for i in xrange(ROWS):
        for j in xrange(COLS):
            for k in xrange(3):
                if x >= grid[i][j][1] and x <= grid[i][j][1] + BLOCK:
                    if y >= grid[i][j][2] and y <= grid[i][j][2] + BLOCK: 
                        if grid[i][j][0] == 0:
                            grid[i][j][0] = 1
                        elif grid[i][j][0] == 1:
                            grid[i][j][0] = 0

while __name__ == '__main__':
    tickFPS = Clock.tick(fps)
    pygame.display.set_caption("Press Esc to quit. FPS: %.2f" % (Clock.get_fps()))
    draw_grid()
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            pygame.quit()
            sys.exit()
        elif event.type == pygame.KEYDOWN:
            if event.key == pygame.K_ESCAPE:
                pygame.quit()
                sys.exit()
        elif event.type == pygame.MOUSEBUTTONUP and event.button == 1:
            mousepos = pygame.mouse.get_pos()
            is_square_clicked(mousepos)
    pygame.display.update()

之所以会循环,是因为您按住鼠标足够长的时间,使其可以检查3次。 我认为,如果您在两次单击之间等待它,或者不每次检查一次它就应该对其进行修复。

我会猜测,由于游戏在每次点击时循环播放不止一次,因此更改的次数超过一次

即使点击非常快,循环也会循环得更快(取决于FPS)

这是一个示例,它将在每次单击时更改屏幕的颜色:

"""Very basic.  Change the screen color with a mouse click."""
import os,sys  #used for sys.exit and os.environ
import pygame  #import the pygame module
from random import randint

class Control:
    def __init__(self):
        self.color = 0
    def update(self,Surf):
        self.event_loop()  #Run the event loop every frame
        Surf.fill(self.color) #Make updates to screen every frame
    def event_loop(self):
        for event in pygame.event.get(): #Check the events on the event queue
            if event.type == pygame.MOUSEBUTTONDOWN:
                #If the user clicks the screen, change the color.
                self.color = [randint(0,255) for i in range(3)]
            elif event.type == pygame.QUIT:
                pygame.quit();sys.exit()

if __name__ == "__main__":
    os.environ['SDL_VIDEO_CENTERED'] = '1'  #Center the screen.
    pygame.init() #Initialize Pygame
    Screen = pygame.display.set_mode((500,500)) #Set the mode of the screen
    MyClock = pygame.time.Clock() #Create a clock to restrict framerate
    RunIt = Control()
    while 1:
        RunIt.update(Screen)
        pygame.display.update() #Update the screen
        MyClock.tick(60) #Restrict framerate

每次单击时,此代码都会随机显示一个随机的颜色背景,因此您可以从上述代码中找出执行此操作的正确方法

祝好运!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM