心理记录最后一次鼠标滚轮移动的时间



我需要记录每次试验最后一次移动滚轮的时间。我有一个为按键(lastTrialTime变量)执行此操作的代码:

 lastTime = 0 # setting up to get RT at last key press
    while timer.getTime() >0: # while time isn't up (turns neg when time's up)
        for key in event.getKeys():
            if key in ['escape']:
                core.quit() # quit if they press escape
            if key in ['b']:
            # add keypress to list for each keypress. then move cursor proportionally to length of this list
                b_list.append(key)
                prevPos+=len(b_list)
                lastTime = clock.getTime()
            if key in ['t']:
                t_list.append(key)
                prevPos-=len(t_list)
                lastTime = clock.getTime()
        lastTrialTime = lastTime

但我不知道如何处理老鼠的反应。我使用以下代码行来获取每次刷新时滚轮的移动量。

wheel_dX, wheel_dY = myMouse.getWheelRel()*4

然而,我不知道如何使用它(或其他什么?)来创建一个变量,该变量包含最后一次滚轮移动的clock.getTime()调用。

您可以测试值是否为0:

wheel_dX, wheel_dY = myMouse.getWheelRel()*4
if any([wheel_dX, wheel_dY]):
    lastTime = clock.getTime()

相关内容

  • 没有找到相关文章

最新更新