voicemeeter-rb/lib/voicemeeter/vban.rb
onyx-and-iris 33635e5f9b Add Midi,Text In/Out Stream classes
define midi,text values for kind.vban in KindMaps
2023-08-03 12:56:16 +01:00

110 lines
2.5 KiB
Ruby

require_relative "iremote"
require_relative "meta"
require_relative "errors"
module Voicemeeter
module Vban
class VbanStream
# Base class for Vban Stream types
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
raise "Called abstract method: direction"
end
end
class VbanInstream < VbanStream
# Represents a Vban InStream
def initialize(remote, i)
super
make_reader_int :sr, :channel, :bit
end
def direction
:in
end
end
class VbanAudioInstream < VbanInstream; end
# Represents a Vban Audio InStream
class VbanMidiInstream < VbanInstream; end
# Represents a Vban Midi InStream
class VbanTextInstream < VbanInstream; end
# Represents a Vban Text InStream
class VbanOutstream < VbanStream
# Represents a Vban OutStream
def initialize(remote, i)
super
make_accessor_int :sr, :channel, :bit
end
def direction
:out
end
end
class VbanAudioOutstream < VbanOutstream; end
# Represents a Vban Audio OutStream
class VbanMidiOutstream < VbanOutstream; end
# Represents a Vban Midi OutStream
class RequestVbanStream
def self.for(remote, i, dir)
vban_in, vban_out, midi, _ = remote.kind.vban
case dir
when :in
if i < vban_in
VbanAudioInstream.new(remote, i)
elsif i < vban_in + midi
VbanMidiInstream.new(remote, i)
else
VbanTextInstream.new(remote, i)
end
when :out
if i < vban_out
VbanAudioInstream.new(remote, i)
elsif i < vban_out + midi
VbanMidiInstream.new(remote, i)
end
end
end
end
class Base
# Base class for Vban type
attr_reader :instream, :outstream
def initialize(remote)
vban_in, vban_out, midi, text = remote.kind.vban
@instream = (0...vban_in + midi + text).map { RequestVbanStream.for(remote, _1, :in) }
@outstream = (0...vban_out + midi).map { RequestVbanStream.for(remote, _1, :out) }
@remote = remote
end
def enable
@remote.set("vban.enable", 1)
end
def disable
@remote.set("vban.enable", 0)
end
end
end
end