voicemeeter-rb/lib/voicemeeter/vban.rb

70 lines
1.3 KiB
Ruby
Raw Normal View History

require_relative "iremote"
require_relative "meta"
require_relative "errors"
module Voicemeeter
module Vban
2023-07-27 10:58:26 +01:00
class VbanStream
include IRemote
def initialize(remote, i)
super
make_accessor_bool :on
make_accessor_string :name, :ip
make_accessor_int :quality, :route
end
def identifier
"vban.#{direction}stream[#{@index}]"
end
def direction
2023-07-27 11:15:04 +01:00
raise "Called abstract method: direction"
end
end
class VbanInstream < VbanStream
def initialize(remote, i)
super
make_reader_int :sr, :channel, :bit
end
def direction
:in
end
end
class VbanOutstream < VbanStream
def initialize(remote, i)
super
make_accessor_int :sr, :channel, :bit
end
def direction
:out
end
end
2023-07-27 10:58:26 +01:00
class Base
# Base class for Vban type
2023-07-09 05:50:39 +01:00
attr_reader :instream, :outstream
def initialize(remote)
vban_in, vban_out = remote.kind.vban
@instream = (0...vban_in).map { VbanInstream.new(remote, _1) }
@outstream = (0...vban_out).map { VbanOutstream.new(remote, _1) }
@remote = remote
end
def enable
@remote.set("vban.enable", 1)
2023-07-09 05:50:39 +01:00
end
def disable
@remote.set("vban.enable", 0)
2023-07-09 05:50:39 +01:00
end
end
end
end