()
| 200 | |
| 201 | # 更新光标闪烁 |
| 202 | def update_cursor(): |
| 203 | global cursor_visible, last_cursor_time |
| 204 | |
| 205 | current_time = time.time() |
| 206 | if current_time - last_cursor_time >= 0.5: # 每0.5秒闪烁一次 |
| 207 | cursor_visible = not cursor_visible |
| 208 | last_cursor_time = current_time |
| 209 | display_input_box() |
| 210 | |
| 211 | # 小红帽的移动函数 |
| 212 | def move_red_hood(direction): |
no test coverage detected