register blocks on the event client object

remove running attribute reader
This commit is contained in:
onyx-and-iris 2023-08-27 17:24:25 +01:00
parent 9e84d02707
commit 8d2cc774ac
2 changed files with 15 additions and 21 deletions

View File

@ -2,4 +2,4 @@
source "https://rubygems.org"
gem "obsws", "~> 0.4.0"
gem "obsws", "~> 0.5.8"

View File

@ -4,23 +4,11 @@ require "yaml"
require "pathname"
class Main
attr_reader :running
def initialize(vm, **kwargs)
@vm = vm
@obsws = OBSWS::Events::Client.new(**kwargs)
@obsws.register([
method(:on_current_program_scene_changed),
method(:on_exit_started)
])
@running = true
end
def run
sleep(0.1) while running
end
def on_current_program_scene_changed(data)
@obsws.on :on_current_program_scene_changed do |data|
scene = data.scene_name
puts "Switched to scene #{scene}"
if respond_to?("on_#{scene.downcase}")
@ -28,11 +16,17 @@ class Main
end
end
def on_exit_started
@obsws.on :on_exit_started do |data|
puts "OBS closing!"
@obsws.close
@running = false
end
end
def run
@running = true
sleep(0.1) while @running
end
def on_start
@vm.strip[0].mute = true