voicemeeter-rb/lib/voicemeeter/remote.rb

103 lines
2.5 KiB
Ruby
Raw Permalink Normal View History

module Voicemeeter
2023-08-29 11:21:05 +01:00
# Builder module for Remote factories.
2023-07-20 09:50:16 +01:00
module Builder
private
2023-07-25 08:17:51 +01:00
def steps(step)
case step
2023-07-27 10:58:26 +01:00
when :strip then -> { (0...kind.num_strip).map { Strip::Base.make(self, _1) } }
when :bus then -> { (0...kind.num_bus).map { Bus::Base.make(self, _1) } }
when :button then -> { (0...kind.num_buttons).map { Button::Base.new(self, _1) } }
when :vban then -> { Vban::Base.new(self) }
when :command then -> { Command.new(self) }
2023-07-27 10:58:26 +01:00
when :recorder then -> { Recorder::Base.new(self) }
when :device then -> { Device.new(self) }
when :fx then -> { Fx.new(self) }
2023-07-27 10:58:26 +01:00
when :patch then -> { Patch::Base.new(self) }
when :option then -> { Option::Base.new(self) }
2023-07-25 08:17:51 +01:00
end
2023-07-20 09:50:16 +01:00
end
def director
2023-07-25 08:17:51 +01:00
%i[strip bus button vban command device option]
2023-07-20 09:50:16 +01:00
end
end
module Remote
2023-08-01 23:44:47 +01:00
extend Logging
2023-08-29 14:07:52 +01:00
# Concrete class for Remote
class Remote < Base
2023-07-20 09:50:16 +01:00
include Builder
2023-07-22 10:08:18 +01:00
public attr_reader :strip, :bus, :button, :vban, :command, :device, :option
2023-07-25 10:03:43 +01:00
def initialize(...)
super
director.each { |step| instance_variable_set("@#{step}", steps(step).call) }
end
2023-07-09 05:50:57 +01:00
def configs
Configs.get(kind.name)
end
def run
login
if event.any?
init_event_threads
end
2023-07-14 17:07:56 +01:00
yield(self) if block_given?
ensure
end_event_threads
logout
2023-07-09 05:50:57 +01:00
end
end
2023-08-31 22:10:34 +01:00
# Represents a Basic Remote
2023-08-29 11:21:05 +01:00
class RemoteBasic < Remote; end
2023-08-31 22:10:34 +01:00
# Represents a Banana Remote
class RemoteBanana < Remote
2023-07-22 10:08:18 +01:00
public attr_reader :recorder, :patch
2023-07-20 09:50:16 +01:00
private def director
2023-07-29 21:36:13 +01:00
super | [:recorder, :patch]
2023-07-20 09:50:16 +01:00
end
end
2023-08-31 22:10:34 +01:00
# Represents a Potato Remote
class RemotePotato < Remote
2023-07-22 10:08:18 +01:00
public attr_reader :recorder, :patch, :fx
2023-07-20 09:50:16 +01:00
private def director
2023-07-29 21:36:13 +01:00
super | [:recorder, :patch, :fx]
2023-07-20 09:50:16 +01:00
end
end
2023-08-29 14:07:52 +01:00
# Factory class for Remote. Returns a Remote class of a kind.
2023-07-22 10:08:18 +01:00
class RequestRemote
2023-07-22 16:44:34 +01:00
def self.for(kind, **)
2023-07-22 10:08:18 +01:00
case kind.name
when :basic
2023-07-22 16:44:34 +01:00
RemoteBasic.new(kind, **)
2023-07-22 10:08:18 +01:00
when :banana
2023-07-22 16:44:34 +01:00
RemoteBanana.new(kind, **)
2023-07-22 10:08:18 +01:00
when :potato
2023-07-22 16:44:34 +01:00
RemotePotato.new(kind, **)
2023-07-22 10:08:18 +01:00
end
end
end
2023-08-29 11:21:05 +01:00
# Interface entry point. Wraps factory class and handles kind errors.
2023-07-22 16:44:34 +01:00
def self.new(kind_id, **)
kind = Kinds.get(kind_id)
2023-08-01 23:44:47 +01:00
rescue KeyError => e
logger.error "#{e.class.name}: #{e.message}"
2023-08-09 17:45:50 +01:00
raise Errors::VMError.new "unknown Voicemeeter kind '#{kind_id}'"
else
2023-07-22 16:44:34 +01:00
RequestRemote.for(kind, **)
end
end
end