aboutsummaryrefslogtreecommitdiff
path: root/voctogui/lib/videopreviews.py
blob: fe41aea71d1f6123970b489682613ee0c3b66c91 (plain)
  1. import logging
  2. from gi.repository import Gst, Gtk
  3. from lib.config import Config
  4. from lib.videodisplay import VideoDisplay
  5. import lib.connection as Connection
  6. class VideoPreviewsController(object):
  7. """ Displays Video-Previews and selection Buttons for them """
  8. def __init__(self, drawing_area, win, uibuilder):
  9. self.log = logging.getLogger('VideoPreviewsController')
  10. self.drawing_area = drawing_area
  11. self.win = win
  12. self.sources = Config.getlist('mix', 'sources')
  13. self.preview_players = {}
  14. self.previews = {}
  15. self.a_btns = {}
  16. self.b_btns = {}
  17. self.current_source = {'a': None, 'b': None}
  18. try:
  19. width = Config.getint('previews', 'width')
  20. self.log.debug('Preview-Width configured to %u', width)
  21. except:
  22. width = 320
  23. self.log.debug('Preview-Width selected as %u', width)
  24. try:
  25. height = Config.getint('previews', 'height')
  26. self.log.debug('Preview-Height configured to %u', height)
  27. except:
  28. height = width*9/16
  29. self.log.debug('Preview-Height calculated to %u', height)
  30. # Accelerators
  31. accelerators = Gtk.AccelGroup()
  32. win.add_accel_group(accelerators)
  33. group_a = None
  34. group_b = None
  35. for idx, source in enumerate(self.sources):
  36. self.log.info('Initializing Video Preview %s', source)
  37. preview = uibuilder.get_check_widget('widget_preview', clone=True)
  38. video = uibuilder.find_widget_recursive(preview, 'video')
  39. video.set_size_request(width, height)
  40. drawing_area.pack_start(preview, fill=False, expand=False, padding=0)
  41. player = VideoDisplay(video, port=13000 + idx, width=width, height=height)
  42. uibuilder.find_widget_recursive(preview, 'label').set_label(source)
  43. btn_a = uibuilder.find_widget_recursive(preview, 'btn_a')
  44. btn_b = uibuilder.find_widget_recursive(preview, 'btn_b')
  45. btn_a.set_name("%c %u" % ('a', idx))
  46. btn_b.set_name("%c %u" % ('b', idx))
  47. if not group_a:
  48. group_a = btn_a
  49. else:
  50. btn_a.join_group(group_a)
  51. if not group_b:
  52. group_b = btn_b
  53. else:
  54. btn_b.join_group(group_b)
  55. btn_a.connect('toggled', self.btn_toggled)
  56. btn_b.connect('toggled', self.btn_toggled)
  57. key, mod = Gtk.accelerator_parse('%u' % (idx+1))
  58. btn_a.add_accelerator('activate', accelerators, key, mod, Gtk.AccelFlags.VISIBLE)
  59. key, mod = Gtk.accelerator_parse('<Ctrl>%u' % (idx+1))
  60. btn_b.add_accelerator('activate', accelerators, key, mod, Gtk.AccelFlags.VISIBLE)
  61. btn_fullscreen = uibuilder.find_widget_recursive(preview, 'btn_fullscreen')
  62. btn_fullscreen.set_name("%c %u" % ('f', idx))
  63. btn_fullscreen.connect('clicked', self.btn_fullscreen_clicked)
  64. self.preview_players[source] = player
  65. self.previews[source] = preview
  66. self.a_btns[source] = btn_a
  67. self.b_btns[source] = btn_b
  68. # connect event-handler and request initial state
  69. Connection.on('video_status', self.on_video_status)
  70. Connection.send('get_video')
  71. def btn_toggled(self, btn):
  72. if not btn.get_active():
  73. return
  74. btn_name = btn.get_name()
  75. self.log.debug('btn_toggled: %s', btn_name)
  76. channel, idx = btn_name.split(' ')[:2]
  77. source_name = self.sources[int(idx)]
  78. if self.current_source[channel] == source_name:
  79. self.log.info('video-channel %s already on %s', channel, source_name)
  80. return
  81. self.log.info('video-channel %s changed to %s', channel, source_name)
  82. Connection.send('set_video_'+channel, source_name)
  83. def btn_fullscreen_clicked(self, btn):
  84. btn_name = btn.get_name()
  85. self.log.debug('btn_fullscreen_clicked: %s', btn_name)
  86. channel, idx = btn_name.split(' ')[:2]
  87. source_name = self.sources[int(idx)]
  88. self.log.info('selcting video %s for fullscreen', source_name)
  89. Connection.send('set_videos_and_composite', source_name, '*', 'fullscreen')
  90. def on_video_status(self, source_a, source_b):
  91. self.log.info('on_video_status callback w/ sources: %s and %s', source_a, source_b)
  92. self.current_source['a'] = source_a
  93. self.current_source['b'] = source_b
  94. self.a_btns[source_a].set_active(True)
  95. self.b_btns[source_b].set_active(True)