mirror of
https://github.com/onyx-and-iris/voicemeeter-rb.git
synced 2026-04-17 08:33:31 +00:00
ensure we initialize comp arrays
use zip,map to calculate comps
This commit is contained in:
@@ -64,7 +64,7 @@ module Voicemeeter
|
||||
cache[:strip_buf], cache[:bus_buf] = _get_levels
|
||||
!(
|
||||
cache[:strip_level] == cache[:strip_buf] &&
|
||||
@cache[:bus_level] == cache[:bus_buf]
|
||||
cache[:bus_level] == cache[:bus_buf]
|
||||
)
|
||||
end
|
||||
|
||||
|
||||
@@ -17,8 +17,8 @@ module Voicemeeter
|
||||
@callbacks.each do |callback|
|
||||
if callback.respond_to? :on_update
|
||||
callback.on_update { event.to_s[3..] }
|
||||
else
|
||||
callback.call # if callback == event
|
||||
elsif callback.name == event
|
||||
callback.call
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -21,6 +21,8 @@ module Voicemeeter
|
||||
def init_worker(que)
|
||||
logger.info "Listening for #{event.get.join(", ")} events"
|
||||
@cache[:strip_level], @cache[:bus_level] = _get_levels
|
||||
@cache[:strip_comp] = Array.new(kind.num_strip_levels, false)
|
||||
@cache[:bus_comp] = Array.new(kind.num_bus_levels, false)
|
||||
@running = true
|
||||
Thread.new do
|
||||
loop do
|
||||
@@ -33,12 +35,8 @@ module Voicemeeter
|
||||
on_event :on_mdirty if e_from_que == :mdirty && mdirty?
|
||||
on_event :on_midi if e_from_que == :midi && get_midi_message
|
||||
if e_from_que == :ldirty && ldirty?
|
||||
cache[:strip_comp] = cache[:strip_level].map.with_index do |x, i|
|
||||
!(x == cache[:strip_buf][i])
|
||||
end
|
||||
cache[:bus_comp] = cache[:bus_level].map.with_index do |x, i|
|
||||
!(x == cache[:bus_buf][i])
|
||||
end
|
||||
cache[:strip_comp] = cache[:strip_level].zip(cache[:strip_buf]).map { |a, b| a != b }
|
||||
cache[:bus_comp] = cache[:bus_level].zip(cache[:bus_buf]).map { |a, b| a != b }
|
||||
cache[:strip_level] = cache[:strip_buf]
|
||||
cache[:bus_level] = cache[:bus_buf]
|
||||
on_event :on_ldirty
|
||||
|
||||
Reference in New Issue
Block a user