如何与另一个并行运行内部循环?

问题描述

我想从花药循环中启动一个循环,并使其与父循环并行运行。尽管我不确定该怎么做。

在我的程序中,我使用TUI的curses选择要播放歌曲的音频文件,而在播放歌曲时,我想每秒在屏幕上绘制位置时间。这是我程序的关键:

初始化

import curses
from time import sleep
# music player with is_playing and is_paused attributes
import player

def main(stdcr)

    # turn off blinking cursos; init colors; get window size 
    curses.curs_set(False)
    curses.init_pair(1,curses.COLOR_BLACK,curses.COLOR_WHITE)
    y,x = stdscr.getmaxyx()

    # init output screen; init widgets for file browser and song position
    disp = curses.newwin(y,x,0)
    files = disp.subpad(int(y * 0.89),int(x * 0.82),int(x * 0.19))
    seek = disp.subpad(int(y * 0.11),int(y * 0.9),0)

    # Main Loop,it asks for a root directory and allows user to browse files within it
    curr_file = 0
    contents = getdir()
    browser(files,seek,contents,curr_file)

主循环

def browser(files,curr_file):
    
    # print file contents on browser widget,highlight curr_file
    print_items(files,curr_file)

    while True:
        key = files.getch()
        is_enter = (key == curses.KEY_ENTER or key in [10,13])
        ...
        if is_enter:
            if contents[curr_file].is_dir():
                # open directory
            
            elif contents[curr_file].is_file():
                playing = contents[curr_file].path
                player.play(playing)
                print_seek(seek,curr_file,player)

子循环

def print_seek(seek,player):
    while player.is_playing:
        # show "player.curr_position / player.song_length
        
        # wait a second or so before redrawing/reprinting
        sleep(0.99)

我添加了程序的init函数只是为了显示整个范围,如果这可能有助于确定是否/何时进行init线程以及将其应用于何处。

很明显,我只希望子循环在特定的情况下运行,而不总是在主循环运行的同时。

我不确定使用哪种方法以及对并发的经验如何,因此我将不胜感激。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...