gpt4 book ai didi

Python/Pygame 鼠标位置不更新和程序失去焦点

转载 作者:太空宇宙 更新时间:2023-11-03 15:16:46 24 4
gpt4 key购买 nike

我正在尝试学习 Python/Pygame。我创建了一个使用鼠标位置的程序,但是当我从 IDLE 和命令提示符下运行它时,鼠标位置都不会更新,当我单击图形窗口时,它会进入无响应模式。

代码非常简单(见下文)。发生的事情是打印命令一遍又一遍地打印原始鼠标位置。有什么想法吗?

import pygame
from pygame.locals import *
pygame.init()
Screen = pygame.display.set_mode([1000, 600])
MousePos = pygame.mouse.get_pos()
Contin = True
while Contin:
print(MousePos)

最佳答案

您没有将 MousePos 更新为新值,而是一遍又一遍地打印出相同的值。你需要的是:

import pygame
from pygame.locals import *
pygame.init()
Screen = pygame.display.set_mode([1000, 600])
MousePos = pygame.mouse.get_pos()
Contin = True
while Contin:
MousePos = pygame.mouse.get_pos()
print(MousePos)
DoSomething(MousePos)

注意:如果您不处理任何其他事件,这也会进入非响应模式。

这是在 PyGame 中处理事件的更好方法:

while running:
event = pygame.event.poll()
if event.type == pygame.QUIT:
running = 0
elif event.type == pygame.MOUSEMOTION:
print "mouse at (%d, %d)" % event.pos

关于Python/Pygame 鼠标位置不更新和程序失去焦点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20360218/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com