我正在使用ldmg运行K / Ubuntu 14.04并想要检测pygame中的按钮压力。
我正在从键盘输入信号,一旦标志"包括"设置,窗口应该关闭,我们移动到列表中的下一个。
然而窗口拒绝关闭并拒绝使用ALT + f4手动关闭。
代码如下:
image_name = "something.jpg"
image = pygame.image.load( image_name)
white = (255, 255, 255)
w = 640
h = 480
screen= pygame.display.set_mode((w,h))
screen.fill((white))
running = True
while running:
screen.fill((white))
screen.blit(image,(0, 0))
pygame.display.flip()
....
pygame.event.wait()
if pygame.event.peek():
pressed=pygame.key.get_pressed()
if pressed[K_LEFT]:
include = 1
running = False
elif pressed[K_RIGHT]:
include = 0
running = False
...
pygame.display.quit()
sys.exit()
我知道大部分代码都运行良好......窗口显示确定,但我无法正常关闭它 - 也许它甚至没有正确地获取关键数据。
有人有什么想法吗?