voicemeeter-rb/lib/voicemeeter/option.rb

72 lines
1.2 KiB
Ruby

require_relative "iremote"
module Voicemeeter
module Option
class Base
include IRemote
attr_reader :delay, :buffer, :mode
def initialize(remote)
super
make_accessor_int :sr
make_accessor_bool :asiosr, :monitoronsel, :slidermode
@delay = (0...remote.kind.phys_out).map { OptionDelay.new(remote, _1) }
@buffer = OptionBuffer.new(remote)
@mode = OptionMode.new(remote)
end
def identifier
:option
end
end
class OptionDelay
include IRemote
def initialize(remote, i)
super
make_accessor_bool :on, :ab
end
def identifier
"option.delay"
end
def get
getter("[#{@index}]").to_i
end
def set(val)
setter("[#{@index}]", val)
end
end
class OptionBuffer
include IRemote
def initialize(remote)
super
make_accessor_int :mme, :wdm, :ks, :asio
end
def identifier
"option.buffer"
end
end
class OptionMode
include IRemote
def initialize(remote)
super
make_accessor_bool :exclusif, :swift
end
def identifier
"option.mode"
end
end
end
end