from PyQt4 import QtGui, QtCore
from code.pair import Pair
from code.breadth_first_search import breadth_first_search
import functools
class Ghosts(QtGui.QGraphicsPixmapItem):
def __init__(self, name):
super(Ghosts, self).__init__()
self.set_image(name)
def chase(self, goal):
pos = Pair(self.x(), self.y())
path = breadth_first_search(pos, goal)
func = functools.partial(self.move_towards, path)
timer = QtCore.QTimer()
timer.timeout.connect(func)
timer.start(700)
def move_towards(self, path):
print("in")
if path.empty():
return
goal = path.get_nowait()
self.setPos(goal.first(), goal.second())
当我输入它时,它告诉我timer.timeout.connect()
- 找不到引用,这应该解决但不会,当我运行时没有任何反应。然后我尝试QtCore.QTimer.singleShot(700, func)
而不是上面的计时器,它完美地工作,但只执行一次(因为它应该)。我尝试制作多次执行的计时器的一切都失败了。请帮忙。
答案 0 :(得分:2)
你犯了一个很常见的错误。没有任何内容可以链接到您的timer
,因此在chaise
功能结束后会被删除。将timer
替换为self.timer
。