2023-07-07 02:36:35 +01:00
|
|
|
require_relative "base"
|
|
|
|
require_relative "kinds"
|
|
|
|
require_relative "errors"
|
|
|
|
require_relative "strip"
|
|
|
|
require_relative "bus"
|
|
|
|
require_relative "button"
|
|
|
|
require_relative "vban"
|
2023-07-14 17:07:56 +01:00
|
|
|
require_relative "command"
|
2023-07-14 16:12:18 +01:00
|
|
|
require_relative "recorder"
|
2023-07-15 00:16:54 +01:00
|
|
|
require_relative "device"
|
2023-07-16 23:30:24 +01:00
|
|
|
require_relative "fx"
|
2023-07-17 07:10:08 +01:00
|
|
|
require_relative "patch"
|
2023-07-17 06:30:09 +01:00
|
|
|
require_relative "option"
|
2023-07-09 05:50:57 +01:00
|
|
|
require_relative "configs"
|
2023-07-07 02:36:35 +01:00
|
|
|
|
|
|
|
module Voicemeeter
|
2023-07-20 09:50:16 +01:00
|
|
|
module Builder
|
2023-07-07 02:36:35 +01:00
|
|
|
private
|
|
|
|
|
2023-07-25 08:17:51 +01:00
|
|
|
def steps(step)
|
|
|
|
case step
|
2023-07-25 09:53:00 +01:00
|
|
|
when :strip then -> { (0...kind.num_strip).map { Strip::Strip.make(self, _1) } }
|
|
|
|
when :bus then -> { (0...kind.num_bus).map { Bus::Bus.make(self, _1) } }
|
|
|
|
when :button then -> { (0...kind.num_buttons).map { Button::Button.new(self, _1) } }
|
|
|
|
when :vban then -> { Vban::Vban.new(self) }
|
|
|
|
when :command then -> { Command.new(self) }
|
|
|
|
when :recorder then -> { Recorder::Recorder.new(self) }
|
|
|
|
when :device then -> { Device.new(self) }
|
|
|
|
when :fx then -> { Fx.new(self) }
|
|
|
|
when :patch then -> { Patch::Patch.new(self) }
|
|
|
|
when :option then -> { Option::Option.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-07-07 02:36:35 +01:00
|
|
|
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
|
|
|
|
private attr_writer :strip, :bus, :button, :vban, :command, :device, :option
|
|
|
|
|
2023-07-22 16:44:34 +01:00
|
|
|
def initialize(kind, **)
|
2023-07-07 02:36:35 +01:00
|
|
|
super
|
2023-07-25 08:17:51 +01:00
|
|
|
director.each { |step| send("#{step}=", steps(step).call) }
|
2023-07-07 02:36:35 +01:00
|
|
|
end
|
2023-07-09 05:50:57 +01:00
|
|
|
|
|
|
|
def configs
|
2023-07-14 01:46:46 +01:00
|
|
|
Configs.get(kind.name)
|
|
|
|
end
|
|
|
|
|
|
|
|
def run
|
|
|
|
login
|
2023-07-21 14:37:17 +01:00
|
|
|
if event.any?
|
|
|
|
init_event_threads
|
|
|
|
end
|
2023-07-14 01:46:46 +01:00
|
|
|
|
2023-07-14 17:07:56 +01:00
|
|
|
yield(self) if block_given?
|
2023-07-21 14:37:17 +01:00
|
|
|
ensure
|
|
|
|
end_event_threads
|
2023-07-14 01:46:46 +01:00
|
|
|
logout
|
2023-07-09 05:50:57 +01:00
|
|
|
end
|
2023-07-07 02:36:35 +01:00
|
|
|
end
|
|
|
|
|
2023-07-16 22:33:02 +01:00
|
|
|
class RemoteBasic < Remote
|
|
|
|
end
|
|
|
|
|
|
|
|
class RemoteBanana < Remote
|
2023-07-22 10:08:18 +01:00
|
|
|
public attr_reader :recorder, :patch
|
|
|
|
private attr_writer :recorder, :patch
|
2023-07-20 09:50:16 +01:00
|
|
|
|
|
|
|
private def director
|
|
|
|
super.append(:recorder, :patch)
|
|
|
|
end
|
2023-07-16 22:33:02 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
class RemotePotato < Remote
|
2023-07-22 10:08:18 +01:00
|
|
|
public attr_reader :recorder, :patch, :fx
|
|
|
|
private attr_writer :recorder, :patch, :fx
|
2023-07-20 09:50:16 +01:00
|
|
|
|
|
|
|
private def director
|
|
|
|
super.append(:recorder, :patch, :fx)
|
|
|
|
end
|
2023-07-16 22:33:02 +01:00
|
|
|
end
|
|
|
|
|
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-07-07 02:36:35 +01:00
|
|
|
public
|
|
|
|
|
2023-07-22 16:44:34 +01:00
|
|
|
def self.new(kind_id, **)
|
2023-07-16 22:33:02 +01:00
|
|
|
kind = Kinds.get(kind_id)
|
|
|
|
rescue KeyError
|
|
|
|
raise Errors::VMError.new "unknown Voicemeeter kind #{kind_id}"
|
|
|
|
else
|
2023-07-22 16:44:34 +01:00
|
|
|
RequestRemote.for(kind, **)
|
2023-07-07 02:36:35 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|