obsws-ruby/lib/obsws/event.rb

91 lines
2.3 KiB
Ruby
Raw Normal View History

2022-10-22 22:30:40 +01:00
require "json"
require_relative "util"
require_relative "mixin"
2023-07-26 14:37:35 +01:00
require_relative "logger"
2022-10-22 22:30:40 +01:00
module OBSWS
module Events
module SUBS
NONE = 0
2022-10-27 06:45:21 +01:00
GENERAL = 1 << 0
CONFIG = 1 << 1
SCENES = 1 << 2
INPUTS = 1 << 3
TRANSITIONS = 1 << 4
FILTERS = 1 << 5
OUTPUTS = 1 << 6
SCENEITEMS = 1 << 7
MEDIAINPUTS = 1 << 8
VENDORS = 1 << 9
UI = 1 << 10
2022-10-22 22:30:40 +01:00
2022-10-27 06:45:21 +01:00
LOW_VOLUME = GENERAL | CONFIG | SCENES | INPUTS | TRANSITIONS | FILTERS | OUTPUTS |
2023-07-19 15:11:05 +01:00
SCENEITEMS | MEDIAINPUTS | VENDORS | UI
2022-10-22 22:30:40 +01:00
2022-10-27 06:45:21 +01:00
INPUTVOLUMEMETERS = 1 << 16
INPUTACTIVESTATECHANGED = 1 << 17
INPUTSHOWSTATECHANGED = 1 << 18
SCENEITEMTRANSFORMCHANGED = 1 << 19
2022-10-22 22:30:40 +01:00
2022-10-27 06:45:21 +01:00
HIGH_VOLUME = INPUTVOLUMEMETERS | INPUTACTIVESTATECHANGED | INPUTSHOWSTATECHANGED |
2023-07-19 15:11:05 +01:00
SCENEITEMTRANSFORMCHANGED
2022-10-22 22:30:40 +01:00
2022-10-27 06:45:21 +01:00
ALL = LOW_VOLUME | HIGH_VOLUME
2022-10-22 22:30:40 +01:00
end
module Callbacks
include Util
def add_observer(observer)
@observers = [] unless defined?(@observers)
observer = [observer] if !observer.respond_to? :each
observer.each { |o| @observers.append(o) }
end
def remove_observer(observer)
@observers.delete(observer)
end
def notify_observers(event, data)
if defined?(@observers)
@observers.each do |o|
if o.respond_to? "on_#{event.to_snake}"
if data.empty?
o.send("on_#{event.to_snake}")
else
o.send("on_#{event.to_snake}", data)
end
end
end
end
end
end
class Client
2023-07-26 14:37:35 +01:00
include Logging
2022-10-22 22:30:40 +01:00
include Callbacks
include Mixin::TearDown
include Mixin::OPCodes
def initialize(**kwargs)
2022-10-27 06:45:21 +01:00
kwargs[:subs] ||= SUBS::LOW_VOLUME
2022-10-22 22:30:40 +01:00
@base_client = Base.new(**kwargs)
2023-07-26 16:15:43 +01:00
logger.info("#{self} successfully identified with server")
@base_client.updater = ->(op_code, data) {
if op_code == Mixin::OPCodes::EVENT
2023-07-26 14:37:35 +01:00
logger.debug("received: #{data}")
event = data[:eventType]
data = data.fetch(:eventData, {})
notify_observers(event, Mixin::Data.new(data, data.keys))
end
}
2022-10-22 22:30:40 +01:00
end
def to_s
2023-07-19 15:11:05 +01:00
self.class.name.split("::").last(2).join("::")
end
2022-10-22 22:30:40 +01:00
end
end
end