第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

有沒有辦法控制 pygame 中函數(shù)的迭代?

有沒有辦法控制 pygame 中函數(shù)的迭代?

守著星空守著你 2023-07-05 10:28:32
我正在 Pygame 中制作一個項目,需要equations在特定時間從列表中渲染一個隨機方程。為了實現(xiàn)這一目標,我編寫了一個函數(shù)來呈現(xiàn)該函數(shù),但我遇到了兩個問題。第一個問題是它對函數(shù)的迭代次數(shù)超出了我真正想要的次數(shù),我希望函數(shù)只迭代一次。我的意思是它從列表中選擇一個隨機方程一次,并渲染一次,但這并沒有發(fā)生。第二個問題出現(xiàn)在第30行代碼上。它說if tks > 5000: display_equation()但是如果我運行代碼,游戲一開始就會開始迭代該函數(shù),而不是等待游戲的第 5000 毫秒開始調(diào)用該函數(shù)。謝謝!import pygameimport randompygame.init()screen = pygame.display.set_mode((640, 480))clock = pygame.time.Clock()done = Falseequations = ['2 + 2', '3 + 1', '4 + 4', '7 - 4']font = pygame.font.SysFont("comicsansms", 72)tks = pygame.time.get_ticks()def display_equation():        text = font.render(random.choice(list(equations)), True, (0, 128, 0))        screen.blit(text, (320 - text.get_width() // 2, 240 - text.get_height() // 2))while not done:    for event in pygame.event.get():        if event.type == pygame.QUIT:            done = True        if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE:            done = True        screen.fill((255, 255, 255))    tks = pygame.time.get_ticks()    if tks > 5000:        display_equation()        display_equation()    pygame.display.update()    clock.tick(60)
查看完整描述

1 回答

?
呼如林

TA貢獻1798條經(jīng)驗 獲得超3個贊

為了使代碼按照您想要的方式運行,請進行兩項更改:

  • 在循環(huán)之前僅渲染背景一次

  • 創(chuàng)建一個標志,表示方程已經(jīng)渲染完畢,不需要重新渲染

試試這個代碼:

eq_done = False

screen.fill((255, 255, 255))

while not done:

    for event in pygame.event.get():

        if event.type == pygame.QUIT:

            done = True

        if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE:

            done = True

    

    tks = pygame.time.get_ticks()

    if tks > 5000 and not eq_done:

        display_equation()

        eq_done = True  # only render once

    

    pygame.display.update()

    clock.tick(60)


查看完整回答
反對 回復(fù) 2023-07-05
  • 1 回答
  • 0 關(guān)注
  • 165 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號