mirror of
https://github.com/onyx-and-iris/voicemeeter-rb.git
synced 2024-11-15 23:00:48 +00:00
29 lines
707 B
Ruby
29 lines
707 B
Ruby
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)
|
|
kwargs => {direction:}
|
|
return @remote.get_num_devices(direction) unless kwargs.key? :index
|
|
|
|
vals = @remote.get_device_description(kwargs[:index], direction)
|
|
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
|