- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在创建一个程序,其中一个圆圈将向左移动,停留 3 秒,然后移动到屏幕的右侧。但是,当尝试在那里实现此解决方案时:In PyGame, how to move an image every 3 seconds without using the sleep function? , 这是行不通的。如果有人能告诉我我在做什么,我将不胜感激。
这是我的代码:
import pygame, sys, time, random
from pygame.locals import *
currentPosition = [300, 368]
def moveLeft():
currentPosition[0] -= 1
def moveRight():
currentPosition[0] += 1
pygame.init()
windowCalibration = pygame.display.set_mode((0,0))
WHITE = (255, 255, 255)
windowCalibration.fill(WHITE)
pygame.display.set_caption("Eye calibration")
pygame.draw.circle(windowCalibration, (0,0,0), currentPosition, 10)
done = False
circleIsIdle = True
clock = pygame.time.Clock()
time_counter = 0
def stopCircle():
circleIsIdle = True
while circleIsIdle:
time_counter = clock.tick()
if time_counter > 3000:
time_counter = 0
circleIsIdle = False
while not done:
for event in pygame.event.get():
if event.type == pygame.QUIT:
done = True
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_ESCAPE:
done = True
while currentPosition[0] >= 10:
moveLeft()
windowCalibration.fill(WHITE)
pygame.draw.circle(windowCalibration, (0,0,0), currentPosition, 10)
pygame.display.update()
stopCircle()
while currentPosition[0] <= 1350:
moveRight()
windowCalibration.fill(WHITE)
pygame.draw.circle(windowCalibration, (0,0,0), currentPosition, 10)
pygame.display.update()
stopCircle()
done = True
最佳答案
在 while not done
中,您不应该使用其他需要更长时间的 while
。它会停止未完成
并且无法检查您是否按下了ESC
等。
您应该使用 pygame.time.get_ticks() 来获取当前时间并使用它来控制哪个元素移动或绘制。
我还使用 state
来查看我是否向左或向右移动,或者在向左或向右移动之前等待。这样我可以做不同的事情 - 我可以移动或不移动,我可以绘制或不绘制(即,如果我有“暂停”按钮,我可以使用 state_pause
绘制或不绘制此按钮)。
此代码始终运行未完成
,因此您始终可以使用ESC
退出。即使第一个圆圈正在等待,您也可以移动第二个圆圈。
import pygame
# --- constants ---
WHITE = (255, 255, 255)
BLACK = ( 0, 0, 0)
# --- classes ---
# empty
# --- functions ---
def moveLeft():
currentPosition[0] -= 1
def moveRight():
currentPosition[0] += 1
# --- main ---
pygame.init()
windowCalibration = pygame.display.set_mode((0,0))
pygame.display.set_caption("Eye calibration")
currentPosition = [300, 368]
state = 'move_left'
wait_to = 0
done = False
while not done:
# --- events ---
for event in pygame.event.get():
if event.type == pygame.QUIT:
done = True
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_ESCAPE:
done = True
# --- moves ---
if state == 'move_left':
if currentPosition[0] >= 10:
moveLeft()
else:
state = 'wait_before_move_right'
wait_to = pygame.time.get_ticks() + 3000
elif state == 'move_right':
if currentPosition[0] <= 1350:
moveRight()
else:
state = 'wait_before_move_left'
wait_to = pygame.time.get_ticks() + 3000
elif state == 'wait_before_move_right':
current_time = pygame.time.get_ticks()
if current_time > wait_to:
state = 'move_right'
elif state == 'wait_before_move_left':
current_time = pygame.time.get_ticks()
if current_time > wait_to:
state = 'move_left'
# --- draws ----
windowCalibration.fill(WHITE)
pygame.draw.circle(windowCalibration, BLACK, currentPosition, 10)
pygame.display.update()
# --- end ---
pygame.quit()
<小时/>
编辑:此代码同时移动 3 个圆圈,它们在改变方向之前会等待,并且不会停止其他圆圈,您可以在中使用 ESC
任何时刻。
import pygame
# --- constants ---
WHITE = (255, 255, 255)
BLACK = ( 0, 0, 0)
RED = (255, 0, 0)
GREEN = ( 0, 255, 0)
BLUE = ( 0, 0, 255)
# --- classes ---
# empty
# --- functions ---
# empty
# --- main ---
pygame.init()
windowCalibration = pygame.display.set_mode((0,0))
pygame.display.set_caption("Eye calibration")
circles = [
{'pos': [300, 368], 'speed': 1, 'state': 'move_left', 'wait_to': 0, 'color': RED},
{'pos': [300, 268], 'speed': 10, 'state': 'move_right', 'wait_to': 0, 'color': GREEN},
{'pos': [300, 168], 'speed': 30, 'state': 'move_right', 'wait_to': 0, 'color': BLUE},
]
done = False
while not done:
# --- events ---
for event in pygame.event.get():
if event.type == pygame.QUIT:
done = True
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_ESCAPE:
done = True
# --- moves ---
current_time = pygame.time.get_ticks()
for circle in circles:
if circle['state'] == 'move_left':
if circle['pos'][0] >= 10:
circle['pos'][0] -= circle['speed']
else:
circle['pos'][0] = 10
circle['state'] = 'wait_before_move_right'
circle['wait_to'] = pygame.time.get_ticks() + 3000
elif circle['state'] == 'move_right':
if circle['pos'][0] <= 1350:
circle['pos'][0] += circle['speed']
else:
circle['pos'][0] = 1350
circle['state'] = 'wait_before_move_left'
circle['wait_to'] = pygame.time.get_ticks() + 3000
elif circle['state'] == 'wait_before_move_right':
if current_time > circle['wait_to']:
circle['state'] = 'move_right'
elif circle['state'] == 'wait_before_move_left':
if current_time > circle['wait_to']:
circle['state'] = 'move_left'
# --- draws ----
windowCalibration.fill(WHITE)
for circle in circles:
pygame.draw.circle(windowCalibration, circle['color'], circle['pos'], 10)
pygame.display.update()
# --- end ---
pygame.quit()
关于python - 闲置3秒后如何再次移动一圈?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55588557/
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 可以用事实和引用来回答它. 6年前关闭。 Improve this
我的 symfony 应用程序 (3.4.8) 似乎忽略了任何延长 session 的尝试。解决此问题的最佳行动方案是什么?文档非常模糊。 应用程序/配置/security.yml security:
如何在Rails应用程序中设置如果任何用户闲置30分钟或特定时间段,则应自动注销该用户。 任何人都可以提出任何解决方案。我正在使用dev进行身份验证。任何帮助表示赞赏。 最佳答案 您应该使用 Time
我发现 Azure 容器实例 (ACI) 非常令人困惑。在 Azure 容器应用中,如果没有请求,服务将缩减至零并停止计费。然而ACI也有这样的功能吗? 例如,如果我部署一个每月调用一次的容器,并且每
我发现 Azure 容器实例 (ACI) 非常令人困惑。在 Azure 容器应用中,如果没有请求,服务将缩减至零并停止计费。然而ACI也有这样的功能吗? 例如,如果我部署一个每月调用一次的容器,并且每
有谁知道我如何编写一个 Javacript 函数,如果浏览器的 Javascript 引擎空闲了一定时间,该函数返回 true ? 我很乐意使用 mootools/jQuery 等,如果更容易的话,我
下面的方法会在 15 分钟后注销用户。但问题是,即使用户处于事件状态,也会将其注销。 我正在寻找解决方案,当用户在整整 15 分钟内不事件时,该方法将把他注销,而不是该方法不会运行。 public v
我需要我的应用程序在设备闲置一定时间后重新打开。换句话说,我的应用程序不会进入休眠模式并进入黑屏,而是会重新打开(假设它在后台运行)。将其视为“空闲屏幕”应用。 这在理论上相当简单,但我什至不知道它是
我正在制作一个需要监视 Gmail 帐户是否有新邮件的程序,为了尽快收到它们,我正在使用 JavaMail 的闲置功能。这是我用来调用 folder.idle() 的线程中的代码片段: //Run m
我的应用程序通过推送通知执行静默后台获取。一切正常,当用户在过去 60 分钟内打开应用程序或在 60 分钟内发送推送通知时,从我们的服务器发送的推送通知会按预期触发静默后台提取 - 即使设备已锁定。
在我的 raspberry pi(raspbian 运行)上,我想在空闲系统 5 分钟后(没有鼠标或键盘操作)将当前桌面切换到桌面 n#0,通过 wmctrl -s 0 和 xprintidle 用于
在 iOS 应用程序中,您可以设置 application.idleTimerDisabled = YES 以防止手机自动锁定。 我需要在移动版 Safari 中为像 Doodle Jump 这样的游
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 10 年前。 Improve thi
我一直在 AWS Lambda 中修改 nodejs 代码,由一些 API 网关端点调用。我注意到在没有任何 API 网关调用的情况下经过一定时间后,下一个 API 网关请求将超时。我将收到标准的 L
我是一名优秀的程序员,十分优秀!