我正在尝试学习Python / Pygame。我创建了一个可以使用鼠标位置的程序,但是当我从IDLE和命令提示符运行它时,鼠标位置都不会更新,当我点击图形窗口时它会进入非响应模式。
代码非常简单(见下文)。会发生什么是print-command一遍又一遍地打印原始鼠标位置。有什么想法吗?
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)
答案 0 :(得分:4)
您没有将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
答案 1 :(得分:0)
将您的while循环更改为:
while Contin:
for event in pygame.event.get():
if event.type == pygame.QUIT:
Contin = False
MousePos = pygame.mouse.get_pos()
print(MousePos)