97 lines
3.4 KiB
Python
97 lines
3.4 KiB
Python
# from ...OBSActionBase import OBSActionBase
|
|
from plugins.com_core447_OBSPlugin.OBSActionBase import OBSActionBase
|
|
from src.backend.DeckManagement.DeckController import DeckController
|
|
from src.backend.PageManagement.Page import Page
|
|
from src.backend.PluginManager.PluginBase import PluginBase
|
|
|
|
import os
|
|
class ToggleRecord(OBSActionBase):
|
|
def __init__(self, action_id: str, action_name: str,
|
|
deck_controller: "DeckController", page: Page, coords: str, plugin_base: PluginBase):
|
|
super().__init__(action_id=action_id, action_name=action_name,
|
|
deck_controller=deck_controller, page=page, coords=coords, plugin_base=plugin_base)
|
|
self.current_state = -1
|
|
|
|
def on_ready(self):
|
|
self.current_state = -1
|
|
# Connect to obs if not connected
|
|
if self.plugin_base.backend is not None:
|
|
if not self.plugin_base.backend.get_connected(): # self.plugin_base.obs.connect_to(host="localhost", port=4444, timeout=3, legacy=False)
|
|
self.reconnect_obs()
|
|
|
|
# Show current rec status
|
|
self.show_current_rec_status()
|
|
|
|
def show_current_rec_status(self, new_paused = False):
|
|
if self.plugin_base.backend is None:
|
|
self.current_state = -1
|
|
self.show_error()
|
|
return
|
|
if not self.plugin_base.backend.get_connected():
|
|
self.current_state = -1
|
|
self.show_error()
|
|
return
|
|
status = self.plugin_base.backend.get_record_status()
|
|
if status is None:
|
|
self.current_state = -1
|
|
self.show_error()
|
|
return
|
|
if status["paused"]:
|
|
self.show_for_state(2)
|
|
elif status["active"]:
|
|
self.show_for_state(1)
|
|
else:
|
|
self.show_for_state(0)
|
|
|
|
def show_for_state(self, state: int):
|
|
"""
|
|
0: Not Recording
|
|
1: Recording
|
|
2: Paused
|
|
3: Stopping in progress
|
|
"""
|
|
if state in [1, 2]:
|
|
self.show_rec_time()
|
|
|
|
if state == self.current_state:
|
|
return
|
|
|
|
self.current_state = state
|
|
image = "record_inactive.png"
|
|
if state == 0:
|
|
self.set_bottom_label(None)
|
|
image = "record_inactive.png"
|
|
elif state == 1:
|
|
image = "record_active.png"
|
|
elif state == 2:
|
|
image = "record_resume.png"
|
|
|
|
self.set_media(media_path=os.path.join(self.plugin_base.PATH, "assets", image))
|
|
|
|
def on_key_down(self):
|
|
if self.plugin_base.backend is None:
|
|
self.current_state = -1
|
|
self.show_error()
|
|
return
|
|
if not self.plugin_base.backend.get_connected():
|
|
self.current_state = -1
|
|
self.show_error()
|
|
return
|
|
self.plugin_base.backend.toggle_record()
|
|
self.on_tick()
|
|
|
|
def on_tick(self):
|
|
self.show_current_rec_status()
|
|
|
|
def show_rec_time(self):
|
|
if not self.plugin_base.backend.get_connected():
|
|
self.set_media(media_path=os.path.join(self.plugin_base.PATH, "assets", "error.png"))
|
|
return
|
|
status = self.plugin_base.backend.get_record_status()
|
|
if status is None:
|
|
self.set_media(media_path=os.path.join(self.plugin_base.PATH, "assets", "error.png"))
|
|
return
|
|
if not status["active"]:
|
|
self.set_bottom_label(None)
|
|
return
|
|
self.set_bottom_label(status["timecode"][:-4], font_size=16) |