2023-07-15 00:16:54 +01:00
|
|
|
module Voicemeeter
|
|
|
|
class Device
|
|
|
|
def initialize(remote)
|
|
|
|
@remote = remote
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
|
|
|
"#{self.class.name.split("::").last}#{@index}#{@remote.kind}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def getter(**kwargs)
|
2023-07-31 19:22:29 +01:00
|
|
|
kwargs => {direction:}
|
|
|
|
return @remote.get_num_devices(direction) unless kwargs.key? :index
|
2023-07-15 00:16:54 +01:00
|
|
|
|
2023-07-31 19:22:29 +01:00
|
|
|
vals = @remote.get_device_description(kwargs[:index], direction)
|
2023-07-15 00:16:54 +01:00
|
|
|
types = {1 => "mme", 3 => "wdm", 4 => "ks", 5 => "asio"}
|
|
|
|
{name: vals[0], type: types[vals[1]], id: vals[2]}
|
|
|
|
end
|
|
|
|
|
|
|
|
def ins = getter(direction: :in)
|
|
|
|
|
|
|
|
def outs = getter(direction: :out)
|
|
|
|
|
|
|
|
def input(i) = getter(index: i, direction: :in)
|
|
|
|
|
|
|
|
def output(i) = getter(index: i, direction: :out)
|
|
|
|
end
|
|
|
|
end
|