mirror of
https://github.com/onyx-and-iris/voicemeeter-rb.git
synced 2024-11-15 23:00:48 +00:00
39 lines
776 B
Ruby
39 lines
776 B
Ruby
require_relative "../../lib/voicemeeter"
|
|
|
|
class Main
|
|
def initialize(vm)
|
|
@vm = vm
|
|
@vm.register([method(:on_pdirty), method(:on_mdirty), method(:on_midi), method(:on_ldirty)])
|
|
end
|
|
|
|
def run
|
|
puts "press <Enter> to quit"
|
|
loop { break if gets.chomp.empty? }
|
|
end
|
|
|
|
def on_pdirty
|
|
puts "pdirty"
|
|
end
|
|
|
|
def on_mdirty
|
|
puts "mdirty"
|
|
end
|
|
|
|
def on_midi
|
|
current = @vm.midi.current
|
|
puts "Value of midi input #{current}: #{@vm.midi.get(current)}"
|
|
end
|
|
|
|
def on_ldirty
|
|
@vm.bus.each do |bus|
|
|
puts "#{bus} #{bus.levels.all.join(" ")}" if bus.levels.isdirty?
|
|
end
|
|
end
|
|
end
|
|
|
|
if $PROGRAM_NAME == __FILE__
|
|
Voicemeeter::Remote.new(:potato, pdirty: true, mdirty: true, midi: true, ldirty: true).run do |vm|
|
|
Main.new(vm).run
|
|
end
|
|
end
|