【问题标题】:pygame button cannot runpygame按钮无法运行
【发布时间】:2019-08-27 03:15:51
【问题描述】:

(英语不是我的母语,如有错误请见谅。) (谢谢大家!!)

当我点击按钮“1”时,会出现BE01,但如果我不点击,scene01Img会返回。

我尝试在 def BE01(): 中使用 gameExit = true,但它不起作用。

pygame.init()

clock = pygame.time.Clock()

def button(msg,x,y,w,h,ic,ac,action=None):
    mouse = pygame.mouse.get_pos()
    click = pygame.mouse.get_pressed()
    if x+w > mouse[0] > x and y+h > mouse[1] > y:
        pygame.draw.rect(gameDisplay, ac,(x,y,w,h))

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

    smallText = pygame.font.SysFont("comicsansms",20)
    textSurf, textRect = text_objects(msg, smallText)
    textRect.center = ( (x+(w/2)), (y+(h/2)) )
    gameDisplay.blit(textSurf, textRect)

def BE01():
    gameDisplay.fill(white)
    gameDisplay.blit(BE01Img,(0,0))
    button("BACK",350,450,100,50,black,gray,game_intro)

def game_intro():

    intro = True

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

        gameDisplay.fill(white)
        gameDisplay.blit(introImg,(0,0))
        button("START",350,450,100,50,black,gray,game_loop)

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

def quitgame():
    pygame.quit()
    quit()   

def game_loop():
    gameExit = False

    while not gameExit:

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

        gameDisplay.fill(white)
        gameDisplay.blit(scene01Img,(0,0))
        button("1",200,450,100,50,black,gray,BE01)

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

game_intro()
game_loop()
pygame.quit()
quit()

点击“1”按钮后,BE01会出现,运行另一个程序,scene01应该不会出现。

【问题讨论】:

  • BE01 可以将introImg 分配给scene01Img,然后game_loop 将显示新图像。但是BE01 中还有新按钮,所以BE01 应该使用新背景和新按钮运行新循环。
  • gameExit 是仅存在于game_loop 内部的局部变量 - 要在BE01 中更改它,它必须是全局变量。您可以在使用变量gameExit的每个函数中使用global gameExit
  • 每个场景都应该有自己的循环或者每个场景应该有自己的功能drawfill, blit, button 并在按下按钮时将draw 替换为game_loop。在 Python 中,您可以将函数赋值给变量,即。 show = print 和稍后使用它 show("Hello World"). You can use global variable to keep function draw` 你将在 game_loop 中运行并更改 draw = draw_introdraw = draw_game 等。

标签: python loops button pygame


【解决方案1】:

每个场景都应该有自己的loop,当您按下按钮时,您应该转到新的loop

如果您想在一个循环中更改元素,则将旧元素放入某个函数(即draw_intro),将新元素放入其他函数(即draw_other) - 开始时在循环中使用draw_intro,当你按下按钮然后用draw_other替换这个函数

在 Python 中,您可以将函数名称(不带 ())分配给变量

show = print

以后使用这个名字(使用()

show("Hello World")

您可以对draw_introdraw_other 执行相同的操作。

在游戏循环内(while之前)你可以设置

global draw

draw = draw_intro 

并在while中使用它

draw()

当你按下按钮时,它应该替换功能

draw = draw_other

这里是完整的工作代码 - 我只删除了所有 blit(image) 以便在没有图像的情况下轻松运行它。

import pygame

black = (0,0,0)
white = (255,255,255)
gray  = (128,128,128)
red   = (255,0,0)

pygame.init()
gameDisplay = pygame.display.set_mode( (800,600))
clock = pygame.time.Clock()


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

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

    smallText = pygame.font.SysFont("comicsansms",20)
    textSurf = smallText.render(msg, True, red)
    textRect = textSurf.get_rect()
    textRect.center = ( (x+(w/2)), (y+(h/2)) )
    gameDisplay.blit(textSurf, textRect)

def change_draw(new_draw):
    global draw
    draw = new_draw

def draw_BE01():
    gameDisplay.fill(white)
    #gameDisplay.blit(BE01Img,(0,0))
    button("BACK",350,450,100,50,black,gray,lambda:change_draw(draw_intro))

def draw_intro():
    gameDisplay.fill(white)
    #gameDisplay.blit(introImg,(0,0))
    button("START",350,450,100,50,black,gray,lambda:change_draw(draw_other))

def draw_other():
    gameDisplay.fill(white)
    #gameDisplay.blit(scene01Img,(0,0))
    button("1",200,450,100,50,black,gray,lambda:change_draw(draw_BE01))

def quitgame():
    pygame.quit()
    quit()   

def game_loop():
    global draw

    draw = draw_intro

    gameExit = False

    while not gameExit:

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

        draw()

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

game_loop()
pygame.quit()
quit()

编辑:

如果您之前没有使用lamda,那么您可以不使用lambda,但您需要change_draw_to_introchange_draw_to_otherchange_draw_to_BE01 而不是单个change_draw

import pygame

black = (0,0,0)
white = (255,255,255)
gray  = (128,128,128)
red   = (255,0,0)

pygame.init()
gameDisplay = pygame.display.set_mode( (800,600))
clock = pygame.time.Clock()

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

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

    smallText = pygame.font.SysFont("comicsansms",20)
    textSurf = smallText.render(msg, True, red)
    textRect = textSurf.get_rect()
    textRect.center = ( (x+(w/2)), (y+(h/2)) )
    gameDisplay.blit(textSurf, textRect)

def change_draw_to_intro():
    global draw
    draw = draw_intro

def change_draw_to_other():
    global draw
    draw = draw_other

def change_draw_to_BE01():
    global draw
    draw = draw_BE01

def draw_BE01():
    gameDisplay.fill(white)
    #gameDisplay.blit(BE01Img,(0,0))
    button("BACK",350,450,100,50,black,gray,change_draw_to_intro)

def draw_intro():
    gameDisplay.fill(white)
    #gameDisplay.blit(introImg,(0,0))
    button("START",350,450,100,50,black,gray,change_draw_to_other)

def draw_other():
    gameDisplay.fill(white)
    #gameDisplay.blit(scene01Img,(0,0))
    button("1",200,450,100,50,black,gray,change_draw_to_BE01)

def quitgame():
    pygame.quit()
    quit()   

def game_loop():
    global draw

    draw = draw_intro

    gameExit = False

    while not gameExit:

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

        draw()

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

game_loop()
pygame.quit()
quit()

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2018-09-25
    • 1970-01-01
    • 2012-11-20
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多