diff options
author | Graham Northup <grissess@nexusg.org> | 2019-02-05 00:20:44 -0500 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2019-02-05 00:20:44 -0500 |
commit | b82bc24308b3c34caf6d9ef3786c9da4ef5fd3af (patch) | |
tree | 9708370b837dbfc003ba346108e6787b602287fe /broadcast.py | |
parent | fac3853e5f77fb0eb84c68f58a1adbf804debf73 (diff) |
lotsa stuff
Diffstat (limited to 'broadcast.py')
-rw-r--r-- | broadcast.py | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/broadcast.py b/broadcast.py index 0c57935..c4753da 100644 --- a/broadcast.py +++ b/broadcast.py @@ -108,10 +108,11 @@ The specifier consists of a comma-separated list of attribute-colon-value pairs, GUIS = {} BASETIME = play_time() # XXX fixes a race with the GUI +factor = options.factor def gui_pygame(): # XXX Racy, do this fast - global tap_func + global tap_func, BASETIME, factor key_cond = threading.Condition() if options.tapper is not None: @@ -152,6 +153,8 @@ def gui_pygame(): clock = pygame.time.Clock() font = pygame.font.SysFont(pygame.font.get_default_font(), 24) + status = ('', 0.0) + DISP_TIME = 4.0 print 'Pygame GUI initialized, running...' @@ -169,6 +172,9 @@ def gui_pygame(): tsurf = font.render('%0.3f' % ((play_time() - BASETIME) / factor,), True, (255, 255, 255), (0, 0, 0)) disp.fill((0, 0, 0), tsurf.get_rect()) disp.blit(tsurf, (0, 0)) + if time.time() - DISP_TIME < status[1]: + ssurf = font.render(status[0], True, (0, 255, 0), (0, 0, 0)) + disp.blit(ssurf, (0, tsurf.get_height())) pygame.display.flip() for ev in pygame.event.get(): @@ -179,13 +185,24 @@ def gui_pygame(): thread.interrupt_main() pygame.quit() exit() + elif ev.key == pygame.K_LEFT: + BASETIME += 5 + elif ev.key == pygame.K_RIGHT: + BASETIME -= 5 + elif ev.key in (pygame.K_LEFTBRACKET, pygame.K_RIGHTBRACKET): + pt = play_time() + rtime = (pt - BASETIME) / factor + if ev.key == pygame.K_LEFTBRACKET: + factor /= 1.1 + elif ev.key == pygame.K_RIGHTBRACKET: + factor *= 1.1 + BASETIME = pt - rtime * factor + status = ('factor: ' + str(factor), time.time()) clock.tick(60) GUIS['pygame'] = gui_pygame -factor = options.factor - print 'Factor:', factor try: |