在我的程序中,我希望用户能够按住一个按钮。释放按钮后,我希望打印他们按住键的持续时间。我一直在尝试使用 pygame 时钟功能,但遇到了一些麻烦。该程序在第一次按键时运行良好,但在以后的按键中记录按键之间的任何停机时间。任何帮助将不胜感激,这是我的代码:
import pygame
from pygame.locals import *
def main():
key = 0
pygame.init()
self = pygame.time.Clock()
surface_sz = 480
main_surface = pygame.display.set_mode((surface_sz, surface_sz))
small_rect = (300, 200, 150, 90)
some_color = (255, 0, 0)
while True:
ev = pygame.event.poll()
if ev.type == pygame.QUIT:
break;
elif ev.type == KEYUP:
if ev.key == K_SPACE: #Sets the key to be used
key += 1 #Updates counter for number of keypresses
while ev.type == KEYUP:
self.tick_busy_loop()
test = (self.get_time()/1000.0)
print "number: ", key, "duration: ", test
ev = pygame.event.poll()
main()