Hey @julian thanks for the reply -
Expected behaviour would be that if there are:
- simultaneous events
- in the same orbit
- with the same
cut
group applied
Then all events should be played.
If the events are not simultaneous, then the later events should stop playback of any earlier event that is:
- in the same orbit
- with the same
cut
group applied
If they are not meeting these orbit/cut group conditions then they should not affect each other.
Currently, the behaviour is that only one of the events will play, if there are:
- simultaneous events
- in the same orbit
- with the same
cut
group applied
Some examples of expected behaviour:
d1 $ note "c'major" # s "superfm" # cut 1
-- should play 3 notes, [c,e,g]
d1 $ note "c'major a'minor" # s "superfm" # cut 1 # legato 2
-- should play 3 notes, [c,e,g],
-- which are stopped halfway through the cycle by 3 more notes [a,c,e]
d1 $ note "c'major" # s "superfm" # cut 1 # orbit 1
d2 $ s "bd" # cut 1 # orbit 1
-- should play 4 notes, [c,e,g, bd]
d1 $ note "c'major" # s "superfm" # cut 1 # orbit 1
d2 $ note "~ a'minor" # s "superfm" # cut 1 # orbit 1
-- should play 3 notes, [c,e,g],
-- which are stopped halfway through the cycle by another 3 notes [a,c,e]
d1 $ note "c'major" # s "superfm" # cut 1 # orbit 1
d2 $ note "~ a'minor" # s "superfm" # cut 2 # orbit 1
-- should play 3 notes, [c,e,g],
-- followed by another 3 notes halfway through the cycle [a,c,e]
-- which don't affect the first notes because they are in a different cut group
d1 $ note "c'major" # s "superfm" # cut 1 # orbit 1
d2 $ note "~ a'minor" # s "superfm" # cut 1 # orbit 2
-- should play 3 notes, [c,e,g],
-- followed by another 3 notes halfway through the cycle [a,c,e]
-- which don't affect the first notes because they are in a different orbit
I'm not sure this is a very good way to explain it, but I hope it's clear