簡體   English   中英

Pygame.mouse.get_pressed() 不會檢測到我的大部分點擊

[英]Pygame.mouse.get_pressed() wont detect most of my clicks

所以這是我的代碼:

import pygame
import pygame as pg

pygame.init()

displayWidth = 800
displayHeight = 600

### colour codes ###
bgColour = (245, 230, 255)
grey = (150, 150, 150)
darkGrey = (100, 100, 100)
darkBlack = (0,0,0)

clock = pygame.time.Clock()

mouse_clicked = False

display = pygame.display.set_mode((displayWidth, displayHeight))#sets height and width of screen
pygame.display.set_caption('Fashion!')

def screenDisplay():                                                #subroutine to display screens
    display = pygame.display.set_mode((displayWidth, displayHeight))#sets height and width of screen
    pygame.display.set_caption('Fashion!')                          #sets screen title
    display.fill(bgColour)

def text_objects(text, font):                       #font colour
    textSurface = font.render(text, True, darkBlack)
    return textSurface, textSurface.get_rect()

def textDisplay(s,t,x,y):                           #subroutine for displaying text on screen
    smallText = pygame.font.SysFont("",s)           #creates front and font size
    textSurf, textRect = text_objects(t, smallText) #inputs text
    textRect.center = (x,y)                         #centres text
    display.blit(textSurf, textRect)                #displays test


def button(msg,s,x,y,w,h,ic,ac,action=None):    #format for button
    mouse = pygame.mouse.get_pos()                  #gets mouse position (tracks cursor)
    click = pygame.mouse.get_pressed()              #gets status of mouse (tracks click)
    print(click)
    if x+w > mouse[0] > x and y+h > mouse[1] > y:   #draws rectangle for button
        pygame.draw.rect(display, ac,(x,y,w,h))     #draws rectangle after colour if mouse is on area

        if click[0] == 1 and action != None:        #performs function on click
            action()      
    else:
        pygame.draw.rect(display,ic,(x,y,w,h))      #draws rectangle initial colour if mouse isnt on area

    smallText = pygame.font.SysFont("",s)           #adds text to button
    textSurf, textRect = text_objects(msg, smallText)
    textRect.center = ( (x+(w/2)), (y+(h/2)) )
    display.blit(textSurf, textRect)


    smallText = pygame.font.SysFont("",s)           #adds text to button
    textSurf, textRect = text_objects(msg, smallText)
    textRect.center = ( (x+(w/2)), (y+(h/2)) )
    display.blit(textSurf, textRect)

def menuDisplay():
    intro = True

    while intro:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                pygame.quit()
                sys.exit()
        screenDisplay()

        button("WARDROBE",60,200,100,400,100,grey,darkGrey,page)
        button("OUTFIT",  60,200,250,400,100,grey,darkGrey,page)
        button("SHOPPING",60,200,400,400,100,grey,darkGrey,page)
        button("QUIT",    40,300,530,200,50,grey,darkGrey,page) 

        pygame.display.update()
        clock.tick(30)

def page():
        intro = True

        while intro:
            for event in pygame.event.get():
                if event.type == pygame.QUIT:
                    pygame.quit()
                    sys.exit()
            screenDisplay() 

            pygame.display.update()
            clock.tick(30)


menuDisplay()

它打印 get press 但它只返回 [0,0,0] 直到隨機時間(有時直接有時在 10 次點擊后有時在 50 次點擊后)它注冊 [1,0,0]。 它甚至從未在其他計算機上工作過。 當我沒有時鍾時它也不起作用,所以沒有改變任何東西。

我很傷心壓力,請幫助💔🙏

問題是在screenDisplay調用pygame.display.set_mode 請注意, pygame.display.set_mode重新初始化窗口並導致丟失所有鼠標事件狀態。
screenDisplay在主應用程序循環中被調用。 在每一幀中初始化顯示是一種性能浪費和糟糕的風格。

不要在主應用循環中調用screenDisplay ,只需通過display.fill(bgColour)清除顯示即可解決問題:

def menuDisplay():
    intro = True

    while intro:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                pygame.quit()

        # screenDisplay() <-- DELETE
        display.fill(bgColour)

        button("WARDROBE",60,200,100,400,100,grey,darkGrey,page)
        button("OUTFIT",  60,200,250,400,100,grey,darkGrey,page)
        button("SHOPPING",60,200,400,400,100,grey,darkGrey,page)
        button("QUIT",    40,300,530,200,50,grey,darkGrey,page) 

        pygame.display.update()
        clock.tick(30)

page()做同樣的事情

def page():
        intro = True

        while intro:
            for event in pygame.event.get():
                if event.type == pygame.QUIT:
                    pygame.quit()
                    sys.exit()
            # screenDisplay() <-- DELETE
            display.fill(bgColour)

            pygame.display.update()
            clock.tick(30)

我改變了一些東西,這有效:

import pygame

pygame.init()

displayWidth = 800
displayHeight = 600

### colour codes ###
bgColour = (245, 230, 255)
grey = (150, 150, 150)
darkGrey = (100, 100, 100)
darkBlack = (0,0,0)

smallText = pygame.font.SysFont("",32)

display = pygame.display.set_mode((displayWidth, displayHeight))
pygame.display.set_caption('Fashion!')

def text_objects(text, font):                       #font colour
    textSurface = font.render(text, True, darkBlack)
    return textSurface, textSurface.get_rect()

def button(msg,s,x,y,w,h,ic,ac,action=None):
    mouse = pygame.mouse.get_pos()
    click = pygame.mouse.get_pressed()
    print(click)

    if x+w > mouse[0] > x and y+h > mouse[1] > y:
        pygame.draw.rect(display, ac,(x,y,w,h)) 
        if click[0] == 1 and action != None:
            action()
    else:
        pygame.draw.rect(display, ic,(x,y,w,h))

    textSurf, textRect = text_objects(msg, smallText)
    textRect.center = ( (x+(w/2)), (y+(h/2)) )
    display.blit(textSurf, textRect)

def menuDisplay():
    display.fill(bgColour)
    intro = True
    while intro:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                pygame.quit()
                sys.exit()

        button("WARDROBE",60,200,100,400,100,grey,darkGrey,page)
        button("OUTFIT",  60,200,250,400,100,grey,darkGrey,page)
        button("SHOPPING",60,200,400,400,100,grey,darkGrey,page)
        button("QUIT",    40,300,530,200,50,grey,darkGrey,page) 

        pygame.display.update()

def page():
    display.fill(bgColour)
    intro = True
    while intro:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                pygame.quit()
                sys.exit()

        pygame.draw.rect(display,grey,(50,50,50,50) )   
        pygame.display.update()



menuDisplay()

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM